commit nodejs-fstream-npm for openSUSE:Factory

2015-07-02 Thread h_root
Hello community,

here is the log from the commit of package nodejs-fstream-npm for 
openSUSE:Factory checked in at 2015-07-02 22:32:39

Comparing /work/SRC/openSUSE:Factory/nodejs-fstream-npm (Old)
 and  /work/SRC/openSUSE:Factory/.nodejs-fstream-npm.new (New)


Package is nodejs-fstream-npm

Changes:

--- /work/SRC/openSUSE:Factory/nodejs-fstream-npm/nodejs-fstream-npm.changes
2015-04-27 13:01:07.0 +0200
+++ 
/work/SRC/openSUSE:Factory/.nodejs-fstream-npm.new/nodejs-fstream-npm.changes   
2015-07-02 22:32:40.0 +0200
@@ -1,0 +2,5 @@
+Fri Apr 24 12:08:30 UTC 2015 - hvo...@suse.com
+
+- Update to version 1.0.2
+
+---

Old:

  fstream-npm-1.0.0.tgz

New:

  fstream-npm-1.0.2.tgz



Other differences:
--
++ nodejs-fstream-npm.spec ++
--- /var/tmp/diff_new_pack.HWopDM/_old  2015-07-02 22:32:41.0 +0200
+++ /var/tmp/diff_new_pack.HWopDM/_new  2015-07-02 22:32:41.0 +0200
@@ -19,7 +19,7 @@
 %define base_name fstream-npm
 
 Name:   nodejs-fstream-npm
-Version:1.0.0
+Version:1.0.2
 Release:0
 Summary:An fstream DirReader class
 License:ISC

++ fstream-npm-1.0.0.tgz - fstream-npm-1.0.2.tgz ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/package/.npmignore new/package/.npmignore
--- old/package/.npmignore  2012-03-27 07:52:47.0 +0200
+++ new/package/.npmignore  2015-03-20 08:05:59.0 +0100
@@ -1,2 +1,3 @@
 # ignore the output junk from the example scripts
 example/output
+node_modules/
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/package/example/dir-tar.js 
new/package/example/dir-tar.js
--- old/package/example/dir-tar.js  2012-03-27 02:58:21.0 +0200
+++ new/package/example/dir-tar.js  2015-03-20 08:05:59.0 +0100
@@ -1,18 +1,18 @@
 // this will show what ends up in the fstream-npm package
-var P = require(fstream).DirReader
-var tar = require(tar)
+var P = require('fstream').DirReader
+var tar = require('tar')
 function f (entry) {
-  return entry.basename !== .git
+  return entry.basename !== '.git'
 }
 
-new P({ path: ./, type: Directory, Directory: true, filter: f })
-  .on(package, function (p) {
-console.error(package, p)
+new P({ path: './', type: 'Directory', Directory: true, filter: f })
+  .on('package', function (p) {
+console.error('package', p)
   })
-  .on(ignoreFile, function (e) {
-console.error(ignoreFile, e)
+  .on('ignoreFile', function (e) {
+console.error('ignoreFile', e)
   })
-  .on(entry, function (e) {
+  .on('entry', function (e) {
 console.error(e.constructor.name, e.path.substr(e.root.path.length + 1))
   })
   .pipe(tar.Pack())
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/package/example/dir.js new/package/example/dir.js
--- old/package/example/dir.js  2012-03-27 06:22:13.0 +0200
+++ new/package/example/dir.js  2015-03-20 08:05:59.0 +0100
@@ -1,25 +1,25 @@
 // this will show what ends up in the fstream-npm package
-var P = require(../)
-var DW = require(fstream).DirWriter
+var P = require('../')
+var DW = require('fstream').DirWriter
 
-var target = new DW({ Directory: true, type: Directory,
-  path: __dirname + /output})
+var target = new DW({ Directory: true, type: 'Directory',
+  path: __dirname + '/output'})
 
 function f (entry) {
-  return entry.basename !== .git
+  return entry.basename !== '.git'
 }
 
-P({ path: ./, type: Directory, isDirectory: true, filter: f })
-  .on(package, function (p) {
-console.error(package, p)
+P({ path: './', type: 'Directory', isDirectory: true, filter: f })
+  .on('package', function (p) {
+console.error('package', p)
   })
-  .on(ignoreFile, function (e) {
-console.error(ignoreFile, e)
+  .on('ignoreFile', function (e) {
+console.error('ignoreFile', e)
   })
-  .on(entry, function (e) {
+  .on('entry', function (e) {
 console.error(e.constructor.name, e.path)
   })
   .pipe(target)
-  .on(end, function () {
-console.error(ended)
+  .on('end', function () {
+console.error('ended')
   })
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/package/example/example.js 
new/package/example/example.js
--- old/package/example/example.js  2012-03-27 07:53:51.0 +0200
+++ new/package/example/example.js  2015-03-20 08:05:59.0 +0100
@@ -1,12 +1,12 @@
 // this will show what ends up in the fstream-npm package
-var P = require(../)
-P({ path: ./ })
-  .on(package, function (p) {
-

commit nodejs-fstream-npm for openSUSE:Factory

2015-04-27 Thread h_root
Hello community,

here is the log from the commit of package nodejs-fstream-npm for 
openSUSE:Factory checked in at 2015-04-27 13:01:05

Comparing /work/SRC/openSUSE:Factory/nodejs-fstream-npm (Old)
 and  /work/SRC/openSUSE:Factory/.nodejs-fstream-npm.new (New)


Package is nodejs-fstream-npm

Changes:

--- /work/SRC/openSUSE:Factory/nodejs-fstream-npm/nodejs-fstream-npm.changes
2014-11-24 11:12:54.0 +0100
+++ 
/work/SRC/openSUSE:Factory/.nodejs-fstream-npm.new/nodejs-fstream-npm.changes   
2015-04-27 13:01:07.0 +0200
@@ -1,0 +2,5 @@
+Sat Apr  4 06:39:27 UTC 2015 - dmuel...@suse.com
+
+- enable building for all arches
+
+---



Other differences:
--
++ nodejs-fstream-npm.spec ++
--- /var/tmp/diff_new_pack.vWpg81/_old  2015-04-27 13:01:07.0 +0200
+++ /var/tmp/diff_new_pack.vWpg81/_new  2015-04-27 13:01:07.0 +0200
@@ -1,7 +1,7 @@
 #
 # spec file for package nodejs-fstream-npm
 #
-# Copyright (c) 2014 SUSE LINUX Products GmbH, Nuernberg, Germany.
+# Copyright (c) 2015 SUSE LINUX GmbH, Nuernberg, Germany.
 #
 # All modifications and additions to the file contributed by third parties
 # remain the property of their copyright owners, unless otherwise agreed
@@ -29,7 +29,6 @@
 BuildRequires:  nodejs-packaging
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build
 BuildArch:  noarch
-ExclusiveArch:  %{ix86} x86_64 %{arm} noarch
 
 %nodejs_find_provides_and_requires
 




commit nodejs-fstream-npm for openSUSE:Factory

2014-11-24 Thread h_root
Hello community,

here is the log from the commit of package nodejs-fstream-npm for 
openSUSE:Factory checked in at 2014-11-24 11:12:52

Comparing /work/SRC/openSUSE:Factory/nodejs-fstream-npm (Old)
 and  /work/SRC/openSUSE:Factory/.nodejs-fstream-npm.new (New)


Package is nodejs-fstream-npm

Changes:

--- /work/SRC/openSUSE:Factory/nodejs-fstream-npm/nodejs-fstream-npm.changes
2014-09-23 10:46:10.0 +0200
+++ 
/work/SRC/openSUSE:Factory/.nodejs-fstream-npm.new/nodejs-fstream-npm.changes   
2014-11-24 11:12:54.0 +0100
@@ -1,0 +2,5 @@
+Thu Oct  9 15:08:07 UTC 2014 - jgleiss...@suse.com
+
+- use nodejs-packaging for building
+
+---



Other differences:
--
++ nodejs-fstream-npm.spec ++
--- /var/tmp/diff_new_pack.WSmGF2/_old  2014-11-24 11:12:54.0 +0100
+++ /var/tmp/diff_new_pack.WSmGF2/_new  2014-11-24 11:12:54.0 +0100
@@ -26,13 +26,12 @@
 Group:  Development/Languages/Other
 Url:https://github.com/isaacs/fstream-npm
 Source: 
http://registry.npmjs.org/%{base_name}/-/%{base_name}-%{version}.tgz
-Requires:   nodejs-fstream-ignore
-Requires:   nodejs-inherits
-BuildRequires:  nodejs
+BuildRequires:  nodejs-packaging
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build
 BuildArch:  noarch
 ExclusiveArch:  %{ix86} x86_64 %{arm} noarch
-%{?nodejs_requires}
+
+%nodejs_find_provides_and_requires
 
 %description
 This is an fstream DirReader class that will read a directory and filter 
things according to the semantics of what goes in an npm package. 

-- 
To unsubscribe, e-mail: opensuse-commit+unsubscr...@opensuse.org
For additional commands, e-mail: opensuse-commit+h...@opensuse.org