diff --git a/debian/changelog b/debian/changelog index 806a141..8f1d31d 100644 --- a/debian/changelog +++ b/debian/changelog @@ -1,8 +1,13 @@ -libpoe-component-sslify-perl (0.14-1) UNRELEASED; urgency=low +libpoe-component-sslify-perl (0.14-1) unstable; urgency=low - * (NOT RELEASED YET) New upstream release + * New upstream release + * Switched to debhelper v7, debian/rules is now only 3 lines long. + * Added debian/docs. + * debian/control: Updated to debhelper >= 7. + * debian/compat: 7. + * Added me as uploader. - -- Jose Luis Rivas Sat, 01 Nov 2008 18:43:22 -0430 + -- Jose Luis Rivas Sat, 01 Nov 2008 19:06:35 -0430 libpoe-component-sslify-perl (0.13-2) unstable; urgency=low diff --git a/debian/compat b/debian/compat index 7ed6ff8..7f8f011 100644 --- a/debian/compat +++ b/debian/compat @@ -1 +1 @@ -5 +7 diff --git a/debian/control b/debian/control index 61f62e3..c91d385 100644 --- a/debian/control +++ b/debian/control @@ -2,8 +2,9 @@ Section: perl Priority: optional Maintainer: Debian Perl Group -Uploaders: Niko Tyni , Martín Ferrari -Build-Depends: debhelper (>= 5.0.0) +Uploaders: Niko Tyni , Martín Ferrari , + Jose Luis Rivas +Build-Depends: debhelper (>= 7) Build-Depends-Indep: perl (>= 5.8.8-7), libnet-ssleay-perl (>= 1.30) Standards-Version: 3.8.0 Homepage: http://search.cpan.org/dist/POE-Component-SSLify/ diff --git a/debian/docs b/debian/docs new file mode 100644 index 0000000..8981ea5 --- /dev/null +++ b/debian/docs @@ -0,0 +1,2 @@ +README +examples/ diff --git a/debian/rules b/debian/rules index f022634..cbe925d 100755 --- a/debian/rules +++ b/debian/rules @@ -1,55 +1,3 @@ #!/usr/bin/make -f - -#export DH_VERBOSE=1 -export PERL_MM_USE_DEFAULT=1 - -PERL ?= /usr/bin/perl -PACKAGE = $(shell dh_listpackages) -TMP = $(CURDIR)/debian/$(PACKAGE) - -build: build-stamp -build-stamp: - dh_testdir - $(PERL) Makefile.PL INSTALLDIRS=vendor - $(MAKE) - # Almost all tests are author tests, and the (trivial) one remaining - # needs a module not in Debian. - #$(MAKE) test - touch $@ - -clean: - dh_testdir - dh_testroot - dh_clean build-stamp install-stamp - [ ! -f Makefile ] || $(MAKE) realclean - -install: install-stamp -install-stamp: build-stamp - dh_testdir - dh_testroot - dh_clean -k - $(MAKE) install DESTDIR=$(TMP) PREFIX=/usr - [ ! -d $(TMP)/usr/lib/perl5 ] || \ - rmdir --ignore-fail-on-non-empty --parents --verbose \ - $(TMP)/usr/lib/perl5 - touch $@ - -binary-arch: -# We have nothing to do here for an architecture-independent package - -binary-indep: build install - dh_testdir - dh_testroot - dh_installexamples examples/* - dh_installdocs - dh_installchangelogs Changes - dh_perl - dh_compress - dh_fixperms - dh_installdeb - dh_gencontrol - dh_md5sums - dh_builddeb - -binary: binary-indep binary-arch -.PHONY: build clean binary-indep binary-arch binary install +%: + dh $@