diff -Nru node-static-extend-0.1.2/debian/changelog node-static-extend-0.1.2/debian/changelog --- node-static-extend-0.1.2/debian/changelog 2019-08-03 13:44:02.000000000 +0000 +++ node-static-extend-0.1.2/debian/changelog 2021-09-25 12:58:47.000000000 +0000 @@ -1,3 +1,36 @@ +node-static-extend (0.1.2-7) unstable; urgency=medium + + * Fix build by using strict depends and render ctor + enumerable + + -- Bastien Roucariès Sat, 25 Sep 2021 12:58:47 +0000 + +node-static-extend (0.1.2-6) unstable; urgency=medium + + * Team upload + * Remove depends on nodejs + * Add CI + + -- Bastien Roucariès Fri, 24 Sep 2021 20:22:33 +0000 + +node-static-extend (0.1.2-5) unstable; urgency=medium + + [ Debian Janitor ] + * Bump debhelper from old 12 to 13. + * Update standards version to 4.5.1, no changes needed. + + -- Jelmer Vernooij Wed, 15 Sep 2021 09:12:45 +0100 + +node-static-extend (0.1.2-4) unstable; urgency=medium + + [ Debian Janitor ] + * Set upstream metadata fields: Bug-Submit. + * Remove obsolete fields Contact, Name from debian/upstream/metadata + (already present in machine-readable debian/copyright). + * Update standards version to 4.4.1, no changes needed. + + -- Jelmer Vernooij Sun, 29 Aug 2021 01:09:52 +0100 + node-static-extend (0.1.2-3) unstable; urgency=medium * Team upload diff -Nru node-static-extend-0.1.2/debian/control node-static-extend-0.1.2/debian/control --- node-static-extend-0.1.2/debian/control 2019-08-01 19:18:33.000000000 +0000 +++ node-static-extend-0.1.2/debian/control 2021-09-25 12:58:47.000000000 +0000 @@ -4,13 +4,13 @@ Section: javascript Priority: optional Testsuite: autopkgtest-pkg-nodejs -Build-Depends: debhelper-compat (= 12), - nodejs, - mocha, - node-object-copy, - node-define-property, - pkg-js-tools (>= 0.8.8) -Standards-Version: 4.4.0 +Build-Depends: debhelper-compat (= 13), + nodejs:native , + mocha , + node-object-copy , + node-define-property (>> 2.0.2+really+2.0.2-1~) , + dh-sequence-nodejs +Standards-Version: 4.6.0 Vcs-Browser: https://salsa.debian.org/js-team/node-static-extend Vcs-Git: https://salsa.debian.org/js-team/node-static-extend.git Homepage: https://github.com/jonschlinkert/static-extend @@ -18,9 +18,8 @@ Package: node-static-extend Architecture: all Depends: ${misc:Depends}, - nodejs, node-object-copy, - node-define-property + node-define-property (>> 2.0.2+really+2.0.2-1~) Description: Adds a static `extend` method to a class, to simplify inheritance Extends the static properties, prototype properties, and descriptors from a `Parent` constructor onto `Child` constructors. diff -Nru node-static-extend-0.1.2/debian/gitlab-ci.yml node-static-extend-0.1.2/debian/gitlab-ci.yml --- node-static-extend-0.1.2/debian/gitlab-ci.yml 1970-01-01 00:00:00.000000000 +0000 +++ node-static-extend-0.1.2/debian/gitlab-ci.yml 2021-09-24 09:12:45.000000000 +0000 @@ -0,0 +1,3 @@ +include: + - https://salsa.debian.org/salsa-ci-team/pipeline/raw/master/salsa-ci.yml + - https://salsa.debian.org/salsa-ci-team/pipeline/raw/master/pipeline-jobs.yml diff -Nru node-static-extend-0.1.2/debian/patches/0001-Ctor-are-enumerable.patch node-static-extend-0.1.2/debian/patches/0001-Ctor-are-enumerable.patch --- node-static-extend-0.1.2/debian/patches/0001-Ctor-are-enumerable.patch 1970-01-01 00:00:00.000000000 +0000 +++ node-static-extend-0.1.2/debian/patches/0001-Ctor-are-enumerable.patch 2021-09-25 12:58:47.000000000 +0000 @@ -0,0 +1,21 @@ +From: =?utf-8?q?Bastien_Roucari=C3=A8s?= +Date: Sat, 25 Sep 2021 12:46:57 +0000 +Subject: Ctor are enumerable + +Forwarded: https://github.com/jonschlinkert/static-extend/issues/3 +--- + index.js | 1 + + 1 file changed, 1 insertion(+) + +diff --git a/index.js b/index.js +index f4124b2..4a0fc22 100644 +--- a/index.js ++++ b/index.js +@@ -69,6 +69,7 @@ function extend(Parent, extendFn) { + // keep a reference to the parent prototype + define(Ctor.prototype, '_parent_', { + configurable: true, ++ enumerable: true, + set: function() {}, + get: function() { + return Parent.prototype; diff -Nru node-static-extend-0.1.2/debian/patches/series node-static-extend-0.1.2/debian/patches/series --- node-static-extend-0.1.2/debian/patches/series 1970-01-01 00:00:00.000000000 +0000 +++ node-static-extend-0.1.2/debian/patches/series 2021-09-25 12:58:47.000000000 +0000 @@ -0,0 +1 @@ +0001-Ctor-are-enumerable.patch diff -Nru node-static-extend-0.1.2/debian/rules node-static-extend-0.1.2/debian/rules --- node-static-extend-0.1.2/debian/rules 2019-07-30 11:56:46.000000000 +0000 +++ node-static-extend-0.1.2/debian/rules 2021-09-25 12:58:47.000000000 +0000 @@ -5,4 +5,4 @@ #export DH_VERBOSE=1 %: - dh $@ --with nodejs + dh $@ \ No newline at end of file diff -Nru node-static-extend-0.1.2/debian/upstream/metadata node-static-extend-0.1.2/debian/upstream/metadata --- node-static-extend-0.1.2/debian/upstream/metadata 2019-07-30 11:56:46.000000000 +0000 +++ node-static-extend-0.1.2/debian/upstream/metadata 2021-09-24 20:17:54.000000000 +0000 @@ -1,7 +1,6 @@ --- Archive: GitHub Bug-Database: https://github.com/jonschlinkert/static-extend/issues -Contact: https://github.com/jonschlinkert/static-extend/issues -Name: static-extend +Bug-Submit: https://github.com/jonschlinkert/static-extend/issues/new Repository: https://github.com/jonschlinkert/static-extend.git Repository-Browse: https://github.com/jonschlinkert/static-extend diff -Nru node-static-extend-0.1.2/debian/watch node-static-extend-0.1.2/debian/watch --- node-static-extend-0.1.2/debian/watch 2019-08-01 19:18:14.000000000 +0000 +++ node-static-extend-0.1.2/debian/watch 2021-09-24 20:24:39.000000000 +0000 @@ -4,6 +4,6 @@ # Take a look at https://wiki.debian.org/debian/watch/ # See also fakeupstream: http://anonscm.debian.org/viewvc/qa/trunk/cgi-bin/fakeupstream.cgi?view=markup opts=\ -dversionmangle=s/\+(debian|dfsg|ds|deb)(\.\d+)?$//,\ -filenamemangle=s/.*\/v?([\d\.-]+)\.tar\.gz/node-static-extend-$1.tar.gz/ \ - https://github.com/jonschlinkert/static-extend/releases .*/archive/v?([\d\.]+).tar.gz +dversionmangle=s/@DEB_EXT@//,\ +filenamemangle=s%(?:.*?/)?v?@ANY_VERSION@(@ARCHIVE_EXT@)%@PACKAGE@-$1$2% \ + https://github.com/jonschlinkert/static-extend/tags (?:.*?/)?v?@ANY_VERSION@@ARCHIVE_EXT@