On Wed, Nov 28, 2007 at 09:31:44PM +0100, Enrico Zini wrote: > On Tue, Nov 27, 2007 at 08:57:58PM +0100, Lucas Nussbaum wrote: > > > During a rebuild of all packages in sid, your package failed to build on > > i386. > > Relevant part: > [...] > > > dh_builddeb -ppython-dballe > > > dpkg-deb: parse error, in file `debian/python-dballe/DEBIAN/control' > > near line 7 package `python-dballe': > > > `Depends' field, syntax error after reference to package `libgcc1' > > > dh_builddeb: command returned error code 512 > > > make: *** [binary-makedeb-IMPL/python-dballe] Error 1 > > > dpkg-buildpackage: failure: /usr/bin/fakeroot debian/rules binary gave > > error exit status 2 > > The full build log is available from: > > http://people.debian.org/~lucas/logs/2007/11/26 > > I'm not exactly sure I understand what's happened here. A change in dpkg-shlibdeps...
Please find a patch below to fix the problem, as well as a new one which has appeared with the new coreutils. --- dballe-3.6/debian/control 2007-06-21 10:49:10.000000000 +0200 +++ dballe-3.6/debian/control 2008-02-18 22:19:58.000000000 +0100 @@ -33,7 +33,7 @@ Package: libdballe-core3 Section: libs Architecture: any -Depends: dballe-common, ${shlibs:Depends} ${misc:Depends} +Depends: dballe-common, ${shlibs:Depends}, ${misc:Depends} Description: DB-ALL.e core shared library DB-All.e is a fast on-disk database where meteorological observed and forecast data can be stored, searched, retrieved and updated. @@ -66,7 +66,7 @@ Package: libdballe-bufrex3 Section: libs Architecture: any -Depends: dballe-common, ${shlibs:Depends} ${misc:Depends} +Depends: dballe-common, ${shlibs:Depends}, ${misc:Depends} Description: Read and write functions for BUFR and CREX weather data (shared library) Shared library with functions to read and write weather data in WMO BUFR and CREX formats. @@ -160,7 +160,7 @@ Package: libdballe-db3 Section: libs Architecture: any -Depends: dballe-common, ${shlibs:Depends} ${misc:Depends} +Depends: dballe-common, ${shlibs:Depends}, ${misc:Depends} Description: Smart on-disk database for weather data (shared library) DB-All.e is a fast on-disk database where meteorological observed and forecast data can be stored, searched, retrieved and updated. @@ -183,7 +183,7 @@ Package: libdballef3 Section: libs Architecture: any -Depends: dballe-common, ${shlibs:Depends} ${misc:Depends} +Depends: dballe-common, ${shlibs:Depends}, ${misc:Depends} Description: Database for punctual meteorological data (Fortran shared library) DB-All.e is a fast on-disk database where meteorological observed and forecast data can be stored, searched, retrieved and updated. @@ -206,7 +206,7 @@ Package: libdballepp3 Section: libs Architecture: any -Depends: dballe-common, ${shlibs:Depends} ${misc:Depends} +Depends: dballe-common, ${shlibs:Depends}, ${misc:Depends} Description: Database for punctual meteorological data (C++ shared library) DB-All.e is a fast on-disk database where meteorological observed and forecast data can be stored, searched, retrieved and updated. @@ -216,7 +216,7 @@ Package: python-dballe Section: python Architecture: any -Depends: dballe-common, ${shlibs:Depends} ${misc:Depends} ${python:Depends} +Depends: dballe-common, ${shlibs:Depends}, ${misc:Depends}, ${python:Depends} Recommends: python-numpy Suggests: python-rpy XB-Python-Version: ${python:Versions} @@ -241,7 +241,7 @@ Package: dballe Section: misc Architecture: any -Depends: dballe-common, ${shlibs:Depends} ${misc:Depends} +Depends: dballe-common, ${shlibs:Depends}, ${misc:Depends} Description: Database for punctual meteorological data (Command line tools) DB-All.e is a fast on-disk database where meteorological observed and forecast data can be stored, searched, retrieved and updated. @@ -283,7 +283,7 @@ Package: provami Section: misc Architecture: any -Depends: python-dballe, python-wxgtk2.6, ${shlibs:Depends} ${misc:Depends} ${python:Depends} +Depends: python-dballe, python-wxgtk2.6, ${shlibs:Depends}, ${misc:Depends}, ${python:Depends} Suggests: python-rpy XB-Python-Version: ${python:Versions} Provides: ${python:Provides} --- dballe-3.6/tables/Makefile.am 2007-06-21 10:49:13.000000000 +0200 +++ dballe-3.6/tables/Makefile.am 2008-02-18 22:14:03.000000000 +0100 @@ -13,7 +13,7 @@ ./mkbdoc tex < $< > $@ B000000002001200.txt: dballe.txt - cut -b 0-119 < $< > $@ + cut -b 1-119 < $< > $@ EXTRA_DIST = $(table_DATA) mkbdoc --- dballe-3.6/tables/Makefile.in 2007-06-21 10:49:52.000000000 +0200 +++ dballe-3.6/tables/Makefile.in 2008-02-18 22:14:09.000000000 +0100 @@ -373,7 +373,7 @@ ./mkbdoc tex < $< > $@ B000000002001200.txt: dballe.txt - cut -b 0-119 < $< > $@ + cut -b 1-119 < $< > $@ distclean-local: rm -f dballe.tex B000000002001200.txt -- .''`. Aurelien Jarno | GPG: 1024D/F1BCDB73 : :' : Debian developer | Electrical Engineer `. `' [EMAIL PROTECTED] | [EMAIL PROTECTED] `- people.debian.org/~aurel32 | www.aurel32.net -- To UNSUBSCRIBE, email to [EMAIL PROTECTED] with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]