On 06/25 11:48, Aaron Bieber wrote:
> On Mon, Jun 25, 2012 at 11:29:42AM -0600, Aaron Bieber wrote:
> > Attached is a major update for node. It includes patches jeremy@ had
> > sent in earlier for a chmod issue, an issue with node-gyp (this fix is
> > applied in the build's version of node-gyp and in the sub-module of
> > npm.) and also makes npm's dependencies global. 
> > 
> > Port Changes:
> > * Now builds with native openssl.
> > * Now builds with native zlib.
> > 
> > Node.JS Changelog:
> > * V8: upgrade to v3.11.10.10
> > * npm: Upgrade to 1.1.32
> > * Deprecate iowatcher (Ben Noordhuis)
> > * windows: update icon (Bert Belder)
> > * http: Hush 'MUST NOT have a body' warnings to debug() (isaacs)
> > * Move blog.nodejs.org content into repository (isaacs)
> > * Fix #3503: stdin: resume() on pipe(dest) (isaacs)
> > * crypto: fix error reporting in SetKey() (Fedor Indutny)
> > * Add --no-deprecation and --trace-deprecation command-line flags (isaacs)
> > * fs: fix fs.watchFile() (Ben Noordhuis)
> > * fs: Fix fs.readfile() on pipes (isaacs)
> > * Rename GYP variable node_use_system_openssl to be consistent (Ryan Dahl)
> > 
> > Cheers,
> > Aaron
> > 
> 
> This fixes the manpage issue I overlooked.

This patch looks OK to me.  Here's an update for the node ports I
maintain to work with node 0.8.0 (databases/node-pg, devel/node-fibers,
and security/node-bcrypt).  Tested on i386, compiles on amd64.

I see you sent another patch, and I think it's a good idea to expose
node-gyp for easier testing, but I haven't tested that patch.

Thanks,
Jeremy

Index: databases/node-pg/Makefile
===================================================================
RCS file: /cvs/ports/databases/node-pg/Makefile,v
retrieving revision 1.6
diff -u -p -r1.6 Makefile
--- databases/node-pg/Makefile  23 May 2012 15:13:20 -0000      1.6
+++ databases/node-pg/Makefile  26 Jun 2012 20:26:54 -0000
@@ -2,12 +2,10 @@
 
 COMMENT =      postgresql client for nodejs
 
-NPM_VERSION =  0.6.10
+NPM_VERSION =  0.7.1
 NPM_NAME =     pg
 CATEGORIES =   databases
 
-REVISION =     2
-
 MAINTAINER =   Jeremy Evans <jer...@openbsd.org>
 
 HOMEPAGE =     https://github.com/brianc/node-postgres
@@ -28,6 +26,9 @@ BUILD_DEPENDS =       ${RUN_DEPENDS}
 LIB_DEPENDS =  databases/postgresql
 RUN_DEPENDS =  devel/node-generic-pool
 MODNODE_DEPENDS = generic-pool
+
+pre-configure:
+       ${SUBST_CMD} ${WRKSRC}/binding.gyp
 
 # Must have a database setup running on localhost with
 # user=postgres and password=1234
Index: databases/node-pg/distinfo
===================================================================
RCS file: /cvs/ports/databases/node-pg/distinfo,v
retrieving revision 1.1.1.1
diff -u -p -r1.1.1.1 distinfo
--- databases/node-pg/distinfo  3 Apr 2012 18:49:11 -0000       1.1.1.1
+++ databases/node-pg/distinfo  26 Jun 2012 18:53:24 -0000
@@ -1,5 +1,5 @@
-MD5 (pg-0.6.10.tgz) = pa8l44un0/iJB2L6yC13ZA==
-RMD160 (pg-0.6.10.tgz) = pLXRvJFmaxivkkT99KK3LDhAcO0=
-SHA1 (pg-0.6.10.tgz) = CvdigcPpuS8fcfy1atUTeMthXKg=
-SHA256 (pg-0.6.10.tgz) = rDo0R2afDvQwu3MHxHivP/g8qlHfBwE7NIF9n61qHM4=
-SIZE (pg-0.6.10.tgz) = 51200
+MD5 (pg-0.7.1.tgz) = q1pH/uFVy5xHmzuOF0GlJg==
+RMD160 (pg-0.7.1.tgz) = NLac+igoRxGgLOgV7S9RP7c2o3s=
+SHA1 (pg-0.7.1.tgz) = 0aOa6pWT0TeIGdMDUkJosS8Ivcg=
+SHA256 (pg-0.7.1.tgz) = ZdlGVsl4g/8ks2dGT0f2gdDyimPMJOF5n2WPiRfjDWE=
+SIZE (pg-0.7.1.tgz) = 61440
Index: databases/node-pg/patches/patch-binding_gyp
===================================================================
RCS file: databases/node-pg/patches/patch-binding_gyp
diff -N databases/node-pg/patches/patch-binding_gyp
--- /dev/null   1 Jan 1970 00:00:00 -0000
+++ databases/node-pg/patches/patch-binding_gyp 26 Jun 2012 20:47:38 -0000
@@ -0,0 +1,14 @@
+$OpenBSD$
+--- binding.gyp.orig   Mon Jun 18 20:44:42 2012
++++ binding.gyp        Tue Jun 26 13:47:33 2012
+@@ -5,8 +5,8 @@
+       'sources': [
+         'src/binding.cc'
+       ],
+-      'include_dirs': ['/usr/include/postgresql'],
+-      'libraries' : ['-lpq']
++      'include_dirs': ['${LOCALBASE}/include/postgresql'],
++      'libraries' : ['-L${LOCALBASE}/lib -lpq']
+     }
+   ]
+ }
Index: databases/node-pg/pkg/PLIST
===================================================================
RCS file: /cvs/ports/databases/node-pg/pkg/PLIST,v
retrieving revision 1.1.1.1
diff -u -p -r1.1.1.1 PLIST
--- databases/node-pg/pkg/PLIST 3 Apr 2012 18:49:11 -0000       1.1.1.1
+++ databases/node-pg/pkg/PLIST 26 Jun 2012 20:49:48 -0000
@@ -1,6 +1,5 @@
 @comment $OpenBSD: PLIST,v 1.1.1.1 2012/04/03 18:49:11 jeremy Exp $
 lib/node_modules/pg/
-lib/node_modules/pg/.lock-wscript
 lib/node_modules/pg/.npmignore
 lib/node_modules/pg/Makefile
 lib/node_modules/pg/README.md
@@ -8,17 +7,30 @@ lib/node_modules/pg/benchmark/
 lib/node_modules/pg/benchmark/js-versus-native-bench.js
 lib/node_modules/pg/benchmark/large-datatset-bench.js
 lib/node_modules/pg/benchmark/simple-query-bench.js
+lib/node_modules/pg/binding.gyp
 lib/node_modules/pg/build/
-lib/node_modules/pg/build/.wafpickle-7
+lib/node_modules/pg/build/Makefile
 lib/node_modules/pg/build/Release/
+lib/node_modules/pg/build/Release/.deps/
+lib/node_modules/pg/build/Release/.deps/Release/
+lib/node_modules/pg/build/Release/.deps/Release/binding.node.d
+lib/node_modules/pg/build/Release/.deps/Release/obj.target/
+lib/node_modules/pg/build/Release/.deps/Release/obj.target/binding/
+lib/node_modules/pg/build/Release/.deps/Release/obj.target/binding.node.d
+lib/node_modules/pg/build/Release/.deps/Release/obj.target/binding/src/
+lib/node_modules/pg/build/Release/.deps/Release/obj.target/binding/src/binding.o.d
 @bin lib/node_modules/pg/build/Release/binding.node
-lib/node_modules/pg/build/Release/src/
-lib/node_modules/pg/build/Release/src/binding_1.o
-lib/node_modules/pg/build/c4che/
-lib/node_modules/pg/build/c4che/Release.cache.py
-lib/node_modules/pg/build/c4che/build.config.py
-lib/node_modules/pg/build/config.log
+lib/node_modules/pg/build/Release/linker.lock
+lib/node_modules/pg/build/Release/obj.target/
+lib/node_modules/pg/build/Release/obj.target/binding/
+@bin lib/node_modules/pg/build/Release/obj.target/binding.node
+lib/node_modules/pg/build/Release/obj.target/binding/src/
+lib/node_modules/pg/build/Release/obj.target/binding/src/binding.o
+lib/node_modules/pg/build/binding.Makefile
+lib/node_modules/pg/build/binding.target.mk
+lib/node_modules/pg/build/config.gypi
 lib/node_modules/pg/lib/
+lib/node_modules/pg/lib/arrayParser.js
 lib/node_modules/pg/lib/binaryParsers.js
 lib/node_modules/pg/lib/client.js
 lib/node_modules/pg/lib/connection.js
@@ -54,6 +66,7 @@ lib/node_modules/pg/test/integration/cli
 lib/node_modules/pg/test/integration/client/drain-tests.js
 lib/node_modules/pg/test/integration/client/empty-query-tests.js
 lib/node_modules/pg/test/integration/client/error-handling-tests.js
+lib/node_modules/pg/test/integration/client/huge-numeric-tests.js
 lib/node_modules/pg/test/integration/client/no-data-tests.js
 lib/node_modules/pg/test/integration/client/notice-tests.js
 lib/node_modules/pg/test/integration/client/prepared-statement-tests.js
@@ -78,6 +91,9 @@ lib/node_modules/pg/test/integration/con
 lib/node_modules/pg/test/integration/connection/notification-tests.js
 lib/node_modules/pg/test/integration/connection/query-tests.js
 lib/node_modules/pg/test/integration/connection/test-helper.js
+lib/node_modules/pg/test/integration/gh-issues/
+lib/node_modules/pg/test/integration/gh-issues/130.js
+lib/node_modules/pg/test/integration/gh-issues/131.js
 lib/node_modules/pg/test/integration/test-helper.js
 lib/node_modules/pg/test/native/
 lib/node_modules/pg/test/native/callback-api-tests.js
Index: devel/node-fibers/Makefile
===================================================================
RCS file: /cvs/ports/devel/node-fibers/Makefile,v
retrieving revision 1.6
diff -u -p -r1.6 Makefile
--- devel/node-fibers/Makefile  23 May 2012 15:13:20 -0000      1.6
+++ devel/node-fibers/Makefile  26 Jun 2012 18:29:09 -0000
@@ -8,12 +8,10 @@ ONLY_FOR_ARCHS= amd64 i386
 
 COMMENT =      fiber/coroutine support for nodejs
 
-NPM_VERSION =  0.6.4
+NPM_VERSION =  0.6.8
 NPM_NAME =     fibers
 CATEGORIES =   devel
 
-REVISION =     2
-
 MAINTAINER =   Jeremy Evans <jer...@openbsd.org>
 
 HOMEPAGE =     https://github.com/laverdet/node-fibers
@@ -28,11 +26,13 @@ MODULES =           lang/node
 
 CONFIGURE_STYLE =      npm ext
 USE_GMAKE =            Yes
-SUBST_VARS =           CFLAGS
+FIBERS_ARCH =          openbsd-${PKG_ARCH:S/amd64/x64/:S/i386/ia32/}
+SUBST_VARS =           FIBERS_ARCH
 
-REGRESS_TARGET =       test
+MODNODE_DEPENDS ?=     node-gyp
+REGRESS_DEPENDS =      ${BUILD_PKGPATH}
 
-pre-configure:
-       ${SUBST_CMD} ${WRKDIST}/src/platform.mk
+do-regress:
+       cd ${WRKDIST} && node test.js
 
 .include <bsd.port.mk>
Index: devel/node-fibers/distinfo
===================================================================
RCS file: /cvs/ports/devel/node-fibers/distinfo,v
retrieving revision 1.1.1.1
diff -u -p -r1.1.1.1 distinfo
--- devel/node-fibers/distinfo  3 Apr 2012 18:46:03 -0000       1.1.1.1
+++ devel/node-fibers/distinfo  26 Jun 2012 18:29:21 -0000
@@ -1,5 +1,5 @@
-MD5 (fibers-0.6.4.tgz) = rY5cv97tO9sO4qtP2DlRnA==
-RMD160 (fibers-0.6.4.tgz) = 9Mw3D9B2GnzrH/kdBgG0j0yjo7E=
-SHA1 (fibers-0.6.4.tgz) = K3Zl0he9gGtWSByhkHg8j9P1FZs=
-SHA256 (fibers-0.6.4.tgz) = jrIeMPCP1V/VqQnRKKT5vwb13ni9xJelSNTQJxWqLmA=
-SIZE (fibers-0.6.4.tgz) = 25553
+MD5 (fibers-0.6.8.tgz) = K8aAESqAfmEptQidDedLHQ==
+RMD160 (fibers-0.6.8.tgz) = FbFwvksxY3Iv/BgrVGjh/zTRK0Q=
+SHA1 (fibers-0.6.8.tgz) = /XUsW2NADTGM2yRRRr3zdxoL1rk=
+SHA256 (fibers-0.6.8.tgz) = SfhknDmJSDHJpSefEkNyK6fWrG2aqZ+GcnyFcT5LCKA=
+SIZE (fibers-0.6.8.tgz) = 445390
Index: devel/node-fibers/patches/patch-Makefile
===================================================================
RCS file: devel/node-fibers/patches/patch-Makefile
diff -N devel/node-fibers/patches/patch-Makefile
--- devel/node-fibers/patches/patch-Makefile    10 May 2012 08:41:39 -0000      
1.1
+++ /dev/null   1 Jan 1970 00:00:00 -0000
@@ -1,15 +0,0 @@
-$OpenBSD: patch-Makefile,v 1.1 2012/05/10 08:41:39 jasper Exp $
-
-Don't run tests as part of the normal build.
-
---- Makefile.orig      Thu May 10 09:54:35 2012
-+++ Makefile   Thu May 10 09:54:48 2012
-@@ -1,7 +1,7 @@
- include src/platform.mk
- FIBERS_SO := $(shell echo `pwd`/src/fibers.node)
- 
--all: fibers test
-+all: fibers
- 
- fibers: $(FIBERS_SO)
- 
Index: devel/node-fibers/patches/patch-binding_gyp
===================================================================
RCS file: devel/node-fibers/patches/patch-binding_gyp
diff -N devel/node-fibers/patches/patch-binding_gyp
--- /dev/null   1 Jan 1970 00:00:00 -0000
+++ devel/node-fibers/patches/patch-binding_gyp 26 Jun 2012 18:48:43 -0000
@@ -0,0 +1,16 @@
+$OpenBSD$
+
+Bad hack to get it to use correct implementation, since it is
+recognizing the OpenBSD as Linux.
+
+--- binding.gyp.orig   Tue Jun 26 11:47:28 2012
++++ binding.gyp        Tue Jun 26 11:47:37 2012
+@@ -21,7 +21,7 @@
+                                               'ldflags': ['-pthread'],
+                                       }
+                               ],
+-                              ['OS == "linux" or OS == "solaris" or OS == 
"freebsd"', {'defines': ['CORO_UCONTEXT']}],
++                              ['OS == "linux" or OS == "solaris" or OS == 
"freebsd"', {'defines': ['CORO_ASM']}],
+                               ['OS == "mac"', {
+                                       'defines': ['CORO_SJLJ'],
+                                        'xcode_settings': {
Index: devel/node-fibers/patches/patch-fibers_js
===================================================================
RCS file: devel/node-fibers/patches/patch-fibers_js
diff -N devel/node-fibers/patches/patch-fibers_js
--- devel/node-fibers/patches/patch-fibers_js   3 Apr 2012 18:46:03 -0000       
1.1.1.1
+++ /dev/null   1 Jan 1970 00:00:00 -0000
@@ -1,21 +0,0 @@
-$OpenBSD: patch-fibers_js,v 1.1.1.1 2012/04/03 18:46:03 jeremy Exp $
-
-Don't check mtimes against process, as it appears to break things
-and should not be a problem with ports.
-
---- fibers.js.orig     Wed Feb  1 13:54:47 2012
-+++ fibers.js  Wed Feb  1 13:55:09 2012
-@@ -1,13 +1,2 @@
--var fs = require('fs'), path = require('path');
--
--if (fs.statSync(process.execPath).mtime >
--              fs.statSync(require.resolve('./src/fibers')).mtime) {
--      throw new Error(
--              '`node` has a newer mtime than `fiber`; it is possible your 
build is out of date. This ' +
--              'could happen if you upgrade node. Try `npm rebuild fibers` to 
rebuild. If that doesn\'t ' +
--              'work you could consider running `touch ' + __dirname + 
'src/fibers` and maybe there won\'t ' +
--              'be a problem.');
--}
--
- // Injects `Fiber` and `yield` in to global
- require('./src/fibers');
Index: devel/node-fibers/patches/patch-package_json
===================================================================
RCS file: devel/node-fibers/patches/patch-package_json
diff -N devel/node-fibers/patches/patch-package_json
--- devel/node-fibers/patches/patch-package_json        3 Apr 2012 18:46:03 
-0000       1.1.1.1
+++ /dev/null   1 Jan 1970 00:00:00 -0000
@@ -1,20 +0,0 @@
-$OpenBSD: patch-package_json,v 1.1.1.1 2012/04/03 18:46:03 jeremy Exp $
---- package.json.orig  Wed Jan  4 21:24:45 2012
-+++ package.json       Sun Apr  1 19:33:55 2012
-@@ -8,14 +8,14 @@
-       "author": "Marcel Laverdet <mar...@laverdet.com> 
(https://github.com/laverdet/)",
-       "main": "fibers",
-       "scripts": {
--              "install": "make clean all"
-+              "install": "gmake clean all"
-       },
-       "man": "./man/fibers.1",
-       "repository": {
-               "type": "git",
-               "url": "git://github.com/laverdet/node-fibers.git"
-       },
--      "os": ["macos", "linux"],
-+      "os": ["macos", "linux", "openbsd"],
-       "engines": {
-               "node": ">=0.5.2"
-       }
Index: devel/node-fibers/patches/patch-src_Makefile
===================================================================
RCS file: devel/node-fibers/patches/patch-src_Makefile
diff -N devel/node-fibers/patches/patch-src_Makefile
--- devel/node-fibers/patches/patch-src_Makefile        3 Apr 2012 18:46:03 
-0000       1.1.1.1
+++ /dev/null   1 Jan 1970 00:00:00 -0000
@@ -1,22 +0,0 @@
-$OpenBSD: patch-src_Makefile,v 1.1.1.1 2012/04/03 18:46:03 jeremy Exp $
---- src/Makefile.orig  Wed Jan  4 21:24:45 2012
-+++ src/Makefile       Wed Feb  1 14:25:00 2012
-@@ -9,6 +9,9 @@ endif
- ifeq ($(NODE_PLATFORM), darwin)
-       CPP_NODEFLAGS = -bundle -undefined dynamic_lookup
- endif
-+ifeq ($(NODE_PLATFORM), openbsd)
-+       CPP_NODEFLAGS = -fPIC -shared -Wl,-Bdynamic
-+endif
- 
- all: fibers.node
- 
-@@ -19,7 +22,7 @@ coroutine.o: coroutine.cc
-       $(CXX) $(CXXFLAGS) $(CPPFLAGS) -fPIC -c -o $@ $^
- 
- fibers.node: fibers.cc coroutine.o libcoro.o
--      $(CXX) $(CPP_NODEFLAGS) $(CPPFLAGS) $^ -o $@ -lpthread
-+      $(CXX) $(CPP_NODEFLAGS) $(CPPFLAGS) $^ -o $@ -pthread
- 
- clean:
-       -$(RM) fibers.node libcoro.o coroutine.o
Index: devel/node-fibers/patches/patch-src_platform_mk
===================================================================
RCS file: devel/node-fibers/patches/patch-src_platform_mk
diff -N devel/node-fibers/patches/patch-src_platform_mk
--- devel/node-fibers/patches/patch-src_platform_mk     3 Apr 2012 18:46:03 
-0000       1.1.1.1
+++ /dev/null   1 Jan 1970 00:00:00 -0000
@@ -1,30 +0,0 @@
-$OpenBSD: patch-src_platform_mk,v 1.1.1.1 2012/04/03 18:46:03 jeremy Exp $
-
-Enable build on OpenBSD and respect CFLAGS.
-
---- src/platform.mk.orig       Wed Jan  4 21:24:45 2012
-+++ src/platform.mk    Tue Feb  7 14:04:54 2012
-@@ -1,13 +1,13 @@
- # I know nothing about scons, waf, or autoconf. Sorry.
- NODE_PREFIX := $(shell echo 
"console.log(require('path').dirname(require('path').dirname(process.execPath)))"
 | node)
- NODE_PLATFORM := $(shell echo "console.log(process.platform.replace('2', 
''))" | node)
--NODE_BITS := $(shell file `echo "console.log(process.execPath)" | node` | 
egrep -o '[0-9]{2}-bit' | cut -c-2)
-+NODE_BITS := $(shell file `echo "console.log(process.arch.replace(/ia|x/, 
''))" | node`)
- 
- CPPFLAGS = -Wall -Wno-deprecated-declarations -I$(NODE_PREFIX)/include 
-I$(NODE_PREFIX)/include/node
- ifdef DEBUG
-       CPPFLAGS += -ggdb -O0
- else
--      CPPFLAGS += -g -O3 -minline-all-stringops
-+      CPPFLAGS += -g -I${LOCALBASE}/include -I${LOCALBASE}/include/node 
${CFLAGS} -minline-all-stringops
- endif
- 
- ifeq ($(NODE_BITS), )
-@@ -30,4 +30,7 @@ endif
- ifeq ($(NODE_PLATFORM), darwin)
-       # UCONTEXT in os x = hangs & segfaults :(
-       CPPFLAGS += -DCORO_SJLJ
-+endif
-+ifeq ($(NODE_PLATFORM), openbsd)
-+       CPPFLAGS += -DCORO_ASM
- endif
Index: devel/node-fibers/patches/patch-test_js
===================================================================
RCS file: devel/node-fibers/patches/patch-test_js
diff -N devel/node-fibers/patches/patch-test_js
--- /dev/null   1 Jan 1970 00:00:00 -0000
+++ devel/node-fibers/patches/patch-test_js     22 May 2012 20:29:07 -0000
@@ -0,0 +1,16 @@
+$OpenBSD$
+
+Don't change NODE_PATH in regression tests, since build is done
+in separate directory.
+
+--- test.js.orig       Tue May 22 13:28:22 2012
++++ test.js    Tue May 22 13:28:34 2012
+@@ -4,7 +4,7 @@ var spawn = require('child_process').spawn;
+ var path = require('path');
+ 
+ function runTest(test, cb) {
+-      var proc = spawn(process.execPath, [path.join('test', test)], {env: 
{NODE_PATH: __dirname}});
++      var proc = spawn(process.execPath, [path.join('test', test)]);
+       proc.stdout.setEncoding('utf8');
+       proc.stderr.setEncoding('utf8');
+ 
Index: devel/node-fibers/patches/patch-test_sh
===================================================================
RCS file: devel/node-fibers/patches/patch-test_sh
diff -N devel/node-fibers/patches/patch-test_sh
--- devel/node-fibers/patches/patch-test_sh     3 Apr 2012 18:46:03 -0000       
1.1.1.1
+++ /dev/null   1 Jan 1970 00:00:00 -0000
@@ -1,9 +0,0 @@
-$OpenBSD: patch-test_sh,v 1.1.1.1 2012/04/03 18:46:03 jeremy Exp $
---- test.sh.orig       Wed Feb  1 13:47:26 2012
-+++ test.sh    Wed Feb  1 13:47:37 2012
-@@ -1,4 +1,4 @@
--#!/bin/bash
-+#!/bin/sh
- for ii in `ls test`
-       do echo -n $ii': '
-       OUTPUT=$(NODE_PATH=`pwd` node test/$ii 2>&1)
Index: devel/node-fibers/pkg/PLIST
===================================================================
RCS file: /cvs/ports/devel/node-fibers/pkg/PLIST,v
retrieving revision 1.1.1.1
diff -u -p -r1.1.1.1 PLIST
--- devel/node-fibers/pkg/PLIST 3 Apr 2012 18:46:03 -0000       1.1.1.1
+++ devel/node-fibers/pkg/PLIST 26 Jun 2012 21:10:34 -0000
@@ -1,31 +1,56 @@
 @comment $OpenBSD: PLIST,v 1.1.1.1 2012/04/03 18:46:03 jeremy Exp $
-lib/node_modules/
+bin/${FIBERS_ARCH}-v8-3.11
 lib/node_modules/fibers/
 lib/node_modules/fibers/.npmignore
 lib/node_modules/fibers/LICENSE
-lib/node_modules/fibers/Makefile
 lib/node_modules/fibers/README.md
+lib/node_modules/fibers/bin/
+lib/node_modules/fibers/bin/.npmignore
+lib/node_modules/fibers/bin/${FIBERS_ARCH}-v8-3.11/
+@bin lib/node_modules/fibers/bin/${FIBERS_ARCH}-v8-3.11/fibers.node
+lib/node_modules/fibers/binding.gyp
+lib/node_modules/fibers/build/
+lib/node_modules/fibers/build.js
+lib/node_modules/fibers/build/Makefile
+lib/node_modules/fibers/build/Release/
+lib/node_modules/fibers/build/Release/.deps/
+lib/node_modules/fibers/build/Release/.deps/Release/
+lib/node_modules/fibers/build/Release/.deps/Release/fibers.node.d
+lib/node_modules/fibers/build/Release/.deps/Release/obj.target/
+lib/node_modules/fibers/build/Release/.deps/Release/obj.target/fibers/
+lib/node_modules/fibers/build/Release/.deps/Release/obj.target/fibers.node.d
+lib/node_modules/fibers/build/Release/.deps/Release/obj.target/fibers/src/
+lib/node_modules/fibers/build/Release/.deps/Release/obj.target/fibers/src/coroutine.o.d
+lib/node_modules/fibers/build/Release/.deps/Release/obj.target/fibers/src/fibers.o.d
+lib/node_modules/fibers/build/Release/.deps/Release/obj.target/fibers/src/libcoro/
+lib/node_modules/fibers/build/Release/.deps/Release/obj.target/fibers/src/libcoro/coro.o.d
+lib/node_modules/fibers/build/Release/linker.lock
+lib/node_modules/fibers/build/Release/obj.target/
+lib/node_modules/fibers/build/Release/obj.target/fibers/
+@bin lib/node_modules/fibers/build/Release/obj.target/fibers.node
+lib/node_modules/fibers/build/Release/obj.target/fibers/src/
+lib/node_modules/fibers/build/Release/obj.target/fibers/src/coroutine.o
+lib/node_modules/fibers/build/Release/obj.target/fibers/src/fibers.o
+lib/node_modules/fibers/build/Release/obj.target/fibers/src/libcoro/
+lib/node_modules/fibers/build/Release/obj.target/fibers/src/libcoro/coro.o
+lib/node_modules/fibers/build/binding.Makefile
+lib/node_modules/fibers/build/config.gypi
+lib/node_modules/fibers/build/fibers.target.mk
 lib/node_modules/fibers/fibers.js
 lib/node_modules/fibers/future.js
 lib/node_modules/fibers/package.json
 lib/node_modules/fibers/src/
-lib/node_modules/fibers/src/Makefile
 lib/node_modules/fibers/src/coroutine.cc
 lib/node_modules/fibers/src/coroutine.h
-lib/node_modules/fibers/src/coroutine.o
 lib/node_modules/fibers/src/fibers.cc
-@bin lib/node_modules/fibers/src/fibers.node
 lib/node_modules/fibers/src/libcoro/
-lib/node_modules/fibers/src/libcoro.o
 lib/node_modules/fibers/src/libcoro/LICENSE
 lib/node_modules/fibers/src/libcoro/README
 lib/node_modules/fibers/src/libcoro/conftest.c
 lib/node_modules/fibers/src/libcoro/coro.c
 lib/node_modules/fibers/src/libcoro/coro.h
-lib/node_modules/fibers/src/platform.mk
-lib/node_modules/fibers/src/platform.mk.beforesubst
 lib/node_modules/fibers/test/
-lib/node_modules/fibers/test.sh
+lib/node_modules/fibers/test.js
 lib/node_modules/fibers/test/already-running.js
 lib/node_modules/fibers/test/bad-context.js
 lib/node_modules/fibers/test/child-process.js
Index: security/node-bcrypt/Makefile
===================================================================
RCS file: /cvs/ports/security/node-bcrypt/Makefile,v
retrieving revision 1.6
diff -u -p -r1.6 Makefile
--- security/node-bcrypt/Makefile       23 May 2012 15:13:20 -0000      1.6
+++ security/node-bcrypt/Makefile       26 Jun 2012 18:26:06 -0000
@@ -2,11 +2,9 @@
 
 COMMENT =      bcrypt hashing library for nodejs
 
-NPM_VERSION =  0.5.0
+NPM_VERSION =  0.6.0
 NPM_NAME =     bcrypt
 CATEGORIES =   security
-
-REVISION =     2
 
 MAINTAINER =   Jeremy Evans <jer...@openbsd.org>
 
Index: security/node-bcrypt/distinfo
===================================================================
RCS file: /cvs/ports/security/node-bcrypt/distinfo,v
retrieving revision 1.1.1.1
diff -u -p -r1.1.1.1 distinfo
--- security/node-bcrypt/distinfo       3 Apr 2012 18:41:57 -0000       1.1.1.1
+++ security/node-bcrypt/distinfo       26 Jun 2012 18:26:25 -0000
@@ -1,5 +1,5 @@
-MD5 (bcrypt-0.5.0.tgz) = T5VSFwCa2B2nMiCeEZwWow==
-RMD160 (bcrypt-0.5.0.tgz) = AGP59t5Mg7q0eI+weW3tYS/ZBEw=
-SHA1 (bcrypt-0.5.0.tgz) = YS4Br6ElxzMjEPlOUYZCXEgrVfg=
-SHA256 (bcrypt-0.5.0.tgz) = y9mL1aAk5p6sSfkxZXeUTwYWXigo5SD3K7OxDw6csXI=
-SIZE (bcrypt-0.5.0.tgz) = 24369
+MD5 (bcrypt-0.6.0.tgz) = AQwsGpoQuHVmtAHg4zpivw==
+RMD160 (bcrypt-0.6.0.tgz) = GlISXXssl0ey6trK7ECorMTCRdg=
+SHA1 (bcrypt-0.6.0.tgz) = P0nYx4wIh8G0IPB+Sr5uegOHTIE=
+SHA256 (bcrypt-0.6.0.tgz) = rdCKm/VfufXBycH8LS1i7QOYjDv+AM3Zk1je4CReX7I=
+SIZE (bcrypt-0.6.0.tgz) = 24478
Index: security/node-bcrypt/pkg/PLIST
===================================================================
RCS file: /cvs/ports/security/node-bcrypt/pkg/PLIST,v
retrieving revision 1.1.1.1
diff -u -p -r1.1.1.1 PLIST
--- security/node-bcrypt/pkg/PLIST      3 Apr 2012 18:41:57 -0000       1.1.1.1
+++ security/node-bcrypt/pkg/PLIST      26 Jun 2012 18:26:37 -0000
@@ -1,7 +1,5 @@
 @comment $OpenBSD: PLIST,v 1.1.1.1 2012/04/03 18:41:57 jeremy Exp $
-lib/node_modules/
 lib/node_modules/bcrypt/
-lib/node_modules/bcrypt/.lock-wscript
 lib/node_modules/bcrypt/.npmignore
 lib/node_modules/bcrypt/.travis.yml
 lib/node_modules/bcrypt/CHANGELOG
@@ -9,24 +7,32 @@ lib/node_modules/bcrypt/LICENSE
 lib/node_modules/bcrypt/Makefile
 lib/node_modules/bcrypt/README.md
 lib/node_modules/bcrypt/bcrypt.js
+lib/node_modules/bcrypt/binding.gyp
 lib/node_modules/bcrypt/build/
-lib/node_modules/bcrypt/build/.conf_check_0/
-lib/node_modules/bcrypt/build/.conf_check_0/test.cpp
-lib/node_modules/bcrypt/build/.conf_check_0/testbuild/
-lib/node_modules/bcrypt/build/.conf_check_0/testbuild/.wafpickle-7
-lib/node_modules/bcrypt/build/.conf_check_0/testbuild/Release/
-lib/node_modules/bcrypt/build/.conf_check_0/testbuild/Release/test_1.o
-lib/node_modules/bcrypt/build/.wafpickle-7
+lib/node_modules/bcrypt/build/Makefile
 lib/node_modules/bcrypt/build/Release/
+lib/node_modules/bcrypt/build/Release/.deps/
+lib/node_modules/bcrypt/build/Release/.deps/Release/
+lib/node_modules/bcrypt/build/Release/.deps/Release/bcrypt_lib.node.d
+lib/node_modules/bcrypt/build/Release/.deps/Release/obj.target/
+lib/node_modules/bcrypt/build/Release/.deps/Release/obj.target/bcrypt_lib/
+lib/node_modules/bcrypt/build/Release/.deps/Release/obj.target/bcrypt_lib.node.d
+lib/node_modules/bcrypt/build/Release/.deps/Release/obj.target/bcrypt_lib/src/
+lib/node_modules/bcrypt/build/Release/.deps/Release/obj.target/bcrypt_lib/src/bcrypt.o.d
+lib/node_modules/bcrypt/build/Release/.deps/Release/obj.target/bcrypt_lib/src/bcrypt_node.o.d
+lib/node_modules/bcrypt/build/Release/.deps/Release/obj.target/bcrypt_lib/src/blowfish.o.d
 @bin lib/node_modules/bcrypt/build/Release/bcrypt_lib.node
-lib/node_modules/bcrypt/build/Release/src/
-lib/node_modules/bcrypt/build/Release/src/bcrypt_1.o
-lib/node_modules/bcrypt/build/Release/src/bcrypt_node_1.o
-lib/node_modules/bcrypt/build/Release/src/blowfish_1.o
-lib/node_modules/bcrypt/build/c4che/
-lib/node_modules/bcrypt/build/c4che/Release.cache.py
-lib/node_modules/bcrypt/build/c4che/build.config.py
-lib/node_modules/bcrypt/build/config.log
+lib/node_modules/bcrypt/build/Release/linker.lock
+lib/node_modules/bcrypt/build/Release/obj.target/
+lib/node_modules/bcrypt/build/Release/obj.target/bcrypt_lib/
+@bin lib/node_modules/bcrypt/build/Release/obj.target/bcrypt_lib.node
+lib/node_modules/bcrypt/build/Release/obj.target/bcrypt_lib/src/
+lib/node_modules/bcrypt/build/Release/obj.target/bcrypt_lib/src/bcrypt.o
+lib/node_modules/bcrypt/build/Release/obj.target/bcrypt_lib/src/bcrypt_node.o
+lib/node_modules/bcrypt/build/Release/obj.target/bcrypt_lib/src/blowfish.o
+lib/node_modules/bcrypt/build/bcrypt_lib.target.mk
+lib/node_modules/bcrypt/build/binding.Makefile
+lib/node_modules/bcrypt/build/config.gypi
 lib/node_modules/bcrypt/examples/
 lib/node_modules/bcrypt/examples/async_compare.js
 lib/node_modules/bcrypt/examples/forever_gen_salt.js

Reply via email to