Source: spdylay Version: 1.3.2-1 Tags: patch User: [email protected] Usertags: rebootstrap
Dear spdylay maintainers, spdylay became a part of the transitive essential closure as curl started build depending on nghttp2. Thus spdylay needs to become cross buildable. This is currently not possible, because its Build-Depends are not satisfiable. I take issue with the following dependencies: * libcunit1-dev is not needed as tests cannot be run during cross compilation anyway. * python cannot be installed nor executed for too foreign architectures. I am attaching a patch that addresses all of the above issues. Please consider applying it. Helmut
diff --minimal -Nru spdylay-1.3.2/debian/changelog spdylay-1.3.2/debian/changelog --- spdylay-1.3.2/debian/changelog +++ spdylay-1.3.2/debian/changelog @@ -1,3 +1,12 @@ +spdylay (1.3.2-1.1) UNRELEASED; urgency=medium + + * Non-maintainer upload. + * Update Build-Depends for cross compilation (Closes: #-1) + + Annotate libcunit1-dev with <!nocheck> profile + + Annotate python with :native + + -- Helmut Grohne <[email protected]> Sun, 13 Dec 2015 19:14:42 +0100 + spdylay (1.3.2-1) unstable; urgency=low * Initial release. Thanks Aron Xu for the initial packaging work! diff --minimal -Nru spdylay-1.3.2/debian/control spdylay-1.3.2/debian/control --- spdylay-1.3.2/debian/control +++ spdylay-1.3.2/debian/control @@ -6,12 +6,12 @@ Build-Depends: autotools-dev, automake (>= 1:1.14), debhelper (>= 9), - libcunit1-dev, + libcunit1-dev <!nocheck>, libevent-dev, libssl-dev, libxml2-dev, pkg-config, - python, + python:native, zlib1g-dev Standards-Version: 3.9.6 Vcs-Git: git://anonscm.debian.org/collab-maint/spdylay.git

