Le lun. 1 juil. 2024 à 00:09, Emmanuel Arias <eam...@debian.org> a écrit : > On Sat, Jun 29, 2024 at 10:08:46PM +0200, Alexandre Detiste wrote: > > Here I was precisely asking about the remaining open 46 bugs [0] > > that ask to remove the (mostly stale) "python3-distutils" dependencies. > > > Making these bugs RC now seems like a reasonable idea. > Make sense. > > I think that we can tackle this (?). Searching this: `python3-distutils > path:debian/control` > I found around 90 packages. > > I don't know the steps to do this, but I think fill RC bugs and then
Graham filled these bugs back then, but I raised the severity. I have this script [s] but it seems it gives me false positives. An official transition tracker would be easier for everyone. (it uses the "ben" syntax/tool too underneath) https://release.debian.org/transitions/ I fixed the one Orphaned package: it was easy ;-) https://sources.debian.org/src/djvubind/1.2.1-6/debian/patches/remove-distutils.patch/ [s] #!/bin/sh Sources=/var/lib/apt/lists/ftp.be.debian.org_debian_dists_unstable_*_source_Sources Packages=/var/lib/apt/lists/ftp.be.debian.org_debian_dists_unstable_*_binary-amd64_Packages ben query '.build-depends ~ "python3-distutils"' $Sources -s Package,Maintainer ben query '.build-depends-indep ~ "python3-distutils"' $Sources -s Package,Maintainer ben query '.depends ~ "python3-distutils"' $Packages -s Package,Maintainer