Hello community,

here is the log from the commit of package nodejs-ini for openSUSE:Factory 
checked in at 2015-08-05 06:51:01
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
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-07-02 
22:32:06.000000000 +0200
+++ /work/SRC/openSUSE:Factory/.nodejs-ini.new/nodejs-ini.changes       
2015-08-05 06:51:05.000000000 +0200
@@ -1,0 +2,5 @@
+Wed Jul 29 13:38:24 UTC 2015 - [email protected]
+
+- update version 1.3.4
+
+-------------------------------------------------------------------

Old:
----
  ini-1.3.3.tgz

New:
----
  ini-1.3.4.tgz

++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Other differences:
------------------
++++++ nodejs-ini.spec ++++++
--- /var/tmp/diff_new_pack.j00Rzh/_old  2015-08-05 06:51:06.000000000 +0200
+++ /var/tmp/diff_new_pack.j00Rzh/_new  2015-08-05 06:51:06.000000000 +0200
@@ -19,7 +19,7 @@
 %define base_name ini
 
 Name:           nodejs-ini
-Version:        1.3.3
+Version:        1.3.4
 Release:        0
 Summary:        An ini encoder/decoder for node
 License:        MIT

++++++ ini-1.3.3.tgz -> ini-1.3.4.tgz ++++++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/package/.npmignore new/package/.npmignore
--- old/package/.npmignore      2014-05-13 02:30:13.000000000 +0200
+++ new/package/.npmignore      1970-01-01 01:00:00.000000000 +0100
@@ -1 +0,0 @@
-node_modules
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/package/package.json new/package/package.json
--- old/package/package.json    2015-02-11 00:57:53.000000000 +0100
+++ new/package/package.json    2015-06-06 18:46:27.000000000 +0200
@@ -2,7 +2,7 @@
   "author": "Isaac Z. Schlueter <[email protected]> (http://blog.izs.me/)",
   "name": "ini",
   "description": "An ini encoder/decoder for node",
-  "version": "1.3.3",
+  "version": "1.3.4",
   "repository": {
     "type": "git",
     "url": "git://github.com/isaacs/ini.git"
@@ -16,7 +16,10 @@
   },
   "dependencies": {},
   "devDependencies": {
-    "tap": "~0.4.0"
+    "tap": "^1.2.0"
   },
-  "license": "ISC"
+  "license": "ISC",
+  "files": [
+    "ini.js"
+  ]
 }
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/package/test/bar.js new/package/test/bar.js
--- old/package/test/bar.js     2012-08-13 20:10:58.000000000 +0200
+++ new/package/test/bar.js     1970-01-01 01:00:00.000000000 +0100
@@ -1,23 +0,0 @@
-//test that parse(stringify(obj) deepEqu
-
-var ini = require('../')
-var test = require('tap').test
-
-var data = {
-  'number':  {count: 10},
-  'string':  {drink: 'white russian'},
-  'boolean': {isTrue: true},
-  'nested boolean': {theDude: {abides: true, rugCount: 1}}
-}
-
-
-test('parse(stringify(x)) deepEqual x', function (t) {
-
-  for (var k in data) {
-    var s = ini.stringify(data[k])
-    console.log(s, data[k])
-    t.deepEqual(ini.parse(s), data[k])
-  }
-
-  t.end() 
-})
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   2015-02-11 00:57:29.000000000 +0100
+++ new/package/test/fixtures/foo.ini   1970-01-01 01:00:00.000000000 +0100
@@ -1,65 +0,0 @@
-o = p
-
-   a with spaces   =     b  c
-
-; wrap in quotes to JSON-decode and preserve spaces
-" xa  n          p " = "\"\r\nyoyoyo\r\r\n"
-
-; wrap in quotes to get a key with a bracket, not a section.
-"[disturbing]" = hey you never know
-
-; Test single quotes
-s = 'something'
-
-; Test mixing quotes
-
-s1 = "something'
-
-; Test double quotes
-s2 = "something else"
-
-; Test arrays
-zr[] = deedee
-ar[] = one
-ar[] = three
-; This should be included in the array
-ar   = this is included
-
-; Test resetting of a value (and not turn it into an array)
-br = cold
-br = warm
-
-eq = "eq=eq"
-
-; a section
-[a]
-av = a val
-e = { o: p, a: { av: a val, b: { c: { e: "this [value]" } } } }
-j = "{ o: "p", a: { av: "a val", b: { c: { e: "this [value]" } } } }"
-"[]" = a square?
-
-; Nested array
-cr[] = four
-cr[] = eight
-
-; nested child without middle parent
-; should create otherwise-empty a.b
-[a.b.c]
-e = 1
-j = 2
-
-; dots in the section name should be literally interpreted
-[x\.y\.z]
-x.y.z = xyz
-
-[x\.y\.z.a\.b\.c]
-a.b.c = abc
-
-; this next one is not a comment!  it's escaped!
-nocomment = this\; this is not a comment
-
-# Support the use of the number sign (#) as an alternative to the semicolon 
for indicating comments.
-# http://en.wikipedia.org/wiki/INI_file#Comments
-
-# this next one is not a comment!  it's escaped!
-noHashComment = this\# this is not a comment
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     2015-02-11 00:57:29.000000000 +0100
+++ new/package/test/foo.js     1970-01-01 01:00:00.000000000 +0100
@@ -1,107 +0,0 @@
-var i = require("../")
-  , tap = require("tap")
-  , test = tap.test
-  , fs = require("fs")
-  , path = require("path")
-  , fixture = path.resolve(__dirname, "./fixtures/foo.ini")
-  , data = fs.readFileSync(fixture, "utf8")
-  , d
-  , expectE = 'o=p\n'
-            + 'a with spaces=b  c\n'
-            + '" xa  n          p "="\\"\\r\\nyoyoyo\\r\\r\\n"\n'
-            + '"[disturbing]"=hey you never know\n'
-            + 's=something\n'
-            + 's1=\"something\'\n'
-            + 's2=something else\n'
-            + 'zr[]=deedee\n'
-            + 'ar[]=one\n'
-            + 'ar[]=three\n'
-            + 'ar[]=this is included\n'
-            + 'br=warm\n'
-            + 'eq=\"eq=eq\"\n'
-            + '\n'
-            + '[a]\n'
-            + 'av=a val\n'
-            + 'e={ o: p, a: '
-            + '{ av: a val, b: { c: { e: "this [value]" '
-            + '} } } }\nj="\\"{ o: \\"p\\", a: { av:'
-            + ' \\"a val\\", b: { c: { e: \\"this [value]'
-            + '\\" } } } }\\""\n"[]"=a square?\n'
-            + 'cr[]=four\ncr[]=eight\n\n'
-            +'[a.b.c]\ne=1\n'
-            + 'j=2\n\n[x\\.y\\.z]\nx.y.z=xyz\n\n'
-            + '[x\\.y\\.z.a\\.b\\.c]\na.b.c=abc\n'
-            + 'nocomment=this\\; this is not a comment\n'
-            + 'noHashComment=this\\# this is not a comment\n'
-  , expectD =
-    { o: 'p',
-      'a with spaces': 'b  c',
-      " xa  n          p ":'"\r\nyoyoyo\r\r\n',
-      '[disturbing]': 'hey you never know',
-      's': 'something',
-      's1' : '\"something\'',
-      's2': 'something else',
-      '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]" } } } }',
-         j: '"{ o: "p", a: { av: "a val", b: { c: { e: "this [value]" } } } 
}"',
-         "[]": "a square?",
-         cr: ['four', 'eight'],
-         b: { c: { e: '1', j: '2' } } },
-      'x.y.z': {
-        'x.y.z': 'xyz',
-        'a.b.c': {
-          'a.b.c': 'abc',
-          'nocomment': 'this\; this is not a comment',
-          noHashComment: 'this\# this is not a comment'
-        }
-      }
-    }
-  , expectF = '[prefix.log]\n'
-            + 'type=file\n\n'
-            + '[prefix.log.level]\n'
-            + 'label=debug\n'
-            + 'value=10\n'
-  , expectG = '[log]\n'
-            + 'type = file\n\n'
-            + '[log.level]\n'
-            + 'label = debug\n'
-            + 'value = 10\n'
-
-test("decode from file", function (t) {
-  var d = i.decode(data)
-  t.deepEqual(d, expectD)
-  t.end()
-})
-
-test("encode from data", function (t) {
-  var e = i.encode(expectD)
-  t.deepEqual(e, expectE)
-
-  var obj = {log: { type:'file', level: {label:'debug', value:10} } }
-  e = i.encode(obj)
-  t.notEqual(e.slice(0, 1), '\n', 'Never a blank first line')
-  t.notEqual(e.slice(-2), '\n\n', 'Never a blank final line')
-
-  t.end()
-})
-
-test("encode with option", function (t) {
-  var obj = {log: { type:'file', level: {label:'debug', value:10} } }
-  e = i.encode(obj, {section: 'prefix'})
-
-  t.equal(e, expectF)
-  t.end()
-})
-
-test("encode with whitespace", function (t) {
-  var obj = {log: { type:'file', level: {label:'debug', value:10} } }
-  e = i.encode(obj, {whitespace: true})
-
-  t.equal(e, expectG)
-  t.end()
-})


Reply via email to