diff -Nru libarchive-3.1.2/debian/changelog libarchive-3.1.2/debian/changelog --- libarchive-3.1.2/debian/changelog 2013-02-12 09:31:32.000000000 +0000 +++ libarchive-3.1.2/debian/changelog 2013-02-12 20:36:45.000000000 +0000 @@ -1,6 +1,6 @@ -libarchive (3.1.2-2ppa1~precise) precise; urgency=low +libarchive (3.1.2-3ppa1~precise) precise; urgency=low - * port to precise + * port from debian experimental -- wsnipex Mon, 11 Feb 2013 23:22:42 +0100 diff -Nru libarchive-3.1.2/debian/control libarchive-3.1.2/debian/control --- libarchive-3.1.2/debian/control 2013-02-11 22:21:26.000000000 +0000 +++ libarchive-3.1.2/debian/control 2013-02-12 20:34:50.000000000 +0000 @@ -12,7 +12,6 @@ libattr1-dev, sharutils, nettle-dev, - liblzo2-dev, locales | locales-all Standards-Version: 3.9.3 Section: libs diff -Nru libarchive-3.1.2/debian/gbp.conf libarchive-3.1.2/debian/gbp.conf --- libarchive-3.1.2/debian/gbp.conf 2013-02-11 22:21:26.000000000 +0000 +++ libarchive-3.1.2/debian/gbp.conf 2013-02-12 20:33:59.000000000 +0000 @@ -1,4 +1,4 @@ [DEFAULT] pristine-tar = True -upstream-branch = upstream -debian-branch = master +upstream-branch = upstream-experimental +debian-branch = master-experimental diff -Nru libarchive-3.1.2/debian/rules.old libarchive-3.1.2/debian/rules.old --- libarchive-3.1.2/debian/rules.old 1970-01-01 00:00:00.000000000 +0000 +++ libarchive-3.1.2/debian/rules.old 2013-02-11 22:21:26.000000000 +0000 @@ -0,0 +1,24 @@ +#!/usr/bin/make -f + +.PHONY: build + +%: + dh $@ --parallel + +build: + dh $@ --parallel + +override_dh_auto_configure: + dh_auto_configure -- --without-openssl --with-nettle \ + --enable-bsdtar=shared --enable-bsdcpio=shared + +override_dh_auto_test: +ifneq (,$(shell locale -a | grep en_US.utf8)) + _VERBOSITY_LEVEL=1 dh_auto_test --parallel +else + mkdir -p tmp-locales + localedef -i /usr/share/i18n/locales/en_US -c -f UTF-8 \ + -A /usr/share/locale/locale.alias tmp-locales/en_US.UTF-8 + _VERBOSITY_LEVEL=1 LOCPATH=$(CURDIR)/tmp-locales dh_auto_test --parallel + rm -rf tmp-locales +endif