Louis-Philippe Véronneau pushed to branch master at lintian / lintian


Commits:
e8754eae by Florent 'Skia' Jacquet at 2025-10-14T09:08:18+02:00
tests: fix 'binaries-misplaced' pkg if '/bin/true' is a symlink

This is the case for example on Ubuntu questing, where the transition
of coreutils to uutils happened, and some utils are still symlinked
to gnu-coreutils.

- - - - -
65f4b571 by Florent 'Skia' Jacquet at 2025-10-14T09:20:14+02:00
Add 'Resolute Raccoon' in the list of known Ubuntu series

https://discourse.ubuntu.com/t/resolute-raccoon-release-schedule/47198

- - - - -


3 changed files:

- 
t/recipes/checks/binaries/architecture/binaries-misplaced/build-spec/debian/rules
- t/recipes/checks/binaries/location/binaries-misplaced/build-spec/debian/rules
- vendors/ubuntu/main/data/changes-file/known-dists


Changes:

=====================================
t/recipes/checks/binaries/architecture/binaries-misplaced/build-spec/debian/rules
=====================================
@@ -5,7 +5,8 @@ pkg=binaries-misplaced
 
 override_dh_install:
        mkdir -p debian/$(pkg)/etc/
-       cp -a /bin/true debian/$(pkg)/etc/foo
+       # --dereference in case /bin/true is a symlink
+       cp -a --dereference /bin/true debian/$(pkg)/etc/foo
        # explicitly call dh_shlibdeps since debhelper is being
        # "smart" and not calling it in newer versions (8.9.something)
        dh_shlibdeps


=====================================
t/recipes/checks/binaries/location/binaries-misplaced/build-spec/debian/rules
=====================================
@@ -5,7 +5,8 @@ pkg=binaries-misplaced
 
 override_dh_install:
        mkdir -p debian/$(pkg)/etc/
-       cp -a /bin/true debian/$(pkg)/etc/foo
+       # --dereference in case /bin/true is a symlink
+       cp -a --dereference /bin/true debian/$(pkg)/etc/foo
        # explicitly call dh_shlibdeps since debhelper is being
        # "smart" and not calling it in newer versions (8.9.something)
        dh_shlibdeps


=====================================
vendors/ubuntu/main/data/changes-file/known-dists
=====================================
@@ -38,3 +38,4 @@ noble
 oracular
 plucky
 questing
+resolute



View it on GitLab: 
https://salsa.debian.org/lintian/lintian/-/compare/20c7425be3566058616f60df29c515d0ac606d34...65f4b5711c096fcb3fb542562ee7b47cdab4867e

-- 
View it on GitLab: 
https://salsa.debian.org/lintian/lintian/-/compare/20c7425be3566058616f60df29c515d0ac606d34...65f4b5711c096fcb3fb542562ee7b47cdab4867e
You're receiving this email because of your account on salsa.debian.org.


Reply via email to