[Date Prev][Date Next] [Thread Prev][Thread Next] [Date Index] [Thread Index]

[Git][lintian/lintian][master] 2 commits: tests: fix 'binaries-misplaced' pkg if '/bin/true' is a symlink



Title: GitLab

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:

Changes:

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

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

  • vendors/ubuntu/main/data/changes-file/known-dists
    ... ... @@ -38,3 +38,4 @@ noble
    38 38
     oracular
    
    39 39
     plucky
    
    40 40
     questing
    
    41
    +resolute


  • Reply to: