Skip site navigation (1)Skip section navigation (2)
Date:      Tue, 18 Sep 2012 13:25:41 +0800 (CST)
From:      Jin-Sih Lin <linpct@gmail.com>
To:        FreeBSD-gnats-submit@FreeBSD.org
Subject:   ports/171729: [MAINTAINER] www/node-devel: update to 0.9.2
Message-ID:  <20120918052541.D717E5CF1@deep.tw>
Resent-Message-ID: <201209180530.q8I5U8k5052447@freefall.freebsd.org>

next in thread | raw e-mail | index | archive | help

>Number:         171729
>Category:       ports
>Synopsis:       [MAINTAINER] www/node-devel: update to 0.9.2
>Confidential:   no
>Severity:       non-critical
>Priority:       low
>Responsible:    freebsd-ports-bugs
>State:          open
>Quarter:        
>Keywords:       
>Date-Required:
>Class:          maintainer-update
>Submitter-Id:   current-users
>Arrival-Date:   Tue Sep 18 05:30:07 UTC 2012
>Closed-Date:
>Last-Modified:
>Originator:     Jin-Sih Lin
>Release:        FreeBSD 10.0-CURRENT i386
>Organization:
FreeBSD @ Taiwan
>Environment:
System: FreeBSD deep.tw 10.0-CURRENT FreeBSD 10.0-CURRENT #0: Sat Aug 18 08:09:36 CST 2012
>Description:
- Update to 0.9.2

Removed file(s):
- files/patch-uv-bsd.h

Generated with FreeBSD Port Tools 0.99_6 (mode: update, diff: suffix)
>How-To-Repeat:
>Fix:

--- node-devel-0.9.2.patch begins here ---
diff -ruN --exclude=CVS ../node-devel.orig/Makefile ./Makefile
--- ../node-devel.orig/Makefile	2012-09-04 18:56:26.000000000 +0800
+++ ./Makefile	2012-09-18 12:03:52.000000000 +0800
@@ -3,7 +3,7 @@
 #
 
 PORTNAME=	node
-PORTVERSION=	0.9.1
+PORTVERSION=	0.9.2
 CATEGORIES=	www
 MASTER_SITES=	http://nodejs.org/dist/v${PORTVERSION}/
 PKGNAMESUFFIX=	-devel
diff -ruN --exclude=CVS ../node-devel.orig/distinfo ./distinfo
--- ../node-devel.orig/distinfo	2012-09-04 14:45:15.000000000 +0800
+++ ./distinfo	2012-09-18 12:06:07.000000000 +0800
@@ -1,2 +1,2 @@
-SHA256 (node-v0.9.1.tar.gz) = 12bc0deb1a0c3fdcd5c54ffd241c1e291d372620944c3f97388d38f460f222b9
-SIZE (node-v0.9.1.tar.gz) = 11451518
+SHA256 (node-v0.9.2.tar.gz) = 84dc31888a5d53a0188ebc04ef4b84488b2f0361dd4696b7ae047af7372102c1
+SIZE (node-v0.9.2.tar.gz) = 12564039
diff -ruN --exclude=CVS ../node-devel.orig/files/patch-gyp-common.py ./files/patch-gyp-common.py
--- ../node-devel.orig/files/patch-gyp-common.py	2012-09-04 14:45:15.000000000 +0800
+++ ./files/patch-gyp-common.py	2012-09-18 12:15:12.000000000 +0800
@@ -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)
diff -ruN --exclude=CVS ../node-devel.orig/files/patch-tools-install.py ./files/patch-tools-install.py
--- ../node-devel.orig/files/patch-tools-install.py	2012-09-04 14:45:15.000000000 +0800
+++ ./files/patch-tools-install.py	2012-09-18 12:17:33.000000000 +0800
@@ -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
diff -ruN --exclude=CVS ../node-devel.orig/files/patch-uv-bsd.h ./files/patch-uv-bsd.h
--- ../node-devel.orig/files/patch-uv-bsd.h	2012-09-04 14:45:15.000000000 +0800
+++ ./files/patch-uv-bsd.h	1970-01-01 08:00:00.000000000 +0800
@@ -1,11 +0,0 @@
---- deps/uv/include/uv-private/uv-bsd.h.orig	2012-09-03 09:42:53.000000000 +0800
-+++ deps/uv/include/uv-private/uv-bsd.h	2012-09-03 09:43:18.000000000 +0800
-@@ -23,7 +23,7 @@
- #define UV_BSD_H
- 
- #define UV_PLATFORM_FS_EVENT_FIELDS                                           \
--  uv__io_t event_watcher;                                                     \
-+  ev_io event_watcher;                                                     \
-   int fflags;                                                                 \
-   int fd;                                                                     \
- 
diff -ruN --exclude=CVS ../node-devel.orig/pkg-plist ./pkg-plist
--- ../node-devel.orig/pkg-plist	2012-09-04 14:45:15.000000000 +0800
+++ ./pkg-plist	2012-09-18 12:51:23.000000000 +0800
@@ -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
--- node-devel-0.9.2.patch ends here ---

>Release-Note:
>Audit-Trail:
>Unformatted:



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