Skip site navigation (1)Skip section navigation (2)
Date:      Fri, 2 Nov 2012 06:57:06 +0000 (UTC)
From:      "Vanilla I. Shu" <vanilla@FreeBSD.org>
To:        ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org
Subject:   svn commit: r306835 - in head/www/node-devel: . files
Message-ID:  <201211020657.qA26v6Zu067873@svn.freebsd.org>

next in thread | raw e-mail | index | archive | help
Author: vanilla
Date: Fri Nov  2 06:57:06 2012
New Revision: 306835
URL: http://svn.freebsd.org/changeset/ports/306835

Log:
  Upgrade to 0.9.3.
  
  PR:		ports/171729
  Submitted by:	maintainer
  Feature safe:   yes

Deleted:
  head/www/node-devel/files/patch-uv-bsd.h
Modified:
  head/www/node-devel/Makefile
  head/www/node-devel/distinfo
  head/www/node-devel/files/patch-gyp-common.py
  head/www/node-devel/files/patch-tools-install.py
  head/www/node-devel/pkg-plist

Modified: head/www/node-devel/Makefile
==============================================================================
--- head/www/node-devel/Makefile	Fri Nov  2 03:17:18 2012	(r306834)
+++ head/www/node-devel/Makefile	Fri Nov  2 06:57:06 2012	(r306835)
@@ -3,7 +3,7 @@
 #
 
 PORTNAME=	node
-PORTVERSION=	0.9.1
+PORTVERSION=	0.9.3
 CATEGORIES=	www
 MASTER_SITES=	http://nodejs.org/dist/v${PORTVERSION}/
 PKGNAMESUFFIX=	-devel
@@ -19,14 +19,13 @@ MAN1=		node.1
 HAS_CONFIGURE=	yes
 USE_LDCONFIG=	yes
 USE_PYTHON=	2.7
-USE_OPENSSL=	yes
 USE_GMAKE=	yes
 
 CONFLICTS=	node-0.[0-9]*
 
 ONLY_FOR_ARCHS=	i386 amd64
 MAKE_JOBS_SAFE=	yes
-CONFIGURE_ARGS=	--prefix=${PREFIX_RELDEST} --without-npm --shared-openssl --shared-zlib
+CONFIGURE_ARGS=	--prefix=${PREFIX_RELDEST} --without-npm --shared-zlib
 PREFIX_RELDEST=	${PREFIX:S,^${DESTDIR},,}
 REINPLACE_ARGS=	-i ''
 

Modified: head/www/node-devel/distinfo
==============================================================================
--- head/www/node-devel/distinfo	Fri Nov  2 03:17:18 2012	(r306834)
+++ head/www/node-devel/distinfo	Fri Nov  2 06:57:06 2012	(r306835)
@@ -1,2 +1,2 @@
-SHA256 (node-v0.9.1.tar.gz) = 12bc0deb1a0c3fdcd5c54ffd241c1e291d372620944c3f97388d38f460f222b9
-SIZE (node-v0.9.1.tar.gz) = 11451518
+SHA256 (node-v0.9.3.tar.gz) = 7e1750cd47d7b8c13c7cf12457b6a528fa2abf8a10b7c9a35c13ed47cebaab41
+SIZE (node-v0.9.3.tar.gz) = 12481901

Modified: head/www/node-devel/files/patch-gyp-common.py
==============================================================================
--- head/www/node-devel/files/patch-gyp-common.py	Fri Nov  2 03:17:18 2012	(r306834)
+++ head/www/node-devel/files/patch-gyp-common.py	Fri Nov  2 06:57:06 2012	(r306835)
@@ -1,12 +1,12 @@
---- tools/gyp/pylib/gyp/common.py.orig	2012-09-03 09:45:35.000000000 +0800
-+++ tools/gyp/pylib/gyp/common.py	2012-09-03 09:46:36.000000000 +0800
+--- tools/gyp/pylib/gyp/common.py.orig	2012-09-18 08:54:59.000000000 +0800
++++ tools/gyp/pylib/gyp/common.py	2012-09-18 12:14:47.000000000 +0800
 @@ -366,7 +366,10 @@
      'freebsd8': 'freebsd',
      'freebsd9': 'freebsd',
    }
 -  flavor = flavors.get(sys.platform, 'linux')
 +  if 'freebsd' in sys.platform:
-+      flavor = 'freebsd'
++    flavor = 'freebsd'
 +  else:
 +    flavor = flavors.get(sys.platform, 'linux')
    return params.get('flavor', flavor)

Modified: head/www/node-devel/files/patch-tools-install.py
==============================================================================
--- head/www/node-devel/files/patch-tools-install.py	Fri Nov  2 03:17:18 2012	(r306834)
+++ head/www/node-devel/files/patch-tools-install.py	Fri Nov  2 06:57:06 2012	(r306835)
@@ -1,20 +1,11 @@
---- tools/install.py.orig	2012-08-29 04:51:31.000000000 +0800
-+++ tools/install.py	2012-09-04 13:26:40.000000000 +0800
-@@ -135,7 +135,7 @@
-           'deps/uv/include/uv-private/uv-unix.h',
-           'deps/uv/include/uv-private/uv-win.h'],
-           'include/node/uv-private/')
+--- tools/install.py.orig	2012-09-18 08:54:59.000000000 +0800
++++ tools/install.py	2012-09-18 12:17:19.000000000 +0800
+@@ -114,7 +114,7 @@
+     assert(0) # unhandled action type
+ 
+ def files(action):
 -  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
-@@ -143,7 +143,7 @@
-   # with dtrace support now (oracle's "unbreakable" linux)
-   action(['src/node.d'], 'lib/dtrace/')
- 
--  if variables.get('node_install_npm'): npm_files(action)
-+  if 'true' == variables.get('node_install_npm'): npm_files(action)
- 
- def run(args):
-   global dst_dir, node_prefix, target_defaults, variables

Modified: head/www/node-devel/pkg-plist
==============================================================================
--- head/www/node-devel/pkg-plist	Fri Nov  2 03:17:18 2012	(r306834)
+++ head/www/node-devel/pkg-plist	Fri Nov  2 06:57:06 2012	(r306835)
@@ -1,26 +1,5 @@
 bin/node
-include/node/eio-emul.h
-include/node/ev-emul.h
-include/node/node.h
-include/node/node_buffer.h
-include/node/node_object_wrap.h
-include/node/node_version.h
-include/node/uv-private/eio.h
-include/node/uv-private/ev.h
-include/node/uv-private/ngx-queue.h
-include/node/uv-private/tree.h
-include/node/uv-private/uv-unix.h
-include/node/uv-private/uv-win.h
-include/node/uv.h
-include/node/v8-debug.h
-include/node/v8-preparser.h
-include/node/v8-profiler.h
-include/node/v8-testing.h
-include/node/v8.h
-include/node/v8stdint.h
 lib/dtrace/node.d
 lib/node_modules/.keepme
 @dirrm lib/node_modules
 @dirrm lib/dtrace
-@dirrm include/node/uv-private
-@dirrm include/node



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201211020657.qA26v6Zu067873>