[Pkg-javascript-commits] [node-glob] 01/01: Imported Upstream version 2.1.0

Jérémy Lal kapouer at moszumanska.debian.org
Tue Jul 29 00:11:28 UTC 2014


This is an automated email from the git hooks/post-receive script.

kapouer pushed a commit to annotated tag upstream/2.1.0
in repository node-glob.

commit 57da7382538f18571a1952668b7775e277b0043a
Author: David Paleino <dapal at debian.org>
Date:   Sat Dec 31 11:54:13 2011 +0100

    Imported Upstream version 2.1.0
---
 lib/glob.js  | 4 ++--
 package.json | 6 +++---
 src/glob.cc  | 3 +--
 3 files changed, 6 insertions(+), 7 deletions(-)

diff --git a/lib/glob.js b/lib/glob.js
index 07de722..7ccd3f5 100644
--- a/lib/glob.js
+++ b/lib/glob.js
@@ -1,8 +1,8 @@
 // the nice wrapper around the raw C++ binding.
 
 var binding = require(process.env.GLOB_DEBUG != undefined
-                     ? "../build/default/glob_g"
-                     : "../build/default/glob")
+                     ? "../build/Release/glob_g"
+                     : "../build/Release/glob")
 
 module.exports = glob
 glob.glob = glob
diff --git a/package.json b/package.json
index 2f44041..972953f 100644
--- a/package.json
+++ b/package.json
@@ -1,11 +1,11 @@
 { "name" : "glob"
 , "description" : "glob/fnmatch binding for node"
 , "author" : "Isaac Z. Schlueter <i at izs.me> (http://blog.izs.me/)"
-, "version" : "2.0.9"
+, "version" : "2.1.0"
 , "main" : "./lib/glob"
 , "repository" : "git://github.com/isaacs/node-glob.git"
 , "homepage" : "https://github.com/isaacs/node-glob"
 , "keywords" : ["glob", "pattern", "match", "filesystem", "posix", "fnmatch"]
-, "bugs" : { "web" : "https://github.com/isaacs/node-glob/issues" }
-, "engines": { "node": "0.4" }
+, "bugs" : { "url" : "https://github.com/isaacs/node-glob/issues" }
+, "engines": { "node": "0.6" }
 }
diff --git a/src/glob.cc b/src/glob.cc
index 17ba568..ca3e6ae 100644
--- a/src/glob.cc
+++ b/src/glob.cc
@@ -80,12 +80,11 @@ struct glob_request {
   int flags;
   char pattern[1];
 };
-static int EIO_Glob (eio_req *req) {
+static void EIO_Glob (eio_req *req) {
   glob_request *gr = (glob_request *)req->data;
   debug_p("EIO_Glob pattern=%s\n", gr->pattern);
   gr->retval = myglob(gr->pattern, gr->flags, NULL, gr->g);
   debug_p("EIO_Glob retval=%i\n", gr->retval);
-  return 0;
 }
 static int EIO_GlobAfter (eio_req *req) {
   HandleScope scope;

-- 
Alioth's /usr/local/bin/git-commit-notice on /srv/git.debian.org/git/pkg-javascript/node-glob.git



More information about the Pkg-javascript-commits mailing list