commit nodejs-delayed-stream for openSUSE:Factory

2015-07-12 Thread h_root
Hello community,

here is the log from the commit of package nodejs-delayed-stream for 
openSUSE:Factory checked in at 2015-07-12 22:52:01

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


Package is nodejs-delayed-stream

Changes:

--- 
/work/SRC/openSUSE:Factory/nodejs-delayed-stream/nodejs-delayed-stream.changes  
2015-04-27 13:00:52.0 +0200
+++ 
/work/SRC/openSUSE:Factory/.nodejs-delayed-stream.new/nodejs-delayed-stream.changes
 2015-07-12 22:52:04.0 +0200
@@ -1,0 +2,5 @@
+Sat Jul  4 13:50:11 UTC 2015 - i...@marguerite.su
+
+- update version 1.0.0
+
+---

Old:

  delayed-stream-0.0.5.tgz

New:

  delayed-stream-1.0.0.tgz



Other differences:
--
++ nodejs-delayed-stream.spec ++
--- /var/tmp/diff_new_pack.Z5ZQ8s/_old  2015-07-12 22:52:05.0 +0200
+++ /var/tmp/diff_new_pack.Z5ZQ8s/_new  2015-07-12 22:52:05.0 +0200
@@ -19,7 +19,7 @@
 %define base_name delayed-stream
 
 Name:   nodejs-delayed-stream
-Version:0.0.5
+Version:1.0.0
 Release:0
 Summary:Buffers events from a stream until you are ready to handle them
 License:MIT

++ delayed-stream-0.0.5.tgz - delayed-stream-1.0.0.tgz ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/package/.gitignore new/package/.gitignore
--- old/package/.gitignore  2011-05-24 10:09:44.0 +0200
+++ new/package/.gitignore  1970-01-01 01:00:00.0 +0100
@@ -1,2 +0,0 @@
-*.un~
-/node_modules/*
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/package/.npmignore new/package/.npmignore
--- old/package/.npmignore  1970-01-01 01:00:00.0 +0100
+++ new/package/.npmignore  2015-04-30 23:53:19.0 +0200
@@ -0,0 +1 @@
+test
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/package/Readme.md new/package/Readme.md
--- old/package/Readme.md   2011-05-24 10:09:44.0 +0200
+++ new/package/Readme.md   2015-04-27 20:43:32.0 +0200
@@ -108,19 +108,6 @@
 If you know what you are doing, you can set this property to `Infinity` to
 disable this feature. You can also modify this property during runtime.
 
-### delayedStream.maxDataSize = 1024 * 1024
-
-The amount of data to buffer before emitting an `error`.
-
-If the underlaying source is emitting `Buffer` objects, the `maxDataSize`
-refers to bytes.
-
-If the underlaying source is emitting JavaScript strings, the size refers to
-characters.
-
-If you know what you are doing, you can set this property to `Infinity` to
-disable this feature.
-
 ### delayedStream.dataSize = 0
 
 The amount of data buffered so far.
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/package/lib/delayed_stream.js 
new/package/lib/delayed_stream.js
--- old/package/lib/delayed_stream.js   2011-05-24 10:09:44.0 +0200
+++ new/package/lib/delayed_stream.js   2015-04-27 20:49:04.0 +0200
@@ -38,10 +38,18 @@
   return delayedStream;
 };
 
-DelayedStream.prototype.__defineGetter__('readable', function() {
-  return this.source.readable;
+Object.defineProperty(DelayedStream.prototype, 'readable', {
+  configurable: true,
+  enumerable: true,
+  get: function() {
+return this.source.readable;
+  }
 });
 
+DelayedStream.prototype.setEncoding = function() {
+  return this.source.setEncoding.apply(this.source, arguments);
+};
+
 DelayedStream.prototype.resume = function() {
   if (!this._released) {
 this.release();
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/package/package.json new/package/package.json
--- old/package/package.json2011-05-24 10:09:44.0 +0200
+++ new/package/package.json2015-05-01 00:05:51.0 +0200
@@ -1,8 +1,12 @@
 {
   author: Felix Geisendörfer fe...@debuggable.com 
(http://debuggable.com/),
+  contributors: [
+Mike Atkins apeher...@gmail.com
+  ],
   name: delayed-stream,
   description: Buffers events from a stream until you are ready to handle 
them.,
-  version: 0.0.5,
+  license: MIT,
+  version: 1.0.0,
   homepage: https://github.com/felixge/node-delayed-stream;,
   repository: {
 type: git,
@@ -12,9 +16,12 @@
   engines: {
 node: =0.4.0
   },
+  scripts: {
+test: make test
+  },
   dependencies: {},
   devDependencies: {
 fake: 0.2.0,
 far: 0.0.1
   }
-}
\ No newline at end of file
+}
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/package/test/common.js 

commit nodejs-delayed-stream for openSUSE:Factory

2015-04-27 Thread h_root
Hello community,

here is the log from the commit of package nodejs-delayed-stream for 
openSUSE:Factory checked in at 2015-04-27 13:00:50

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


Package is nodejs-delayed-stream

Changes:

--- 
/work/SRC/openSUSE:Factory/nodejs-delayed-stream/nodejs-delayed-stream.changes  
2014-10-24 10:46:27.0 +0200
+++ 
/work/SRC/openSUSE:Factory/.nodejs-delayed-stream.new/nodejs-delayed-stream.changes
 2015-04-27 13:00:52.0 +0200
@@ -1,0 +2,5 @@
+Sat Apr  4 06:38:58 UTC 2015 - dmuel...@suse.com
+
+- enable building for all arches
+
+---



Other differences:
--
++ nodejs-delayed-stream.spec ++
--- /var/tmp/diff_new_pack.dXLZwS/_old  2015-04-27 13:00:52.0 +0200
+++ /var/tmp/diff_new_pack.dXLZwS/_new  2015-04-27 13:00:52.0 +0200
@@ -1,7 +1,7 @@
 #
 # spec file for package nodejs-delayed-stream
 #
-# 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-delayed-stream for openSUSE:Factory

2014-10-24 Thread h_root
Hello community,

here is the log from the commit of package nodejs-delayed-stream for 
openSUSE:Factory checked in at 2014-10-24 10:46:25

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


Package is nodejs-delayed-stream

Changes:

--- 
/work/SRC/openSUSE:Factory/nodejs-delayed-stream/nodejs-delayed-stream.changes  
2014-09-23 17:17:19.0 +0200
+++ 
/work/SRC/openSUSE:Factory/.nodejs-delayed-stream.new/nodejs-delayed-stream.changes
 2014-10-24 10:46:27.0 +0200
@@ -1,0 +2,5 @@
+Thu Oct  9 15:08:00 UTC 2014 - jgleiss...@suse.com
+
+- use nodejs-packaging for building
+
+---



Other differences:
--
++ nodejs-delayed-stream.spec ++
--- /var/tmp/diff_new_pack.NR8mEU/_old  2014-10-24 10:46:27.0 +0200
+++ /var/tmp/diff_new_pack.NR8mEU/_new  2014-10-24 10:46:27.0 +0200
@@ -26,11 +26,12 @@
 Group:  Development/Languages/Other
 Url:https://github.com/felixge/node-delayed-stream
 Source: 
http://registry.npmjs.org/%{base_name}/-/%{base_name}-%{version}.tgz
-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
 Buffers events from a stream until you are ready to handle them.

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



commit nodejs-delayed-stream for openSUSE:Factory

2014-09-23 Thread h_root
Hello community,

here is the log from the commit of package nodejs-delayed-stream for 
openSUSE:Factory checked in at 2014-09-23 17:17:18

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


Package is nodejs-delayed-stream

Changes:

New Changes file:

--- /dev/null   2014-07-24 01:57:42.080040256 +0200
+++ 
/work/SRC/openSUSE:Factory/.nodejs-delayed-stream.new/nodejs-delayed-stream.changes
 2014-09-23 17:17:19.0 +0200
@@ -0,0 +1,5 @@
+---
+Mon Sep 22 09:46:52 UTC 2014 - i...@marguerite.su
+
+- initial version 0.0.5
+

New:

  delayed-stream-0.0.5.tgz
  nodejs-delayed-stream.changes
  nodejs-delayed-stream.spec



Other differences:
--
++ nodejs-delayed-stream.spec ++
#
# spec file for package nodejs-delayed-stream
#
# Copyright (c) 2014 SUSE LINUX Products GmbH, Nuernberg, Germany.
#
# All modifications and additions to the file contributed by third parties
# remain the property of their copyright owners, unless otherwise agreed
# upon. The license for this file, and modifications and additions to the
# file, is the same license as for the pristine package itself (unless the
# license for the pristine package is not an Open Source License, in which
# case the license is the MIT License). An Open Source License is a
# license that conforms to the Open Source Definition (Version 1.9)
# published by the Open Source Initiative.

# Please submit bugfixes or comments via http://bugs.opensuse.org/
#


%define base_name delayed-stream

Name:   nodejs-delayed-stream
Version:0.0.5
Release:0
Summary:Buffers events from a stream until you are ready to handle them
License:MIT
Group:  Development/Languages/Other
Url:https://github.com/felixge/node-delayed-stream
Source: 
http://registry.npmjs.org/%{base_name}/-/%{base_name}-%{version}.tgz
BuildRequires:  nodejs
BuildRoot:  %{_tmppath}/%{name}-%{version}-build
BuildArch:  noarch
ExclusiveArch:  %{ix86} x86_64 %{arm} noarch
%{?nodejs_requires}

%description
Buffers events from a stream until you are ready to handle them.

%prep
%setup -q -n package

%build

%install
mkdir -p %{buildroot}%{nodejs_modulesdir}/%{base_name}
cp -pr package.json lib \
%{buildroot}%{nodejs_modulesdir}/%{base_name}/

%files
%defattr(-,root,root,-)
%doc Readme.md License
%{nodejs_modulesdir}/%{base_name}

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