diff options
author | swills <swills@FreeBSD.org> | 2012-12-15 22:23:56 +0800 |
---|---|---|
committer | swills <swills@FreeBSD.org> | 2012-12-15 22:23:56 +0800 |
commit | 70693b3e6455d9c17235f5bacd5b7f569c1ef709 (patch) | |
tree | 8a742655520efe908965fbd666ddf64e97a0c97e /www/node | |
parent | 7d86b8592dc07363273464ff565ff14cf08e803c (diff) | |
download | freebsd-ports-gnome-70693b3e6455d9c17235f5bacd5b7f569c1ef709.tar.gz freebsd-ports-gnome-70693b3e6455d9c17235f5bacd5b7f569c1ef709.tar.zst freebsd-ports-gnome-70693b3e6455d9c17235f5bacd5b7f569c1ef709.zip |
- Update to 0.8.16
PR: ports/174425
Submitted by: Jin-Sih Lin <linpct@gmail.com> (maintainer)
Diffstat (limited to 'www/node')
-rw-r--r-- | www/node/Makefile | 2 | ||||
-rw-r--r-- | www/node/distinfo | 4 | ||||
-rw-r--r-- | www/node/files/patch-gyp-common.py | 14 | ||||
-rw-r--r-- | www/node/files/patch-tools-install.py | 11 |
4 files changed, 3 insertions, 28 deletions
diff --git a/www/node/Makefile b/www/node/Makefile index 8d3b69201bd4..e0c15d7a04de 100644 --- a/www/node/Makefile +++ b/www/node/Makefile @@ -6,7 +6,7 @@ # PORTNAME= node -PORTVERSION= 0.8.15 +PORTVERSION= 0.8.16 CATEGORIES= www MASTER_SITES= http://nodejs.org/dist/v${PORTVERSION}/ DISTNAME= ${PORTNAME}-v${PORTVERSION} diff --git a/www/node/distinfo b/www/node/distinfo index 5fdf3187ee29..1c33c2e198d7 100644 --- a/www/node/distinfo +++ b/www/node/distinfo @@ -1,2 +1,2 @@ -SHA256 (node-v0.8.15.tar.gz) = 1758639c6df3e081fe26585472d0f1961c5703b44ba6c57ecdf66a4c015792b1 -SIZE (node-v0.8.15.tar.gz) = 11867033 +SHA256 (node-v0.8.16.tar.gz) = 2cd09d4227c787d6886be45dc54dad5aed779d7bd4b1e15ba930101d9d1ed2a4 +SIZE (node-v0.8.16.tar.gz) = 11899509 diff --git a/www/node/files/patch-gyp-common.py b/www/node/files/patch-gyp-common.py deleted file mode 100644 index d1adc6171f25..000000000000 --- a/www/node/files/patch-gyp-common.py +++ /dev/null @@ -1,14 +0,0 @@ ---- tools/gyp/pylib/gyp/common.py.orig 2012-02-02 03:37:12.000000000 +0800 -+++ tools/gyp/pylib/gyp/common.py 2012-02-08 01:20:58.000000000 +0800 -@@ -352,7 +352,10 @@ - 'freebsd7': 'freebsd', - 'freebsd8': 'freebsd', - } -- flavor = flavors.get(sys.platform, 'linux') -+ if 'freebsd' in sys.platform: -+ flavor = 'freebsd' -+ else: -+ flavor = flavors.get(sys.platform, 'linux') - return params.get('flavor', flavor) - - diff --git a/www/node/files/patch-tools-install.py b/www/node/files/patch-tools-install.py deleted file mode 100644 index f5ad2f8868fb..000000000000 --- a/www/node/files/patch-tools-install.py +++ /dev/null @@ -1,11 +0,0 @@ ---- tools/install.py.orig 2012-08-11 15:59:08.000000000 +0800 -+++ tools/install.py 2012-08-11 15:59:36.000000000 +0800 -@@ -191,7 +191,7 @@ - 'deps/uv/include/uv-private/uv-unix.h', - 'deps/uv/include/uv-private/uv-win.h'], - 'include/node/uv-private/') -- action(['doc/node.1'], 'share/man/man1/') -+ action(['doc/node.1'], 'man/man1/') - action(['out/Release/node'], 'bin/node') - - # install unconditionally, checking if the platform supports dtrace doesn't |