Version in base suite: 13.1.3+~cs16.25.40-1 Base version: node-globby_13.1.3+~cs16.25.40-1 Target version: node-globby_13.1.3+~cs16.25.40-1+deb12u1 Base file: /srv/ftp-master.debian.org/ftp/pool/main/n/node-globby/node-globby_13.1.3+~cs16.25.40-1.dsc Target file: /srv/ftp-master.debian.org/policy/pool/main/n/node-globby/node-globby_13.1.3+~cs16.25.40-1+deb12u1.dsc changelog | 8 +++++++ gbp.conf | 1 patches/series | 1 patches/update-compat-with-node-18.patch | 35 +++++++++++++++++++++++++++++++ 4 files changed, 45 insertions(+) Unrecognised file line in .dsc: -----BEGIN PGP SIGNATURE----- diff -Nru node-globby-13.1.3+~cs16.25.40/debian/changelog node-globby-13.1.3+~cs16.25.40/debian/changelog --- node-globby-13.1.3+~cs16.25.40/debian/changelog 2022-12-17 18:15:55.000000000 +0000 +++ node-globby-13.1.3+~cs16.25.40/debian/changelog 2024-09-08 20:12:56.000000000 +0000 @@ -1,3 +1,11 @@ +node-globby (13.1.3+~cs16.25.40-1+deb12u1) bookworm; urgency=medium + + * Team upload + * Upload to bookworm + * Backport patch to fix build with node 18. Closes: #1072599. + + -- Jérémy Lal Sun, 08 Sep 2024 22:12:56 +0200 + node-globby (13.1.3+~cs16.25.40-1) unstable; urgency=medium * Team upload diff -Nru node-globby-13.1.3+~cs16.25.40/debian/gbp.conf node-globby-13.1.3+~cs16.25.40/debian/gbp.conf --- node-globby-13.1.3+~cs16.25.40/debian/gbp.conf 2020-10-19 07:29:15.000000000 +0000 +++ node-globby-13.1.3+~cs16.25.40/debian/gbp.conf 2024-09-08 20:11:00.000000000 +0000 @@ -1,4 +1,5 @@ [DEFAULT] +debian-branch=debian/bookworm pristine-tar=True component=['dir-glob', 'fast-glob', 'fastq', 'merge2', 'reusify', 'run-parallel', 'nodelib-fsscandir', 'nodelib-fsstat', 'nodelib-fswalk', 'nodelib-fs-macchiato'] diff -Nru node-globby-13.1.3+~cs16.25.40/debian/patches/series node-globby-13.1.3+~cs16.25.40/debian/patches/series --- node-globby-13.1.3+~cs16.25.40/debian/patches/series 2022-12-17 18:14:34.000000000 +0000 +++ node-globby-13.1.3+~cs16.25.40/debian/patches/series 2024-09-08 20:09:40.000000000 +0000 @@ -1,2 +1,3 @@ export-commonjs-files.patch replace-ava-by-tape.patch +update-compat-with-node-18.patch diff -Nru node-globby-13.1.3+~cs16.25.40/debian/patches/update-compat-with-node-18.patch node-globby-13.1.3+~cs16.25.40/debian/patches/update-compat-with-node-18.patch --- node-globby-13.1.3+~cs16.25.40/debian/patches/update-compat-with-node-18.patch 1970-01-01 00:00:00.000000000 +0000 +++ node-globby-13.1.3+~cs16.25.40/debian/patches/update-compat-with-node-18.patch 2024-09-08 20:10:51.000000000 +0000 @@ -0,0 +1,35 @@ +Description: fix TS decalrations with Node.js >= 18 +Author: Yadd +Bug-Debian: https://bugs.debian.org/1058547 +Forwarded: not-needed +Last-Update: 2024-03-21 + +--- a/fast-glob/src/utils/fs.ts ++++ b/fast-glob/src/utils/fs.ts +@@ -10,6 +10,8 @@ + public isFile: fs.Stats['isFile']; + public isSocket: fs.Stats['isSocket']; + public isSymbolicLink: fs.Stats['isSymbolicLink']; ++ public path: ''; ++ public parentPath: ''; + + constructor(public name: string, stats: fs.Stats) { + this.isBlockDevice = stats.isBlockDevice.bind(stats); +@@ -19,6 +21,8 @@ + this.isFile = stats.isFile.bind(stats); + this.isSocket = stats.isSocket.bind(stats); + this.isSymbolicLink = stats.isSymbolicLink.bind(stats); ++ this.path = ''; ++ this.parentPath = ''; + } + } + +--- a/nodelib-fs-macchiato/out/dirent.d.ts ++++ b/nodelib-fs-macchiato/out/dirent.d.ts +@@ -12,4 +12,6 @@ + isSymbolicLink(): boolean; + isFIFO(): boolean; + isSocket(): boolean; ++ path: string; ++ parentPath: string; + }