diff -Nru node-loader-utils-1.1.0/debian/changelog node-loader-utils-1.1.0/debian/changelog --- node-loader-utils-1.1.0/debian/changelog 2017-06-25 07:34:32.000000000 +0000 +++ node-loader-utils-1.1.0/debian/changelog 2019-01-17 12:24:56.000000000 +0000 @@ -1,8 +1,22 @@ +node-loader-utils (1.1.0-2) unstable; urgency=medium + + * Team upload + * Add patch to fix error string. Fixes debci (Closes: #918626) + * Bump debheper compatibility level to 11 + * Declare compliance with policy 4.3.0 + * Update VCS fields to salsa + * Add Berne Convention comment in debian/copyright + * Change section to javascript + * Ignore tests in nocheck is set + * Add upstream/metadata + + -- Xavier Guimard Thu, 17 Jan 2019 13:24:56 +0100 + node-loader-utils (1.1.0-1) unstable; urgency=medium * New upstream release * Enable tests - * Install whole lib directory + * Install whole lib directory -- Pirate Praveen Sun, 25 Jun 2017 13:04:32 +0530 diff -Nru node-loader-utils-1.1.0/debian/compat node-loader-utils-1.1.0/debian/compat --- node-loader-utils-1.1.0/debian/compat 2017-06-25 07:34:32.000000000 +0000 +++ node-loader-utils-1.1.0/debian/compat 2019-01-17 12:04:28.000000000 +0000 @@ -1 +1 @@ -9 +11 diff -Nru node-loader-utils-1.1.0/debian/control node-loader-utils-1.1.0/debian/control --- node-loader-utils-1.1.0/debian/control 2017-06-25 07:34:32.000000000 +0000 +++ node-loader-utils-1.1.0/debian/control 2019-01-17 12:24:56.000000000 +0000 @@ -1,31 +1,28 @@ Source: node-loader-utils -Section: web -Priority: optional Maintainer: Debian Javascript Maintainers Uploaders: Pirate Praveen -Build-Depends: - debhelper (>= 9) - , dh-buildinfo - , nodejs - , mocha - , node-object-assign (>= 4.0.1) - , node-big.js (>= 3.1.3) - , node-json5 (>= 0.5.0) - , node-emojis-list (>= 2.0.0) -Standards-Version: 3.9.8 +Section: javascript +Priority: optional +Build-Depends: debhelper (>= 11~), + dh-buildinfo, + mocha, + node-object-assign, + node-big.js, + node-json5, + node-emojis-list, + nodejs (>=10) +Standards-Version: 4.3.0 +Vcs-Browser: https://salsa.debian.org/js-team/node-loader-utils +Vcs-Git: https://salsa.debian.org/js-team/node-loader-utils.git Homepage: https://github.com/webpack/loader-utils#readme -Vcs-Git: https://anonscm.debian.org/git/pkg-javascript/node-loader-utils.git -Vcs-Browser: https://anonscm.debian.org/cgit/pkg-javascript/node-loader-utils.git Package: node-loader-utils Architecture: all -Depends: - ${misc:Depends} - , nodejs - , node-object-assign (>= 4.0.1) - , node-big.js (>= 3.1.3) - , node-json5 (>= 0.5.0) - , node-emojis-list (>= 2.0.0) +Depends: ${misc:Depends}, + nodejs, + node-object-assign, + node-big.js, + node-json5, + node-emojis-list Description: utils for webpack loaders - . Node.js is an event-based server-side JavaScript engine. diff -Nru node-loader-utils-1.1.0/debian/copyright node-loader-utils-1.1.0/debian/copyright --- node-loader-utils-1.1.0/debian/copyright 2017-06-25 07:34:32.000000000 +0000 +++ node-loader-utils-1.1.0/debian/copyright 2019-01-17 12:06:30.000000000 +0000 @@ -1,14 +1,19 @@ -Format: http://www.debian.org/doc/packaging-manuals/copyright-format/1.0/ +Format: https://www.debian.org/doc/packaging-manuals/copyright-format/1.0/ Upstream-Name: loader-utils Upstream-Contact: https://github.com/webpack/loader-utils/issues Source: https://github.com/webpack/loader-utils#readme Files: * -Copyright: 2016 Tobias Koppers @sokra +Copyright: Tobias Koppers @sokra License: Expat +Comment: The upstream distribution does not contain an explicit statement of + copyright ownership. Pursuant to the Berne Convention for the Protection of + Literary and Artistic Works, it is assumed that all content is copyright by + its respective authors unless otherwise stated. Files: debian/* Copyright: 2016 Pirate Praveen + 2019 Xavier Guimard License: Expat License: Expat @@ -31,4 +36,3 @@ 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. - diff -Nru node-loader-utils-1.1.0/debian/patches/fix-error-string.patch node-loader-utils-1.1.0/debian/patches/fix-error-string.patch --- node-loader-utils-1.1.0/debian/patches/fix-error-string.patch 1970-01-01 00:00:00.000000000 +0000 +++ node-loader-utils-1.1.0/debian/patches/fix-error-string.patch 2019-01-17 12:08:24.000000000 +0000 @@ -0,0 +1,16 @@ +Description: Fix change in error string +Author: Xavier Guimard +Forwarded: no +Last-Update: 2019-01-17 + +--- a/test/parseQuery.test.js ++++ b/test/parseQuery.test.js +@@ -75,7 +75,7 @@ + it("should throw an error", () => { + assert.throws( + () => loaderUtils.parseQuery("a"), +- "A valid query string passed to parseQuery should begin with '?'" ++ "Error: A valid query string passed to parseQuery should begin with '?'" + ); + }); + }); diff -Nru node-loader-utils-1.1.0/debian/patches/series node-loader-utils-1.1.0/debian/patches/series --- node-loader-utils-1.1.0/debian/patches/series 1970-01-01 00:00:00.000000000 +0000 +++ node-loader-utils-1.1.0/debian/patches/series 2019-01-17 12:00:26.000000000 +0000 @@ -0,0 +1 @@ +fix-error-string.patch diff -Nru node-loader-utils-1.1.0/debian/rules node-loader-utils-1.1.0/debian/rules --- node-loader-utils-1.1.0/debian/rules 2017-06-25 07:34:32.000000000 +0000 +++ node-loader-utils-1.1.0/debian/rules 2019-01-17 12:10:12.000000000 +0000 @@ -10,4 +10,6 @@ #override_dh_auto_build: override_dh_auto_test: +ifeq (,$(filter nocheck,$(DEB_BUILD_OPTIONS) $(DEB_BUILD_PROFILES))) mocha -R spec +endif diff -Nru node-loader-utils-1.1.0/debian/upstream/metadata node-loader-utils-1.1.0/debian/upstream/metadata --- node-loader-utils-1.1.0/debian/upstream/metadata 1970-01-01 00:00:00.000000000 +0000 +++ node-loader-utils-1.1.0/debian/upstream/metadata 2019-01-17 12:24:00.000000000 +0000 @@ -0,0 +1,7 @@ +--- +Archive: GitHub +Bug-Database: https://github.com/webpack/loader-utils/issues +Contact: https://github.com/webpack/loader-utils/issues +Name: loader-utils +Repository: https://github.com/webpack/loader-utils.git +Repository-Browse: https://github.com/webpack/loader-utils