Your message dated Thu, 17 May 2012 16:15:09 +0800
with message-id
<CAN3veRdTUmxTK6gBBUtKRj3yDhpoGeY1vCyos1pQBT=yt4l...@mail.gmail.com>
and subject line Bug#510527: missing dependencies in debian/rules break
parallel (-j2) builds
has caused the Debian Bug report #510527,
regarding missing dependencies in debian/rules break parallel (-j2) builds
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.)
--
510527: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=510527
Debian Bug Tracking System
Contact [email protected] with problems
--- Begin Message ---
Package: apt
Version: 0.7.19
Severity: normal
Tags: patch
Missing dependencies in debian/rules break parallel builds. See
attached patch.
-- System Information:
Debian Release: 5.0
Architecture: amd64 (x86_64)
Kernel: Linux 2.6.18-6-amd64 (SMP w/2 CPU cores)
Locale: LANG=ca_AD.UTF-8, LC_CTYPE=ca_AD.UTF-8 (charmap=UTF-8)
Shell: /bin/sh linked to /bin/bash
Versions of packages apt depends on:
ii debian-archive-keyring 2008.04.16+nmu1 GnuPG archive keys of the Debian a
ii libc6 2.7-16 GNU C Library: Shared libraries
ii libgcc1 1:4.3.2-1 GCC support library
ii libstdc++6 4.3.2-1 The GNU Standard C++ Library v3
apt recommends no packages.
Versions of packages apt suggests:
pn apt-doc <none> (no description available)
ii aptitude 0.4.11.11-1 terminal-based package manager
ii bzip2 1.0.5-1 high-quality block-sorting file co
ii dpkg-dev 1.14.23 Debian package development tools
ii lzma 4.43-14 Compression method of 7z format in
pn python-apt <none> (no description available)
ii synaptic 0.62.3 Graphical package manager
-- no debconf information
diff -x po -ur apt-0.7.19/debian/rules apt-0.7.19.new/debian/rules
--- apt-0.7.19/debian/rules 2008-11-24 09:32:23.000000000 +0000
+++ apt-0.7.19.new/debian/rules 2009-01-02 20:02:57.000000000 +0000
@@ -61,7 +61,7 @@
ifneq ($(APT_DEBVER),$(APT_CONFVER))
ifneq ($(APT_DEBVER),)
.PHONY: configure.in
-configure.in:
+configure.in: debian/changelog
sed -e 's/$(APT_CONFVER)/$(APT_DEBVER)/' $@ > $@.$$$$ && mv $@.$$$$ $@
endif
else
@@ -269,7 +269,7 @@
dh_md5sums -p$@
dh_builddeb -p$@
-apt-utils: build debian/shlibs.local
+apt-utils: build build-doc debian/shlibs.local
dh_testdir -p$@
dh_testroot -p$@
dh_clean -p$@ -k
--- End Message ---
--- Begin Message ---
Version: 0.9.0~exp1
> Missing dependencies in debian/rules break parallel builds. See
> attached patch.
This patch from Jan 2009 no longer applies on 0.9.3. Further,
parallel builds are currently working fine with this command:
$ fakeroot debian/rules binary -j2
One of the changes in the patch:
-configure.in:
+configure.in: debian/changelog
sed -e 's/$(APT_CONFVER)/$(APT_DEBVER)/' $@ > $@.$$$$ …
is obsoleted by this change in 0.9.0~exp1:
* debian/rules:
- do not sed in configure.in to set the version-number
--- End Message ---