r40084 - in /trunk/libtest-manifest-perl/debian: README.source changelog compat control patches/ rules

jawnsy-guest at users.alioth.debian.org jawnsy-guest at users.alioth.debian.org
Fri Jul 17 18:19:06 UTC 2009


Author: jawnsy-guest
Date: Fri Jul 17 18:18:58 2009
New Revision: 40084

URL: http://svn.debian.org/wsvn/pkg-perl/?sc=1&rev=40084
Log:
* Added myself to Uploaders and Copyright
* Removed manpage section patch (they are no longer installed per upstream)
* Bumped d/compat to 7. Require debhelper 7 now.
* Use new short rules format.
* Standards-Version 3.8.2
* Removed redundant fields from d/control (priority/section)

Removed:
    trunk/libtest-manifest-perl/debian/README.source
    trunk/libtest-manifest-perl/debian/patches/
Modified:
    trunk/libtest-manifest-perl/debian/changelog
    trunk/libtest-manifest-perl/debian/compat
    trunk/libtest-manifest-perl/debian/control
    trunk/libtest-manifest-perl/debian/rules

Modified: trunk/libtest-manifest-perl/debian/changelog
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libtest-manifest-perl/debian/changelog?rev=40084&op=diff
==============================================================================
--- trunk/libtest-manifest-perl/debian/changelog (original)
+++ trunk/libtest-manifest-perl/debian/changelog Fri Jul 17 18:18:58 2009
@@ -2,6 +2,12 @@
 
   * New upstream release
     + Warns about missing files and skips them, rather than trying to test them
+  * Added myself to Uploaders and Copyright
+  * Removed manpage section patch (they are no longer installed per upstream)
+  * Bumped d/compat to 7. Require debhelper 7 now.
+  * Use new short rules format.
+  * Standards-Version 3.8.2
+  * Removed redundant fields from d/control (priority/section)
 
   [ gregor herrmann ]
   * Add debian/README.source to document quilt usage, as required by

Modified: trunk/libtest-manifest-perl/debian/compat
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libtest-manifest-perl/debian/compat?rev=40084&op=diff
==============================================================================
--- trunk/libtest-manifest-perl/debian/compat (original)
+++ trunk/libtest-manifest-perl/debian/compat Fri Jul 17 18:18:58 2009
@@ -1,1 +1,1 @@
-5
+7

Modified: trunk/libtest-manifest-perl/debian/control
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libtest-manifest-perl/debian/control?rev=40084&op=diff
==============================================================================
--- trunk/libtest-manifest-perl/debian/control (original)
+++ trunk/libtest-manifest-perl/debian/control Fri Jul 17 18:18:58 2009
@@ -3,26 +3,19 @@
 Priority: optional
 Maintainer: Debian Perl Group <pkg-perl-maintainers at lists.alioth.debian.org>
 Uploaders: Jay Bonci <jaybonci at debian.org>, Damyan Ivanov <dmn at debian.org>,
- gregor herrmann <gregoa at debian.org>
-Standards-Version: 3.7.3
+ gregor herrmann <gregoa at debian.org>, Jonathan Yu <frequency at cpan.org>
+Standards-Version: 3.8.2
 Homepage: http://search.cpan.org/dist/Test-Manifest/
 Vcs-Svn: svn://svn.debian.org/pkg-perl/trunk/libtest-manifest-perl/
 Vcs-Browser: http://svn.debian.org/viewsvn/pkg-perl/trunk/libtest-manifest-perl/
-Build-Depends: debhelper (>= 5), quilt
-Build-Depends-Indep: perl, libtest-simple-perl, libtest-pod-perl,
+Build-Depends: debhelper (>= 7)
+Build-Depends-Indep: perl (>= 5.6.0-12), libtest-simple-perl, libtest-pod-perl,
  libtest-pod-coverage-perl
 
 Package: libtest-manifest-perl
-Section: perl
-Priority: optional
 Architecture: all
 Depends: ${misc:Depends}, ${perl:Depends}, libtest-harness-perl
 Description: Perl module for interacting with a test manifest file
- Perl's MakeMaker assumes that you want to run all of the .t files in
- the t/ directory in ascii-betical order during `make test` unless you
- say otherwise.  This leads to some interesting naming schemes for
- test files to get them in the desired order.
- .
- Test::Manifest looks in the t/test_manifest file to find out which
- tests you want to run and the order in which you want to run them.
- It constructs the right value for MakeMaker to do the right thing.
+ Test::Manifest is a Perl test framework that allows you to run any tests you
+ want based on the t/test_manifest file, in any order you desire (rather than
+ simply the ascii-betical order provided by default.)

Modified: trunk/libtest-manifest-perl/debian/rules
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libtest-manifest-perl/debian/rules?rev=40084&op=diff
==============================================================================
--- trunk/libtest-manifest-perl/debian/rules (original)
+++ trunk/libtest-manifest-perl/debian/rules Fri Jul 17 18:18:58 2009
@@ -1,62 +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
-
-include /usr/share/quilt/quilt.make
-
-# 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: $(QUILT_STAMPFN)
-	dh_testdir
-	$(PERL) Makefile.PL INSTALLDIRS=vendor
-	$(MAKE)
-	$(MAKE) test
-	touch $@
-
-clean: unpatch
-	dh_testdir
-	dh_testroot
-	dh_clean build-stamp install-stamp
-	[ ! -f Makefile ] || ( touch 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_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