commit nodejs-which for openSUSE:Factory

2015-07-02 Thread h_root
Hello community,

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

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


Package is "nodejs-which"

Changes:

--- /work/SRC/openSUSE:Factory/nodejs-which/nodejs-which.changes
2015-04-27 13:02:13.0 +0200
+++ /work/SRC/openSUSE:Factory/.nodejs-which.new/nodejs-which.changes   
2015-07-02 22:39:56.0 +0200
@@ -1,0 +2,10 @@
+Sat Jun  6 13:03:36 UTC 2015 - i...@marguerite.su
+
+- update version 1.1.1
+
+---
+Fri Apr 24 13:03:05 UTC 2015 - hvo...@suse.com
+
+- Update to version 1.0.9
+
+---

Old:

  which-1.0.5.tgz

New:

  which-1.1.1.tgz



Other differences:
--
++ nodejs-which.spec ++
--- /var/tmp/diff_new_pack.omzOxW/_old  2015-07-02 22:39:57.0 +0200
+++ /var/tmp/diff_new_pack.omzOxW/_new  2015-07-02 22:39:57.0 +0200
@@ -19,10 +19,10 @@
 %define base_name which
 
 Name:   nodejs-which
-Version:1.0.5
+Version:1.1.1
 Release:0
 Summary:A which(1) command for node.js
-License:MIT
+License:ISC
 Group:  Development/Languages/Other
 Url:https://github.com/isaacs/which
 Source: 
http://registry.npmjs.org/%{base_name}/-/%{base_name}-%{version}.tgz

++ which-1.0.5.tgz -> which-1.1.1.tgz ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/package/LICENSE new/package/LICENSE
--- old/package/LICENSE 2011-09-23 18:46:12.0 +0200
+++ new/package/LICENSE 2014-11-25 11:34:19.0 +0100
@@ -1,23 +1,15 @@
-Copyright 2009, 2010, 2011 Isaac Z. Schlueter.
-All rights reserved.
+The ISC License
 
-Permission is hereby granted, free of charge, to any person
-obtaining a copy of this software and associated documentation
-files (the "Software"), to deal in the Software without
-restriction, including without limitation the rights to use,
-copy, modify, merge, publish, distribute, sublicense, and/or sell
-copies of the Software, and to permit persons to whom the
-Software is furnished to do so, subject to the following
-conditions:
+Copyright (c) Isaac Z. Schlueter and Contributors
 
-The above copyright notice and this permission notice shall be
-included in all copies or substantial portions of the Software.
+Permission to use, copy, modify, and/or distribute this software for any
+purpose with or without fee is hereby granted, provided that the above
+copyright notice and this permission notice appear in all copies.
 
-THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
-EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES
-OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
-NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT
-HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,
-WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
-FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR
-OTHER DEALINGS IN THE SOFTWARE.
+THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
+WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
+MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
+ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
+WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
+ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR
+IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/package/README.md new/package/README.md
--- old/package/README.md   2011-08-07 20:22:07.0 +0200
+++ new/package/README.md   2015-05-10 06:10:58.0 +0200
@@ -1,5 +1,34 @@
-The "which" util from npm's guts.
+# which
+
+Like the unix `which` utility.
 
 Finds the first instance of a specified executable in the PATH
 environment variable.  Does not cache the results, so `hash -r` is not
 needed when the PATH changes.
+
+## USAGE
+
+```javascript
+var which = require('which')
+
+// async usage
+which('node', function (er, resolvedPath) {
+  // er is returned if no "node" is found on the PATH
+  // if it is found, then the absolute path to the exec is returned
+})
+
+// sync usage
+// throws if not found
+var resolved = which.sync('node')
+
+// Pass options to override the PATH and PATHEXT environment vars.
+which('node', { path: someOtherPath }, function (er, resolved) {
+  if (er)
+throw er
+  console.log('found at %j', res

commit nodejs-which for openSUSE:Factory

2015-04-27 Thread h_root
Hello community,

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

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


Package is "nodejs-which"

Changes:

--- /work/SRC/openSUSE:Factory/nodejs-which/nodejs-which.changes
2014-10-24 10:47:40.0 +0200
+++ /work/SRC/openSUSE:Factory/.nodejs-which.new/nodejs-which.changes   
2015-04-27 13:02:13.0 +0200
@@ -1,0 +2,5 @@
+Sat Apr  4 06:47:43 UTC 2015 - dmuel...@suse.com
+
+- enable building for all arches
+
+---



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

2014-10-24 Thread h_root
Hello community,

here is the log from the commit of package nodejs-which for openSUSE:Factory 
checked in at 2014-10-24 10:47:39

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


Package is "nodejs-which"

Changes:

--- /work/SRC/openSUSE:Factory/nodejs-which/nodejs-which.changes
2014-09-23 13:47:01.0 +0200
+++ /work/SRC/openSUSE:Factory/.nodejs-which.new/nodejs-which.changes   
2014-10-24 10:47:40.0 +0200
@@ -1,0 +2,5 @@
+Thu Oct  9 15:08:46 UTC 2014 - jgleiss...@suse.com
+
+- use nodejs-packaging for building
+
+---



Other differences:
--
++ nodejs-which.spec ++
--- /var/tmp/diff_new_pack.wtoh21/_old  2014-10-24 10:47:41.0 +0200
+++ /var/tmp/diff_new_pack.wtoh21/_new  2014-10-24 10:47:41.0 +0200
@@ -26,11 +26,12 @@
 Group:  Development/Languages/Other
 Url:https://github.com/isaacs/which
 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
 Finds the first instance of a specified executable in the PATH environment 
variable. Does not cache the results, so hash -r is not needed when the PATH 
changes. 

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