reopen 1046098 tags 1046098 patch thanks Hi. I don't know why this was closed. This is the result of a source build after a binary build in the latest version:
dpkg-source: info: local changes detected, the modified files are: underscore-1.13.7~dfsg+~1.13.0/underscore-esm.js underscore-1.13.7~dfsg+~1.13.0/underscore-min.js underscore-1.13.7~dfsg+~1.13.0/underscore-node-f.cjs underscore-1.13.7~dfsg+~1.13.0/underscore-node.cjs underscore-1.13.7~dfsg+~1.13.0/underscore-node.mjs underscore-1.13.7~dfsg+~1.13.0/underscore.js I actually looked at this one several weeks ago and tried adding those files to debian/clean, but the resulting .deb was different so I skipped to the next one. Now I see that the package is not reproducible and those files do not belong to the source, so removing them in debian/clean (as in the attached patch) should be safe. [ Not applying the patch myself as I see you are working on the package these days ] Thanks.
commit 1aa2b53ff658045ce30069a6dee17923aa034b84 Author: Santiago Vila <[email protected]> Date: Sun Jan 18 23:40:00 2026 +0100 Fix clean target. Closes: #1046098. diff --git a/debian/clean b/debian/clean index b56e3bb..ca9ea9c 100644 --- a/debian/clean +++ b/debian/clean @@ -1,16 +1,21 @@ +*.map +*.min.js +*.min.js.br +*.min.js.gz +*.min.js.map.br +*.min.js.map.gz amd/ cjs/ underscore-esm.cjs +underscore-esm.js +underscore-min.js underscore-node-cjs-pre.js underscore-node-f-pre.js +underscore-node-f.cjs underscore-node-mjs-pre.js -underscore-umd.js -*.map +underscore-node.cjs +underscore-node.mjs underscore-umd-esm.js underscore-umd-min.js -*.min.js -*.min.js.br -*.min.js.gz -*.min.js.map.br -*.min.js.map.gz - +underscore-umd.js +underscore.js
-- Pkg-javascript-devel mailing list [email protected] https://alioth-lists.debian.net/cgi-bin/mailman/listinfo/pkg-javascript-devel
