control: tags -1 +patch On Tue, 24 Jan 2017 22:46:12 +0000 Santiago Vila <[email protected]> wrote: > I tried to build this package in stretch with "dpkg-buildpackage -A" > but it failed:
> /usr/include/stdsoap2.h:902:19: fatal error: zlib.h: No such file or directory > # include <zlib.h> > ^ > compilation terminated. > In file included from soapStub.h:17:0, > from soapH.h:16, > from soapC.c:19: > /usr/include/stdsoap2.h:902:19: fatal error: zlib.h: No such file or directory > # include <zlib.h> > ^ > compilation terminated. Just adding dependency would fix this, patch attached. Could you check it, please?
diff -Nru gridsite-2.3.2/debian/changelog gridsite-2.3.2/debian/changelog --- gridsite-2.3.2/debian/changelog 2016-12-23 19:45:28.000000000 +0900 +++ gridsite-2.3.2/debian/changelog 2017-01-26 23:26:16.000000000 +0900 @@ -1,3 +1,11 @@ +gridsite (2.3.2-2.1) unstable; urgency=medium + + * Non-maintainer upload. + * debian/control + - add missing dependency zlib1g-dev to fix FTBFS (Closes: #852501) + + -- Hideki Yamane <[email protected]> Thu, 26 Jan 2017 23:26:16 +0900 + gridsite (2.3.2-2) unstable; urgency=medium * Build using apache2-ssl-dev (Closes: #845392) diff -Nru gridsite-2.3.2/debian/control gridsite-2.3.2/debian/control --- gridsite-2.3.2/debian/control 2016-12-23 19:45:28.000000000 +0900 +++ gridsite-2.3.2/debian/control 2017-01-26 23:26:11.000000000 +0900 @@ -2,7 +2,7 @@ Section: net Priority: optional Maintainer: Mattias Ellert <[email protected]> -Build-Depends: debhelper, apache2-dev (>= 2.4), libxml2-dev, libcurl4-openssl-dev, apache2-ssl-dev, libcanl-c-dev, gsoap, libtool, libtool-bin, doxygen, sharutils, dh-apache2, pkg-config +Build-Depends: debhelper, apache2-dev (>= 2.4), libxml2-dev, libcurl4-openssl-dev, apache2-ssl-dev, libcanl-c-dev, gsoap, libtool, libtool-bin, doxygen, sharutils, dh-apache2, pkg-config, zlib1g-dev Standards-Version: 3.9.8 Homepage: https://wiki.metacentrum.cz/gswiki/ Vcs-Svn: http://svn.nordugrid.org/repos/packaging/debian/gridsite

