r26464 - in /trunk/libpoe-component-sslify-perl/debian: changelog compat control docs rules

ghostbar-guest at users.alioth.debian.org ghostbar-guest at users.alioth.debian.org
Sat Nov 1 23:38:12 UTC 2008


Author: ghostbar-guest
Date: Sat Nov  1 23:38:09 2008
New Revision: 26464

URL: http://svn.debian.org/wsvn/pkg-perl/?sc=1&rev=26464
Log:
Switched to debhelper v7, updated debian/rules, added debian/docs, updated debian/control b-d on debhelper to >=7, updated debian/compat to 7.
Added me as uploader
Ready to release

Added:
    trunk/libpoe-component-sslify-perl/debian/docs
Modified:
    trunk/libpoe-component-sslify-perl/debian/changelog
    trunk/libpoe-component-sslify-perl/debian/compat
    trunk/libpoe-component-sslify-perl/debian/control
    trunk/libpoe-component-sslify-perl/debian/rules

Modified: trunk/libpoe-component-sslify-perl/debian/changelog
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libpoe-component-sslify-perl/debian/changelog?rev=26464&op=diff
==============================================================================
--- trunk/libpoe-component-sslify-perl/debian/changelog (original)
+++ trunk/libpoe-component-sslify-perl/debian/changelog Sat Nov  1 23:38:09 2008
@@ -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 <ghostbar38 at gmail.com>  Sat, 01 Nov 2008 18:43:22 -0430
+ -- Jose Luis Rivas <ghostbar38 at gmail.com>  Sat, 01 Nov 2008 19:06:35 -0430
 
 libpoe-component-sslify-perl (0.13-2) unstable; urgency=low
 

Modified: trunk/libpoe-component-sslify-perl/debian/compat
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libpoe-component-sslify-perl/debian/compat?rev=26464&op=diff
==============================================================================
--- trunk/libpoe-component-sslify-perl/debian/compat (original)
+++ trunk/libpoe-component-sslify-perl/debian/compat Sat Nov  1 23:38:09 2008
@@ -1,1 +1,1 @@
-5
+7

Modified: trunk/libpoe-component-sslify-perl/debian/control
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libpoe-component-sslify-perl/debian/control?rev=26464&op=diff
==============================================================================
--- trunk/libpoe-component-sslify-perl/debian/control (original)
+++ trunk/libpoe-component-sslify-perl/debian/control Sat Nov  1 23:38:09 2008
@@ -2,8 +2,9 @@
 Section: perl
 Priority: optional
 Maintainer: Debian Perl Group <pkg-perl-maintainers at lists.alioth.debian.org>
-Uploaders: Niko Tyni <ntyni at debian.org>, Martín Ferrari <tincho at debian.org>
-Build-Depends: debhelper (>= 5.0.0)
+Uploaders: Niko Tyni <ntyni at debian.org>, Martín Ferrari <tincho at debian.org>,
+ Jose Luis Rivas <ghostbar38 at gmail.com>
+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/

Added: trunk/libpoe-component-sslify-perl/debian/docs
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libpoe-component-sslify-perl/debian/docs?rev=26464&op=file
==============================================================================
--- trunk/libpoe-component-sslify-perl/debian/docs (added)
+++ trunk/libpoe-component-sslify-perl/debian/docs Sat Nov  1 23:38:09 2008
@@ -1,0 +1,2 @@
+README
+examples/

Modified: trunk/libpoe-component-sslify-perl/debian/rules
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libpoe-component-sslify-perl/debian/rules?rev=26464&op=diff
==============================================================================
--- trunk/libpoe-component-sslify-perl/debian/rules (original)
+++ trunk/libpoe-component-sslify-perl/debian/rules Sat Nov  1 23:38:09 2008
@@ -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 $@




More information about the Pkg-perl-cvs-commits mailing list