commit nodejs-async for openSUSE:Factory

2015-08-04 Thread h_root
Hello community,

here is the log from the commit of package nodejs-async for openSUSE:Factory 
checked in at 2015-08-05 06:51:32

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


Package is "nodejs-async"

Changes:

--- /work/SRC/openSUSE:Factory/nodejs-async/nodejs-async.changes
2015-06-30 10:16:54.0 +0200
+++ /work/SRC/openSUSE:Factory/.nodejs-async.new/nodejs-async.changes   
2015-08-05 06:51:33.0 +0200
@@ -1,0 +2,5 @@
+Thu Jul 30 12:06:24 UTC 2015 - i...@marguerite.su
+
+- update version 1.4.0
+
+---

Old:

  async-0.9.2.tgz

New:

  async-1.4.0.tgz



Other differences:
--
++ nodejs-async.spec ++
--- /var/tmp/diff_new_pack.4bZ71U/_old  2015-08-05 06:51:34.0 +0200
+++ /var/tmp/diff_new_pack.4bZ71U/_new  2015-08-05 06:51:34.0 +0200
@@ -19,7 +19,7 @@
 %define base_name async
 
 Name:   nodejs-async
-Version:0.9.2
+Version:1.4.0
 Release:0
 Summary:Higher-order functions and common patterns for asynchronous 
code
 License:MIT
@@ -42,13 +42,13 @@
 %build
 
 %install
-mkdir -p %{buildroot}%{nodejs_modulesdir}/%{base_name}
-cp -pr *.json lib support \
-%{buildroot}%{nodejs_modulesdir}/%{base_name}/
+mkdir -p %{buildroot}%{nodejs_sitelib}/%{base_name}
+cp -pr package.json lib support \
+%{buildroot}%{nodejs_sitelib}/%{base_name}/
 
 %files
 %defattr(-,root,root,-)
-%doc LICENSE README.md
-%{nodejs_modulesdir}/%{base_name}
+%doc LICENSE README.md CHANGELOG.md
+%{nodejs_sitelib}/%{base_name}
 
 %changelog

++ async-0.9.2.tgz -> async-1.4.0.tgz ++
 3302 lines of diff (skipped)




commit nodejs-async for openSUSE:Factory

2015-06-30 Thread h_root
Hello community,

here is the log from the commit of package nodejs-async for openSUSE:Factory 
checked in at 2015-06-30 10:16:52

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


Package is "nodejs-async"

Changes:

--- /work/SRC/openSUSE:Factory/nodejs-async/nodejs-async.changes
2015-04-27 13:00:02.0 +0200
+++ /work/SRC/openSUSE:Factory/.nodejs-async.new/nodejs-async.changes   
2015-06-30 10:16:54.0 +0200
@@ -1,0 +2,5 @@
+Fri Jun 26 17:10:12 UTC 2015 - i...@marguerite.su
+
+- update version 0.9.2
+
+---

Old:

  async-0.9.0.tgz

New:

  async-0.9.2.tgz



Other differences:
--
++ nodejs-async.spec ++
--- /var/tmp/diff_new_pack.5jJxuI/_old  2015-06-30 10:16:55.0 +0200
+++ /var/tmp/diff_new_pack.5jJxuI/_new  2015-06-30 10:16:55.0 +0200
@@ -19,7 +19,7 @@
 %define base_name async
 
 Name:   nodejs-async
-Version:0.9.0
+Version:0.9.2
 Release:0
 Summary:Higher-order functions and common patterns for asynchronous 
code
 License:MIT
@@ -43,7 +43,7 @@
 
 %install
 mkdir -p %{buildroot}%{nodejs_modulesdir}/%{base_name}
-cp -pr *.json lib \
+cp -pr *.json lib support \
 %{buildroot}%{nodejs_modulesdir}/%{base_name}/
 
 %files

++ async-0.9.0.tgz -> async-0.9.2.tgz ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/package/.travis.yml new/package/.travis.yml
--- old/package/.travis.yml 2014-03-30 12:42:31.0 +0200
+++ new/package/.travis.yml 2015-05-19 10:44:23.0 +0200
@@ -1,3 +1,5 @@
 language: node_js
 node_js:
   - "0.10"
+  - "0.12"
+  - "iojs"
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/package/README.md new/package/README.md
--- old/package/README.md   2014-05-16 12:20:03.0 +0200
+++ new/package/README.md   2015-05-19 10:44:23.0 +0200
@@ -5,8 +5,16 @@
 
 Async is a utility module which provides straight-forward, powerful functions
 for working with asynchronous JavaScript. Although originally designed for
-use with [Node.js](http://nodejs.org), it can also be used directly in the
-browser. Also supports [component](https://github.com/component/component).
+use with [Node.js](http://nodejs.org) and installable via `npm install async`,
+it can also be used directly in the browser.
+
+Async is also installable via:
+
+- [bower](http://bower.io/): `bower install async`
+- [component](https://github.com/component/component): `component install
+  caolan/async`
+- [jam](http://jamjs.org/): `jam install async`
+- [spm](http://spmjs.io/): `spm install async`
 
 Async provides around 20 functions that include the usual 'functional'
 suspects (`map`, `reduce`, `filter`, `each`…) as well as some common patterns
@@ -182,7 +190,7 @@
 * `arr` - An array to iterate over.
 * `iterator(item, callback)` - A function to apply to each item in `arr`.
   The iterator is passed a `callback(err)` which must be called once it has 
-  completed. If no error has occured, the `callback` should be run without 
+  completed. If no error has occurred, the `callback` should be run without 
   arguments or with an explicit `null` argument.
 * `callback(err)` - A callback which is called when all `iterator` functions
   have finished, or an error occurs.
@@ -202,7 +210,7 @@
 ```js
 // assuming openFiles is an array of file names 
 
-async.each(openFiles, function( file, callback) {
+async.each(openFiles, function(file, callback) {
   
   // Perform operation on file here.
   console.log('Processing file ' + file);
@@ -256,7 +264,7 @@
 * `limit` - The maximum number of `iterator`s to run at any time.
 * `iterator(item, callback)` - A function to apply to each item in `arr`.
   The iterator is passed a `callback(err)` which must be called once it has 
-  completed. If no error has occured, the callback should be run without 
+  completed. If no error has occurred, the callback should be run without 
   arguments or with an explicit `null` argument.
 * `callback(err)` - A callback which is called when all `iterator` functions
   have finished, or an error occurs.
@@ -280,7 +288,7 @@
 Produces a new array of values by mapping each value in `arr` through
 the `iterator` function. The `iterator` is called with an item from `arr` and a
 callback for when it has finished processing. Each of these callback takes 2 
arguments: 
-an `error`, and the transformed item from `arr`. If `iterator` passes an error 
to this 
+an `error`, and the transformed item from `arr`. If `iterator` passes an error 
to his 
 callback, the main `cal

commit nodejs-async for openSUSE:Factory

2015-04-27 Thread h_root
Hello community,

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

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


Package is "nodejs-async"

Changes:

--- /work/SRC/openSUSE:Factory/nodejs-async/nodejs-async.changes
2014-10-24 10:46:00.0 +0200
+++ /work/SRC/openSUSE:Factory/.nodejs-async.new/nodejs-async.changes   
2015-04-27 13:00:02.0 +0200
@@ -1,0 +2,5 @@
+Sat Apr  4 06:36:47 UTC 2015 - dmuel...@suse.com
+
+- enable building for all arches
+
+---



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

2014-10-24 Thread h_root
Hello community,

here is the log from the commit of package nodejs-async for openSUSE:Factory 
checked in at 2014-10-24 10:45:59

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


Package is "nodejs-async"

Changes:

--- /work/SRC/openSUSE:Factory/nodejs-async/nodejs-async.changes
2014-09-23 17:17:06.0 +0200
+++ /work/SRC/openSUSE:Factory/.nodejs-async.new/nodejs-async.changes   
2014-10-24 10:46:00.0 +0200
@@ -1,0 +2,5 @@
+Thu Oct  9 15:07:36 UTC 2014 - jgleiss...@suse.com
+
+- use nodejs-packaging for building
+
+---



Other differences:
--
++ nodejs-async.spec ++
--- /var/tmp/diff_new_pack.YtC7cJ/_old  2014-10-24 10:46:00.0 +0200
+++ /var/tmp/diff_new_pack.YtC7cJ/_new  2014-10-24 10:46:00.0 +0200
@@ -26,11 +26,12 @@
 Group:  Development/Languages/Other
 Url:https://github.com/caolan/async
 Source0:
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
 Node.js async module. Higher-order functions and common patterns for 
asynchronous code.

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