From gitlab at salsa.debian.org Sun Oct 26 13:16:28 2025 From: gitlab at salsa.debian.org (Yadd (@yadd)) Date: Sun, 26 Oct 2025 13:16:28 +0000 Subject: [Pkg-javascript-commits] [Git][js-team/node-rimraf][master] 3 commits: Declare compliance with policy 4.7.2 Message-ID: <68fe1f2c51614_3a02b42d6b5bfc78226ce@godard.mail> Yadd pushed to branch master at Debian JavaScript Maintainers / node-rimraf Commits: e95561c9 by Yadd at 2025-10-26T14:13:52+01:00 Declare compliance with policy 4.7.2 - - - - - ba9b6770 by Yadd at 2025-10-26T14:13:52+01:00 Drop "Rules-Requires-Root: no" - - - - - f7882d17 by Yadd at 2025-10-26T14:16:19+01:00 debian/watch version 5 - - - - - 2 changed files: - debian/control - debian/watch Changes: ===================================== debian/control ===================================== @@ -8,12 +8,11 @@ Build-Depends: debhelper-compat (= 13) , node-glob , node-mkdirp , node-tap -Standards-Version: 4.6.0 +Standards-Version: 4.7.2 Vcs-Browser: https://salsa.debian.org/js-team/node-rimraf Vcs-Git: https://salsa.debian.org/js-team/node-rimraf.git Homepage: https://github.com/isaacs/rimraf Testsuite: autopkgtest-pkg-nodejs -Rules-Requires-Root: no Package: node-rimraf Architecture: all ===================================== debian/watch ===================================== @@ -1,8 +1,11 @@ -version=4 -opts=filenamemangle=s/.*?(\d[\d\.-]*@ARCHIVE_EXT@)/node-rimraf-$1/ \ -https://github.com/isaacs/rimraf/tags .*/archive/.*/v?([\d\.]+).tar.gz +Version: 5 -# It is not recommended use npmregistry. Please investigate more. -# Take a look at https://wiki.debian.org/debian/watch/ -opts="searchmode=plain,ctype=nodejs,component=types-rimraf,pgpmode=none" \ - https://registry.npmjs.org/@types/rimraf https://registry.npmjs.org/@types/rimraf/-/rimraf-([\d\.]+)@ARCHIVE_EXT@ ignore +Template: Github +Owner: isaacs +Project: rimraf + +Component: types-rimraf +Template: Npmregistry +Ctype: nodejs +Dist: @types/rimraf +Version-Schema: ignore View it on GitLab: https://salsa.debian.org/js-team/node-rimraf/-/compare/b56015500a1b2df867bdb56f26d62c3751ce1659...f7882d17e6cf62a97f9af86f273548e770fafb36 -- View it on GitLab: https://salsa.debian.org/js-team/node-rimraf/-/compare/b56015500a1b2df867bdb56f26d62c3751ce1659...f7882d17e6cf62a97f9af86f273548e770fafb36 You're receiving this email because of your account on salsa.debian.org. -------------- next part -------------- An HTML attachment was scrubbed... URL: From gitlab at salsa.debian.org Wed Oct 29 22:57:34 2025 From: gitlab at salsa.debian.org (=?UTF-8?B?QmFzdGllbiBSb3VjYXJpw6hzIChAcm91Y2Ep?=) Date: Wed, 29 Oct 2025 22:57:34 +0000 Subject: [Pkg-javascript-commits] [Git][js-team/node-rimraf][master] Disable test that may fail Message-ID: <69029bde11d75_4d43ad9c30135366b@godard.mail> Bastien Roucari?s pushed to branch master at Debian JavaScript Maintainers / node-rimraf Commits: dbc12a97 by Bastien Roucari?s at 2025-10-29T23:57:00+01:00 Disable test that may fail - - - - - 3 changed files: - debian/changelog - + debian/patches/0002-Remove-glob-test-that-may-fail-with-newer-version.patch - debian/patches/series Changes: ===================================== debian/changelog ===================================== @@ -1,3 +1,10 @@ +node-rimraf (3.0.2-3) unstable; urgency=medium + + * Team upload + * Disable test that may fail with newer glob + + -- + node-rimraf (3.0.2-2) unstable; urgency=medium * Team upload ===================================== debian/patches/0002-Remove-glob-test-that-may-fail-with-newer-version.patch ===================================== @@ -0,0 +1,82 @@ +From: =?utf-8?q?Bastien_Roucari=C3=A8s?= +Date: Wed, 29 Oct 2025 23:55:09 +0100 +Subject: Remove glob test that may fail with newer version + +forwarded: not-needed +--- + test/basic.js | 62 ----------------------------------------------------------- + 1 file changed, 62 deletions(-) + +diff --git a/test/basic.js b/test/basic.js +index d09885b..4e906bd 100644 +--- a/test/basic.js ++++ b/test/basic.js +@@ -37,68 +37,6 @@ t.test('async removal', function (t) { + }) + }) + +-t.test('glob', function (t) { +- t.plan(2) +- t.test('async', function (t) { +- fill() +- var glob = require('glob') +- var pattern = __dirname + '/target/f-*' +- var before = glob.sync(pattern) +- t.notEqual(before.length, 0) +- rimraf(pattern, function (er) { +- if (er) +- throw er +- var after = glob.sync(pattern) +- t.same(after, []) +- rimraf.sync(__dirname + '/target') +- t.end() +- }) +- }) +- t.test('sync', function (t) { +- fill() +- var glob = require('glob') +- var pattern = __dirname + '/target/f-*' +- var before = glob.sync(pattern) +- t.notEqual(before.length, 0) +- rimraf.sync(pattern) +- var after = glob.sync(pattern) +- t.same(after, []) +- rimraf.sync(__dirname + '/target') +- t.end() +- }) +-}) +- +-t.test('no glob', function (t) { +- t.plan(2) +- t.test('async', function (t) { +- fill() +- var glob = require('glob') +- var pattern = __dirname + '/target/f-*' +- var before = glob.sync(pattern) +- t.notEqual(before.length, 0) +- rimraf(pattern, { disableGlob: true }, function (er) { +- if (er) +- throw er +- var after = glob.sync(pattern) +- t.same(after, before) +- rimraf.sync(__dirname + '/target') +- t.end() +- }) +- }) +- t.test('sync', function (t) { +- fill() +- var glob = require('glob') +- var pattern = __dirname + '/target/f-*' +- var before = glob.sync(pattern) +- t.notEqual(before.length, 0) +- rimraf.sync(pattern, { disableGlob: true }) +- var after = glob.sync(pattern) +- t.same(after, before) +- rimraf.sync(__dirname + '/target') +- t.end() +- }) +-}) +- + t.test('verify that cleanup happened', function (t) { + t.throws(fs.statSync.bind(fs, __dirname + '/../target')) + t.throws(fs.statSync.bind(fs, __dirname + '/target')) ===================================== debian/patches/series ===================================== @@ -1 +1,2 @@ 2001_rename_nodejs.patch +0002-Remove-glob-test-that-may-fail-with-newer-version.patch View it on GitLab: https://salsa.debian.org/js-team/node-rimraf/-/commit/dbc12a976e191210c59cb28065a088158b8a49d0 -- View it on GitLab: https://salsa.debian.org/js-team/node-rimraf/-/commit/dbc12a976e191210c59cb28065a088158b8a49d0 You're receiving this email because of your account on salsa.debian.org. -------------- next part -------------- An HTML attachment was scrubbed... URL: From gitlab at salsa.debian.org Wed Oct 29 22:58:06 2025 From: gitlab at salsa.debian.org (=?UTF-8?B?QmFzdGllbiBSb3VjYXJpw6hzIChAcm91Y2Ep?=) Date: Wed, 29 Oct 2025 22:58:06 +0000 Subject: [Pkg-javascript-commits] [Git][js-team/node-rimraf] Pushed new tag debian/3.0.2-3 Message-ID: <69029bfeba30f_4d44afeb9c1353841@godard.mail> Bastien Roucari?s pushed new tag debian/3.0.2-3 at Debian JavaScript Maintainers / node-rimraf -- View it on GitLab: https://salsa.debian.org/js-team/node-rimraf/-/tree/debian/3.0.2-3 You're receiving this email because of your account on salsa.debian.org. -------------- next part -------------- An HTML attachment was scrubbed... URL: From gitlab at salsa.debian.org Wed Oct 29 22:58:09 2025 From: gitlab at salsa.debian.org (=?UTF-8?B?QmFzdGllbiBSb3VjYXJpw6hzIChAcm91Y2Ep?=) Date: Wed, 29 Oct 2025 22:58:09 +0000 Subject: [Pkg-javascript-commits] [Git][js-team/node-rimraf] Pushed new tag upstream/4.4.1+_cs4.0.5 Message-ID: <69029c01a4902_4d41d67f1c1354045@godard.mail> Bastien Roucari?s pushed new tag upstream/4.4.1+_cs4.0.5 at Debian JavaScript Maintainers / node-rimraf -- View it on GitLab: https://salsa.debian.org/js-team/node-rimraf/-/tree/upstream/4.4.1+_cs4.0.5 You're receiving this email because of your account on salsa.debian.org. -------------- next part -------------- An HTML attachment was scrubbed... URL: From gitlab at salsa.debian.org Wed Oct 29 22:59:16 2025 From: gitlab at salsa.debian.org (=?UTF-8?B?QmFzdGllbiBSb3VjYXJpw6hzIChAcm91Y2Ep?=) Date: Wed, 29 Oct 2025 22:59:16 +0000 Subject: [Pkg-javascript-commits] [Git][js-team/node-rimraf] Deleted tag debian/3.0.2-3 Message-ID: <69029c43f3541_4d46864e8413558ae@godard.mail> Bastien Roucari?s deleted tag debian/3.0.2-3 at Debian JavaScript Maintainers / node-rimraf -- You're receiving this email because of your account on salsa.debian.org. -------------- next part -------------- An HTML attachment was scrubbed... URL: From gitlab at salsa.debian.org Wed Oct 29 22:59:38 2025 From: gitlab at salsa.debian.org (=?UTF-8?B?QmFzdGllbiBSb3VjYXJpw6hzIChAcm91Y2Ep?=) Date: Wed, 29 Oct 2025 22:59:38 +0000 Subject: [Pkg-javascript-commits] [Git][js-team/node-rimraf][master] Finalize Message-ID: <69029c5a8b820_4d46776d3813560c6@godard.mail> Bastien Roucari?s pushed to branch master at Debian JavaScript Maintainers / node-rimraf Commits: 4a537b3b by Bastien Roucari?s at 2025-10-29T23:58:44+01:00 Finalize - - - - - 1 changed file: - debian/changelog Changes: ===================================== debian/changelog ===================================== @@ -3,7 +3,7 @@ node-rimraf (3.0.2-3) unstable; urgency=medium * Team upload * Disable test that may fail with newer glob - -- + -- Bastien Roucari?s Wed, 29 Oct 2025 23:56:53 +0100 node-rimraf (3.0.2-2) unstable; urgency=medium View it on GitLab: https://salsa.debian.org/js-team/node-rimraf/-/commit/4a537b3bb3e49a19869874c237f10eaddb4c5ebd -- View it on GitLab: https://salsa.debian.org/js-team/node-rimraf/-/commit/4a537b3bb3e49a19869874c237f10eaddb4c5ebd You're receiving this email because of your account on salsa.debian.org. -------------- next part -------------- An HTML attachment was scrubbed... URL: