Skip to content
This repository has been archived by the owner on Dec 20, 2017. It is now read-only.

Commit

Permalink
Initial commit.
Browse files Browse the repository at this point in the history
  • Loading branch information
smockle committed Jan 12, 2015
1 parent 008da3d commit 7ebfaf6
Show file tree
Hide file tree
Showing 2 changed files with 122 additions and 0 deletions.
1 change: 1 addition & 0 deletions Aliases/io.js
121 changes: 121 additions & 0 deletions Formula/iojs.rb
Original file line number Diff line number Diff line change
@@ -0,0 +1,121 @@
# Note that x.even are stable releases, x.odd are devel releases

This comment has been minimized.

Copy link
@ruimarinho

ruimarinho Jan 13, 2015

This can be removed because io.js will follow semver.

This comment has been minimized.

Copy link
@smockle

smockle Jan 13, 2015

Author Collaborator

Removed in @712043f1004d781b001d1d30c7e99e6c7b98df18. Thanks!

class Iojs < Formula
homepage "https://iojs.org/"
url "https://iojs.org/download/nightly/v1.0.0-nightly201501111b8f37bb4d/iojs-v1.0.0-nightly201501111b8f37bb4d.tar.gz"
sha256 "c69edc1cdd13db6c98dc9c4af01d672bae69e1eca43f2d3bfa007c142e9255b3"
revision 1

head do
url "https://github.com/iojs/io.js.git", :branch => "v1.x"

depends_on "pkg-config" => :build
depends_on "icu4c"

This comment has been minimized.

Copy link
@ruimarinho

ruimarinho Jan 13, 2015

Intl will not be bundled with 1.0.0 (see nodejs/node#238). This means that the dependency on pkg-config/icu4c can probably be removed?

This comment has been minimized.

Copy link
@smockle

smockle Jan 13, 2015

Author Collaborator

I removed these lines (and related lines 36-43) in @712043f1004d781b001d1d30c7e99e6c7b98df18. Should I also pass "--with-intl=small-icu" to "./configure" by default? I tested the build without that option, and it builds successfully.

This comment has been minimized.

Copy link
@ruimarinho

ruimarinho Jan 13, 2015

Not yet. For now io.js will be bundled without --with-intl=small-icu.

This comment has been minimized.

Copy link
@smockle

smockle Jan 13, 2015

Author Collaborator

(thumbsup) I'll watch that issue and update this formula if necessary.

This comment has been minimized.

Copy link
@ruimarinho

ruimarinho Jan 13, 2015

Cheers, thanks for the formula 👍

end

deprecated_option "enable-debug" => "with-debug"

option "with-debug", "Build with debugger hooks"
option "without-npm", "npm will not be installed"
option "without-completion", "npm bash completion will not be installed"

depends_on :python => :build

fails_with :llvm do
build 2326
end

resource "npm" do
url "https://registry.npmjs.org/npm/-/npm-2.1.17.tgz"

This comment has been minimized.

Copy link
@ruimarinho

ruimarinho Jan 13, 2015

This has changed to 2.1.18 - see nodejs/node#266. Can you please update this?

e2af4c5f848fb023851cd2ec129005d33090bd57  npm-2.1.18.tgz

This comment has been minimized.

Copy link
@smockle

smockle Jan 13, 2015

Author Collaborator

Updated in @712043f1004d781b001d1d30c7e99e6c7b98df18. Thanks @ruimarinho!

sha1 "80fa7873188659037ec0ed8ebc95c2b2723c8ac4"
end

def install
args = %W{--prefix=#{prefix} --without-npm}
args << "--debug" if build.with? "debug"

# This should eventually be able to use the system icu4c, but right now
# it expects to find this dependency using pkgconfig.
if build.head?
ENV.prepend_path "PKG_CONFIG_PATH", "#{Formula["icu4c"].opt_prefix}/lib/pkgconfig"
args << "--with-intl=system-icu"
end

system "./configure", *args
system "make", "install"

resource("npm").stage libexec/"npm" if build.with? "npm"
end

def post_install
return if build.without? "npm"

(libexec/"npm").cd { system "make", "uninstall" }
Pathname.glob(HOMEBREW_PREFIX/"share/man/*") do |man|
next unless man.directory?
man.children.each do |file|
next unless file.symlink?
file.unlink if file.readlink.to_s.include? "/node_modules/npm/man/"
end
end

node_modules = HOMEBREW_PREFIX/"lib/node_modules"
node_modules.mkpath
cp_r libexec/"npm", node_modules

npm_root = node_modules/"npm"
npmrc = npm_root/"npmrc"
npmrc.atomic_write("prefix = #{HOMEBREW_PREFIX}\n")

# set log level temporarily for npm's `make install`
ENV["NPM_CONFIG_LOGLEVEL"] = "verbose"

# make sure npm can find iojs
ENV["PATH"] = "#{opt_bin}:#{ENV["PATH"]}"

ENV["NPM_CONFIG_USERCONFIG"] = npmrc
npm_root.cd { system "make", "install" }

if build.with? "completion"
bash_completion.install_symlink \
npm_root/"lib/utils/completion.sh" => "npm"
end
end

def caveats
s = ""

if build.with? "npm"
s += <<-EOS.undent
If you update npm itself, do NOT use the npm update command.
The upstream-recommended way to update npm is:
npm install -g npm@latest
EOS
else
s += <<-EOS.undent
Homebrew has NOT installed npm. If you later install it, you should supplement
your NODE_PATH with the npm module folder:
#{HOMEBREW_PREFIX}/lib/node_modules
EOS
end

s
end

test do
path = testpath/"test.js"
path.write "console.log('hello');"

output = `#{bin}/iojs #{path}`.strip
assert_equal "hello", output
assert_equal 0, $?.exitstatus

if build.with? "npm"
# make sure npm can find iojs
ENV.prepend_path "PATH", opt_bin
assert_equal which("iojs"), opt_bin/"iojs"
assert (HOMEBREW_PREFIX/"bin/npm").exist?, "npm must exist"
assert (HOMEBREW_PREFIX/"bin/npm").executable?, "npm must be executable"
system "#{HOMEBREW_PREFIX}/bin/npm", "--verbose", "install", "npm@latest"
end
end
end

0 comments on commit 7ebfaf6

Please sign in to comment.