Your message dated Sun, 04 Nov 2018 17:15:24 +0000
with message-id <[email protected]>
and subject line Bug#911416: Removed package(s) from unstable
has caused the Debian Bug report #669355,
regarding Uses wrong pkg-config for dbus test when cross-building
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 [email protected]
immediately.)
--
669355: https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=669355
Debian Bug Tracking System
Contact [email protected] with problems
--- Begin Message ---
Source: consolekit
Version: 0.4.5-3
Severity: normal
User: [email protected]
Usertags: cross
consolekit can't find dbus-1 when cross-building:
>From the build log:
-----------
Package dbus-1 was not found in the pkg-config search path.
Perhaps you should add the directory containing dbus-1.pc'
to the PKG_CONFIG_PATH environment variable
No package 'dbus-1' found
Error: Couldn't determine the version of your DBUS package.
-----------
This turns out to be because a local test in configure.ac used
hard-coded 'pkg-config' instead of $PKG_CONFIG which autoconf has set
to the correct path (/usr/bin/<triplet>-pkg-config when cross-building)
patch attached. This should be upstreamed.
(Note that this patch does not solve all the issues of cross-building
this package using multiarch mechanisms - there are other issues which
will be reported separately).
Wookey
--
Principal hats: Linaro, Emdebian, Wookware, Balloonboard, ARM
http://wookware.org/
diff -urN origs/consolekit-0.4.5/debian/patches/cross-pkg-config-fix.patch patched/consolekit-0.4.5/debian/patches/cross-pkg-config-fix.patch
--- origs/consolekit-0.4.5/debian/patches/cross-pkg-config-fix.patch 1970-01-01 00:00:00.000000000 +0000
+++ patched/consolekit-0.4.5/debian/patches/cross-pkg-config-fix.patch 2012-04-18 15:24:52.000000000 +0000
@@ -0,0 +1,22 @@
+Description: Ensure cross-pkg-config is used when cross-building
+ When cross-building pkg-config should use <triplet>-pkg-config in
+ order to search the correct paths. Autoconf already knows this and
+ does it right. This patch ensures that local autoconf extra do it
+ right by using $PKG_CONFIG instead of 'pkg-config'.
+
+Author: Wookey <[email protected]>
+
+---
+Last-Update: <2012-04-18>
+
+--- consolekit-0.4.5.orig/configure.ac
++++ consolekit-0.4.5/configure.ac
+@@ -90,7 +90,7 @@ esac
+
+ # Find out the version of DBUS we're using
+
+-dbus_version=`pkg-config --modversion dbus-1`
++dbus_version=`$PKG_CONFIG --modversion dbus-1`
+ DBUS_VERSION_MAJOR=`echo $dbus_version | awk -F. '{print $1}'`
+ DBUS_VERSION_MINOR=`echo $dbus_version | awk -F. '{print $2}'`
+ DBUS_VERSION_MICRO=`echo $dbus_version | awk -F. '{print $3}'`
diff -urN origs/consolekit-0.4.5/debian/patches/series patched/consolekit-0.4.5/debian/patches/series
--- origs/consolekit-0.4.5/debian/patches/series 2012-02-29 22:05:05.000000000 +0000
+++ patched/consolekit-0.4.5/debian/patches/series 2012-04-18 15:23:25.000000000 +0000
@@ -2,3 +2,4 @@
00git_truncate_frequent.patch
03-cleanup_console_tags.patch
82-hurd_support.patch
+cross-pkg-config-fix.patch
--- End Message ---
--- Begin Message ---
Version: 0.4.6-6.1+rm
Dear submitter,
as the package consolekit has just been removed from the Debian archive
unstable we hereby close the associated bug reports. We are sorry
that we couldn't deal with your issue properly.
For details on the removal, please see https://bugs.debian.org/911416
The version of this package that was in Debian prior to this removal
can still be found using http://snapshot.debian.org/.
This message was generated automatically; if you believe that there is
a problem with it please contact the archive administrators by mailing
[email protected].
Debian distribution maintenance software
pp.
Scott Kitterman (the ftpmaster behind the curtain)
--- End Message ---