r55197 - in /trunk/libnetpacket-perl/debian: changelog compat control libnetpacket-perl.docs rules source/ source/format

gregoa at users.alioth.debian.org gregoa at users.alioth.debian.org
Tue Mar 30 20:02:19 UTC 2010


Author: gregoa
Date: Tue Mar 30 20:02:04 2010
New Revision: 55197

URL: http://svn.debian.org/wsvn/pkg-perl/?sc=1&rev=55197
Log:
* Convert to source format 3.0 (quilt).
* Minimize debian/rules.
* Set Standards-Version to 3.8.4, remove version from perl build dependency..
* Add /me to Uploaders.
* Bump debhelper dependency to 7.0.17 (M::B::C). Add perl (>= 5.10) as an
  alternative to libmodule-build-perl.

Added:
    trunk/libnetpacket-perl/debian/libnetpacket-perl.docs
    trunk/libnetpacket-perl/debian/source/
    trunk/libnetpacket-perl/debian/source/format
Modified:
    trunk/libnetpacket-perl/debian/changelog
    trunk/libnetpacket-perl/debian/compat
    trunk/libnetpacket-perl/debian/control
    trunk/libnetpacket-perl/debian/rules

Modified: trunk/libnetpacket-perl/debian/changelog
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libnetpacket-perl/debian/changelog?rev=55197&op=diff
==============================================================================
--- trunk/libnetpacket-perl/debian/changelog (original)
+++ trunk/libnetpacket-perl/debian/changelog Tue Mar 30 20:02:04 2010
@@ -2,6 +2,12 @@
 
   * New upstream release.
   * debian/watch: update to ignore development releases.
+  * Convert to source format 3.0 (quilt).
+  * Minimize debian/rules.
+  * Set Standards-Version to 3.8.4, remove version from perl build dependency..
+  * Add /me to Uploaders.
+  * Bump debhelper dependency to 7.0.17 (M::B::C). Add perl (>= 5.10) as an
+    alternative to libmodule-build-perl.
 
  -- gregor herrmann <gregoa at debian.org>  Tue, 30 Mar 2010 21:55:31 +0200
 

Modified: trunk/libnetpacket-perl/debian/compat
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libnetpacket-perl/debian/compat?rev=55197&op=diff
==============================================================================
--- trunk/libnetpacket-perl/debian/compat (original)
+++ trunk/libnetpacket-perl/debian/compat Tue Mar 30 20:02:04 2010
@@ -1,1 +1,1 @@
-5
+7

Modified: trunk/libnetpacket-perl/debian/control
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libnetpacket-perl/debian/control?rev=55197&op=diff
==============================================================================
--- trunk/libnetpacket-perl/debian/control (original)
+++ trunk/libnetpacket-perl/debian/control Tue Mar 30 20:02:04 2010
@@ -1,11 +1,12 @@
 Source: libnetpacket-perl
 Section: perl
 Priority: optional
-Build-Depends: debhelper (>= 5), libmodule-build-perl
-Build-Depends-Indep: perl (>= 5.6.10-12)
+Build-Depends: debhelper (>= 7.0.17), perl (>= 5.10) | libmodule-build-perl
+Build-Depends-Indep: perl
 Maintainer: Debian Perl Group <pkg-perl-maintainers at lists.alioth.debian.org>
-Uploaders: Benoit Mortier <benoit.mortier at opensides.be>
-Standards-Version: 3.8.3
+Uploaders: Benoit Mortier <benoit.mortier at opensides.be>,
+ gregor herrmann <gregoa at debian.org>
+Standards-Version: 3.8.4
 Homepage: http://search.cpan.org/dist/NetPacket/
 Vcs-Svn: svn://svn.debian.org/pkg-perl/trunk/libnetpacket-perl/
 Vcs-Browser: http://svn.debian.org/viewsvn/pkg-perl/trunk/libnetpacket-perl/

Added: trunk/libnetpacket-perl/debian/libnetpacket-perl.docs
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libnetpacket-perl/debian/libnetpacket-perl.docs?rev=55197&op=file
==============================================================================
--- trunk/libnetpacket-perl/debian/libnetpacket-perl.docs (added)
+++ trunk/libnetpacket-perl/debian/libnetpacket-perl.docs Tue Mar 30 20:02:04 2010
@@ -1,0 +1,1 @@
+README

Modified: trunk/libnetpacket-perl/debian/rules
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libnetpacket-perl/debian/rules?rev=55197&op=diff
==============================================================================
--- trunk/libnetpacket-perl/debian/rules (original)
+++ trunk/libnetpacket-perl/debian/rules Tue Mar 30 20:02:04 2010
@@ -1,63 +1,4 @@
 #!/usr/bin/make -f
-# This debian/rules file is provided as a template for normal perl
-# packages. It was created by Marc Brockschmidt <marc at dch-faq.de> for
-# the Debian Perl Group (http://pkg-perl.alioth.debian.org/) but may
-# be used freely wherever it is useful.
-#
-# It was later modified by Jason Kohles <email at jasonkohles.com>
-# http://www.jasonkohles.com/ to support Module::Build installed modules
 
-# Uncomment this to turn on verbose mode.
-#export DH_VERBOSE=1
-
-# If set to a true value then MakeMaker's prompt function will
-# always return the default without waiting for user input.
-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
-	# Add commands to compile the package here
-	$(PERL) Build.PL installdirs=vendor
-	$(PERL) Build
-	$(PERL) Build test
-	touch $@
-
-clean:
-	dh_testdir
-	dh_testroot
-	dh_clean build-stamp install-stamp
-	# Add commands to clean up after the build process here
-	[ ! -f Build ] || $(PERL) Build --allow_mb_mismatch 1 distclean
-
-install: install-stamp
-install-stamp: build-stamp
-	dh_testdir
-	dh_testroot
-	dh_clean -k
-	# Add commands to install the package into $(TMP) here
-	$(PERL) Build install destdir=$(TMP) create_packlist=0
-	touch $@
-
-binary-arch:
-# We have nothing to do here for an architecture-independent package
-
-binary-indep: build install
-	dh_testdir
-	dh_testroot
-	dh_installdocs README
-	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 $@

Added: trunk/libnetpacket-perl/debian/source/format
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libnetpacket-perl/debian/source/format?rev=55197&op=file
==============================================================================
--- trunk/libnetpacket-perl/debian/source/format (added)
+++ trunk/libnetpacket-perl/debian/source/format Tue Mar 30 20:02:04 2010
@@ -1,0 +1,1 @@
+3.0 (quilt)




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