mirror of
https://git.FreeBSD.org/ports.git
synced 2025-01-16 07:58:04 +00:00
- Update to 0.8.16
PR: ports/174425 Submitted by: Jin-Sih Lin <linpct@gmail.com> (maintainer)
This commit is contained in:
parent
6887dc7775
commit
d2ad6aa192
Notes:
svn2git
2021-03-31 03:12:20 +00:00
svn path=/head/; revision=308948
@ -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}
|
||||
|
@ -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
|
||||
|
@ -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)
|
||||
|
||||
|
@ -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
|
Loading…
Reference in New Issue
Block a user