This is an automated email from the git hooks/post-receive script. guillem pushed a commit to branch main in repository dpkg.
View the commit online: https://git.dpkg.org/cgit/dpkg/dpkg.git/commit/?id=60eed4c512837ef2381cc1d2cd6cba5da2339faf commit 60eed4c512837ef2381cc1d2cd6cba5da2339faf Author: Guillem Jover <[email protected]> AuthorDate: Fri Jan 23 00:22:59 2026 +0100 build: Move the dist artifacts to the release directory Instead of only copying the autotools dist tarball, move both the autotools and CPAN dist tarballs into the temporary release directory, to avoid tarball mismatches, to get them out of the way and avoid having to clean them up later on. --- build-aux/gen-release | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/build-aux/gen-release b/build-aux/gen-release index b32f43c3f..34f0228ca 100755 --- a/build-aux/gen-release +++ b/build-aux/gen-release @@ -103,7 +103,8 @@ schroot -c "$chroot" -r -- make $checkflags distcheck # Prepare for packaged release. mkdir -p "$dirbuild" -cp "dpkg-$relver.tar.xz" "$dirbuild/" +mv "dpkg-$relver.tar.xz" "$dirbuild/" +mv "Dpkg-$relver.tar.gz" "$dirbuild/" # Teardown pre-release chroot. schroot -c "$chroot" -e -- Dpkg.Org's dpkg

