f6e80bdea2
New `depends_on :python` Dependency. New `depends_on :python3` Dependency. To avoid having multiple formulae with endings -py2 and -py3, we will handle support for different pythons (2.x vs. 3.x) in the same formula. Further brewed vs. external python will be transparently supported. The formula also gets a new object `python`, which is false if no Python is available or the user has disabled it. Otherwise it is defined and provides several support methods: python.site_packages # the site-packages in the formula's Cellar python.global_site_packages python.binary # the full path to the python binary python.prefix python.version python.version.major python.version.minor python.xy # => e.g. "python2.7" python.incdir # includes of python python.libdir # the python dylib library python.pkg_config_path # used internally by brew python.from_osx? python.framework? python.universal? python.pypy? python.standard_caveats # Text to set PYTHONPATH for python.from_osx? python.if3then3 # => "" for 2.x and to "3" for 3.x. Further, to avoid code duplication, `python` takes an optional block that is run twice if the formula defines depends_on :python AND :python3. python do system python, 'setup.py', "--prefix=#{prefix}" end Read more in the Homebrew wiki.
183 lines
5.8 KiB
Ruby
183 lines
5.8 KiB
Ruby
require 'formula'
|
|
|
|
class NpmNotInstalled < Requirement
|
|
fatal true
|
|
|
|
def modules_folder
|
|
"#{HOMEBREW_PREFIX}/lib/node_modules"
|
|
end
|
|
|
|
def message; <<-EOS.undent
|
|
Beginning with 0.8.0, this recipe now comes with npm.
|
|
It appears you already have npm installed at #{modules_folder}/npm.
|
|
To use the npm that comes with this recipe, first uninstall npm with
|
|
`npm uninstall npm -g`, then run this command again.
|
|
|
|
If you would like to keep your installation of npm instead of
|
|
using the one provided with homebrew, install the formula with
|
|
the `--without-npm` option.
|
|
EOS
|
|
end
|
|
|
|
satisfy :build_env => false do
|
|
begin
|
|
path = Pathname.new("#{modules_folder}/npm/bin/npm")
|
|
path.realpath.to_s.include?(HOMEBREW_CELLAR)
|
|
rescue Errno::ENOENT
|
|
true
|
|
end
|
|
end
|
|
end
|
|
|
|
class Node < Formula
|
|
homepage 'http://nodejs.org/'
|
|
url 'http://nodejs.org/dist/v0.10.9/node-v0.10.9.tar.gz'
|
|
sha1 'e4b2bb8c42da2ec90e6fd81da1e6b382ba499608'
|
|
|
|
devel do
|
|
url 'http://nodejs.org/dist/v0.11.2/node-v0.11.2.tar.gz'
|
|
sha1 '1d1080598431062ccb4bbbf7ecbb7596fe664c67'
|
|
end
|
|
|
|
head 'https://github.com/joyent/node.git'
|
|
|
|
option 'enable-debug', 'Build with debugger hooks'
|
|
option 'without-npm', 'npm will not be installed'
|
|
|
|
depends_on NpmNotInstalled unless build.without? 'npm'
|
|
depends_on PythonInstalled.new("2.6") => :build
|
|
|
|
fails_with :llvm do
|
|
build 2326
|
|
end
|
|
|
|
# fixes gyp's detection of system paths on CLT-only systems
|
|
def patches; DATA; end
|
|
|
|
def install
|
|
args = %W{--prefix=#{prefix}}
|
|
|
|
args << "--debug" if build.include? 'enable-debug'
|
|
args << "--without-npm" if build.include? 'without-npm'
|
|
|
|
system "./configure", *args
|
|
system "make install"
|
|
|
|
unless build.include? 'without-npm'
|
|
(lib/"node_modules/npm/npmrc").write("prefix = #{npm_prefix}\n")
|
|
end
|
|
end
|
|
|
|
def npm_prefix
|
|
"#{HOMEBREW_PREFIX}/share/npm"
|
|
end
|
|
|
|
def npm_bin
|
|
"#{npm_prefix}/bin"
|
|
end
|
|
|
|
def modules_folder
|
|
"#{HOMEBREW_PREFIX}/lib/node_modules"
|
|
end
|
|
|
|
def caveats
|
|
if build.include? 'without-npm'
|
|
<<-EOS.undent
|
|
Homebrew has NOT installed npm. We recommend the following method of
|
|
installation:
|
|
curl https://npmjs.org/install.sh | sh
|
|
|
|
After installing, add the following path to your NODE_PATH environment
|
|
variable to have npm libraries picked up:
|
|
#{modules_folder}
|
|
EOS
|
|
elsif not ENV['PATH'].split(':').include? npm_bin
|
|
<<-EOS.undent
|
|
Homebrew installed npm.
|
|
We recommend prepending the following path to your PATH environment
|
|
variable to have npm-installed binaries picked up:
|
|
#{npm_bin}
|
|
EOS
|
|
end
|
|
end
|
|
end
|
|
|
|
__END__
|
|
diff --git a/tools/gyp/pylib/gyp/xcode_emulation.py b/tools/gyp/pylib/gyp/xcode_emulation.py
|
|
index 806f92b..5256856 100644
|
|
--- a/tools/gyp/pylib/gyp/xcode_emulation.py
|
|
+++ b/tools/gyp/pylib/gyp/xcode_emulation.py
|
|
@@ -224,8 +224,7 @@ class XcodeSettings(object):
|
|
|
|
def _GetSdkVersionInfoItem(self, sdk, infoitem):
|
|
job = subprocess.Popen(['xcodebuild', '-version', '-sdk', sdk, infoitem],
|
|
- stdout=subprocess.PIPE,
|
|
- stderr=subprocess.STDOUT)
|
|
+ stdout=subprocess.PIPE)
|
|
out = job.communicate()[0]
|
|
if job.returncode != 0:
|
|
sys.stderr.write(out + '\n')
|
|
@@ -234,9 +233,17 @@ class XcodeSettings(object):
|
|
|
|
def _SdkPath(self):
|
|
sdk_root = self.GetPerTargetSetting('SDKROOT', default='macosx')
|
|
+ if sdk_root.startswith('/'):
|
|
+ return sdk_root
|
|
if sdk_root not in XcodeSettings._sdk_path_cache:
|
|
- XcodeSettings._sdk_path_cache[sdk_root] = self._GetSdkVersionInfoItem(
|
|
- sdk_root, 'Path')
|
|
+ try:
|
|
+ XcodeSettings._sdk_path_cache[sdk_root] = self._GetSdkVersionInfoItem(
|
|
+ sdk_root, 'Path')
|
|
+ except:
|
|
+ # if this fails it's because xcodebuild failed, which means
|
|
+ # the user is probably on a CLT-only system, where there
|
|
+ # is no valid SDK root
|
|
+ XcodeSettings._sdk_path_cache[sdk_root] = None
|
|
return XcodeSettings._sdk_path_cache[sdk_root]
|
|
|
|
def _AppendPlatformVersionMinFlags(self, lst):
|
|
@@ -339,10 +346,11 @@ class XcodeSettings(object):
|
|
|
|
cflags += self._Settings().get('WARNING_CFLAGS', [])
|
|
|
|
- config = self.spec['configurations'][self.configname]
|
|
- framework_dirs = config.get('mac_framework_dirs', [])
|
|
- for directory in framework_dirs:
|
|
- cflags.append('-F' + directory.replace('$(SDKROOT)', sdk_root))
|
|
+ if 'SDKROOT' in self._Settings():
|
|
+ config = self.spec['configurations'][self.configname]
|
|
+ framework_dirs = config.get('mac_framework_dirs', [])
|
|
+ for directory in framework_dirs:
|
|
+ cflags.append('-F' + directory.replace('$(SDKROOT)', sdk_root))
|
|
|
|
self.configname = None
|
|
return cflags
|
|
@@ -572,10 +580,11 @@ class XcodeSettings(object):
|
|
for rpath in self._Settings().get('LD_RUNPATH_SEARCH_PATHS', []):
|
|
ldflags.append('-Wl,-rpath,' + rpath)
|
|
|
|
- config = self.spec['configurations'][self.configname]
|
|
- framework_dirs = config.get('mac_framework_dirs', [])
|
|
- for directory in framework_dirs:
|
|
- ldflags.append('-F' + directory.replace('$(SDKROOT)', self._SdkPath()))
|
|
+ if 'SDKROOT' in self._Settings():
|
|
+ config = self.spec['configurations'][self.configname]
|
|
+ framework_dirs = config.get('mac_framework_dirs', [])
|
|
+ for directory in framework_dirs:
|
|
+ ldflags.append('-F' + directory.replace('$(SDKROOT)', self._SdkPath()))
|
|
|
|
self.configname = None
|
|
return ldflags
|
|
@@ -700,7 +709,10 @@ class XcodeSettings(object):
|
|
l = '-l' + m.group(1)
|
|
else:
|
|
l = library
|
|
- return l.replace('$(SDKROOT)', self._SdkPath())
|
|
+ if self._SdkPath():
|
|
+ return l.replace('$(SDKROOT)', self._SdkPath())
|
|
+ else:
|
|
+ return l
|
|
|
|
def AdjustLibraries(self, libraries):
|
|
"""Transforms entries like 'Cocoa.framework' in libraries into entries like
|