diff -Nru node-abbrev-1.0.5/debian/changelog node-abbrev-1.0.9/debian/changelog --- node-abbrev-1.0.5/debian/changelog 2014-08-07 08:10:17.000000000 +0000 +++ node-abbrev-1.0.9/debian/changelog 2016-08-17 04:07:47.000000000 +0000 @@ -1,3 +1,16 @@ +node-abbrev (1.0.9-1) unstable; urgency=medium + + * Team upload + * New upstream release + * Refresh debian/control: + + Update Build-Depends on debhelper from (>= 8.0.0) to (>= 9) + + Remove Build-Depends on dh-buildinfo which is not actually used + + Bump Standards-Version to 3.9.8 + + Use HTTPS URLs for Vcs-fields + + Change "javascript" to "JavaScript" in description + + -- Anthony Fok Tue, 16 Aug 2016 22:07:47 -0600 + node-abbrev (1.0.5-2) unstable; urgency=medium * Actually describe something in the description (Closes: #757322). @@ -18,7 +31,7 @@ * copyright: add Source and Upstream-Contact fields * control: + Standards-Version 3.9.4 - + Canonicalize Vcs fields + + Canonicalize Vcs fields -- Jérémy Lal Wed, 21 Aug 2013 00:32:32 +0200 diff -Nru node-abbrev-1.0.5/debian/control node-abbrev-1.0.9/debian/control --- node-abbrev-1.0.5/debian/control 2014-08-07 08:09:04.000000000 +0000 +++ node-abbrev-1.0.9/debian/control 2016-08-17 04:07:47.000000000 +0000 @@ -3,23 +3,18 @@ Priority: extra Maintainer: Debian Javascript Maintainers Uploaders: Jérémy Lal -Build-Depends: - debhelper (>= 8.0.0) - , nodejs - , dh-buildinfo -Standards-Version: 3.9.5 +Build-Depends: debhelper (>= 9), nodejs +Standards-Version: 3.9.8 Homepage: https://github.com/isaacs/abbrev-js -Vcs-Git: git://anonscm.debian.org/pkg-javascript/node-abbrev.git -Vcs-Browser: http://anonscm.debian.org/gitweb/?p=pkg-javascript/node-abbrev.git +Vcs-Git: https://anonscm.debian.org/git/pkg-javascript/node-abbrev.git +Vcs-Browser: https://anonscm.debian.org/git/pkg-javascript/node-abbrev.git Package: node-abbrev Architecture: all -Depends: - ${misc:Depends} - , nodejs +Depends: ${misc:Depends}, nodejs Description: Get unique abbreviations for a set of strings - Node.js module Given a set of strings, this module computes a list of distinct abbreviations. This is handy for command-line scripts, or other cases where one wants to be able to accept shorthands. . - Node.js is an event-based server-side javascript engine. + Node.js is an event-based server-side JavaScript engine. diff -Nru node-abbrev-1.0.5/.gitignore node-abbrev-1.0.9/.gitignore --- node-abbrev-1.0.5/.gitignore 1970-01-01 00:00:00.000000000 +0000 +++ node-abbrev-1.0.9/.gitignore 2016-06-15 18:40:47.000000000 +0000 @@ -0,0 +1,4 @@ +.nyc_output +nyc_output +node_modules +coverage diff -Nru node-abbrev-1.0.5/LICENSE node-abbrev-1.0.9/LICENSE --- node-abbrev-1.0.5/LICENSE 2014-04-17 20:09:09.000000000 +0000 +++ node-abbrev-1.0.9/LICENSE 2016-06-15 18:40:47.000000000 +0000 @@ -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 -Nru node-abbrev-1.0.5/package.json node-abbrev-1.0.9/package.json --- node-abbrev-1.0.5/package.json 2014-04-17 20:09:09.000000000 +0000 +++ node-abbrev-1.0.9/package.json 2016-06-15 18:40:47.000000000 +0000 @@ -1,15 +1,18 @@ { "name": "abbrev", - "version": "1.0.5", + "version": "1.0.9", "description": "Like ruby's abbrev module, but in js", "author": "Isaac Z. Schlueter ", "main": "abbrev.js", "scripts": { - "test": "node test.js" + "test": "tap test.js --cov" }, "repository": "http://github.com/isaacs/abbrev-js", - "license": { - "type": "MIT", - "url": "https://github.com/isaacs/abbrev-js/raw/master/LICENSE" - } + "license": "ISC", + "devDependencies": { + "tap": "^5.7.2" + }, + "files": [ + "abbrev.js" + ] } diff -Nru node-abbrev-1.0.5/test.js node-abbrev-1.0.9/test.js --- node-abbrev-1.0.5/test.js 2014-04-17 20:09:09.000000000 +0000 +++ node-abbrev-1.0.9/test.js 2016-06-15 18:40:47.000000000 +0000 @@ -2,7 +2,7 @@ var assert = require("assert") var util = require("util") -console.log("TAP Version 13") +console.log("TAP version 13") var count = 0 function test (list, expect) { @@ -44,4 +44,4 @@ , acde: 'acde' }) -console.log("0..%d", count) +console.log("1..%d", count) diff -Nru node-abbrev-1.0.5/.travis.yml node-abbrev-1.0.9/.travis.yml --- node-abbrev-1.0.5/.travis.yml 1970-01-01 00:00:00.000000000 +0000 +++ node-abbrev-1.0.9/.travis.yml 2016-06-15 18:40:47.000000000 +0000 @@ -0,0 +1,8 @@ +language: node_js +node_js: + - '0.8' + - '0.10' + - '0.12' + - 'iojs' +before_install: + - npm install -g npm@latest