Your message dated Thu, 05 Sep 2024 15:52:53 +0000
with message-id <e1smemz-007uvt...@fasolo.debian.org>
and subject line Bug#1064360: fixed in volume-key 0.3.12-8
has caused the Debian Bug report #1064360,
regarding volume-key FTCBFS: uses the build architecture python
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 ow...@bugs.debian.org
immediately.)


-- 
1064360: https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=1064360
Debian Bug Tracking System
Contact ow...@bugs.debian.org with problems
--- Begin Message ---
Source: volume-key
Version: 0.3.12-5
Tags: patch
User: debian-cr...@lists.debian.org
Usertags: cross-satisfiability ftcbfs

volume-key cannot be cross built from source, because it depends on
python3-dev. This refers to a host architecture Python installation,
which usually is not what we want. Usually, one uses a build
architecture development tools and host architecture libraries. Once
changing them, the build picks up build architecture compiler flags with
a host architecture compiler. This is due to configure.ac searching for
python3-config using AC_PATH_PROG and thus getting the build
architecture one. Using AC_PATH_TOOL fixes the build. I'm attaching a
patch for your convenience.

Helmut
diff --minimal -Nru volume-key-0.3.12/debian/changelog 
volume-key-0.3.12/debian/changelog
--- volume-key-0.3.12/debian/changelog  2022-09-08 01:54:16.000000000 +0200
+++ volume-key-0.3.12/debian/changelog  2024-02-20 09:36:48.000000000 +0100
@@ -1,3 +1,12 @@
+volume-key (0.3.12-5.1) UNRELEASED; urgency=medium
+
+  * Non-maintainer upload.
+  * Fix FTCBFS: (Closes: #-1)
+    + Multiarchify python-dev dependency.
+    + cross.patch: Use AC_PATH_TOOL to locate python3-config.
+
+ -- Helmut Grohne <hel...@subdivi.de>  Tue, 20 Feb 2024 09:36:48 +0100
+
 volume-key (0.3.12-5) unstable; urgency=medium
 
   * Use dh-sequence-python3 Build-Depends to enable the python3 addon
diff --minimal -Nru volume-key-0.3.12/debian/control 
volume-key-0.3.12/debian/control
--- volume-key-0.3.12/debian/control    2022-09-08 01:54:16.000000000 +0200
+++ volume-key-0.3.12/debian/control    2024-02-20 09:36:46.000000000 +0100
@@ -12,7 +12,8 @@
                libblkid-dev,
                swig,
                libnss3-tools,
-               python3-dev,
+               libpython3-dev,
+               python3-dev:any,
 Standards-Version: 4.6.1
 Rules-Requires-Root: no
 Vcs-Browser: https://salsa.debian.org/utopia-team/volume-key
diff --minimal -Nru volume-key-0.3.12/debian/patches/cross.patch 
volume-key-0.3.12/debian/patches/cross.patch
--- volume-key-0.3.12/debian/patches/cross.patch        1970-01-01 
01:00:00.000000000 +0100
+++ volume-key-0.3.12/debian/patches/cross.patch        2024-02-20 
09:36:48.000000000 +0100
@@ -0,0 +1,20 @@
+--- volume-key-0.3.12.orig/configure.ac
++++ volume-key-0.3.12/configure.ac
+@@ -62,7 +62,7 @@
+             ;;
+     esac
+     if test "x$__vk_tmp" = x; then
+-        AC_PATH_PROG([PYTHON_CONFIG], [python2-config python-config], [no])
++        AC_PATH_TOOL([PYTHON_CONFIG], [python2-config python-config], [no])
+         if test "x${PYTHON_CONFIG}" = xno; then
+             __vk_tmp=python2-config
+         fi
+@@ -132,7 +132,7 @@
+             ;;
+     esac
+     if test "x$__vk_tmp" = x; then
+-        AC_PATH_PROG([PYTHON3_CONFIG], [python3-config], [no])
++        AC_PATH_TOOL([PYTHON3_CONFIG], [python3-config], [no])
+         if test "x${PYTHON3_CONFIG}" = xno; then
+             __vk_tmp=python3-config
+         fi
diff --minimal -Nru volume-key-0.3.12/debian/patches/series 
volume-key-0.3.12/debian/patches/series
--- volume-key-0.3.12/debian/patches/series     2022-09-08 01:54:16.000000000 
+0200
+++ volume-key-0.3.12/debian/patches/series     2024-02-20 09:36:48.000000000 
+0100
@@ -1,2 +1,3 @@
 Revert-Switch-to-gpg2.patch
 Fix-FTBFS-with-Python-3.8.patch
+cross.patch

--- End Message ---
--- Begin Message ---
Source: volume-key
Source-Version: 0.3.12-8
Done: Michael Biebl <bi...@debian.org>

We believe that the bug you reported is fixed in the latest version of
volume-key, which is due to be installed in the Debian FTP archive.

A summary of the changes between this version and the previous one is
attached.

Thank you for reporting the bug, which will now be closed.  If you
have further comments please address them to 1064...@bugs.debian.org,
and the maintainer will reopen the bug report if appropriate.

Debian distribution maintenance software
pp.
Michael Biebl <bi...@debian.org> (supplier of updated volume-key package)

(This message was generated automatically at their request; if you
believe that there is a problem with it please contact the archive
administrators by mailing ftpmas...@ftp-master.debian.org)


-----BEGIN PGP SIGNED MESSAGE-----
Hash: SHA256

Format: 1.8
Date: Thu, 05 Sep 2024 17:29:24 +0200
Source: volume-key
Architecture: source
Version: 0.3.12-8
Distribution: unstable
Urgency: medium
Maintainer: Utopia Maintenance Team 
<pkg-utopia-maintain...@lists.alioth.debian.org>
Changed-By: Michael Biebl <bi...@debian.org>
Closes: 1064360 1080901
Changes:
 volume-key (0.3.12-8) unstable; urgency=medium
 .
   * Team upload
 .
   [ Helmut Grohne ]
   * Fix FTCBFS (Closes: #1064360)
     - Multiarchify python3-dev build dependency
     - Use AC_PATH_TOOL to locate python3-config
 .
   [ Michael Biebl ]
   * Add explicit Build-Depends on python3-setuptools.
     So far, this build dependency is pulled in automatically by dh-python,
     but this is supposed to change in the future. (Closes: #1080901)
   * Bump Standards-Version to 4.7.0, no further changes required
Checksums-Sha1:
 16fd1fa5fec233c5eb7d7e8e478620da8893cdf4 2336 volume-key_0.3.12-8.dsc
 c4a108208051ef3352888b49e85a35024b2d67a3 6276 volume-key_0.3.12-8.debian.tar.xz
 b0ba8a02077f0654b04dfea6e8f02eba2a3cb2e9 7280 
volume-key_0.3.12-8_source.buildinfo
Checksums-Sha256:
 4702857e223ae802ed0707179c3f245b8542b538b44315e41dfa2df7f6731636 2336 
volume-key_0.3.12-8.dsc
 a861bed16e777529a5060f42567ce105f079ecfae07e8369108c330d473a2e10 6276 
volume-key_0.3.12-8.debian.tar.xz
 447e285a6101ab862541b5977964eddc1eb320cc8f9911ae1169f679feb97d59 7280 
volume-key_0.3.12-8_source.buildinfo
Files:
 cd9f5f1b1706d818386efe163dceb417 2336 utils optional volume-key_0.3.12-8.dsc
 a82230479a2289d3decbb81f66bcdba2 6276 utils optional 
volume-key_0.3.12-8.debian.tar.xz
 d618ce469eea3abd54b0b700f74b111f 7280 utils optional 
volume-key_0.3.12-8_source.buildinfo

-----BEGIN PGP SIGNATURE-----

iQIzBAEBCAAdFiEECbOsLssWnJBDRcxUauHfDWCPItwFAmbZzssACgkQauHfDWCP
Itz1PA//bfgkALmkRrys2Zwo/yiB1P+dh03amwxYatFcue7NujGwTulzZU9NaQa3
Wwp4lkxs+Te0j1kKxYmx+FvHQ/z9o3yvivSnvzM2v5CBsKTmOTHh4QHIaoNpRP14
uwjIVPIV4zqxmQuL/pim0EZnNSbXKmql1Hmw0vpVK/Iubyodj8E/u6+TDhZpXMJh
ss/b7i/xyxovkxbLoyHDu3dfcy0Got/PqpGkUznwKI4xdKHqRsb0+cKvqYtyee+r
pq1nNIv9sJ+aZgC+jIWSlYgv4Zby+zgyfI99xGh6xw6qug/8KwmPcn2stPPuo3KL
wB4Z8kcJyP7XX1+YyT93YX1rZYpCT9TR+dgcV7/Lshu0DgeEsLtwLRWxk9YBAuKk
aip5limQh6K3/o/Lw1WQmmniHSk/SKtBQ9+QFJsPU/J2KPMDSCeGqUw+20TEbnAs
l3S+ua49BHpy76GqH5KYitcxePh+kU/c49pdnxAK18K+ZOvsZbPzsXsJXm8iOGtT
dLQ8ZY8Fgw5ZeXksz7e+RXY6iT3nsTfqJGuZdSbCwPJNnMDm1iTFTG8P/7c+mbMP
mCu2vrlnSnxh/QI7AP1Vg1WFdz1I4bqxSS/BOXGbHc1m5kjwc9rTAueW6M9KLUNQ
cA+WxiWFWuaeF3IliYFQYHzXPAvyp+jZi4ku6IxXu2P1PaExqvo=
=8r4M
-----END PGP SIGNATURE-----

Attachment: pgpPTPMFGEMUu.pgp
Description: PGP signature


--- End Message ---
_______________________________________________
Pkg-utopia-maintainers mailing list
Pkg-utopia-maintainers@alioth-lists.debian.net
https://alioth-lists.debian.net/cgi-bin/mailman/listinfo/pkg-utopia-maintainers

Reply via email to