Your message dated Sun, 29 Dec 2024 10:04:05 +0100 with message-id <19debc1c-4a24-4f79-9ac1-2300c7347698@thykier.net> and subject line Re: dh-puredata: autopkgtest fails with debhelper 13.22 has caused the Debian Bug report #1090932, regarding dh-puredata: autopkgtest fails with debhelper 13.22 to be marked as done. This means that you claim that the problem has been dealt with. If this is not the case it is now your responsibility to reopen the Bug report if necessary, and/or fix the problem forthwith. (NB: If you are a system administrator and have no idea what this message is talking about, this may indicate a serious mail system misconfiguration somewhere. Please contact owner@bugs.debian.org immediately.) -- 1090932: https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=1090932 Debian Bug Tracking System Contact owner@bugs.debian.org with problems
--- Begin Message ---
- To: Debian Bug Tracking System <submit@bugs.debian.org>
- Subject: dh-puredata: autopkgtest fails with debhelper 13.22
- From: Zixing Liu <zixing.liu@canonical.com>
- Date: Fri, 20 Dec 2024 14:35:00 -0700
- Message-id: <[🔎] 173473050078.791684.8580538447553628403.reportbug@zixing-ubuntu>
Package: dh-puredata Version: 3.2.0 Severity: normal Tags: patch User: ubuntu-devel@lists.ubuntu.com Usertags: origin-ubuntu plucky ubuntu-patch Dear Maintainer, This fixes the compatibility issues with debhelper 13.22+. In Ubuntu, the attached patch was applied to achieve the following: * pd_lib_builder.pm: set DEB_HOST_ARCH for compatibility also disregard the `install` subroutine results from newer debhelper * tests: include /usr/share/dpkg/architecture.mk file Thanks for considering the patch. -- System Information: Debian Release: trixie/sid APT prefers oracular-updates APT policy: (500, 'oracular-updates'), (500, 'oracular-security'), (500, 'oracular'), (100, 'oracular-backports') Architecture: amd64 (x86_64) Foreign Architectures: i386 Kernel: Linux 6.11.0-12-generic (SMP w/10 CPU threads; PREEMPT) Kernel taint flags: TAINT_PROPRIETARY_MODULE, TAINT_WARN, TAINT_OOT_MODULE Locale: LANG=en_CA.UTF-8, LC_CTYPE=en_CA.UTF-8 (charmap=UTF-8), LANGUAGE=en_CA:en Shell: /bin/sh linked to /usr/bin/dash Init: systemd (via /run/systemd/system) LSM: AppArmor: enableddiff -Nru dh-puredata-3.2.0/Debhelper/Buildsystem/pd_lib_builder.pm dh-puredata-3.2.0ubuntu1/Debhelper/Buildsystem/pd_lib_builder.pm --- dh-puredata-3.2.0/Debhelper/Buildsystem/pd_lib_builder.pm 2024-06-14 04:13:15.000000000 -0600 +++ dh-puredata-3.2.0ubuntu1/Debhelper/Buildsystem/pd_lib_builder.pm 2024-12-20 14:23:07.000000000 -0700 @@ -79,8 +79,11 @@ my $result = $this->$fun(@_); my $can_double = check_can_double; - if ($ENV{DEB_HOST_ARCH} eq "") { - $can_double = 0; + $ENV{DEB_HOST_ARCH} = dpkg_architecture_value("DEB_HOST_ARCH"); + if ($result eq "" and $fun eq "SUPER::install") { + # in newer debhelper, + # Debian::Debhelper::Buildsystem::makefile::install does not return any value + $result = 1; } # double flavour if ($can_double and ($result or $ignore_result)) { diff -Nru dh-puredata-3.2.0/tests/myobj/debian/rules dh-puredata-3.2.0ubuntu1/tests/myobj/debian/rules --- dh-puredata-3.2.0/tests/myobj/debian/rules 2024-06-14 04:13:15.000000000 -0600 +++ dh-puredata-3.2.0ubuntu1/tests/myobj/debian/rules 2024-12-20 13:10:08.000000000 -0700 @@ -1,3 +1,4 @@ #!/usr/bin/make -f +include /usr/share/dpkg/architecture.mk %: dh $@ --buildsystem=pd_lib_builder
--- End Message ---
--- Begin Message ---
- To: 1090932-done@bugs.debian.org
- Subject: Re: dh-puredata: autopkgtest fails with debhelper 13.22
- From: Niels Thykier <niels@thykier.net>
- Date: Sun, 29 Dec 2024 10:04:05 +0100
- Message-id: <19debc1c-4a24-4f79-9ac1-2300c7347698@thykier.net>
- In-reply-to: <[🔎] 173473050078.791684.8580538447553628403.reportbug@zixing-ubuntu>
- References: <[🔎] 173473050078.791684.8580538447553628403.reportbug@zixing-ubuntu> <[🔎] 173473050078.791684.8580538447553628403.reportbug@zixing-ubuntu>
Source: debhelper Source-Version: 13.24On Fri, 20 Dec 2024 14:35:00 -0700 Zixing Liu <zixing.liu@canonical.com> wrote:Package: dh-puredata Version: 3.2.0 Severity: normal Tags: patch User: ubuntu-devel@lists.ubuntu.com Usertags: origin-ubuntu plucky ubuntu-patch Dear Maintainer, This fixes the compatibility issues with debhelper 13.22+. In Ubuntu, the attached patch was applied to achieve the following: * pd_lib_builder.pm: set DEB_HOST_ARCH for compatibility also disregard the `install` subroutine results from newer debhelper * tests: include /usr/share/dpkg/architecture.mk file Thanks for considering the patch. [...]Seems to have been fixed in debhelper/13.24. Best regards, NielsAttachment: OpenPGP_signature.asc
Description: OpenPGP digital signature
--- End Message ---