commit nodejs-strip-ansi for openSUSE:Factory

2015-07-02 Thread h_root
Hello community,

here is the log from the commit of package nodejs-strip-ansi for 
openSUSE:Factory checked in at 2015-07-02 22:32:24

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


Package is nodejs-strip-ansi

Changes:

--- /work/SRC/openSUSE:Factory/nodejs-strip-ansi/nodejs-strip-ansi.changes  
2015-04-27 13:03:56.0 +0200
+++ /work/SRC/openSUSE:Factory/.nodejs-strip-ansi.new/nodejs-strip-ansi.changes 
2015-07-02 22:32:25.0 +0200
@@ -1,0 +2,5 @@
+Fri Apr 24 12:58:23 UTC 2015 - hvo...@suse.com
+
+- Update to version 2.0.1
+
+---

Old:

  strip-ansi-2.0.0.tgz

New:

  strip-ansi-2.0.1.tgz



Other differences:
--
++ nodejs-strip-ansi.spec ++
--- /var/tmp/diff_new_pack.cco5Hf/_old  2015-07-02 22:32:25.0 +0200
+++ /var/tmp/diff_new_pack.cco5Hf/_new  2015-07-02 22:32:25.0 +0200
@@ -19,7 +19,7 @@
 %define base_name strip-ansi
 
 Name:   nodejs-strip-ansi
-Version:2.0.0
+Version:2.0.1
 Release:0
 Summary:Strip ANSI escape codes
 License:MIT

++ strip-ansi-2.0.0.tgz - strip-ansi-2.0.1.tgz ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/package/cli.js new/package/cli.js
--- old/package/cli.js  2014-08-13 15:37:41.0 +0200
+++ new/package/cli.js  2015-01-16 19:44:56.0 +0100
@@ -34,12 +34,12 @@
return;
 }
 
-if (process.stdin.isTTY) {
-   if (!input) {
-   help();
-   return;
-   }
+if (!input  process.stdin.isTTY) {
+   help();
+   return;
+}
 
+if (input) {
init(fs.readFileSync(input, 'utf8'));
 } else {
process.stdin.setEncoding('utf8');
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/package/package.json new/package/package.json
--- old/package/package.json2014-08-13 15:37:54.0 +0200
+++ new/package/package.json2015-01-16 19:46:05.0 +0100
@@ -1,6 +1,6 @@
 {
   name: strip-ansi,
-  version: 2.0.0,
+  version: 2.0.1,
   description: Strip ANSI escape codes,
   license: MIT,
   repository: sindresorhus/strip-ansi,
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/package/readme.md new/package/readme.md
--- old/package/readme.md   2014-06-03 19:09:46.0 +0200
+++ new/package/readme.md   2014-08-13 15:43:55.0 +0200
@@ -15,7 +15,7 @@
 ```js
 var stripAnsi = require('strip-ansi');
 
-stripAnsi('\x1b[4mcake\x1b[0m');
+stripAnsi('\u001b[4mcake\u001b[0m');
 //= 'cake'
 ```
 
@@ -29,12 +29,12 @@
 ```sh
 $ strip-ansi --help
 
-Usage
-  $ strip-ansi input-file  output-file
-  $ cat input-file | strip-ansi  output-file
+  Usage
+strip-ansi input-file  output-file
+cat input-file | strip-ansi  output-file
 
-Example
-  $ strip-ansi unicorn.txt  unicorn-stripped.txt
+  Example
+strip-ansi unicorn.txt  unicorn-stripped.txt
 ```
 
 




commit nodejs-strip-ansi for openSUSE:Factory

2015-04-27 Thread h_root
Hello community,

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

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


Package is nodejs-strip-ansi

Changes:

--- /work/SRC/openSUSE:Factory/nodejs-strip-ansi/nodejs-strip-ansi.changes  
2014-10-24 10:47:31.0 +0200
+++ /work/SRC/openSUSE:Factory/.nodejs-strip-ansi.new/nodejs-strip-ansi.changes 
2015-04-27 13:03:56.0 +0200
@@ -1,0 +2,5 @@
+Sat Apr  4 06:46:59 UTC 2015 - dmuel...@suse.com
+
+- enable building for all arches
+
+---



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

2014-10-24 Thread h_root
Hello community,

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

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


Package is nodejs-strip-ansi

Changes:

--- /work/SRC/openSUSE:Factory/nodejs-strip-ansi/nodejs-strip-ansi.changes  
2014-09-23 10:45:51.0 +0200
+++ /work/SRC/openSUSE:Factory/.nodejs-strip-ansi.new/nodejs-strip-ansi.changes 
2014-10-24 10:47:31.0 +0200
@@ -1,0 +2,5 @@
+Thu Oct  9 15:08:40 UTC 2014 - jgleiss...@suse.com
+
+- use nodejs-packaging for building
+
+---



Other differences:
--
++ nodejs-strip-ansi.spec ++
--- /var/tmp/diff_new_pack.vKErzm/_old  2014-10-24 10:47:31.0 +0200
+++ /var/tmp/diff_new_pack.vKErzm/_new  2014-10-24 10:47:31.0 +0200
@@ -26,12 +26,12 @@
 Group:  Development/Languages/Other
 Url:https://github.com/sindresorhus/strip-ansi
 Source: 
http://registry.npmjs.org/%{base_name}/-/%{base_name}-%{version}.tgz
-Requires:   nodejs-ansi-regex
-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
 Strip ANSI escape codes from strings for Node.js.

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