r73346 - in /trunk/libmodule-refresh-perl/debian: README.source changelog compat control rules

periapt-guest at users.alioth.debian.org periapt-guest at users.alioth.debian.org
Sat Apr 23 22:40:49 UTC 2011


Author: periapt-guest
Date: Sat Apr 23 22:40:40 2011
New Revision: 73346

URL: http://svn.debian.org/wsvn/pkg-perl/?sc=1&rev=73346
Log:
* Refreshed dependencies
* Raised debhelper version and compat level to 7,
  refreshed debian/rules and removed quilt cruft
* Raised standards version to 3.9.2

Removed:
    trunk/libmodule-refresh-perl/debian/README.source
Modified:
    trunk/libmodule-refresh-perl/debian/changelog
    trunk/libmodule-refresh-perl/debian/compat
    trunk/libmodule-refresh-perl/debian/control
    trunk/libmodule-refresh-perl/debian/rules

Modified: trunk/libmodule-refresh-perl/debian/changelog
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libmodule-refresh-perl/debian/changelog?rev=73346&op=diff
==============================================================================
--- trunk/libmodule-refresh-perl/debian/changelog (original)
+++ trunk/libmodule-refresh-perl/debian/changelog Sat Apr 23 22:40:40 2011
@@ -1,8 +1,6 @@
 libmodule-refresh-perl (0.16-1) UNRELEASED; urgency=low
 
   [ gregor herrmann ]
-  * Add debian/README.source to document quilt usage, as required by
-    Debian Policy since 3.8.0.
   * debian/control: Changed: Switched Vcs-Browser field to ViewSVN
     (source stanza).
 
@@ -12,6 +10,10 @@
   [ Nicholas Bamber ]
   * Added myself to Uploaders 
   * New upstream release
+  * Refreshed dependencies
+  * Raised debhelper version and compat level to 7,
+    refreshed debian/rules and removed quilt cruft
+  * Raised standards version to 3.9.2
 
  -- gregor herrmann <gregoa at debian.org>  Wed, 06 Aug 2008 21:33:53 -0300
 

Modified: trunk/libmodule-refresh-perl/debian/compat
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libmodule-refresh-perl/debian/compat?rev=73346&op=diff
==============================================================================
--- trunk/libmodule-refresh-perl/debian/compat (original)
+++ trunk/libmodule-refresh-perl/debian/compat Sat Apr 23 22:40:40 2011
@@ -1,1 +1,1 @@
-5
+7

Modified: trunk/libmodule-refresh-perl/debian/control
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libmodule-refresh-perl/debian/control?rev=73346&op=diff
==============================================================================
--- trunk/libmodule-refresh-perl/debian/control (original)
+++ trunk/libmodule-refresh-perl/debian/control Sat Apr 23 22:40:40 2011
@@ -1,19 +1,19 @@
 Source: libmodule-refresh-perl
 Section: perl
 Priority: optional
-Build-Depends: debhelper (>= 5), quilt (>= 0.40)
-Build-Depends-Indep: perl (>= 5.8.1)
+Build-Depends: debhelper (>= 7)
+Build-Depends-Indep: perl
 Maintainer: Debian Perl Group <pkg-perl-maintainers at lists.alioth.debian.org>
 Uploaders: AGOSTINI Yves <agostini at univ-metz.fr>,
  Nicholas Bamber <nicholas at periapt.co.uk>
-Standards-Version: 3.7.3
+Standards-Version: 3.9.2
 Homepage: http://search.cpan.org/dist/Module-Refresh/
 Vcs-Svn: svn://svn.debian.org/pkg-perl/trunk/libmodule-refresh-perl/
 Vcs-Browser: http://svn.debian.org/viewsvn/pkg-perl/trunk/libmodule-refresh-perl/
 
 Package: libmodule-refresh-perl
 Architecture: all
-Depends: ${perl:Depends}, perl (>= 5.8.1), ${misc:Depends}
+Depends: ${perl:Depends}, ${misc:Depends}
 Description:  Refresh %INC files when updated on disk
  Module::Refresh is a generalization of the functionality provided by
  Apache::StatINC and Apache::Reload.  It's designed to make it

Modified: trunk/libmodule-refresh-perl/debian/rules
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libmodule-refresh-perl/debian/rules?rev=73346&op=diff
==============================================================================
--- trunk/libmodule-refresh-perl/debian/rules (original)
+++ trunk/libmodule-refresh-perl/debian/rules Sat Apr 23 22:40:40 2011
@@ -1,65 +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.
 
-# 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)
-
-include /usr/share/quilt/quilt.make
-
-build: build-stamp
-build-stamp: $(QUILT_STAMPFN)
-	dh_testdir
-	# Add commands to compile the package here
-	$(PERL) Makefile.PL INSTALLDIRS=vendor
-	$(MAKE)
-	$(MAKE) test
-	touch $@
-
-clean: unpatch
-	dh_testdir
-	dh_testroot
-	dh_clean build-stamp install-stamp
-	# Add commands to clean up after the build process here
-	[ ! -f Makefile ] || $(MAKE) realclean
-
-install: install-stamp
-install-stamp: build-stamp
-	dh_testdir
-	dh_testroot
-	dh_clean -k
-	# Add commands to install the package into $(TMP) here
-	$(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_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