commit nodejs-ini for openSUSE:Factory

Hello community, here is the log from the commit of package nodejs-ini for openSUSE:Factory checked in at 2015-07-02 22:32:05 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Comparing /work/SRC/openSUSE:Factory/nodejs-ini (Old) and /work/SRC/openSUSE:Factory/.nodejs-ini.new (New) ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Package is "nodejs-ini" Changes: -------- --- /work/SRC/openSUSE:Factory/nodejs-ini/nodejs-ini.changes 2015-04-27 13:01:28.000000000 +0200 +++ /work/SRC/openSUSE:Factory/.nodejs-ini.new/nodejs-ini.changes 2015-07-02 22:32:06.000000000 +0200 @@ -1,0 +2,5 @@ +Fri Apr 24 12:14:06 UTC 2015 - hvogel@suse.com + +- Update to version 1.3.3 + +------------------------------------------------------------------- Old: ---- ini-1.3.0.tgz New: ---- ini-1.3.3.tgz ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Other differences: ------------------ ++++++ nodejs-ini.spec ++++++ --- /var/tmp/diff_new_pack.Eu7Ksi/_old 2015-07-02 22:32:07.000000000 +0200 +++ /var/tmp/diff_new_pack.Eu7Ksi/_new 2015-07-02 22:32:07.000000000 +0200 @@ -19,7 +19,7 @@ %define base_name ini Name: nodejs-ini -Version: 1.3.0 +Version: 1.3.3 Release: 0 Summary: An ini encoder/decoder for node License: MIT ++++++ ini-1.3.0.tgz -> ini-1.3.3.tgz ++++++ diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/package/LICENSE new/package/LICENSE --- old/package/LICENSE 2011-09-23 18:11:41.000000000 +0200 +++ new/package/LICENSE 2014-11-25 11:38:15.000000000 +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/ini.js new/package/ini.js --- old/package/ini.js 2014-09-16 09:03:12.000000000 +0200 +++ new/package/ini.js 2015-02-11 00:57:49.000000000 +0100 @@ -145,7 +145,7 @@ function safe (val) { return ( typeof val !== "string" - || val.match(/[\r\n]/) + || val.match(/[=\r\n]/) || val.match(/^\[/) || (val.length > 1 && isQuoted(val)) diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/package/package.json new/package/package.json --- old/package/package.json 2014-09-16 09:08:01.000000000 +0200 +++ new/package/package.json 2015-02-11 00:57:53.000000000 +0100 @@ -2,7 +2,7 @@ "author": "Isaac Z. Schlueter <i@izs.me> (http://blog.izs.me/)", "name": "ini", "description": "An ini encoder/decoder for node", - "version": "1.3.0", + "version": "1.3.3", "repository": { "type": "git", "url": "git://github.com/isaacs/ini.git" @@ -17,5 +17,6 @@ "dependencies": {}, "devDependencies": { "tap": "~0.4.0" - } + }, + "license": "ISC" } diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/package/test/fixtures/foo.ini new/package/test/fixtures/foo.ini --- old/package/test/fixtures/foo.ini 2014-05-13 02:32:57.000000000 +0200 +++ new/package/test/fixtures/foo.ini 2015-02-11 00:57:29.000000000 +0100 @@ -29,6 +29,8 @@ br = cold br = warm +eq = "eq=eq" + ; a section [a] av = a val diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/package/test/foo.js new/package/test/foo.js --- old/package/test/foo.js 2014-09-16 09:03:12.000000000 +0200 +++ new/package/test/foo.js 2015-02-11 00:57:29.000000000 +0100 @@ -18,6 +18,7 @@ + 'ar[]=three\n' + 'ar[]=this is included\n' + 'br=warm\n' + + 'eq=\"eq=eq\"\n' + '\n' + '[a]\n' + 'av=a val\n' @@ -43,6 +44,7 @@ 'zr': ['deedee'], 'ar': ['one', 'three', 'this is included'], 'br': 'warm', + 'eq': 'eq=eq', a: { av: 'a val', e: '{ o: p, a: { av: a val, b: { c: { e: "this [value]" } } } }',
participants (1)
-
root@hilbert.suse.de