Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

node 6.0.0 #633

Closed
wants to merge 4 commits into from
Closed
Changes from 2 commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
13 changes: 3 additions & 10 deletions Formula/node.rb
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
class Node < Formula
desc "Platform built on the V8 JavaScript runtime to build network applications"
homepage "https://nodejs.org/"
url "https://nodejs.org/dist/v5.11.0/node-v5.11.0.tar.xz"
sha256 "083766aff72fc5c78f6999dd0d00bc0340a052ab270fd60d6928b719ca2b3fd1"
url "https://nodejs.org/dist/v6.0.0/node-v6.0.0.tar.xz"
sha256 "f0e5bdc3cf4af85b8a24bdbebed81e1a9f7fda91cab8a9475737940aa90da617"
head "https://github.com/nodejs/node.git"

bottle do
Expand All @@ -11,12 +11,6 @@ class Node < Formula
sha256 "8254c09259aa2d869279f580e489d82181aec17b7555c2f434c290e2625906d1" => :mavericks
end

devel do
url "https://nodejs.org/download/rc/v6.0.0-rc.3/node-v6.0.0-rc.3.tar.xz"
sha256 "472ae46a205fb65cd784b22825b7354cddb4da5f46c1974272be43e55745ce6e"
version "6.0.0-rc.3"
end

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"
Expand Down Expand Up @@ -47,7 +41,7 @@ class Node < Formula
end

resource "icu4c" do
url "https://ssl.icu-project.org/files/icu4c/56.1/icu4c-56_1-src.tgz"
url "https://ssl.icu-project.org/files/icu4c/57.1/icu4c-57_1-src.tgz"
mirror "https://ftp.mirrorservice.org/sites/download.qt-project.org/development_releases/prebuilt/icu/src/icu4c-56_1-src.tgz"
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

The mirror needs to be updated too.

version "56.1"
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Also the version number and sha256.

sha256 "3a64e9105c734dcf631c0b3ed60404531bce6c0f5a64bfe1a6402a4cc2314816"
Expand All @@ -62,7 +56,6 @@ def install
else
args << "--with-intl=small-icu"
end
args << "--tag=rc.3" << "--release-urlbase=https://nodejs.org/download/rc/" if build.devel?
args << "--tag=head" if build.head?

resource("icu4c").stage buildpath/"deps/icu"
Expand Down