commit nodejs-osenv for openSUSE:Factory

2015-08-04 Thread h_root
Hello community,

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

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


Package is nodejs-osenv

Changes:

--- /work/SRC/openSUSE:Factory/nodejs-osenv/nodejs-osenv.changes
2015-07-02 22:39:50.0 +0200
+++ /work/SRC/openSUSE:Factory/.nodejs-osenv.new/nodejs-osenv.changes   
2015-08-05 06:51:07.0 +0200
@@ -1,0 +2,5 @@
+Wed Jul 29 13:47:05 UTC 2015 - i...@marguerite.su
+
+- update version 0.1.3
+
+---

Old:

  osenv-0.1.1.tgz

New:

  osenv-0.1.3.tgz



Other differences:
--
++ nodejs-osenv.spec ++
--- /var/tmp/diff_new_pack.KJqUXd/_old  2015-08-05 06:51:08.0 +0200
+++ /var/tmp/diff_new_pack.KJqUXd/_new  2015-08-05 06:51:08.0 +0200
@@ -19,7 +19,7 @@
 %define base_name osenv
 
 Name:   nodejs-osenv
-Version:0.1.1
+Version:0.1.3
 Release:0
 Summary:Node.js OS specific env lookup
 License:ISC

++ osenv-0.1.1.tgz - osenv-0.1.3.tgz ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/package/.travis.yml new/package/.travis.yml
--- old/package/.travis.yml 1970-01-01 01:00:00.0 +0100
+++ new/package/.travis.yml 2015-06-01 16:25:10.0 +0200
@@ -0,0 +1,9 @@
+language: node_js
+language: node_js
+node_js:
+  - '0.8'
+  - '0.10'
+  - '0.12'
+  - 'iojs'
+before_install:
+  - npm install -g npm@latest
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/package/osenv.js new/package/osenv.js
--- old/package/osenv.js2015-03-05 22:29:36.0 +0100
+++ new/package/osenv.js2015-06-30 00:55:22.0 +0200
@@ -1,7 +1,8 @@
 var isWindows = process.platform === 'win32'
 var path = require('path')
 var exec = require('child_process').exec
-var os = require('os')
+var osTmpdir = require('os-tmpdir')
+var osHomedir = require('os-homedir')
 
 // looking up envs is a bit costly.
 // Also, sometimes we want to have a fallback
@@ -46,13 +47,11 @@
 }, 'hostname')
 
 memo('tmpdir', function () {
-  return os.tmpDir()
+  return osTmpdir()
 })
 
 memo('home', function () {
-  return ( isWindows ? process.env.USERPROFILE
- : process.env.HOME
- )
+  return osHomedir()
 })
 
 memo('path', function () {
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/package/package.json new/package/package.json
--- old/package/package.json2015-05-20 09:15:20.0 +0200
+++ new/package/package.json2015-06-30 00:55:51.0 +0200
@@ -1,13 +1,16 @@
 {
   name: osenv,
-  version: 0.1.1,
+  version: 0.1.3,
   main: osenv.js,
   directories: {
 test: test
   },
-  dependencies: {},
+  dependencies: {
+os-homedir: ^1.0.0,
+os-tmpdir: ^1.0.0
+  },
   devDependencies: {
-tap: ~0.4.9
+tap: ^1.2.0
   },
   scripts: {
 test: tap test/*.js
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/package/test/windows.js new/package/test/windows.js
--- old/package/test/windows.js 2015-03-05 22:29:36.0 +0100
+++ new/package/test/windows.js 2015-06-01 16:25:37.0 +0200
@@ -3,9 +3,8 @@
 // how the underlying system looks up module paths and runs
 // child processes, and all that stuff is cached.
 if (process.platform !== 'win32') {
-  console.log('TAP Version 13\n' +
-  '1..0\n' +
-  '# Skip windows tests, this is not windows\n')
+  console.log('TAP version 13\n' +
+  '1..0 # Skip windows tests, this is not windows\n')
   return
 }
 
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/package/x.tap new/package/x.tap
--- old/package/x.tap   1970-01-01 01:00:00.0 +0100
+++ new/package/x.tap   2015-06-10 10:24:52.0 +0200
@@ -0,0 +1,39 @@
+TAP version 13
+# Subtest: test/unix.js
+TAP version 13
+# Subtest: basic unix sanity test
+ok 1 - should be equal
+ok 2 - should be equal
+ok 3 - should be equal
+ok 4 - should be equivalent
+ok 5 - should be equal
+ok 6 - should be equal
+ok 7 - should be equal
+ok 8 - should be equal
+ok 9 - should be equal
+ok 10 - should be equal
+ok 11 - should be equal
+ok 12 - should be equal
+ok 13 - should be equal
+ok 14 - should be equal
+1..14
+ok 1 - basic unix sanity test # time=10.712ms
+
+1..1
+# time=18.422ms
+ok 1 - test/unix.js # 

commit nodejs-osenv for openSUSE:Factory

2015-07-02 Thread h_root
Hello community,

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

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


Package is nodejs-osenv

Changes:

--- /work/SRC/openSUSE:Factory/nodejs-osenv/nodejs-osenv.changes
2015-04-27 13:03:25.0 +0200
+++ /work/SRC/openSUSE:Factory/.nodejs-osenv.new/nodejs-osenv.changes   
2015-07-02 22:39:50.0 +0200
@@ -1,0 +2,5 @@
+Sat Jun  6 12:55:57 UTC 2015 - i...@marguerite.su
+
+- update version 0.1.1
+
+---

Old:

  osenv-0.1.0.tgz

New:

  osenv-0.1.1.tgz



Other differences:
--
++ nodejs-osenv.spec ++
--- /var/tmp/diff_new_pack.kNgAdz/_old  2015-07-02 22:39:50.0 +0200
+++ /var/tmp/diff_new_pack.kNgAdz/_new  2015-07-02 22:39:50.0 +0200
@@ -19,10 +19,10 @@
 %define base_name osenv
 
 Name:   nodejs-osenv
-Version:0.1.0
+Version:0.1.1
 Release:0
 Summary:Node.js OS specific env lookup
-License:BSD-2-Clause
+License:ISC
 Group:  Development/Languages/Other
 Url:https://github.com/isaacs/osenv
 Source: 
http://registry.npmjs.org/%{base_name}/-/%{base_name}-%{version}.tgz

++ osenv-0.1.0.tgz - osenv-0.1.1.tgz ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/package/LICENSE new/package/LICENSE
--- old/package/LICENSE 2014-05-26 19:39:00.0 +0200
+++ new/package/LICENSE 2015-05-20 09:15:20.0 +0200
@@ -1,27 +1,15 @@
-Copyright (c) Isaac Z. Schlueter (Author)
-All rights reserved.
+The ISC License
 
-The BSD License
+Copyright (c) Isaac Z. Schlueter and Contributors
 
-Redistribution and use in source and binary forms, with or without
-modification, are permitted provided that the following conditions
-are met:
+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.
 
-1. Redistributions of source code must retain the above copyright
-   notice, this list of conditions and the following disclaimer.
-
-2. Redistributions in binary form must reproduce the above copyright
-   notice, this list of conditions and the following disclaimer in the
-   documentation and/or other materials provided with the distribution.
-
-THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND
-ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
-IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
-PURPOSE ARE DISCLAIMED.  IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS
-BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
-CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
-SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR
-BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY,
-WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE
-OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN
-IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
+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/package.json new/package/package.json
--- old/package/package.json2014-05-26 19:58:23.0 +0200
+++ new/package/package.json2015-05-20 09:15:20.0 +0200
@@ -1,6 +1,6 @@
 {
   name: osenv,
-  version: 0.1.0,
+  version: 0.1.1,
   main: osenv.js,
   directories: {
 test: test
@@ -12,10 +12,7 @@
   scripts: {
 test: tap test/*.js
   },
-  repository: {
-type: git,
-url: git://github.com/isaacs/osenv
-  },
+  repository: https://github.com/npm/osenv;,
   keywords: [
 environment,
 variable,
@@ -26,6 +23,6 @@
 ps1
   ],
   author: Isaac Z. Schlueter i...@izs.me (http://blog.izs.me/),
-  license: BSD,
+  license: ISC,
   description: Look up environment settings specific to different operating 
systems
 }




commit nodejs-osenv for openSUSE:Factory

2015-04-27 Thread h_root
Hello community,

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

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


Package is nodejs-osenv

Changes:

--- /work/SRC/openSUSE:Factory/nodejs-osenv/nodejs-osenv.changes
2014-10-24 10:47:07.0 +0200
+++ /work/SRC/openSUSE:Factory/.nodejs-osenv.new/nodejs-osenv.changes   
2015-04-27 13:03:25.0 +0200
@@ -1,0 +2,5 @@
+Sat Apr  4 06:44:29 UTC 2015 - dmuel...@suse.com
+
+- enable building for all arches
+
+---



Other differences:
--
++ nodejs-osenv.spec ++
--- /var/tmp/diff_new_pack.3fMW6T/_old  2015-04-27 13:03:25.0 +0200
+++ /var/tmp/diff_new_pack.3fMW6T/_new  2015-04-27 13:03:25.0 +0200
@@ -1,7 +1,7 @@
 #
 # spec file for package nodejs-osenv
 #
-# 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-osenv for openSUSE:Factory

2014-10-24 Thread h_root
Hello community,

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

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


Package is nodejs-osenv

Changes:

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



Other differences:
--
++ nodejs-osenv.spec ++
--- /var/tmp/diff_new_pack.CJ29sc/_old  2014-10-24 10:47:08.0 +0200
+++ /var/tmp/diff_new_pack.CJ29sc/_new  2014-10-24 10:47:08.0 +0200
@@ -26,11 +26,12 @@
 Group:  Development/Languages/Other
 Url:https://github.com/isaacs/osenv
 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
 Look up environment settings specific to different operating systems. 

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