diff options
-rw-r--r-- | debian/changelog | 13 | ||||
-rw-r--r-- | debian/control | 2 | ||||
-rwxr-xr-x | debian/rules | 6 |
3 files changed, 19 insertions, 2 deletions
diff --git a/debian/changelog b/debian/changelog index 1e3a993..ed3fb31 100644 --- a/debian/changelog +++ b/debian/changelog @@ -1,3 +1,16 @@ +wallet (1.3-1~ebp12.04+1) precise; urgency=medium + + * Backport to precise. + * Drop build dependency on libnet-duo-perl, not available in precise. + * Drop build dependency on libwebauth-perl, which is much too old in + precise for the functionality wallet needs. + * Add explicit build dependency on libjson-perl, which wasn't part of + Perl core yet in precise. + * Disable the strictness test on the Perl libraries, since we don't have + all the dependencies to install. + + -- Russ Allbery <rra@debian.org> Tue, 18 Aug 2015 09:41:24 -0700 + wallet (1.3-1) unstable; urgency=medium * New upstream release. diff --git a/debian/control b/debian/control index 486dd76..cca6375 100644 --- a/debian/control +++ b/debian/control @@ -19,7 +19,6 @@ Build-Depends: libkrb5-dev, libmodule-build-perl, libnet-dns-perl, - libnet-duo-perl, libnet-ldap-perl, libnet-remctl-perl, libperl6-slurp-perl, @@ -29,7 +28,6 @@ Build-Depends: libtest-pod-perl, libtest-strict-perl, libtimedate-perl, - libwebauth-perl, perl, sqlite3, Standards-Version: 3.9.6 diff --git a/debian/rules b/debian/rules index 1d2f446..009a3ba 100755 --- a/debian/rules +++ b/debian/rules @@ -16,6 +16,12 @@ export AUTOMATED_TESTING = 1 override_dh_auto_configure: dh_auto_configure --parallel -- --enable-reduced-depends +# Disable the strictness test, since precise doesn't have the dependencies. +override_dh_auto_test: + mv perl/t/style/strict.t perl/t/style/strict.t-off + dh_auto_test --parallel + mv perl/t/style/strict.t-off perl/t/style/strict.t + # Install the remctl configuration as part of the build. override_dh_auto_install: dh_auto_install |