r44647 - in /trunk/libconfig-std-perl/debian: README.source changelog compat control patches/ rules

carnil-guest at users.alioth.debian.org carnil-guest at users.alioth.debian.org
Tue Sep 22 17:33:47 UTC 2009


Author: carnil-guest
Date: Tue Sep 22 17:33:40 2009
New Revision: 44647

URL: http://svn.debian.org/wsvn/pkg-perl/?sc=1&rev=44647
Log:
* debian/control:
  - Fix debian-control-has-unusual-field-spacing lintian warning regarding
    unusal field spacing in control file.
* Bump compat level for debhelper to compat level 7. 
* Minimize debian/rules to the tiny rules format. 

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

Modified: trunk/libconfig-std-perl/debian/changelog
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libconfig-std-perl/debian/changelog?rev=44647&op=diff
==============================================================================
--- trunk/libconfig-std-perl/debian/changelog (original)
+++ trunk/libconfig-std-perl/debian/changelog Tue Sep 22 17:33:40 2009
@@ -1,7 +1,6 @@
 libconfig-std-perl (0.0.5-1) UNRELEASED; urgency=low
 
   [ gregor herrmann ]
-  * Move test.cfg to debian/patches; add quilt framework.
   * 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
@@ -12,8 +11,13 @@
 
   [ Salvatore Bonaccorso ]
   * New upstream release 
+  * debian/control:
+    - Fix debian-control-has-unusual-field-spacing lintian warning regarding
+      unusal field spacing in control file.
+  * Bump compat level for debhelper to compat level 7. 
+  * Minimize debian/rules to the tiny rules format. 
 
- -- Salvatore Bonaccorso <salvatore.bonaccorso at gmail.com>  Tue, 22 Sep 2009 14:40:51 +0000
+ -- Salvatore Bonaccorso <salvatore.bonaccorso at gmail.com>  Tue, 22 Sep 2009 17:31:53 +0000
 
 libconfig-std-perl (0.0.4-3) unstable; urgency=low
 

Modified: trunk/libconfig-std-perl/debian/compat
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libconfig-std-perl/debian/compat?rev=44647&op=diff
==============================================================================
--- trunk/libconfig-std-perl/debian/compat (original)
+++ trunk/libconfig-std-perl/debian/compat Tue Sep 22 17:33:40 2009
@@ -1,1 +1,1 @@
-5
+7

Modified: trunk/libconfig-std-perl/debian/control
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libconfig-std-perl/debian/control?rev=44647&op=diff
==============================================================================
--- trunk/libconfig-std-perl/debian/control (original)
+++ trunk/libconfig-std-perl/debian/control Tue Sep 22 17:33:40 2009
@@ -1,7 +1,7 @@
 Source: libconfig-std-perl
 Section: perl
 Priority: optional
-Build-Depends: debhelper (>= 5.0.0), libmodule-build-perl, quilt (>= 0.40)
+Build-Depends: debhelper (>= 7), libmodule-build-perl
 Build-Depends-Indep: perl (>= 5.8.8-7), libclass-std-perl, libversion-perl,
  libtest-pod-perl, libtest-pod-coverage-perl
 Maintainer: Debian Perl Group <pkg-perl-maintainers at lists.alioth.debian.org>
@@ -15,7 +15,7 @@
 Package: libconfig-std-perl
 Architecture: all
 Depends: ${perl:Depends}, ${misc:Depends}, libclass-std-perl, libversion-perl
-Description:  Load and save configuration files in a standard format
+Description: Load and save configuration files in a standard format
  This module implements yet another damn configuration-file system.
  .
  The configuration language is deliberately simple and limited, and the

Modified: trunk/libconfig-std-perl/debian/rules
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libconfig-std-perl/debian/rules?rev=44647&op=diff
==============================================================================
--- trunk/libconfig-std-perl/debian/rules (original)
+++ trunk/libconfig-std-perl/debian/rules Tue Sep 22 17:33:40 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.
-#
-# 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
-
-include /usr/share/quilt/quilt.make
-
-PERL   ?= /usr/bin/perl
-PACKAGE = $(shell dh_listpackages)
-TMP     = $(CURDIR)/debian/$(PACKAGE)
-
-build: build-stamp
-build-stamp: $(QUILT_STAMPFN)
-	dh_testdir
-	$(PERL) Build.PL installdirs=vendor
-	$(PERL) Build
-	$(PERL) Build test
-	touch $@
-
-clean: unpatch
-	dh_testdir
-	dh_testroot
-	dh_clean build-stamp install-stamp
-	[ ! -f Build ] || $(PERL) Build --allow_mb_mismatch 1 distclean
-
-install: install-stamp
-install-stamp: build-stamp
-	dh_testdir
-	dh_testroot
-	dh_clean -k
-	$(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
-	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