Hello community,
here is the log from the commit of package nodejs-combined-stream for
openSUSE:Factory checked in at 2015-08-05 06:51:35
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/nodejs-combined-stream (Old)
and /work/SRC/openSUSE:Factory/.nodejs-combined-stream.new (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "nodejs-combined-stream"
Changes:
--------
---
/work/SRC/openSUSE:Factory/nodejs-combined-stream/nodejs-combined-stream.changes
2015-07-14 17:44:11.000000000 +0200
+++
/work/SRC/openSUSE:Factory/.nodejs-combined-stream.new/nodejs-combined-stream.changes
2015-08-05 06:51:36.000000000 +0200
@@ -1,0 +2,5 @@
+Thu Jul 30 12:09:23 UTC 2015 - [email protected]
+
+- update version 1.0.5
+
+-------------------------------------------------------------------
Old:
----
combined-stream-1.0.1.tgz
New:
----
combined-stream-1.0.5.tgz
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Other differences:
------------------
++++++ nodejs-combined-stream.spec ++++++
--- /var/tmp/diff_new_pack.yKX64K/_old 2015-08-05 06:51:37.000000000 +0200
+++ /var/tmp/diff_new_pack.yKX64K/_new 2015-08-05 06:51:37.000000000 +0200
@@ -19,7 +19,7 @@
%define base_name combined-stream
Name: nodejs-combined-stream
-Version: 1.0.1
+Version: 1.0.5
Release: 0
Summary: A stream that emits multiple other streams one after another
License: MIT
@@ -41,13 +41,13 @@
%build
%install
-mkdir -p %{buildroot}%{nodejs_modulesdir}/%{base_name}
+mkdir -p %{buildroot}%{nodejs_sitelib}/%{base_name}
cp -pr package.json lib \
- %{buildroot}%{nodejs_modulesdir}/%{base_name}/
+ %{buildroot}%{nodejs_sitelib}/%{base_name}/
%files
%defattr(-,root,root,-)
%doc Readme.md License
-%{nodejs_modulesdir}/%{base_name}
+%{nodejs_sitelib}/%{base_name}
%changelog
++++++ combined-stream-1.0.1.tgz -> combined-stream-1.0.5.tgz ++++++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn'
'--exclude=.svnignore' old/package/Readme.md new/package/Readme.md
--- old/package/Readme.md 2015-05-04 22:17:47.000000000 +0200
+++ new/package/Readme.md 2015-06-14 17:08:32.000000000 +0200
@@ -1,7 +1,13 @@
-# combined-stream [](https://travis-ci.org/felixge/node-combined-stream)
+# combined-stream
A stream that emits multiple other streams one after another.
+**NB** Currently `combined-stream` works with streams vesrion 1 only. There is
ongoing effort to switch this library to streams version 2. Any help is
welcome. :) Meanwhile you can explore other libraries that provide streams2
support with more or less compatability with `combined-stream`.
+
+- [combined-stream2](https://www.npmjs.com/package/combined-stream2): A
drop-in streams2-compatible replacement for the combined-stream module.
+
+- [multistream](https://www.npmjs.com/package/multistream): A stream that
emits multiple other streams one after another.
+
## Installation
``` bash
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn'
'--exclude=.svnignore' old/package/package.json new/package/package.json
--- old/package/package.json 2015-05-05 03:13:19.000000000 +0200
+++ new/package/package.json 2015-06-15 05:18:49.000000000 +0200
@@ -2,7 +2,7 @@
"author": "Felix Geisendörfer <[email protected]>
(http://debuggable.com/)",
"name": "combined-stream",
"description": "A stream that emits multiple other streams one after
another.",
- "version": "1.0.1",
+ "version": "1.0.5",
"homepage": "https://github.com/felixge/node-combined-stream",
"repository": {
"type": "git",
@@ -16,9 +16,10 @@
"node": ">= 0.8"
},
"dependencies": {
- "delayed-stream": "^1.0.0"
+ "delayed-stream": "~1.0.0"
},
"devDependencies": {
"far": "~0.0.7"
- }
+ },
+ "license": "MIT"
}