Hello community,

here is the log from the commit of package nodejs-glob for openSUSE:Factory 
checked in at 2015-08-05 06:51:02
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/nodejs-glob (Old)
 and      /work/SRC/openSUSE:Factory/.nodejs-glob.new (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Package is "nodejs-glob"

Changes:
--------
--- /work/SRC/openSUSE:Factory/nodejs-glob/nodejs-glob.changes  2015-07-12 
22:52:05.000000000 +0200
+++ /work/SRC/openSUSE:Factory/.nodejs-glob.new/nodejs-glob.changes     
2015-08-05 06:51:06.000000000 +0200
@@ -1,0 +2,5 @@
+Wed Jul 29 14:02:35 UTC 2015 - i...@marguerite.su
+
+- update version 5.0.14
+
+-------------------------------------------------------------------

Old:
----
  glob-5.0.13.tgz

New:
----
  glob-5.0.14.tgz

++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Other differences:
------------------
++++++ nodejs-glob.spec ++++++
--- /var/tmp/diff_new_pack.7RJf2K/_old  2015-08-05 06:51:07.000000000 +0200
+++ /var/tmp/diff_new_pack.7RJf2K/_new  2015-08-05 06:51:07.000000000 +0200
@@ -19,7 +19,7 @@
 %define base_name glob
 
 Name:           nodejs-glob
-Version:        5.0.13
+Version:        5.0.14
 Release:        0
 Summary:        File Globbing
 License:        ISC

++++++ glob-5.0.13.tgz -> glob-5.0.14.tgz ++++++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/package/glob.js new/package/glob.js
--- old/package/glob.js 2015-07-02 22:23:54.000000000 +0200
+++ new/package/glob.js 2015-07-15 03:26:47.000000000 +0200
@@ -556,6 +556,7 @@
 
   // handle errors, and cache the information
   switch (er.code) {
+    case 'ENOTSUP': // https://github.com/isaacs/node-glob/issues/205
     case 'ENOTDIR': // totally normal. means it *does* exist.
       this.cache[this._makeAbs(f)] = 'FILE'
       break
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/package/package.json new/package/package.json
--- old/package/package.json    2015-07-02 23:29:10.000000000 +0200
+++ new/package/package.json    2015-07-15 03:34:46.000000000 +0200
@@ -2,7 +2,7 @@
   "author": "Isaac Z. Schlueter <i...@izs.me> (http://blog.izs.me/)",
   "name": "glob",
   "description": "a little globber",
-  "version": "5.0.13",
+  "version": "5.0.14",
   "repository": {
     "type": "git",
     "url": "git://github.com/isaacs/node-glob.git"
@@ -36,7 +36,7 @@
     "test-regen": "npm run profclean && TEST_REGEN=1 node test/00-setup.js",
     "bench": "bash benchmark.sh",
     "prof": "bash prof.sh && cat profile.txt",
-    "benchclean": "bash benchclean.sh"
+    "benchclean": "node benchclean.js"
   },
   "license": "ISC"
 }
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/package/sync.js new/package/sync.js
--- old/package/sync.js 2015-05-21 18:44:38.000000000 +0200
+++ new/package/sync.js 2015-07-15 03:26:33.000000000 +0200
@@ -57,7 +57,7 @@
       for (var p in matchset) {
         try {
           p = self._makeAbs(p)
-          var real = fs.realpathSync(p, this.realpathCache)
+          var real = fs.realpathSync(p, self.realpathCache)
           set[real] = true
         } catch (er) {
           if (er.syscall === 'stat')
@@ -303,6 +303,7 @@
 GlobSync.prototype._readdirError = function (f, er) {
   // handle errors, and cache the information
   switch (er.code) {
+    case 'ENOTSUP': // https://github.com/isaacs/node-glob/issues/205
     case 'ENOTDIR': // totally normal. means it *does* exist.
       this.cache[this._makeAbs(f)] = 'FILE'
       break


Reply via email to