[Piuparts-devel] Bug#766543: fails upgrading real to virtual packages (missing --auto-deconfigure)
Helmut Grohne
helmut at subdivi.de
Thu Oct 23 21:08:17 UTC 2014
Package: piuparts
Version: 0.59
Severity: wishlist
Tags: patch
User: helmutg at debian.org
Usertags: rebootstrap
When testing the fix for #761449 with piuparts, the result is a failure.
It fails upgrading the packages, because piuparts does not allow dpkg to
deconfigure packages. Since one package transforms into a virtual
package, it needs to be deconfigured to allow the package taking over to
be unpacked. Since unpacking fails piuparts proclaims failure.
It is not 100% clear to me whether this is a bug in piuparts or whether
my patch for #761449 is broken.
When adding --auto-deconfigure to the dpkg -i invocations, piuparts
succeeds the upgrade.
I am attaching:
* A .debdiff adding the suggested change.
* A failing piuparts log file from sid piuparts.
* A succeeding piuparts log file from patched piuparts.
Helmut
-------------- next part --------------
diff -Nru piuparts-0.59/debian/changelog piuparts-0.59+nmu1/debian/changelog
--- piuparts-0.59/debian/changelog 2014-07-14 15:14:33.000000000 +0200
+++ piuparts-0.59+nmu1/debian/changelog 2014-10-23 23:00:02.000000000 +0200
@@ -1,3 +1,10 @@
+piuparts (0.59+nmu1) UNRELEASED; urgency=medium
+
+ * Non-maintainer upload.
+ * When upgrading packages allow deconfiguration. (Closes: #-1)
+
+ -- Helmut Grohne <helmut at subdivi.de> Thu, 23 Oct 2014 22:59:42 +0200
+
piuparts (0.59) unstable; urgency=low
[ Holger Levsen ]
diff -Nru piuparts-0.59/piuparts.py piuparts-0.59+nmu1/piuparts.py
--- piuparts-0.59/piuparts.py 2014-07-14 15:14:13.000000000 +0200
+++ piuparts-0.59+nmu1/piuparts.py 2014-10-23 22:59:37.000000000 +0200
@@ -1093,14 +1093,14 @@
if settings.list_installed_files:
pre_info = self.save_meta_data()
- self.run(["dpkg", "-i"] + tmp_files, ignore_errors=True)
+ self.run(["dpkg", "-i", "-B"] + tmp_files, ignore_errors=True)
self.list_installed_files (pre_info, self.save_meta_data())
self.run(apt_get_install)
self.list_installed_files (pre_info, self.save_meta_data())
else:
- self.run(["dpkg", "-i"] + tmp_files, ignore_errors=True)
+ self.run(["dpkg", "-i", "-B"] + tmp_files, ignore_errors=True)
self.run(apt_get_install)
if not self.is_installed(unqualify(packages)):
-------------- next part --------------
0m0.0s INFO: ------------------------------------------------------------------------------
0m0.0s INFO: To quickly glance what went wrong, scroll down to the bottom of this logfile.
0m0.0s INFO: FAQ available at https://wiki.debian.org/piuparts/FAQ
0m0.0s INFO: The FAQ also explains how to contact us in case you think piuparts is wrong.
0m0.0s INFO: ------------------------------------------------------------------------------
0m0.0s INFO: piuparts version 0.59 starting up.
0m0.0s INFO: Command line arguments: /usr/sbin/piuparts --basetgz /var/cache/pbuilder/base.tgz --tmpdir /var/cache/pbuilder/build /var/cache/pbuilder/result/flex_2.5.39-8.1_amd64.changes
0m0.0s INFO: Running on: Linux alf 3.15.6+ #1 SMP PREEMPT Sun Jul 20 16:28:08 CEST 2014 x86_64
0m0.0s DEBUG: Starting command: ['dpkg', '--info', '/var/cache/pbuilder/result/flex-bin_2.5.39-8.1_amd64.deb']
0m0.0s DUMP:
new debian package, version 2.0.
size 344858 bytes: control archive=6013 bytes.
1171 bytes, 28 lines control
2310 bytes, 32 lines md5sums
7731 bytes, 226 lines * postinst #!/bin/sh
3928 bytes, 128 lines * prerm #!/bin/sh
Package: flex-bin
Source: flex
Version: 2.5.39-8.1
Architecture: amd64
Maintainer: Manoj Srivastava <srivasta at debian.org>
Installed-Size: 1165
Pre-Depends: debconf | debconf-2.0
Depends: libc6 (>= 2.14), m4, dpkg (>= 1.15.4) | install-info
Recommends: gcc | c-compiler
Suggests: bison, build-essential
Breaks: flex (<< 2.5.39-8.1)
Replaces: flex (<< 2.5.39-8.1)
Section: devel
Priority: optional
Multi-Arch: foreign
Homepage: http://flex.sf.net/
Description: fast lexical analyzer generator
Flex is a tool for generating scanners: programs which recognized lexical
patterns in text. It reads the given input files for a description of a
scanner to generate. The description is in the form of pairs of regular
expressions and C code, called rules. Flex generates as output a C source
file, lex.yy.c, which defines a routine yylex(). This file is compiled
and linked with the -lfl library to produce an executable. When the
executable is run, it analyzes its input for occurrences of the regular
expressions. Whenever it finds one, it executes the corresponding C code.
.
This package actually contains the flex executable, but you should install
flex instead.
0m0.0s DEBUG: Command ok: ['dpkg', '--info', '/var/cache/pbuilder/result/flex-bin_2.5.39-8.1_amd64.deb']
0m0.0s DEBUG: Starting command: ['dpkg', '--info', '/var/cache/pbuilder/result/flex-doc_2.5.39-8.1_all.deb']
0m0.1s DUMP:
new debian package, version 2.0.
size 735726 bytes: control archive=14926 bytes.
920 bytes, 20 lines control
21823 bytes, 228 lines md5sums
7042 bytes, 208 lines * postinst #!/bin/sh
6200 bytes, 180 lines * postrm #!/bin/sh
3790 bytes, 123 lines * prerm #!/bin/sh
Package: flex-doc
Source: flex
Version: 2.5.39-8.1
Architecture: all
Maintainer: Manoj Srivastava <srivasta at debian.org>
Installed-Size: 2131
Section: doc
Priority: optional
Homepage: http://flex.sf.net/
Description: Documentation for flex (a fast lexical analyzer generator)
Flex is a tool for generating scanners: programs which recognized lexical
patterns in text. It reads the given input files for a description of a
scanner to generate. The description is in the form of pairs of regular
expressions and C code, called rules. Flex generates as output a C source
file, lex.yy.c, which defines a routine yylex(). This file is compiled
and linked with the -lfl library to produce an executable. When the
executable is run, it analyzes its input for occurrences of the regular
expressions. Whenever it finds one, it executes the corresponding C code.
.
This package contains the HTML documentation for flex.
0m0.1s DEBUG: Command ok: ['dpkg', '--info', '/var/cache/pbuilder/result/flex-doc_2.5.39-8.1_all.deb']
0m0.1s DEBUG: Starting command: ['dpkg', '--info', '/var/cache/pbuilder/result/flex_2.5.39-8.1_amd64.deb']
0m0.1s DUMP:
new debian package, version 2.0.
size 150392 bytes: control archive=3179 bytes.
1147 bytes, 24 lines control
5213 bytes, 69 lines md5sums
135 bytes, 7 lines * postinst #!/bin/sh
132 bytes, 7 lines * postrm #!/bin/sh
17 bytes, 1 lines shlibs
Package: flex
Version: 2.5.39-8.1
Architecture: amd64
Maintainer: Manoj Srivastava <srivasta at debian.org>
Installed-Size: 257
Depends: libc6 (>= 2.2.5), flex-bin (= 2.5.39-8.1)
Breaks: flex (<< 2.5.39), flex-old (<= 2.5.4a-10), libfl-dev (<< 2.5.39-8.1)
Replaces: flex (<< 2.5.39), flex-old (<= 2.5.4a-10), libfl-dev (<< 2.5.39-8.1)
Provides: libfl-dev
Section: devel
Priority: optional
Multi-Arch: same
Homepage: http://flex.sf.net/
Description: static library for flex (a fast lexical analyzer generator)
Flex is a tool for generating scanners: programs which recognized lexical
patterns in text. It reads the given input files for a description of a
scanner to generate. The description is in the form of pairs of regular
expressions and C code, called rules. Flex generates as output a C source
file, lex.yy.c, which defines a routine yylex(). This file is compiled
and linked with the -lfl library to produce an executable. When the
executable is run, it analyzes its input for occurrences of the regular
expressions. Whenever it finds one, it executes the corresponding C code.
.
This package contains the static library for flex.
0m0.1s DEBUG: Command ok: ['dpkg', '--info', '/var/cache/pbuilder/result/flex_2.5.39-8.1_amd64.deb']
0m0.1s DEBUG: Created temporary directory /var/cache/pbuilder/build/tmpNPjVZb
0m0.1s DEBUG: Unpacking /var/cache/pbuilder/base.tgz into /var/cache/pbuilder/build/tmpNPjVZb
0m0.1s DEBUG: Starting command: ['eatmydata', 'tar', '-C', '/var/cache/pbuilder/build/tmpNPjVZb', '-zxf', '/var/cache/pbuilder/base.tgz']
0m12.4s DEBUG: Command ok: ['eatmydata', 'tar', '-C', '/var/cache/pbuilder/build/tmpNPjVZb', '-zxf', '/var/cache/pbuilder/base.tgz']
0m15.7s DEBUG: Starting command: ['chroot', '/var/cache/pbuilder/build/tmpNPjVZb', 'mount', '-t', 'proc', 'proc', '/proc']
0m16.9s DEBUG: Command ok: ['chroot', '/var/cache/pbuilder/build/tmpNPjVZb', 'mount', '-t', 'proc', 'proc', '/proc']
0m16.9s DEBUG: sources.list:
deb http://debian.netcologne.de/debian sid main
deb http://debian.netcologne.de/debian sid contrib
deb http://debian.netcologne.de/debian sid non-free
0m16.9s DEBUG: Created policy-rc.d and chmodded it.
0m16.9s DEBUG: Starting command: ['chroot', '/var/cache/pbuilder/build/tmpNPjVZb', 'apt-get', 'update']
0m30.1s DUMP:
Get:1 http://debian.netcologne.de sid InRelease [242 kB]
Get:2 http://debian.netcologne.de sid/contrib Translation-en [40.9 kB]
Get:3 http://debian.netcologne.de sid/main Translation-en [4803 kB]
Get:4 http://debian.netcologne.de sid/non-free Translation-en [76.0 kB]
Get:5 http://debian.netcologne.de sid/main amd64 Packages [9437 kB]
Get:6 http://debian.netcologne.de sid/contrib amd64 Packages [63.1 kB]
Get:7 http://debian.netcologne.de sid/non-free amd64 Packages [108 kB]
Fetched 14.8 MB in 4s (3146 kB/s)
Reading package lists...
0m30.1s DEBUG: Command ok: ['chroot', '/var/cache/pbuilder/build/tmpNPjVZb', 'apt-get', 'update']
0m30.1s DEBUG: Starting command: ['chroot', '/var/cache/pbuilder/build/tmpNPjVZb', 'apt-get', '-yf', 'dist-upgrade']
0m30.8s DUMP:
Reading package lists...
Building dependency tree...
Reading state information...
0 upgraded, 0 newly installed, 0 to remove and 0 not upgraded.
0m30.8s DEBUG: Command ok: ['chroot', '/var/cache/pbuilder/build/tmpNPjVZb', 'apt-get', '-yf', 'dist-upgrade']
0m30.8s DEBUG: Starting command: ['chroot', '/var/cache/pbuilder/build/tmpNPjVZb', 'apt-get', 'clean']
0m30.8s DEBUG: Command ok: ['chroot', '/var/cache/pbuilder/build/tmpNPjVZb', 'apt-get', 'clean']
0m31.9s DEBUG: Starting command: ['chroot', '/var/cache/pbuilder/build/tmpNPjVZb', 'dpkg', '--get-selections', '*']
0m31.9s DUMP:
acl install
adduser install
apt install
aptitude install
aptitude-common install
base-files install
base-passwd install
bash install
binutils install
bsdutils install
build-essential install
bzip2 install
coreutils install
cpp install
cpp-4.9 install
dash install
debconf install
debconf-i18n install
debian-archive-keyring install
debianutils install
diffutils install
dmsetup install
dpkg install
dpkg-dev install
e2fslibs:amd64 install
e2fsprogs install
findutils install
g++ install
g++-4.9 install
gcc install
gcc-4.7-base:amd64 install
gcc-4.8-base:amd64 install
gcc-4.9 install
gcc-4.9-base:amd64 install
gnupg install
gpgv install
grep install
gzip install
hostname install
init install
initscripts install
insserv install
libacl1:amd64 install
libapt-pkg4.12:amd64 install
libasan1:amd64 install
libatomic1:amd64 install
libattr1:amd64 install
libaudit-common install
libaudit1:amd64 install
libblkid1:amd64 install
libboost-iostreams1.55.0:amd64 install
libbz2-1.0:amd64 install
libc-bin install
libc-dev-bin install
libc6:amd64 install
libc6-dev:amd64 install
libcap2:amd64 install
libcap2-bin install
libcilkrts5:amd64 install
libcloog-isl4:amd64 install
libcomerr2:amd64 install
libcryptsetup4:amd64 install
libcwidget3:amd64 install
libdb5.3:amd64 install
libdebconfclient0:amd64 install
libdevmapper1.02.1:amd64 install
libdpkg-perl install
libgcc-4.9-dev:amd64 install
libgcc1:amd64 install
libgcrypt20:amd64 install
libgdbm3:amd64 install
libgmp10:amd64 install
libgomp1:amd64 install
libgpg-error0:amd64 install
libisl10:amd64 install
libitm1:amd64 install
libkmod2:amd64 install
liblocale-gettext-perl install
liblsan0:amd64 install
liblzma5:amd64 install
libmount1:amd64 install
libmpc3:amd64 install
libmpfr4:amd64 install
libncurses5:amd64 install
libncursesw5:amd64 install
libpam-modules:amd64 install
libpam-modules-bin install
libpam-runtime install
libpam0g:amd64 install
libpcre3:amd64 install
libprocps3:amd64 install
libquadmath0:amd64 install
libreadline6:amd64 install
libselinux1:amd64 install
libsemanage-common install
libsemanage1:amd64 install
libsepol1:amd64 install
libsigc++-2.0-0c2a:amd64 install
libslang2:amd64 install
libsmartcols1:amd64 install
libsqlite3-0:amd64 install
libss2:amd64 install
libstdc++-4.9-dev:amd64 install
libstdc++6:amd64 install
libsystemd0:amd64 install
libtext-charwidth-perl install
libtext-iconv-perl install
libtext-wrapi18n-perl install
libtimedate-perl install
libtinfo5:amd64 install
libtsan0:amd64 install
libubsan0:amd64 install
libudev1:amd64 install
libusb-0.1-4:amd64 install
libustr-1.0-1:amd64 install
libuuid1:amd64 install
libxapian22 install
linux-libc-dev:amd64 install
login install
lsb-base install
make install
mawk install
mount install
multiarch-support install
ncurses-base install
ncurses-bin install
passwd install
patch install
perl install
perl-base install
perl-modules install
procps install
readline-common install
sed install
sensible-utils install
startpar install
systemd install
systemd-sysv install
sysv-rc install
sysvinit-utils install
tar install
tzdata install
udev install
util-linux install
xz-utils install
zlib1g:amd64 install
0m31.9s DEBUG: Command ok: ['chroot', '/var/cache/pbuilder/build/tmpNPjVZb', 'dpkg', '--get-selections', '*']
0m31.9s DEBUG: Starting command: ['chroot', '/var/cache/pbuilder/build/tmpNPjVZb', 'dpkg-divert', '--list']
0m32.0s DUMP:
diversion of /usr/share/man/man1/sh.1.gz to /usr/share/man/man1/sh.distrib.1.gz by dash
diversion of /bin/sh to /bin/sh.distrib by dash
0m32.0s DEBUG: Command ok: ['chroot', '/var/cache/pbuilder/build/tmpNPjVZb', 'dpkg-divert', '--list']
0m32.0s INFO: apt-cache does not know about any of the requested packages
0m32.0s DEBUG: Starting command: ['lsof', '-w', '+D', '/var/cache/pbuilder/build/tmpNPjVZb']
0m32.5s DEBUG: Command failed (status=1), but ignoring error: ['lsof', '-w', '+D', '/var/cache/pbuilder/build/tmpNPjVZb']
0m34.5s ERROR: WARN: Broken symlinks:
/etc/modules-load.d/modules.conf -> ../modules
0m34.5s DEBUG: Starting command: ['lsof', '-w', '+D', '/var/cache/pbuilder/build/tmpNPjVZb']
0m35.0s DEBUG: Command failed (status=1), but ignoring error: ['lsof', '-w', '+D', '/var/cache/pbuilder/build/tmpNPjVZb']
0m37.0s ERROR: WARN: Broken symlinks:
/etc/modules-load.d/modules.conf -> ../modules
0m37.0s DEBUG: Copying /var/cache/pbuilder/result/flex-bin_2.5.39-8.1_amd64.deb, /var/cache/pbuilder/result/flex-doc_2.5.39-8.1_all.deb, /var/cache/pbuilder/result/flex_2.5.39-8.1_amd64.deb to /var/cache/pbuilder/build/tmpNPjVZb/tmp
0m37.0s DEBUG: Starting command: ['chroot', '/var/cache/pbuilder/build/tmpNPjVZb', 'dpkg', '-i', 'tmp/flex-bin_2.5.39-8.1_amd64.deb', 'tmp/flex-doc_2.5.39-8.1_all.deb', 'tmp/flex_2.5.39-8.1_amd64.deb']
0m39.3s DUMP:
Selecting previously unselected package flex-bin.
(Reading database ... 11986 files and directories currently installed.)
Preparing to unpack .../flex-bin_2.5.39-8.1_amd64.deb ...
Unpacking flex-bin (2.5.39-8.1) ...
Selecting previously unselected package flex-doc.
Preparing to unpack .../flex-doc_2.5.39-8.1_all.deb ...
Unpacking flex-doc (2.5.39-8.1) ...
Selecting previously unselected package flex:amd64.
Preparing to unpack tmp/flex_2.5.39-8.1_amd64.deb ...
Unpacking flex:amd64 (2.5.39-8.1) ...
dpkg: dependency problems prevent configuration of flex-bin:
flex-bin depends on m4; however:
Package m4 is not installed.
dpkg: error processing package flex-bin (--install):
dependency problems - leaving unconfigured
Setting up flex-doc (2.5.39-8.1) ...
dpkg: dependency problems prevent configuration of flex:amd64:
flex:amd64 depends on flex-bin (= 2.5.39-8.1); however:
Package flex-bin is not configured yet.
dpkg: error processing package flex:amd64 (--install):
dependency problems - leaving unconfigured
Errors were encountered while processing:
flex-bin
flex:amd64
0m39.3s DEBUG: Command failed (status=1), but ignoring error: ['chroot', '/var/cache/pbuilder/build/tmpNPjVZb', 'dpkg', '-i', 'tmp/flex-bin_2.5.39-8.1_amd64.deb', 'tmp/flex-doc_2.5.39-8.1_all.deb', 'tmp/flex_2.5.39-8.1_amd64.deb']
0m39.3s DEBUG: Starting command: ['chroot', '/var/cache/pbuilder/build/tmpNPjVZb', 'apt-get', '-yf', 'install']
0m49.3s DUMP:
Reading package lists...
Building dependency tree...
Reading state information...
Correcting dependencies... Done
The following extra packages will be installed:
libsigsegv2 m4
The following NEW packages will be installed:
libsigsegv2 m4
0 upgraded, 2 newly installed, 0 to remove and 0 not upgraded.
2 not fully installed or removed.
Need to get 283 kB of archives.
After this operation, 470 kB of additional disk space will be used.
Get:1 http://debian.netcologne.de/debian/ sid/main libsigsegv2 amd64 2.10-4 [28.8 kB]
Get:2 http://debian.netcologne.de/debian/ sid/main m4 amd64 1.4.17-4 [254 kB]
debconf: delaying package configuration, since apt-utils is not installed
Fetched 283 kB in 0s (5340 kB/s)
Selecting previously unselected package libsigsegv2:amd64.
(Reading database ... 12331 files and directories currently installed.)
Preparing to unpack .../libsigsegv2_2.10-4_amd64.deb ...
Unpacking libsigsegv2:amd64 (2.10-4) ...
Selecting previously unselected package m4.
Preparing to unpack .../archives/m4_1.4.17-4_amd64.deb ...
Unpacking m4 (1.4.17-4) ...
Setting up libsigsegv2:amd64 (2.10-4) ...
Setting up m4 (1.4.17-4) ...
Setting up flex-bin (2.5.39-8.1) ...
Setting up flex:amd64 (2.5.39-8.1) ...
Processing triggers for libc-bin (2.19-12) ...
0m49.3s DEBUG: Command ok: ['chroot', '/var/cache/pbuilder/build/tmpNPjVZb', 'apt-get', '-yf', 'install']
0m49.3s DEBUG: Starting command: ['chroot', '/var/cache/pbuilder/build/tmpNPjVZb', 'dpkg-query', '-f', '${Package} ${Status}\n', '-W', 'flex-bin', 'flex-doc', 'flex']
0m49.3s DUMP:
flex install ok installed
flex-bin install ok installed
flex-doc install ok installed
0m49.3s DEBUG: Command ok: ['chroot', '/var/cache/pbuilder/build/tmpNPjVZb', 'dpkg-query', '-f', '${Package} ${Status}\n', '-W', 'flex-bin', 'flex-doc', 'flex']
0m49.3s INFO: Installation of ['tmp/flex-bin_2.5.39-8.1_amd64.deb', 'tmp/flex-doc_2.5.39-8.1_all.deb', 'tmp/flex_2.5.39-8.1_amd64.deb'] ok
0m49.3s DEBUG: Removing /var/cache/pbuilder/build/tmpNPjVZb/tmp/flex-bin_2.5.39-8.1_amd64.deb
0m49.3s DEBUG: Removing /var/cache/pbuilder/build/tmpNPjVZb/tmp/flex-doc_2.5.39-8.1_all.deb
0m49.3s DEBUG: Removing /var/cache/pbuilder/build/tmpNPjVZb/tmp/flex_2.5.39-8.1_amd64.deb
0m49.3s DEBUG: Starting command: ['lsof', '-w', '+D', '/var/cache/pbuilder/build/tmpNPjVZb']
0m49.9s DEBUG: Command failed (status=1), but ignoring error: ['lsof', '-w', '+D', '/var/cache/pbuilder/build/tmpNPjVZb']
0m52.0s ERROR: WARN: Broken symlinks:
/etc/modules-load.d/modules.conf -> ../modules
0m52.0s DEBUG: Starting command: ['chroot', '/var/cache/pbuilder/build/tmpNPjVZb', 'dpkg', '--get-selections', '*']
0m52.1s DUMP:
acl install
adduser install
apt install
aptitude install
aptitude-common install
base-files install
base-passwd install
bash install
binutils install
bsdutils install
build-essential install
bzip2 install
coreutils install
cpp install
cpp-4.9 install
dash install
debconf install
debconf-i18n install
debian-archive-keyring install
debianutils install
diffutils install
dmsetup install
dpkg install
dpkg-dev install
e2fslibs:amd64 install
e2fsprogs install
findutils install
flex:amd64 install
flex-bin install
flex-doc install
g++ install
g++-4.9 install
gcc install
gcc-4.7-base:amd64 install
gcc-4.8-base:amd64 install
gcc-4.9 install
gcc-4.9-base:amd64 install
gnupg install
gpgv install
grep install
gzip install
hostname install
init install
initscripts install
insserv install
libacl1:amd64 install
libapt-pkg4.12:amd64 install
libasan1:amd64 install
libatomic1:amd64 install
libattr1:amd64 install
libaudit-common install
libaudit1:amd64 install
libblkid1:amd64 install
libboost-iostreams1.55.0:amd64 install
libbz2-1.0:amd64 install
libc-bin install
libc-dev-bin install
libc6:amd64 install
libc6-dev:amd64 install
libcap2:amd64 install
libcap2-bin install
libcilkrts5:amd64 install
libcloog-isl4:amd64 install
libcomerr2:amd64 install
libcryptsetup4:amd64 install
libcwidget3:amd64 install
libdb5.3:amd64 install
libdebconfclient0:amd64 install
libdevmapper1.02.1:amd64 install
libdpkg-perl install
libgcc-4.9-dev:amd64 install
libgcc1:amd64 install
libgcrypt20:amd64 install
libgdbm3:amd64 install
libgmp10:amd64 install
libgomp1:amd64 install
libgpg-error0:amd64 install
libisl10:amd64 install
libitm1:amd64 install
libkmod2:amd64 install
liblocale-gettext-perl install
liblsan0:amd64 install
liblzma5:amd64 install
libmount1:amd64 install
libmpc3:amd64 install
libmpfr4:amd64 install
libncurses5:amd64 install
libncursesw5:amd64 install
libpam-modules:amd64 install
libpam-modules-bin install
libpam-runtime install
libpam0g:amd64 install
libpcre3:amd64 install
libprocps3:amd64 install
libquadmath0:amd64 install
libreadline6:amd64 install
libselinux1:amd64 install
libsemanage-common install
libsemanage1:amd64 install
libsepol1:amd64 install
libsigc++-2.0-0c2a:amd64 install
libsigsegv2:amd64 install
libslang2:amd64 install
libsmartcols1:amd64 install
libsqlite3-0:amd64 install
libss2:amd64 install
libstdc++-4.9-dev:amd64 install
libstdc++6:amd64 install
libsystemd0:amd64 install
libtext-charwidth-perl install
libtext-iconv-perl install
libtext-wrapi18n-perl install
libtimedate-perl install
libtinfo5:amd64 install
libtsan0:amd64 install
libubsan0:amd64 install
libudev1:amd64 install
libusb-0.1-4:amd64 install
libustr-1.0-1:amd64 install
libuuid1:amd64 install
libxapian22 install
linux-libc-dev:amd64 install
login install
lsb-base install
m4 install
make install
mawk install
mount install
multiarch-support install
ncurses-base install
ncurses-bin install
passwd install
patch install
perl install
perl-base install
perl-modules install
procps install
readline-common install
sed install
sensible-utils install
startpar install
systemd install
systemd-sysv install
sysv-rc install
sysvinit-utils install
tar install
tzdata install
udev install
util-linux install
xz-utils install
zlib1g:amd64 install
0m52.1s DEBUG: Command ok: ['chroot', '/var/cache/pbuilder/build/tmpNPjVZb', 'dpkg', '--get-selections', '*']
0m53.6s DEBUG: Starting command: ['debsums', '--root', '/var/cache/pbuilder/build/tmpNPjVZb', '-ac']
0m55.6s DEBUG: Command ok: ['debsums', '--root', '/var/cache/pbuilder/build/tmpNPjVZb', '-ac']
0m55.6s DEBUG: Starting command: ['dpkg-query', '-f', '${Version}\n', '-W', 'adequate']
0m55.7s DUMP:
0.12.1
0m55.7s DEBUG: Command ok: ['dpkg-query', '-f', '${Version}\n', '-W', 'adequate']
0m55.7s INFO: Running adequate version 0.12.1 now.
0m55.7s DEBUG: Starting command: ['adequate', '--root', '/var/cache/pbuilder/build/tmpNPjVZb', 'flex-bin', 'flex-doc', 'flex']
0m56.0s DUMP:
flex:amd64: undefined-symbol /usr/lib/x86_64-linux-gnu/libfl_pic.so.2.0.0 => yylex
0m56.0s DEBUG: Command ok: ['adequate', '--root', '/var/cache/pbuilder/build/tmpNPjVZb', 'flex-bin', 'flex-doc', 'flex']
0m56.0s ERROR: WARN: Inadequate results from running adequate!
flex:amd64: undefined-symbol /usr/lib/x86_64-linux-gnu/libfl_pic.so.2.0.0 => yylex
0m56.0s ERROR: WARN: Running adequate resulted in inadequate tags found: undefined-symbol
0m56.0s DEBUG: Starting command: ['chroot', '/var/cache/pbuilder/build/tmpNPjVZb', 'apt-get', 'remove', 'flex:amd64', 'libsigsegv2:amd64', 'm4', 'flex-doc', 'flex-bin']
1m1.1s DUMP:
Reading package lists...
Building dependency tree...
Reading state information...
The following packages will be REMOVED:
flex flex-bin flex-doc libsigsegv2 m4
0 upgraded, 0 newly installed, 5 to remove and 0 not upgraded.
After this operation, 4108 kB disk space will be freed.
(Reading database ... 12402 files and directories currently installed.)
Removing flex:amd64 (2.5.39-8.1) ...
Removing flex-bin (2.5.39-8.1) ...
Removing flex-doc (2.5.39-8.1) ...
Removing m4 (1.4.17-4) ...
Removing libsigsegv2:amd64 (2.10-4) ...
Processing triggers for libc-bin (2.19-12) ...
1m1.1s DEBUG: Command ok: ['chroot', '/var/cache/pbuilder/build/tmpNPjVZb', 'apt-get', 'remove', 'flex:amd64', 'libsigsegv2:amd64', 'm4', 'flex-doc', 'flex-bin']
1m1.1s DEBUG: Starting command: ['chroot', '/var/cache/pbuilder/build/tmpNPjVZb', 'dpkg', '--purge', 'flex:amd64', 'libsigsegv2:amd64', 'm4']
1m2.3s DUMP:
(Reading database ... 11986 files and directories currently installed.)
Removing flex:amd64 (2.5.39-8.1) ...
Purging configuration files for flex:amd64 (2.5.39-8.1) ...
Removing libsigsegv2:amd64 (2.10-4) ...
Purging configuration files for libsigsegv2:amd64 (2.10-4) ...
dpkg: warning: ignoring request to remove m4 which isn't installed
1m2.3s DEBUG: Command ok: ['chroot', '/var/cache/pbuilder/build/tmpNPjVZb', 'dpkg', '--purge', 'flex:amd64', 'libsigsegv2:amd64', 'm4']
1m2.3s DEBUG: Starting command: ['chroot', '/var/cache/pbuilder/build/tmpNPjVZb', 'dpkg', '--purge', 'flex-doc', 'flex-bin']
1m3.1s DUMP:
(Reading database ... 11986 files and directories currently installed.)
Removing flex-doc (2.5.39-8.1) ...
Purging configuration files for flex-doc (2.5.39-8.1) ...
dpkg: warning: ignoring request to remove flex-bin which isn't installed
1m3.1s DEBUG: Command ok: ['chroot', '/var/cache/pbuilder/build/tmpNPjVZb', 'dpkg', '--purge', 'flex-doc', 'flex-bin']
1m3.1s DEBUG: Starting command: ['chroot', '/var/cache/pbuilder/build/tmpNPjVZb', 'dpkg', '--purge', '--pending']
1m3.2s DEBUG: Command ok: ['chroot', '/var/cache/pbuilder/build/tmpNPjVZb', 'dpkg', '--purge', '--pending']
1m3.2s DEBUG: Starting command: ['chroot', '/var/cache/pbuilder/build/tmpNPjVZb', 'dpkg', '--remove', '--pending']
1m3.3s DEBUG: Command ok: ['chroot', '/var/cache/pbuilder/build/tmpNPjVZb', 'dpkg', '--remove', '--pending']
1m3.3s DEBUG: Starting command: ['lsof', '-w', '+D', '/var/cache/pbuilder/build/tmpNPjVZb']
1m3.9s DEBUG: Command failed (status=1), but ignoring error: ['lsof', '-w', '+D', '/var/cache/pbuilder/build/tmpNPjVZb']
1m5.9s ERROR: WARN: Broken symlinks:
/etc/modules-load.d/modules.conf -> ../modules
1m5.9s DEBUG: Starting command: ['chroot', '/var/cache/pbuilder/build/tmpNPjVZb', 'dpkg-divert', '--list']
1m5.9s DUMP:
diversion of /usr/share/man/man1/sh.1.gz to /usr/share/man/man1/sh.distrib.1.gz by dash
diversion of /bin/sh to /bin/sh.distrib by dash
1m5.9s DEBUG: Command ok: ['chroot', '/var/cache/pbuilder/build/tmpNPjVZb', 'dpkg-divert', '--list']
1m5.9s DEBUG: Starting command: ['chroot', '/var/cache/pbuilder/build/tmpNPjVZb', 'apt-get', 'clean']
1m5.9s DEBUG: Command ok: ['chroot', '/var/cache/pbuilder/build/tmpNPjVZb', 'apt-get', 'clean']
1m7.8s INFO: PASS: Installation and purging test.
1m7.8s DEBUG: Starting command: ['chroot', '/var/cache/pbuilder/build/tmpNPjVZb', 'apt-cache', 'show', 'flex-bin']
1m12.8s DUMP:
E: No packages found
1m12.8s DEBUG: Command failed (status=100), but ignoring error: ['chroot', '/var/cache/pbuilder/build/tmpNPjVZb', 'apt-cache', 'show', 'flex-bin']
1m12.8s DEBUG: Starting command: ['chroot', '/var/cache/pbuilder/build/tmpNPjVZb', 'apt-cache', 'show', 'flex-doc']
1m12.9s DUMP:
Package: flex-doc
Source: flex
Version: 2.5.39-8
Installed-Size: 2139
Maintainer: Manoj Srivastava <srivasta at debian.org>
Architecture: all
Description-en: Documentation for flex (a fast lexical analyzer generator)
Flex is a tool for generating scanners: programs which recognized lexical
patterns in text. It reads the given input files for a description of a
scanner to generate. The description is in the form of pairs of regular
expressions and C code, called rules. Flex generates as output a C source
file, lex.yy.c, which defines a routine yylex(). This file is compiled
and linked with the -lfl library to produce an executable. When the
executable is run, it analyzes its input for occurrences of the regular
expressions. Whenever it finds one, it executes the corresponding C code.
.
This package contains the HTML documentation for flex.
Description-md5: 213bd983eea770cd45ca9e776fa600ed
Homepage: http://flex.sf.net/
Tag: devel::code-generator, devel::doc, made-of::html, role::documentation
Section: doc
Priority: optional
Filename: pool/main/f/flex/flex-doc_2.5.39-8_all.deb
Size: 738372
MD5sum: 627ddc1fff823aef64f594e32845b91e
SHA1: bec297a7bfaa7fe70ab9b850b97929ea2d0878e6
SHA256: 4c879658048c14d5225c090d7ca6ed2b17d39e29a15c1bff5878cd1fa4a5131d
1m12.9s DEBUG: Command ok: ['chroot', '/var/cache/pbuilder/build/tmpNPjVZb', 'apt-cache', 'show', 'flex-doc']
1m12.9s DEBUG: Starting command: ['chroot', '/var/cache/pbuilder/build/tmpNPjVZb', 'apt-cache', 'show', 'flex']
1m12.9s DUMP:
Package: flex
Version: 2.5.39-8
Installed-Size: 1288
Maintainer: Manoj Srivastava <srivasta at debian.org>
Architecture: amd64
Depends: libc6 (>= 2.14), m4, libfl-dev (= 2.5.39-8), dpkg (>= 1.15.4) | install-info
Pre-Depends: debconf | debconf-2.0
Recommends: gcc | c-compiler
Suggests: bison, build-essential
Description-en: fast lexical analyzer generator
Flex is a tool for generating scanners: programs which recognized lexical
patterns in text. It reads the given input files for a description of a
scanner to generate. The description is in the form of pairs of regular
expressions and C code, called rules. Flex generates as output a C source
file, lex.yy.c, which defines a routine yylex(). This file is compiled
and linked with the -lfl library to produce an executable. When the
executable is run, it analyzes its input for occurrences of the regular
expressions. Whenever it finds one, it executes the corresponding C code.
Description-md5: c30a7ef9a61fca3debe97b92c3f65013
Multi-Arch: foreign
Homepage: http://flex.sf.net/
Tag: devel::code-generator, implemented-in::c, interface::commandline,
role::program, scope::utility, works-with::software:source
Section: devel
Priority: optional
Filename: pool/main/f/flex/flex_2.5.39-8_amd64.deb
Size: 422010
MD5sum: 42ebd5f9c098ad2ca6d60e5c82ad8791
SHA1: a743c2f8eab6f2b6692e837b44832ab61a588fee
SHA256: 724b653c6ad43e625d090ba16e56da8977cc22e3e3eb575e48558e23aaf1bd01
1m12.9s DEBUG: Command ok: ['chroot', '/var/cache/pbuilder/build/tmpNPjVZb', 'apt-cache', 'show', 'flex']
1m12.9s INFO: apt-cache knows about the following packages: flex-doc, flex
1m12.9s INFO: the following packages are not in the archive: flex-bin
1m12.9s DEBUG: Starting command: ['chroot', '/var/cache/pbuilder/build/tmpNPjVZb', 'apt-cache', 'policy']
1m13.0s DUMP:
Package files:
100 /var/lib/dpkg/status
release a=now
500 http://debian.netcologne.de/debian/ sid/non-free Translation-en
500 http://debian.netcologne.de/debian/ sid/main Translation-en
500 http://debian.netcologne.de/debian/ sid/contrib Translation-en
500 http://debian.netcologne.de/debian/ sid/non-free amd64 Packages
release o=Debian,a=unstable,n=sid,l=Debian,c=non-free
origin debian.netcologne.de
500 http://debian.netcologne.de/debian/ sid/contrib amd64 Packages
release o=Debian,a=unstable,n=sid,l=Debian,c=contrib
origin debian.netcologne.de
500 http://debian.netcologne.de/debian/ sid/main amd64 Packages
release o=Debian,a=unstable,n=sid,l=Debian,c=main
origin debian.netcologne.de
Pinned packages:
1m13.0s DEBUG: Command ok: ['chroot', '/var/cache/pbuilder/build/tmpNPjVZb', 'apt-cache', 'policy']
1m13.0s DEBUG: Starting command: ['chroot', '/var/cache/pbuilder/build/tmpNPjVZb', 'apt-cache', 'policy', 'flex-doc', 'flex']
1m13.0s DUMP:
flex-doc:
Installed: (none)
Candidate: 2.5.39-8
Version table:
2.5.39-8 0
500 http://debian.netcologne.de/debian/ sid/main amd64 Packages
flex:
Installed: (none)
Candidate: 2.5.39-8
Version table:
2.5.39-8 0
500 http://debian.netcologne.de/debian/ sid/main amd64 Packages
1m13.0s DEBUG: Command ok: ['chroot', '/var/cache/pbuilder/build/tmpNPjVZb', 'apt-cache', 'policy', 'flex-doc', 'flex']
1m13.0s DEBUG: Starting command: ['chroot', '/var/cache/pbuilder/build/tmpNPjVZb', 'apt-get', '-y', 'install', 'flex-doc', 'flex']
1m19.9s DUMP:
Reading package lists...
Building dependency tree...
Reading state information...
The following extra packages will be installed:
libfl-dev libsigsegv2 m4
Suggested packages:
bison
The following NEW packages will be installed:
flex flex-doc libfl-dev libsigsegv2 m4
0 upgraded, 5 newly installed, 0 to remove and 0 not upgraded.
Need to get 1518 kB of archives.
After this operation, 4118 kB of additional disk space will be used.
Get:1 http://debian.netcologne.de/debian/ sid/main libsigsegv2 amd64 2.10-4 [28.8 kB]
Get:2 http://debian.netcologne.de/debian/ sid/main m4 amd64 1.4.17-4 [254 kB]
Get:3 http://debian.netcologne.de/debian/ sid/main libfl-dev amd64 2.5.39-8 [75.0 kB]
Get:4 http://debian.netcologne.de/debian/ sid/main flex amd64 2.5.39-8 [422 kB]
Get:5 http://debian.netcologne.de/debian/ sid/main flex-doc all 2.5.39-8 [738 kB]
debconf: delaying package configuration, since apt-utils is not installed
Fetched 1518 kB in 0s (8978 kB/s)
Selecting previously unselected package libsigsegv2:amd64.
(Reading database ... 11986 files and directories currently installed.)
Preparing to unpack .../libsigsegv2_2.10-4_amd64.deb ...
Unpacking libsigsegv2:amd64 (2.10-4) ...
Selecting previously unselected package m4.
Preparing to unpack .../archives/m4_1.4.17-4_amd64.deb ...
Unpacking m4 (1.4.17-4) ...
Selecting previously unselected package libfl-dev:amd64.
Preparing to unpack .../libfl-dev_2.5.39-8_amd64.deb ...
Unpacking libfl-dev:amd64 (2.5.39-8) ...
Selecting previously unselected package flex.
Preparing to unpack .../flex_2.5.39-8_amd64.deb ...
Unpacking flex (2.5.39-8) ...
Selecting previously unselected package flex-doc.
Preparing to unpack .../flex-doc_2.5.39-8_all.deb ...
Unpacking flex-doc (2.5.39-8) ...
Setting up libsigsegv2:amd64 (2.10-4) ...
Setting up m4 (1.4.17-4) ...
Setting up libfl-dev:amd64 (2.5.39-8) ...
Setting up flex (2.5.39-8) ...
Setting up flex-doc (2.5.39-8) ...
Processing triggers for libc-bin (2.19-12) ...
1m19.9s DEBUG: Command ok: ['chroot', '/var/cache/pbuilder/build/tmpNPjVZb', 'apt-get', '-y', 'install', 'flex-doc', 'flex']
1m19.9s DEBUG: Starting command: ['lsof', '-w', '+D', '/var/cache/pbuilder/build/tmpNPjVZb']
1m20.5s DEBUG: Command failed (status=1), but ignoring error: ['lsof', '-w', '+D', '/var/cache/pbuilder/build/tmpNPjVZb']
1m22.7s ERROR: WARN: Broken symlinks:
/etc/modules-load.d/modules.conf -> ../modules
1m22.7s DEBUG: Copying /var/cache/pbuilder/result/flex-bin_2.5.39-8.1_amd64.deb, /var/cache/pbuilder/result/flex-doc_2.5.39-8.1_all.deb, /var/cache/pbuilder/result/flex_2.5.39-8.1_amd64.deb to /var/cache/pbuilder/build/tmpNPjVZb/tmp
1m22.7s DEBUG: Starting command: ['chroot', '/var/cache/pbuilder/build/tmpNPjVZb', 'dpkg', '-i', 'tmp/flex-bin_2.5.39-8.1_amd64.deb', 'tmp/flex-doc_2.5.39-8.1_all.deb', 'tmp/flex_2.5.39-8.1_amd64.deb']
1m24.1s DUMP:
Selecting previously unselected package flex-bin.
dpkg: regarding .../flex-bin_2.5.39-8.1_amd64.deb containing flex-bin:
flex-bin breaks flex (<< 2.5.39-8.1)
flex (version 2.5.39-8) is present and installed.
dpkg: error processing archive tmp/flex-bin_2.5.39-8.1_amd64.deb (--install):
installing flex-bin would break flex, and
deconfiguration is not permitted (--auto-deconfigure might help)
(Reading database ... 12404 files and directories currently installed.)
Preparing to unpack .../flex-doc_2.5.39-8.1_all.deb ...
Unpacking flex-doc (2.5.39-8.1) over (2.5.39-8) ...
dpkg: regarding tmp/flex_2.5.39-8.1_amd64.deb containing flex:amd64:
flex breaks libfl-dev (<< 2.5.39-8.1)
libfl-dev:amd64 (version 2.5.39-8) is present and installed.
dpkg: error processing archive tmp/flex_2.5.39-8.1_amd64.deb (--install):
installing flex:amd64 would break libfl-dev:amd64, and
deconfiguration is not permitted (--auto-deconfigure might help)
Setting up flex-doc (2.5.39-8.1) ...
Errors were encountered while processing:
tmp/flex-bin_2.5.39-8.1_amd64.deb
tmp/flex_2.5.39-8.1_amd64.deb
1m24.1s DEBUG: Command failed (status=1), but ignoring error: ['chroot', '/var/cache/pbuilder/build/tmpNPjVZb', 'dpkg', '-i', 'tmp/flex-bin_2.5.39-8.1_amd64.deb', 'tmp/flex-doc_2.5.39-8.1_all.deb', 'tmp/flex_2.5.39-8.1_amd64.deb']
1m24.1s DEBUG: Starting command: ['chroot', '/var/cache/pbuilder/build/tmpNPjVZb', 'apt-get', '-yf', 'install']
1m25.9s DUMP:
Reading package lists...
Building dependency tree...
Reading state information...
0 upgraded, 0 newly installed, 0 to remove and 0 not upgraded.
1m25.9s DEBUG: Command ok: ['chroot', '/var/cache/pbuilder/build/tmpNPjVZb', 'apt-get', '-yf', 'install']
1m25.9s DEBUG: Starting command: ['chroot', '/var/cache/pbuilder/build/tmpNPjVZb', 'dpkg-query', '-f', '${Package} ${Status}\n', '-W', 'flex-bin', 'flex-doc', 'flex']
1m26.0s DUMP:
flex install ok installed
flex-bin install ok not-installed
flex-doc install ok installed
1m26.0s DEBUG: Command ok: ['chroot', '/var/cache/pbuilder/build/tmpNPjVZb', 'dpkg-query', '-f', '${Package} ${Status}\n', '-W', 'flex-bin', 'flex-doc', 'flex']
1m26.0s ERROR: Installation of flex-bin failed
1m26.0s ERROR: Could not install flex-bin flex-doc flex.
1m26.5s DEBUG: Starting command: ['chroot', '/var/cache/pbuilder/build/tmpNPjVZb', 'umount', '/proc']
1m26.5s DEBUG: Command ok: ['chroot', '/var/cache/pbuilder/build/tmpNPjVZb', 'umount', '/proc']
1m26.5s DEBUG: Starting command: ['rm', '-rf', '--one-file-system', '/var/cache/pbuilder/build/tmpNPjVZb']
1m26.9s DEBUG: Command ok: ['rm', '-rf', '--one-file-system', '/var/cache/pbuilder/build/tmpNPjVZb']
1m26.9s DEBUG: Removed directory tree at /var/cache/pbuilder/build/tmpNPjVZb
1m26.9s ERROR: piuparts run ends.
-------------- next part --------------
0m0.0s INFO: ------------------------------------------------------------------------------
0m0.0s INFO: To quickly glance what went wrong, scroll down to the bottom of this logfile.
0m0.0s INFO: FAQ available at https://wiki.debian.org/piuparts/FAQ
0m0.0s INFO: The FAQ also explains how to contact us in case you think piuparts is wrong.
0m0.0s INFO: ------------------------------------------------------------------------------
0m0.0s INFO: piuparts version 0.59 starting up.
0m0.0s INFO: Command line arguments: ./piuparts --basetgz /var/cache/pbuilder/base.tgz --tmpdir /var/cache/pbuilder/build /var/cache/pbuilder/result/flex_2.5.39-8.1_amd64.changes
0m0.0s INFO: Running on: Linux alf 3.15.6+ #1 SMP PREEMPT Sun Jul 20 16:28:08 CEST 2014 x86_64
0m0.0s DEBUG: Starting command: ['dpkg', '--info', '/var/cache/pbuilder/result/flex-bin_2.5.39-8.1_amd64.deb']
0m0.1s DUMP:
new debian package, version 2.0.
size 344858 bytes: control archive=6013 bytes.
1171 bytes, 28 lines control
2310 bytes, 32 lines md5sums
7731 bytes, 226 lines * postinst #!/bin/sh
3928 bytes, 128 lines * prerm #!/bin/sh
Package: flex-bin
Source: flex
Version: 2.5.39-8.1
Architecture: amd64
Maintainer: Manoj Srivastava <srivasta at debian.org>
Installed-Size: 1165
Pre-Depends: debconf | debconf-2.0
Depends: libc6 (>= 2.14), m4, dpkg (>= 1.15.4) | install-info
Recommends: gcc | c-compiler
Suggests: bison, build-essential
Breaks: flex (<< 2.5.39-8.1)
Replaces: flex (<< 2.5.39-8.1)
Section: devel
Priority: optional
Multi-Arch: foreign
Homepage: http://flex.sf.net/
Description: fast lexical analyzer generator
Flex is a tool for generating scanners: programs which recognized lexical
patterns in text. It reads the given input files for a description of a
scanner to generate. The description is in the form of pairs of regular
expressions and C code, called rules. Flex generates as output a C source
file, lex.yy.c, which defines a routine yylex(). This file is compiled
and linked with the -lfl library to produce an executable. When the
executable is run, it analyzes its input for occurrences of the regular
expressions. Whenever it finds one, it executes the corresponding C code.
.
This package actually contains the flex executable, but you should install
flex instead.
0m0.1s DEBUG: Command ok: ['dpkg', '--info', '/var/cache/pbuilder/result/flex-bin_2.5.39-8.1_amd64.deb']
0m0.1s DEBUG: Starting command: ['dpkg', '--info', '/var/cache/pbuilder/result/flex-doc_2.5.39-8.1_all.deb']
0m0.1s DUMP:
new debian package, version 2.0.
size 735726 bytes: control archive=14926 bytes.
920 bytes, 20 lines control
21823 bytes, 228 lines md5sums
7042 bytes, 208 lines * postinst #!/bin/sh
6200 bytes, 180 lines * postrm #!/bin/sh
3790 bytes, 123 lines * prerm #!/bin/sh
Package: flex-doc
Source: flex
Version: 2.5.39-8.1
Architecture: all
Maintainer: Manoj Srivastava <srivasta at debian.org>
Installed-Size: 2131
Section: doc
Priority: optional
Homepage: http://flex.sf.net/
Description: Documentation for flex (a fast lexical analyzer generator)
Flex is a tool for generating scanners: programs which recognized lexical
patterns in text. It reads the given input files for a description of a
scanner to generate. The description is in the form of pairs of regular
expressions and C code, called rules. Flex generates as output a C source
file, lex.yy.c, which defines a routine yylex(). This file is compiled
and linked with the -lfl library to produce an executable. When the
executable is run, it analyzes its input for occurrences of the regular
expressions. Whenever it finds one, it executes the corresponding C code.
.
This package contains the HTML documentation for flex.
0m0.1s DEBUG: Command ok: ['dpkg', '--info', '/var/cache/pbuilder/result/flex-doc_2.5.39-8.1_all.deb']
0m0.1s DEBUG: Starting command: ['dpkg', '--info', '/var/cache/pbuilder/result/flex_2.5.39-8.1_amd64.deb']
0m0.1s DUMP:
new debian package, version 2.0.
size 150392 bytes: control archive=3179 bytes.
1147 bytes, 24 lines control
5213 bytes, 69 lines md5sums
135 bytes, 7 lines * postinst #!/bin/sh
132 bytes, 7 lines * postrm #!/bin/sh
17 bytes, 1 lines shlibs
Package: flex
Version: 2.5.39-8.1
Architecture: amd64
Maintainer: Manoj Srivastava <srivasta at debian.org>
Installed-Size: 257
Depends: libc6 (>= 2.2.5), flex-bin (= 2.5.39-8.1)
Breaks: flex (<< 2.5.39), flex-old (<= 2.5.4a-10), libfl-dev (<< 2.5.39-8.1)
Replaces: flex (<< 2.5.39), flex-old (<= 2.5.4a-10), libfl-dev (<< 2.5.39-8.1)
Provides: libfl-dev
Section: devel
Priority: optional
Multi-Arch: same
Homepage: http://flex.sf.net/
Description: static library for flex (a fast lexical analyzer generator)
Flex is a tool for generating scanners: programs which recognized lexical
patterns in text. It reads the given input files for a description of a
scanner to generate. The description is in the form of pairs of regular
expressions and C code, called rules. Flex generates as output a C source
file, lex.yy.c, which defines a routine yylex(). This file is compiled
and linked with the -lfl library to produce an executable. When the
executable is run, it analyzes its input for occurrences of the regular
expressions. Whenever it finds one, it executes the corresponding C code.
.
This package contains the static library for flex.
0m0.1s DEBUG: Command ok: ['dpkg', '--info', '/var/cache/pbuilder/result/flex_2.5.39-8.1_amd64.deb']
0m0.1s DEBUG: Created temporary directory /var/cache/pbuilder/build/tmp_oIYIW
0m0.1s DEBUG: Unpacking /var/cache/pbuilder/base.tgz into /var/cache/pbuilder/build/tmp_oIYIW
0m0.1s DEBUG: Starting command: ['eatmydata', 'tar', '-C', '/var/cache/pbuilder/build/tmp_oIYIW', '-zxf', '/var/cache/pbuilder/base.tgz']
0m14.9s DEBUG: Command ok: ['eatmydata', 'tar', '-C', '/var/cache/pbuilder/build/tmp_oIYIW', '-zxf', '/var/cache/pbuilder/base.tgz']
0m14.9s DEBUG: Starting command: ['chroot', '/var/cache/pbuilder/build/tmp_oIYIW', 'mount', '-t', 'proc', 'proc', '/proc']
0m15.0s DEBUG: Command ok: ['chroot', '/var/cache/pbuilder/build/tmp_oIYIW', 'mount', '-t', 'proc', 'proc', '/proc']
0m15.0s DEBUG: sources.list:
deb http://debian.netcologne.de/debian sid main
deb http://debian.netcologne.de/debian sid contrib
deb http://debian.netcologne.de/debian sid non-free
0m16.8s DEBUG: Created policy-rc.d and chmodded it.
0m16.8s DEBUG: Starting command: ['chroot', '/var/cache/pbuilder/build/tmp_oIYIW', 'apt-get', 'update']
0m31.5s DUMP:
Get:1 http://debian.netcologne.de sid InRelease [242 kB]
Get:2 http://debian.netcologne.de sid/contrib Translation-en [40.9 kB]
Get:3 http://debian.netcologne.de sid/main Translation-en [4803 kB]
Get:4 http://debian.netcologne.de sid/non-free Translation-en [76.0 kB]
Get:5 http://debian.netcologne.de sid/main amd64 Packages [9437 kB]
Get:6 http://debian.netcologne.de sid/contrib amd64 Packages [63.1 kB]
Get:7 http://debian.netcologne.de sid/non-free amd64 Packages [108 kB]
Fetched 14.8 MB in 4s (3192 kB/s)
Reading package lists...
0m31.5s DEBUG: Command ok: ['chroot', '/var/cache/pbuilder/build/tmp_oIYIW', 'apt-get', 'update']
0m31.5s DEBUG: Starting command: ['chroot', '/var/cache/pbuilder/build/tmp_oIYIW', 'apt-get', '-yf', 'dist-upgrade']
0m32.3s DUMP:
Reading package lists...
Building dependency tree...
Reading state information...
0 upgraded, 0 newly installed, 0 to remove and 0 not upgraded.
0m32.3s DEBUG: Command ok: ['chroot', '/var/cache/pbuilder/build/tmp_oIYIW', 'apt-get', '-yf', 'dist-upgrade']
0m32.3s DEBUG: Starting command: ['chroot', '/var/cache/pbuilder/build/tmp_oIYIW', 'apt-get', 'clean']
0m32.3s DEBUG: Command ok: ['chroot', '/var/cache/pbuilder/build/tmp_oIYIW', 'apt-get', 'clean']
0m33.4s DEBUG: Starting command: ['chroot', '/var/cache/pbuilder/build/tmp_oIYIW', 'dpkg', '--get-selections', '*']
0m33.5s DUMP:
acl install
adduser install
apt install
aptitude install
aptitude-common install
base-files install
base-passwd install
bash install
binutils install
bsdutils install
build-essential install
bzip2 install
coreutils install
cpp install
cpp-4.9 install
dash install
debconf install
debconf-i18n install
debian-archive-keyring install
debianutils install
diffutils install
dmsetup install
dpkg install
dpkg-dev install
e2fslibs:amd64 install
e2fsprogs install
findutils install
g++ install
g++-4.9 install
gcc install
gcc-4.7-base:amd64 install
gcc-4.8-base:amd64 install
gcc-4.9 install
gcc-4.9-base:amd64 install
gnupg install
gpgv install
grep install
gzip install
hostname install
init install
initscripts install
insserv install
libacl1:amd64 install
libapt-pkg4.12:amd64 install
libasan1:amd64 install
libatomic1:amd64 install
libattr1:amd64 install
libaudit-common install
libaudit1:amd64 install
libblkid1:amd64 install
libboost-iostreams1.55.0:amd64 install
libbz2-1.0:amd64 install
libc-bin install
libc-dev-bin install
libc6:amd64 install
libc6-dev:amd64 install
libcap2:amd64 install
libcap2-bin install
libcilkrts5:amd64 install
libcloog-isl4:amd64 install
libcomerr2:amd64 install
libcryptsetup4:amd64 install
libcwidget3:amd64 install
libdb5.3:amd64 install
libdebconfclient0:amd64 install
libdevmapper1.02.1:amd64 install
libdpkg-perl install
libgcc-4.9-dev:amd64 install
libgcc1:amd64 install
libgcrypt20:amd64 install
libgdbm3:amd64 install
libgmp10:amd64 install
libgomp1:amd64 install
libgpg-error0:amd64 install
libisl10:amd64 install
libitm1:amd64 install
libkmod2:amd64 install
liblocale-gettext-perl install
liblsan0:amd64 install
liblzma5:amd64 install
libmount1:amd64 install
libmpc3:amd64 install
libmpfr4:amd64 install
libncurses5:amd64 install
libncursesw5:amd64 install
libpam-modules:amd64 install
libpam-modules-bin install
libpam-runtime install
libpam0g:amd64 install
libpcre3:amd64 install
libprocps3:amd64 install
libquadmath0:amd64 install
libreadline6:amd64 install
libselinux1:amd64 install
libsemanage-common install
libsemanage1:amd64 install
libsepol1:amd64 install
libsigc++-2.0-0c2a:amd64 install
libslang2:amd64 install
libsmartcols1:amd64 install
libsqlite3-0:amd64 install
libss2:amd64 install
libstdc++-4.9-dev:amd64 install
libstdc++6:amd64 install
libsystemd0:amd64 install
libtext-charwidth-perl install
libtext-iconv-perl install
libtext-wrapi18n-perl install
libtimedate-perl install
libtinfo5:amd64 install
libtsan0:amd64 install
libubsan0:amd64 install
libudev1:amd64 install
libusb-0.1-4:amd64 install
libustr-1.0-1:amd64 install
libuuid1:amd64 install
libxapian22 install
linux-libc-dev:amd64 install
login install
lsb-base install
make install
mawk install
mount install
multiarch-support install
ncurses-base install
ncurses-bin install
passwd install
patch install
perl install
perl-base install
perl-modules install
procps install
readline-common install
sed install
sensible-utils install
startpar install
systemd install
systemd-sysv install
sysv-rc install
sysvinit-utils install
tar install
tzdata install
udev install
util-linux install
xz-utils install
zlib1g:amd64 install
0m33.5s DEBUG: Command ok: ['chroot', '/var/cache/pbuilder/build/tmp_oIYIW', 'dpkg', '--get-selections', '*']
0m33.5s DEBUG: Starting command: ['chroot', '/var/cache/pbuilder/build/tmp_oIYIW', 'dpkg-divert', '--list']
0m33.5s DUMP:
diversion of /usr/share/man/man1/sh.1.gz to /usr/share/man/man1/sh.distrib.1.gz by dash
diversion of /bin/sh to /bin/sh.distrib by dash
0m33.5s DEBUG: Command ok: ['chroot', '/var/cache/pbuilder/build/tmp_oIYIW', 'dpkg-divert', '--list']
0m33.5s INFO: apt-cache does not know about any of the requested packages
0m33.5s DEBUG: Starting command: ['lsof', '-w', '+D', '/var/cache/pbuilder/build/tmp_oIYIW']
0m34.0s DEBUG: Command failed (status=1), but ignoring error: ['lsof', '-w', '+D', '/var/cache/pbuilder/build/tmp_oIYIW']
0m36.0s ERROR: WARN: Broken symlinks:
/etc/modules-load.d/modules.conf -> ../modules
0m36.0s DEBUG: Starting command: ['lsof', '-w', '+D', '/var/cache/pbuilder/build/tmp_oIYIW']
0m36.5s DEBUG: Command failed (status=1), but ignoring error: ['lsof', '-w', '+D', '/var/cache/pbuilder/build/tmp_oIYIW']
0m38.5s ERROR: WARN: Broken symlinks:
/etc/modules-load.d/modules.conf -> ../modules
0m38.5s DEBUG: Copying /var/cache/pbuilder/result/flex-bin_2.5.39-8.1_amd64.deb, /var/cache/pbuilder/result/flex-doc_2.5.39-8.1_all.deb, /var/cache/pbuilder/result/flex_2.5.39-8.1_amd64.deb to /var/cache/pbuilder/build/tmp_oIYIW/tmp
0m38.6s DEBUG: Starting command: ['chroot', '/var/cache/pbuilder/build/tmp_oIYIW', 'dpkg', '-i', '-B', 'tmp/flex-bin_2.5.39-8.1_amd64.deb', 'tmp/flex-doc_2.5.39-8.1_all.deb', 'tmp/flex_2.5.39-8.1_amd64.deb']
0m40.9s DUMP:
Selecting previously unselected package flex-bin.
(Reading database ... 11986 files and directories currently installed.)
Preparing to unpack .../flex-bin_2.5.39-8.1_amd64.deb ...
Unpacking flex-bin (2.5.39-8.1) ...
Selecting previously unselected package flex-doc.
Preparing to unpack .../flex-doc_2.5.39-8.1_all.deb ...
Unpacking flex-doc (2.5.39-8.1) ...
Selecting previously unselected package flex:amd64.
Preparing to unpack tmp/flex_2.5.39-8.1_amd64.deb ...
Unpacking flex:amd64 (2.5.39-8.1) ...
dpkg: dependency problems prevent configuration of flex-bin:
flex-bin depends on m4; however:
Package m4 is not installed.
dpkg: error processing package flex-bin (--install):
dependency problems - leaving unconfigured
Setting up flex-doc (2.5.39-8.1) ...
dpkg: dependency problems prevent configuration of flex:amd64:
flex:amd64 depends on flex-bin (= 2.5.39-8.1); however:
Package flex-bin is not configured yet.
dpkg: error processing package flex:amd64 (--install):
dependency problems - leaving unconfigured
Errors were encountered while processing:
flex-bin
flex:amd64
0m40.9s DEBUG: Command failed (status=1), but ignoring error: ['chroot', '/var/cache/pbuilder/build/tmp_oIYIW', 'dpkg', '-i', '-B', 'tmp/flex-bin_2.5.39-8.1_amd64.deb', 'tmp/flex-doc_2.5.39-8.1_all.deb', 'tmp/flex_2.5.39-8.1_amd64.deb']
0m40.9s DEBUG: Starting command: ['chroot', '/var/cache/pbuilder/build/tmp_oIYIW', 'apt-get', '-yf', 'install']
0m50.1s DUMP:
Reading package lists...
Building dependency tree...
Reading state information...
Correcting dependencies... Done
The following extra packages will be installed:
libsigsegv2 m4
The following NEW packages will be installed:
libsigsegv2 m4
0 upgraded, 2 newly installed, 0 to remove and 0 not upgraded.
2 not fully installed or removed.
Need to get 283 kB of archives.
After this operation, 470 kB of additional disk space will be used.
Get:1 http://debian.netcologne.de/debian/ sid/main libsigsegv2 amd64 2.10-4 [28.8 kB]
Get:2 http://debian.netcologne.de/debian/ sid/main m4 amd64 1.4.17-4 [254 kB]
debconf: delaying package configuration, since apt-utils is not installed
Fetched 283 kB in 0s (5362 kB/s)
Selecting previously unselected package libsigsegv2:amd64.
(Reading database ... 12331 files and directories currently installed.)
Preparing to unpack .../libsigsegv2_2.10-4_amd64.deb ...
Unpacking libsigsegv2:amd64 (2.10-4) ...
Selecting previously unselected package m4.
Preparing to unpack .../archives/m4_1.4.17-4_amd64.deb ...
Unpacking m4 (1.4.17-4) ...
Setting up libsigsegv2:amd64 (2.10-4) ...
Setting up m4 (1.4.17-4) ...
Setting up flex-bin (2.5.39-8.1) ...
Setting up flex:amd64 (2.5.39-8.1) ...
Processing triggers for libc-bin (2.19-12) ...
0m50.1s DEBUG: Command ok: ['chroot', '/var/cache/pbuilder/build/tmp_oIYIW', 'apt-get', '-yf', 'install']
0m50.1s DEBUG: Starting command: ['chroot', '/var/cache/pbuilder/build/tmp_oIYIW', 'dpkg-query', '-f', '${Package} ${Status}\n', '-W', 'flex-bin', 'flex-doc', 'flex']
0m50.1s DUMP:
flex install ok installed
flex-bin install ok installed
flex-doc install ok installed
0m50.1s DEBUG: Command ok: ['chroot', '/var/cache/pbuilder/build/tmp_oIYIW', 'dpkg-query', '-f', '${Package} ${Status}\n', '-W', 'flex-bin', 'flex-doc', 'flex']
0m50.1s INFO: Installation of ['tmp/flex-bin_2.5.39-8.1_amd64.deb', 'tmp/flex-doc_2.5.39-8.1_all.deb', 'tmp/flex_2.5.39-8.1_amd64.deb'] ok
0m50.1s DEBUG: Removing /var/cache/pbuilder/build/tmp_oIYIW/tmp/flex-bin_2.5.39-8.1_amd64.deb
0m50.1s DEBUG: Removing /var/cache/pbuilder/build/tmp_oIYIW/tmp/flex-doc_2.5.39-8.1_all.deb
0m50.1s DEBUG: Removing /var/cache/pbuilder/build/tmp_oIYIW/tmp/flex_2.5.39-8.1_amd64.deb
0m50.1s DEBUG: Starting command: ['lsof', '-w', '+D', '/var/cache/pbuilder/build/tmp_oIYIW']
0m50.6s DEBUG: Command failed (status=1), but ignoring error: ['lsof', '-w', '+D', '/var/cache/pbuilder/build/tmp_oIYIW']
0m52.8s ERROR: WARN: Broken symlinks:
/etc/modules-load.d/modules.conf -> ../modules
0m52.8s DEBUG: Starting command: ['chroot', '/var/cache/pbuilder/build/tmp_oIYIW', 'dpkg', '--get-selections', '*']
0m52.8s DUMP:
acl install
adduser install
apt install
aptitude install
aptitude-common install
base-files install
base-passwd install
bash install
binutils install
bsdutils install
build-essential install
bzip2 install
coreutils install
cpp install
cpp-4.9 install
dash install
debconf install
debconf-i18n install
debian-archive-keyring install
debianutils install
diffutils install
dmsetup install
dpkg install
dpkg-dev install
e2fslibs:amd64 install
e2fsprogs install
findutils install
flex:amd64 install
flex-bin install
flex-doc install
g++ install
g++-4.9 install
gcc install
gcc-4.7-base:amd64 install
gcc-4.8-base:amd64 install
gcc-4.9 install
gcc-4.9-base:amd64 install
gnupg install
gpgv install
grep install
gzip install
hostname install
init install
initscripts install
insserv install
libacl1:amd64 install
libapt-pkg4.12:amd64 install
libasan1:amd64 install
libatomic1:amd64 install
libattr1:amd64 install
libaudit-common install
libaudit1:amd64 install
libblkid1:amd64 install
libboost-iostreams1.55.0:amd64 install
libbz2-1.0:amd64 install
libc-bin install
libc-dev-bin install
libc6:amd64 install
libc6-dev:amd64 install
libcap2:amd64 install
libcap2-bin install
libcilkrts5:amd64 install
libcloog-isl4:amd64 install
libcomerr2:amd64 install
libcryptsetup4:amd64 install
libcwidget3:amd64 install
libdb5.3:amd64 install
libdebconfclient0:amd64 install
libdevmapper1.02.1:amd64 install
libdpkg-perl install
libgcc-4.9-dev:amd64 install
libgcc1:amd64 install
libgcrypt20:amd64 install
libgdbm3:amd64 install
libgmp10:amd64 install
libgomp1:amd64 install
libgpg-error0:amd64 install
libisl10:amd64 install
libitm1:amd64 install
libkmod2:amd64 install
liblocale-gettext-perl install
liblsan0:amd64 install
liblzma5:amd64 install
libmount1:amd64 install
libmpc3:amd64 install
libmpfr4:amd64 install
libncurses5:amd64 install
libncursesw5:amd64 install
libpam-modules:amd64 install
libpam-modules-bin install
libpam-runtime install
libpam0g:amd64 install
libpcre3:amd64 install
libprocps3:amd64 install
libquadmath0:amd64 install
libreadline6:amd64 install
libselinux1:amd64 install
libsemanage-common install
libsemanage1:amd64 install
libsepol1:amd64 install
libsigc++-2.0-0c2a:amd64 install
libsigsegv2:amd64 install
libslang2:amd64 install
libsmartcols1:amd64 install
libsqlite3-0:amd64 install
libss2:amd64 install
libstdc++-4.9-dev:amd64 install
libstdc++6:amd64 install
libsystemd0:amd64 install
libtext-charwidth-perl install
libtext-iconv-perl install
libtext-wrapi18n-perl install
libtimedate-perl install
libtinfo5:amd64 install
libtsan0:amd64 install
libubsan0:amd64 install
libudev1:amd64 install
libusb-0.1-4:amd64 install
libustr-1.0-1:amd64 install
libuuid1:amd64 install
libxapian22 install
linux-libc-dev:amd64 install
login install
lsb-base install
m4 install
make install
mawk install
mount install
multiarch-support install
ncurses-base install
ncurses-bin install
passwd install
patch install
perl install
perl-base install
perl-modules install
procps install
readline-common install
sed install
sensible-utils install
startpar install
systemd install
systemd-sysv install
sysv-rc install
sysvinit-utils install
tar install
tzdata install
udev install
util-linux install
xz-utils install
zlib1g:amd64 install
0m52.8s DEBUG: Command ok: ['chroot', '/var/cache/pbuilder/build/tmp_oIYIW', 'dpkg', '--get-selections', '*']
0m54.3s DEBUG: Starting command: ['debsums', '--root', '/var/cache/pbuilder/build/tmp_oIYIW', '-ac']
0m56.2s DEBUG: Command ok: ['debsums', '--root', '/var/cache/pbuilder/build/tmp_oIYIW', '-ac']
0m56.2s DEBUG: Starting command: ['dpkg-query', '-f', '${Version}\n', '-W', 'adequate']
0m56.4s DUMP:
0.12.1
0m56.4s DEBUG: Command ok: ['dpkg-query', '-f', '${Version}\n', '-W', 'adequate']
0m56.4s INFO: Running adequate version 0.12.1 now.
0m56.4s DEBUG: Starting command: ['adequate', '--root', '/var/cache/pbuilder/build/tmp_oIYIW', 'flex-bin', 'flex-doc', 'flex']
0m56.6s DUMP:
flex:amd64: undefined-symbol /usr/lib/x86_64-linux-gnu/libfl_pic.so.2.0.0 => yylex
0m56.6s DEBUG: Command ok: ['adequate', '--root', '/var/cache/pbuilder/build/tmp_oIYIW', 'flex-bin', 'flex-doc', 'flex']
0m56.6s ERROR: WARN: Inadequate results from running adequate!
flex:amd64: undefined-symbol /usr/lib/x86_64-linux-gnu/libfl_pic.so.2.0.0 => yylex
0m56.6s ERROR: WARN: Running adequate resulted in inadequate tags found: undefined-symbol
0m56.6s DEBUG: Starting command: ['chroot', '/var/cache/pbuilder/build/tmp_oIYIW', 'apt-get', 'remove', 'flex:amd64', 'libsigsegv2:amd64', 'm4', 'flex-doc', 'flex-bin']
1m6.0s DUMP:
Reading package lists...
Building dependency tree...
Reading state information...
The following packages will be REMOVED:
flex flex-bin flex-doc libsigsegv2 m4
0 upgraded, 0 newly installed, 5 to remove and 0 not upgraded.
After this operation, 4108 kB disk space will be freed.
(Reading database ... 12402 files and directories currently installed.)
Removing flex:amd64 (2.5.39-8.1) ...
Removing flex-bin (2.5.39-8.1) ...
Removing flex-doc (2.5.39-8.1) ...
Removing m4 (1.4.17-4) ...
Removing libsigsegv2:amd64 (2.10-4) ...
Processing triggers for libc-bin (2.19-12) ...
1m6.0s DEBUG: Command ok: ['chroot', '/var/cache/pbuilder/build/tmp_oIYIW', 'apt-get', 'remove', 'flex:amd64', 'libsigsegv2:amd64', 'm4', 'flex-doc', 'flex-bin']
1m6.0s DEBUG: Starting command: ['chroot', '/var/cache/pbuilder/build/tmp_oIYIW', 'dpkg', '--purge', 'flex:amd64', 'libsigsegv2:amd64', 'm4']
1m9.4s DUMP:
(Reading database ... 11986 files and directories currently installed.)
Removing flex:amd64 (2.5.39-8.1) ...
Purging configuration files for flex:amd64 (2.5.39-8.1) ...
Removing libsigsegv2:amd64 (2.10-4) ...
Purging configuration files for libsigsegv2:amd64 (2.10-4) ...
dpkg: warning: ignoring request to remove m4 which isn't installed
1m9.4s DEBUG: Command ok: ['chroot', '/var/cache/pbuilder/build/tmp_oIYIW', 'dpkg', '--purge', 'flex:amd64', 'libsigsegv2:amd64', 'm4']
1m9.4s DEBUG: Starting command: ['chroot', '/var/cache/pbuilder/build/tmp_oIYIW', 'dpkg', '--purge', 'flex-doc', 'flex-bin']
1m10.1s DUMP:
(Reading database ... 11986 files and directories currently installed.)
Removing flex-doc (2.5.39-8.1) ...
Purging configuration files for flex-doc (2.5.39-8.1) ...
dpkg: warning: ignoring request to remove flex-bin which isn't installed
1m10.1s DEBUG: Command ok: ['chroot', '/var/cache/pbuilder/build/tmp_oIYIW', 'dpkg', '--purge', 'flex-doc', 'flex-bin']
1m10.1s DEBUG: Starting command: ['chroot', '/var/cache/pbuilder/build/tmp_oIYIW', 'dpkg', '--purge', '--pending']
1m10.2s DEBUG: Command ok: ['chroot', '/var/cache/pbuilder/build/tmp_oIYIW', 'dpkg', '--purge', '--pending']
1m10.2s DEBUG: Starting command: ['chroot', '/var/cache/pbuilder/build/tmp_oIYIW', 'dpkg', '--remove', '--pending']
1m10.3s DEBUG: Command ok: ['chroot', '/var/cache/pbuilder/build/tmp_oIYIW', 'dpkg', '--remove', '--pending']
1m10.3s DEBUG: Starting command: ['lsof', '-w', '+D', '/var/cache/pbuilder/build/tmp_oIYIW']
1m11.0s DEBUG: Command failed (status=1), but ignoring error: ['lsof', '-w', '+D', '/var/cache/pbuilder/build/tmp_oIYIW']
1m13.2s ERROR: WARN: Broken symlinks:
/etc/modules-load.d/modules.conf -> ../modules
1m13.2s DEBUG: Starting command: ['chroot', '/var/cache/pbuilder/build/tmp_oIYIW', 'dpkg-divert', '--list']
1m13.2s DUMP:
diversion of /usr/share/man/man1/sh.1.gz to /usr/share/man/man1/sh.distrib.1.gz by dash
diversion of /bin/sh to /bin/sh.distrib by dash
1m13.2s DEBUG: Command ok: ['chroot', '/var/cache/pbuilder/build/tmp_oIYIW', 'dpkg-divert', '--list']
1m13.2s DEBUG: Starting command: ['chroot', '/var/cache/pbuilder/build/tmp_oIYIW', 'apt-get', 'clean']
1m13.2s DEBUG: Command ok: ['chroot', '/var/cache/pbuilder/build/tmp_oIYIW', 'apt-get', 'clean']
1m15.1s INFO: PASS: Installation and purging test.
1m15.1s DEBUG: Starting command: ['chroot', '/var/cache/pbuilder/build/tmp_oIYIW', 'apt-cache', 'show', 'flex-bin']
1m19.5s DUMP:
E: No packages found
1m19.5s DEBUG: Command failed (status=100), but ignoring error: ['chroot', '/var/cache/pbuilder/build/tmp_oIYIW', 'apt-cache', 'show', 'flex-bin']
1m19.5s DEBUG: Starting command: ['chroot', '/var/cache/pbuilder/build/tmp_oIYIW', 'apt-cache', 'show', 'flex-doc']
1m19.5s DUMP:
Package: flex-doc
Source: flex
Version: 2.5.39-8
Installed-Size: 2139
Maintainer: Manoj Srivastava <srivasta at debian.org>
Architecture: all
Description-en: Documentation for flex (a fast lexical analyzer generator)
Flex is a tool for generating scanners: programs which recognized lexical
patterns in text. It reads the given input files for a description of a
scanner to generate. The description is in the form of pairs of regular
expressions and C code, called rules. Flex generates as output a C source
file, lex.yy.c, which defines a routine yylex(). This file is compiled
and linked with the -lfl library to produce an executable. When the
executable is run, it analyzes its input for occurrences of the regular
expressions. Whenever it finds one, it executes the corresponding C code.
.
This package contains the HTML documentation for flex.
Description-md5: 213bd983eea770cd45ca9e776fa600ed
Homepage: http://flex.sf.net/
Tag: devel::code-generator, devel::doc, made-of::html, role::documentation
Section: doc
Priority: optional
Filename: pool/main/f/flex/flex-doc_2.5.39-8_all.deb
Size: 738372
MD5sum: 627ddc1fff823aef64f594e32845b91e
SHA1: bec297a7bfaa7fe70ab9b850b97929ea2d0878e6
SHA256: 4c879658048c14d5225c090d7ca6ed2b17d39e29a15c1bff5878cd1fa4a5131d
1m19.5s DEBUG: Command ok: ['chroot', '/var/cache/pbuilder/build/tmp_oIYIW', 'apt-cache', 'show', 'flex-doc']
1m19.5s DEBUG: Starting command: ['chroot', '/var/cache/pbuilder/build/tmp_oIYIW', 'apt-cache', 'show', 'flex']
1m19.6s DUMP:
Package: flex
Version: 2.5.39-8
Installed-Size: 1288
Maintainer: Manoj Srivastava <srivasta at debian.org>
Architecture: amd64
Depends: libc6 (>= 2.14), m4, libfl-dev (= 2.5.39-8), dpkg (>= 1.15.4) | install-info
Pre-Depends: debconf | debconf-2.0
Recommends: gcc | c-compiler
Suggests: bison, build-essential
Description-en: fast lexical analyzer generator
Flex is a tool for generating scanners: programs which recognized lexical
patterns in text. It reads the given input files for a description of a
scanner to generate. The description is in the form of pairs of regular
expressions and C code, called rules. Flex generates as output a C source
file, lex.yy.c, which defines a routine yylex(). This file is compiled
and linked with the -lfl library to produce an executable. When the
executable is run, it analyzes its input for occurrences of the regular
expressions. Whenever it finds one, it executes the corresponding C code.
Description-md5: c30a7ef9a61fca3debe97b92c3f65013
Multi-Arch: foreign
Homepage: http://flex.sf.net/
Tag: devel::code-generator, implemented-in::c, interface::commandline,
role::program, scope::utility, works-with::software:source
Section: devel
Priority: optional
Filename: pool/main/f/flex/flex_2.5.39-8_amd64.deb
Size: 422010
MD5sum: 42ebd5f9c098ad2ca6d60e5c82ad8791
SHA1: a743c2f8eab6f2b6692e837b44832ab61a588fee
SHA256: 724b653c6ad43e625d090ba16e56da8977cc22e3e3eb575e48558e23aaf1bd01
1m19.6s DEBUG: Command ok: ['chroot', '/var/cache/pbuilder/build/tmp_oIYIW', 'apt-cache', 'show', 'flex']
1m19.6s INFO: apt-cache knows about the following packages: flex-doc, flex
1m19.6s INFO: the following packages are not in the archive: flex-bin
1m19.6s DEBUG: Starting command: ['chroot', '/var/cache/pbuilder/build/tmp_oIYIW', 'apt-cache', 'policy']
1m19.6s DUMP:
Package files:
100 /var/lib/dpkg/status
release a=now
500 http://debian.netcologne.de/debian/ sid/non-free Translation-en
500 http://debian.netcologne.de/debian/ sid/main Translation-en
500 http://debian.netcologne.de/debian/ sid/contrib Translation-en
500 http://debian.netcologne.de/debian/ sid/non-free amd64 Packages
release o=Debian,a=unstable,n=sid,l=Debian,c=non-free
origin debian.netcologne.de
500 http://debian.netcologne.de/debian/ sid/contrib amd64 Packages
release o=Debian,a=unstable,n=sid,l=Debian,c=contrib
origin debian.netcologne.de
500 http://debian.netcologne.de/debian/ sid/main amd64 Packages
release o=Debian,a=unstable,n=sid,l=Debian,c=main
origin debian.netcologne.de
Pinned packages:
1m19.6s DEBUG: Command ok: ['chroot', '/var/cache/pbuilder/build/tmp_oIYIW', 'apt-cache', 'policy']
1m19.6s DEBUG: Starting command: ['chroot', '/var/cache/pbuilder/build/tmp_oIYIW', 'apt-cache', 'policy', 'flex-doc', 'flex']
1m19.7s DUMP:
flex-doc:
Installed: (none)
Candidate: 2.5.39-8
Version table:
2.5.39-8 0
500 http://debian.netcologne.de/debian/ sid/main amd64 Packages
flex:
Installed: (none)
Candidate: 2.5.39-8
Version table:
2.5.39-8 0
500 http://debian.netcologne.de/debian/ sid/main amd64 Packages
1m19.7s DEBUG: Command ok: ['chroot', '/var/cache/pbuilder/build/tmp_oIYIW', 'apt-cache', 'policy', 'flex-doc', 'flex']
1m19.7s DEBUG: Starting command: ['chroot', '/var/cache/pbuilder/build/tmp_oIYIW', 'apt-get', '-y', 'install', 'flex-doc', 'flex']
1m27.3s DUMP:
Reading package lists...
Building dependency tree...
Reading state information...
The following extra packages will be installed:
libfl-dev libsigsegv2 m4
Suggested packages:
bison
The following NEW packages will be installed:
flex flex-doc libfl-dev libsigsegv2 m4
0 upgraded, 5 newly installed, 0 to remove and 0 not upgraded.
Need to get 1518 kB of archives.
After this operation, 4118 kB of additional disk space will be used.
Get:1 http://debian.netcologne.de/debian/ sid/main libsigsegv2 amd64 2.10-4 [28.8 kB]
Get:2 http://debian.netcologne.de/debian/ sid/main m4 amd64 1.4.17-4 [254 kB]
Get:3 http://debian.netcologne.de/debian/ sid/main libfl-dev amd64 2.5.39-8 [75.0 kB]
Get:4 http://debian.netcologne.de/debian/ sid/main flex amd64 2.5.39-8 [422 kB]
Get:5 http://debian.netcologne.de/debian/ sid/main flex-doc all 2.5.39-8 [738 kB]
debconf: delaying package configuration, since apt-utils is not installed
Fetched 1518 kB in 0s (9079 kB/s)
Selecting previously unselected package libsigsegv2:amd64.
(Reading database ... 11986 files and directories currently installed.)
Preparing to unpack .../libsigsegv2_2.10-4_amd64.deb ...
Unpacking libsigsegv2:amd64 (2.10-4) ...
Selecting previously unselected package m4.
Preparing to unpack .../archives/m4_1.4.17-4_amd64.deb ...
Unpacking m4 (1.4.17-4) ...
Selecting previously unselected package libfl-dev:amd64.
Preparing to unpack .../libfl-dev_2.5.39-8_amd64.deb ...
Unpacking libfl-dev:amd64 (2.5.39-8) ...
Selecting previously unselected package flex.
Preparing to unpack .../flex_2.5.39-8_amd64.deb ...
Unpacking flex (2.5.39-8) ...
Selecting previously unselected package flex-doc.
Preparing to unpack .../flex-doc_2.5.39-8_all.deb ...
Unpacking flex-doc (2.5.39-8) ...
Setting up libsigsegv2:amd64 (2.10-4) ...
Setting up m4 (1.4.17-4) ...
Setting up libfl-dev:amd64 (2.5.39-8) ...
Setting up flex (2.5.39-8) ...
Setting up flex-doc (2.5.39-8) ...
Processing triggers for libc-bin (2.19-12) ...
1m27.3s DEBUG: Command ok: ['chroot', '/var/cache/pbuilder/build/tmp_oIYIW', 'apt-get', '-y', 'install', 'flex-doc', 'flex']
1m27.3s DEBUG: Starting command: ['lsof', '-w', '+D', '/var/cache/pbuilder/build/tmp_oIYIW']
1m27.9s DEBUG: Command failed (status=1), but ignoring error: ['lsof', '-w', '+D', '/var/cache/pbuilder/build/tmp_oIYIW']
1m30.0s ERROR: WARN: Broken symlinks:
/etc/modules-load.d/modules.conf -> ../modules
1m30.0s DEBUG: Copying /var/cache/pbuilder/result/flex-bin_2.5.39-8.1_amd64.deb, /var/cache/pbuilder/result/flex-doc_2.5.39-8.1_all.deb, /var/cache/pbuilder/result/flex_2.5.39-8.1_amd64.deb to /var/cache/pbuilder/build/tmp_oIYIW/tmp
1m30.0s DEBUG: Starting command: ['chroot', '/var/cache/pbuilder/build/tmp_oIYIW', 'dpkg', '-i', '-B', 'tmp/flex-bin_2.5.39-8.1_amd64.deb', 'tmp/flex-doc_2.5.39-8.1_all.deb', 'tmp/flex_2.5.39-8.1_amd64.deb']
1m33.6s DUMP:
Selecting previously unselected package flex-bin.
dpkg: considering deconfiguration of flex, which would be broken by installation of flex-bin ...
dpkg: yes, will deconfigure flex (broken by flex-bin)
(Reading database ... 12404 files and directories currently installed.)
Preparing to unpack .../flex-bin_2.5.39-8.1_amd64.deb ...
De-configuring flex (2.5.39-8) ...
/var/lib/dpkg/info/flex.prerm: undocumented call to `prerm deconfigure in-favour flex-bin 2.5.39-8.1'
Unpacking flex-bin (2.5.39-8.1) ...
Replacing files in old package flex (2.5.39-8) ...
Preparing to unpack .../flex-doc_2.5.39-8.1_all.deb ...
Unpacking flex-doc (2.5.39-8.1) over (2.5.39-8) ...
dpkg: considering deconfiguration of libfl-dev:amd64, which would be broken by installation of flex:amd64 ...
dpkg: yes, will deconfigure libfl-dev:amd64 (broken by flex:amd64)
Preparing to unpack tmp/flex_2.5.39-8.1_amd64.deb ...
De-configuring libfl-dev:amd64 (2.5.39-8) ...
Unpacking flex:amd64 (2.5.39-8.1) over (2.5.39-8) ...
Replacing files in old package libfl-dev:amd64 (2.5.39-8) ...
Setting up flex-bin (2.5.39-8.1) ...
Setting up flex:amd64 (2.5.39-8.1) ...
Setting up flex-doc (2.5.39-8.1) ...
dpkg: dependency problems prevent configuration of libfl-dev:amd64:
flex:amd64 (2.5.39-8.1) breaks libfl-dev (<< 2.5.39-8.1) and is installed.
Version of libfl-dev:amd64 to be configured is 2.5.39-8.
dpkg: error processing package libfl-dev:amd64 (--install):
dependency problems - leaving unconfigured
Processing triggers for libc-bin (2.19-12) ...
Errors were encountered while processing:
libfl-dev:amd64
1m33.6s DEBUG: Command failed (status=1), but ignoring error: ['chroot', '/var/cache/pbuilder/build/tmp_oIYIW', 'dpkg', '-i', '-B', 'tmp/flex-bin_2.5.39-8.1_amd64.deb', 'tmp/flex-doc_2.5.39-8.1_all.deb', 'tmp/flex_2.5.39-8.1_amd64.deb']
1m33.6s DEBUG: Starting command: ['chroot', '/var/cache/pbuilder/build/tmp_oIYIW', 'apt-get', '-yf', 'install']
1m38.6s DUMP:
Reading package lists...
Building dependency tree...
Reading state information...
Correcting dependencies... Done
The following packages will be REMOVED:
libfl-dev
0 upgraded, 0 newly installed, 1 to remove and 0 not upgraded.
1 not fully installed or removed.
After this operation, 138 kB disk space will be freed.
(Reading database ... 12410 files and directories currently installed.)
Removing libfl-dev:amd64 (2.5.39-8) ...
Processing triggers for libc-bin (2.19-12) ...
1m38.6s DEBUG: Command ok: ['chroot', '/var/cache/pbuilder/build/tmp_oIYIW', 'apt-get', '-yf', 'install']
1m38.6s DEBUG: Starting command: ['chroot', '/var/cache/pbuilder/build/tmp_oIYIW', 'dpkg-query', '-f', '${Package} ${Status}\n', '-W', 'flex-bin', 'flex-doc', 'flex']
1m38.7s DUMP:
flex install ok installed
flex-bin install ok installed
flex-doc install ok installed
1m38.7s DEBUG: Command ok: ['chroot', '/var/cache/pbuilder/build/tmp_oIYIW', 'dpkg-query', '-f', '${Package} ${Status}\n', '-W', 'flex-bin', 'flex-doc', 'flex']
1m38.7s INFO: Installation of ['tmp/flex-bin_2.5.39-8.1_amd64.deb', 'tmp/flex-doc_2.5.39-8.1_all.deb', 'tmp/flex_2.5.39-8.1_amd64.deb'] ok
1m38.7s DEBUG: Removing /var/cache/pbuilder/build/tmp_oIYIW/tmp/flex-bin_2.5.39-8.1_amd64.deb
1m38.7s DEBUG: Removing /var/cache/pbuilder/build/tmp_oIYIW/tmp/flex-doc_2.5.39-8.1_all.deb
1m38.7s DEBUG: Removing /var/cache/pbuilder/build/tmp_oIYIW/tmp/flex_2.5.39-8.1_amd64.deb
1m38.7s DEBUG: Starting command: ['lsof', '-w', '+D', '/var/cache/pbuilder/build/tmp_oIYIW']
1m39.2s DEBUG: Command failed (status=1), but ignoring error: ['lsof', '-w', '+D', '/var/cache/pbuilder/build/tmp_oIYIW']
1m41.3s ERROR: WARN: Broken symlinks:
/etc/modules-load.d/modules.conf -> ../modules
1m41.3s DEBUG: Starting command: ['chroot', '/var/cache/pbuilder/build/tmp_oIYIW', 'dpkg', '--get-selections', '*']
1m41.4s DUMP:
acl install
adduser install
apt install
aptitude install
aptitude-common install
base-files install
base-passwd install
bash install
binutils install
bsdutils install
build-essential install
bzip2 install
coreutils install
cpp install
cpp-4.9 install
dash install
debconf install
debconf-i18n install
debian-archive-keyring install
debianutils install
diffutils install
dmsetup install
dpkg install
dpkg-dev install
e2fslibs:amd64 install
e2fsprogs install
findutils install
flex:amd64 install
flex-bin install
flex-doc install
g++ install
g++-4.9 install
gcc install
gcc-4.7-base:amd64 install
gcc-4.8-base:amd64 install
gcc-4.9 install
gcc-4.9-base:amd64 install
gnupg install
gpgv install
grep install
gzip install
hostname install
init install
initscripts install
insserv install
libacl1:amd64 install
libapt-pkg4.12:amd64 install
libasan1:amd64 install
libatomic1:amd64 install
libattr1:amd64 install
libaudit-common install
libaudit1:amd64 install
libblkid1:amd64 install
libboost-iostreams1.55.0:amd64 install
libbz2-1.0:amd64 install
libc-bin install
libc-dev-bin install
libc6:amd64 install
libc6-dev:amd64 install
libcap2:amd64 install
libcap2-bin install
libcilkrts5:amd64 install
libcloog-isl4:amd64 install
libcomerr2:amd64 install
libcryptsetup4:amd64 install
libcwidget3:amd64 install
libdb5.3:amd64 install
libdebconfclient0:amd64 install
libdevmapper1.02.1:amd64 install
libdpkg-perl install
libfl-dev:amd64 deinstall
libgcc-4.9-dev:amd64 install
libgcc1:amd64 install
libgcrypt20:amd64 install
libgdbm3:amd64 install
libgmp10:amd64 install
libgomp1:amd64 install
libgpg-error0:amd64 install
libisl10:amd64 install
libitm1:amd64 install
libkmod2:amd64 install
liblocale-gettext-perl install
liblsan0:amd64 install
liblzma5:amd64 install
libmount1:amd64 install
libmpc3:amd64 install
libmpfr4:amd64 install
libncurses5:amd64 install
libncursesw5:amd64 install
libpam-modules:amd64 install
libpam-modules-bin install
libpam-runtime install
libpam0g:amd64 install
libpcre3:amd64 install
libprocps3:amd64 install
libquadmath0:amd64 install
libreadline6:amd64 install
libselinux1:amd64 install
libsemanage-common install
libsemanage1:amd64 install
libsepol1:amd64 install
libsigc++-2.0-0c2a:amd64 install
libsigsegv2:amd64 install
libslang2:amd64 install
libsmartcols1:amd64 install
libsqlite3-0:amd64 install
libss2:amd64 install
libstdc++-4.9-dev:amd64 install
libstdc++6:amd64 install
libsystemd0:amd64 install
libtext-charwidth-perl install
libtext-iconv-perl install
libtext-wrapi18n-perl install
libtimedate-perl install
libtinfo5:amd64 install
libtsan0:amd64 install
libubsan0:amd64 install
libudev1:amd64 install
libusb-0.1-4:amd64 install
libustr-1.0-1:amd64 install
libuuid1:amd64 install
libxapian22 install
linux-libc-dev:amd64 install
login install
lsb-base install
m4 install
make install
mawk install
mount install
multiarch-support install
ncurses-base install
ncurses-bin install
passwd install
patch install
perl install
perl-base install
perl-modules install
procps install
readline-common install
sed install
sensible-utils install
startpar install
systemd install
systemd-sysv install
sysv-rc install
sysvinit-utils install
tar install
tzdata install
udev install
util-linux install
xz-utils install
zlib1g:amd64 install
1m41.4s DEBUG: Command ok: ['chroot', '/var/cache/pbuilder/build/tmp_oIYIW', 'dpkg', '--get-selections', '*']
1m42.9s DEBUG: Starting command: ['debsums', '--root', '/var/cache/pbuilder/build/tmp_oIYIW', '-ac']
1m45.3s DEBUG: Command ok: ['debsums', '--root', '/var/cache/pbuilder/build/tmp_oIYIW', '-ac']
1m45.3s DEBUG: Starting command: ['dpkg-query', '-f', '${Version}\n', '-W', 'adequate']
1m45.4s DUMP:
0.12.1
1m45.4s DEBUG: Command ok: ['dpkg-query', '-f', '${Version}\n', '-W', 'adequate']
1m45.4s INFO: Running adequate version 0.12.1 now.
1m45.4s DEBUG: Starting command: ['adequate', '--root', '/var/cache/pbuilder/build/tmp_oIYIW', 'flex-bin', 'flex-doc', 'flex']
1m45.6s DUMP:
flex:amd64: undefined-symbol /usr/lib/x86_64-linux-gnu/libfl_pic.so.2.0.0 => yylex
1m45.6s DEBUG: Command ok: ['adequate', '--root', '/var/cache/pbuilder/build/tmp_oIYIW', 'flex-bin', 'flex-doc', 'flex']
1m45.6s ERROR: WARN: Inadequate results from running adequate!
flex:amd64: undefined-symbol /usr/lib/x86_64-linux-gnu/libfl_pic.so.2.0.0 => yylex
1m45.6s ERROR: WARN: Running adequate resulted in inadequate tags found: undefined-symbol
1m45.6s DEBUG: Starting command: ['chroot', '/var/cache/pbuilder/build/tmp_oIYIW', 'apt-get', 'remove', 'flex:amd64', 'libfl-dev:amd64', 'libsigsegv2:amd64', 'm4', 'flex-doc', 'flex-bin']
1m50.5s DUMP:
Reading package lists...
Building dependency tree...
Reading state information...
Package 'libfl-dev' is not installed, so not removed
The following packages will be REMOVED:
flex flex-bin flex-doc libsigsegv2 m4
0 upgraded, 0 newly installed, 5 to remove and 0 not upgraded.
After this operation, 4108 kB disk space will be freed.
(Reading database ... 12402 files and directories currently installed.)
Removing flex:amd64 (2.5.39-8.1) ...
Removing flex-bin (2.5.39-8.1) ...
Removing flex-doc (2.5.39-8.1) ...
Removing m4 (1.4.17-4) ...
Removing libsigsegv2:amd64 (2.10-4) ...
Processing triggers for libc-bin (2.19-12) ...
1m50.5s DEBUG: Command ok: ['chroot', '/var/cache/pbuilder/build/tmp_oIYIW', 'apt-get', 'remove', 'flex:amd64', 'libfl-dev:amd64', 'libsigsegv2:amd64', 'm4', 'flex-doc', 'flex-bin']
1m50.5s DEBUG: Starting command: ['chroot', '/var/cache/pbuilder/build/tmp_oIYIW', 'dpkg', '--purge', 'flex:amd64', 'libfl-dev:amd64', 'libsigsegv2:amd64', 'm4']
1m53.1s DUMP:
(Reading database ... 11986 files and directories currently installed.)
Removing flex:amd64 (2.5.39-8.1) ...
Purging configuration files for flex:amd64 (2.5.39-8.1) ...
Removing libfl-dev:amd64 (2.5.39-8) ...
Purging configuration files for libfl-dev:amd64 (2.5.39-8) ...
Removing libsigsegv2:amd64 (2.10-4) ...
Purging configuration files for libsigsegv2:amd64 (2.10-4) ...
dpkg: warning: ignoring request to remove m4 which isn't installed
1m53.1s DEBUG: Command ok: ['chroot', '/var/cache/pbuilder/build/tmp_oIYIW', 'dpkg', '--purge', 'flex:amd64', 'libfl-dev:amd64', 'libsigsegv2:amd64', 'm4']
1m53.1s DEBUG: Starting command: ['chroot', '/var/cache/pbuilder/build/tmp_oIYIW', 'dpkg', '--purge', 'flex-doc', 'flex-bin']
1m54.1s DUMP:
(Reading database ... 11986 files and directories currently installed.)
Removing flex-doc (2.5.39-8.1) ...
Purging configuration files for flex-doc (2.5.39-8.1) ...
dpkg: warning: ignoring request to remove flex-bin which isn't installed
1m54.1s DEBUG: Command ok: ['chroot', '/var/cache/pbuilder/build/tmp_oIYIW', 'dpkg', '--purge', 'flex-doc', 'flex-bin']
1m54.1s DEBUG: Starting command: ['chroot', '/var/cache/pbuilder/build/tmp_oIYIW', 'dpkg', '--purge', '--pending']
1m54.2s DEBUG: Command ok: ['chroot', '/var/cache/pbuilder/build/tmp_oIYIW', 'dpkg', '--purge', '--pending']
1m54.2s DEBUG: Starting command: ['chroot', '/var/cache/pbuilder/build/tmp_oIYIW', 'dpkg', '--remove', '--pending']
1m54.3s DEBUG: Command ok: ['chroot', '/var/cache/pbuilder/build/tmp_oIYIW', 'dpkg', '--remove', '--pending']
1m54.3s DEBUG: Starting command: ['lsof', '-w', '+D', '/var/cache/pbuilder/build/tmp_oIYIW']
1m54.9s DEBUG: Command failed (status=1), but ignoring error: ['lsof', '-w', '+D', '/var/cache/pbuilder/build/tmp_oIYIW']
1m56.9s ERROR: WARN: Broken symlinks:
/etc/modules-load.d/modules.conf -> ../modules
1m56.9s DEBUG: Starting command: ['chroot', '/var/cache/pbuilder/build/tmp_oIYIW', 'dpkg-divert', '--list']
1m56.9s DUMP:
diversion of /usr/share/man/man1/sh.1.gz to /usr/share/man/man1/sh.distrib.1.gz by dash
diversion of /bin/sh to /bin/sh.distrib by dash
1m56.9s DEBUG: Command ok: ['chroot', '/var/cache/pbuilder/build/tmp_oIYIW', 'dpkg-divert', '--list']
1m56.9s DEBUG: Starting command: ['chroot', '/var/cache/pbuilder/build/tmp_oIYIW', 'apt-get', 'clean']
1m57.0s DEBUG: Command ok: ['chroot', '/var/cache/pbuilder/build/tmp_oIYIW', 'apt-get', 'clean']
1m58.8s INFO: PASS: Installation, upgrade and purging tests.
1m59.4s DEBUG: Starting command: ['chroot', '/var/cache/pbuilder/build/tmp_oIYIW', 'umount', '/proc']
1m59.4s DEBUG: Command ok: ['chroot', '/var/cache/pbuilder/build/tmp_oIYIW', 'umount', '/proc']
1m59.4s DEBUG: Starting command: ['rm', '-rf', '--one-file-system', '/var/cache/pbuilder/build/tmp_oIYIW']
1m59.8s DEBUG: Command ok: ['rm', '-rf', '--one-file-system', '/var/cache/pbuilder/build/tmp_oIYIW']
1m59.8s DEBUG: Removed directory tree at /var/cache/pbuilder/build/tmp_oIYIW
1m59.8s INFO: PASS: All tests.
1m59.8s INFO: piuparts run ends.
More information about the Piuparts-devel
mailing list