Source: gdal Version: 1.10.1+dfsg-6 Severity: important Tags: patch User: p...@debian.org Usertags: HDF5-transition
-----BEGIN PGP SIGNED MESSAGE----- Hash: SHA256 Hi, The hdf5 1.8.13 package in experimental features a new layout for headers and libraries, so that all the binary packages are now co-installable. Please find attached a patch proposal to support both the current and the new layouts. Because this bug is in the way of the hdf5 transition I intend to NMU in a few days. I apologize for the urge, and I hope this approach won't offend you. Please tell me otherwise. Kind regards, _g. - -- System Information: Debian Release: jessie/sid APT prefers testing APT policy: (500, 'testing'), (1, 'experimental') Architecture: i386 (i686) Kernel: Linux 3.14-1-486 Locale: LANG=fr_FR.UTF-8, LC_CTYPE=fr_FR.UTF-8 (charmap=UTF-8) Shell: /bin/sh linked to /bin/dash -----BEGIN PGP SIGNATURE----- Version: GnuPG v1 iQEcBAEBCAAGBQJT2rgJAAoJEO/obGx//s+DDEIH/1hefPamZta7HinlmHv8W4qO zfaTyfqFVegal4cjrbhwWq6+Xy9TmDwxg6Ny7fCkscCQs22QvDBIuVwB8Ad3YQa/ eDJQ7BkiZZWcOTxE1xoL2OLJXSW/nFH16IAVbv3F0F5N+BydzVavvw2dQwF2hYWB QBD75rHPcvMglq/qIaXoiSqefcybUMjHMt5YGGuT9GKdE+Tw+ORGN5pOG+Z3bvjP ZIKjwee96pvgQo3jCCRxb+67qeba9BD+fMMP0LUTfcJ0NMoomXNO/vG7/QTuIoOc NEkojyFUaJxe6irr5PlverXihA9XZaZJlF2ke4ohb9J939iDbR7ZaPTD1mI9ImM= =iZtT -----END PGP SIGNATURE-----
diff -Nru gdal-1.10.1+dfsg/debian/changelog gdal-1.10.1+dfsg/debian/changelog --- gdal-1.10.1+dfsg/debian/changelog 2014-07-08 20:44:35.000000000 +0200 +++ gdal-1.10.1+dfsg/debian/changelog 2014-07-24 20:18:23.000000000 +0200 @@ -1,3 +1,10 @@ +gdal (1.10.1+dfsg-6.1) unstable; urgency=low + + * Non-maintainer upload. + * Support hdf5 1.8.13 new packaging layout. + + -- Gilles Filippini <p...@debian.org> Thu, 24 Jul 2014 20:18:23 +0200 + gdal (1.10.1+dfsg-6) unstable; urgency=medium [ gregor herrmann ] diff -Nru gdal-1.10.1+dfsg/debian/rules gdal-1.10.1+dfsg/debian/rules --- gdal-1.10.1+dfsg/debian/rules 2014-07-08 20:40:44.000000000 +0200 +++ gdal-1.10.1+dfsg/debian/rules 2014-07-31 09:26:57.000000000 +0200 @@ -18,6 +18,12 @@ GDAL_MINOR=$(word 2,$(GDALVER)) GDAL_PATCH=$(word 3,$(GDALVER)) +ifneq ($(wildcard /usr/lib/$(DEB_HOST_MULTIARCH)/hdf5/serial/libhdf5.so),) + WITH_HDF5:=--with-hdf5=/usr/lib/$(DEB_HOST_MULTIARCH)/hdf5/serial +else + WITH_HDF5:= +endif + versions: @echo Gdal version: $(GDAL_MAJOR).$(GDAL_MINOR).$(GDAL_PATCH) @echo Swig version: $(SWIGVER) @@ -86,6 +92,7 @@ --with-webp \ --with-jasper \ --with-netcdf \ + $(WITH_HDF5) \ --with-xerces \ --with-geos \ --with-sqlite3 \