r75369 - in /trunk/libtie-toobject-perl/debian: changelog compat control copyright rules source/ source/format

fabreg-guest at users.alioth.debian.org fabreg-guest at users.alioth.debian.org
Sat Jun 11 00:21:25 UTC 2011


Author: fabreg-guest
Date: Sat Jun 11 00:21:11 2011
New Revision: 75369

URL: http://svn.debian.org/wsvn/pkg-perl/?sc=1&rev=75369
Log:
Added debian/source

Added:
    trunk/libtie-toobject-perl/debian/source/
    trunk/libtie-toobject-perl/debian/source/format
Modified:
    trunk/libtie-toobject-perl/debian/changelog
    trunk/libtie-toobject-perl/debian/compat
    trunk/libtie-toobject-perl/debian/control
    trunk/libtie-toobject-perl/debian/copyright
    trunk/libtie-toobject-perl/debian/rules

Modified: trunk/libtie-toobject-perl/debian/changelog
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libtie-toobject-perl/debian/changelog?rev=75369&op=diff
==============================================================================
--- trunk/libtie-toobject-perl/debian/changelog (original)
+++ trunk/libtie-toobject-perl/debian/changelog Sat Jun 11 00:21:11 2011
@@ -14,6 +14,8 @@
   * Bump to 3.9.2 Standard-Version.
   * Switch to DEP5 license format.
   * Add myself to Uploaders.
+  * Switch to debhelper (>= 8).
+  * Bump to 3.0 quilt format.
 
  -- Fabrizio Regalli <fabreg at fabreg.it>  Fri, 10 Jun 2011 18:48:57 +0200
 

Modified: trunk/libtie-toobject-perl/debian/compat
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libtie-toobject-perl/debian/compat?rev=75369&op=diff
==============================================================================
--- trunk/libtie-toobject-perl/debian/compat (original)
+++ trunk/libtie-toobject-perl/debian/compat Sat Jun 11 00:21:11 2011
@@ -1,1 +1,1 @@
-5
+8

Modified: trunk/libtie-toobject-perl/debian/control
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libtie-toobject-perl/debian/control?rev=75369&op=diff
==============================================================================
--- trunk/libtie-toobject-perl/debian/control (original)
+++ trunk/libtie-toobject-perl/debian/control Sat Jun 11 00:21:11 2011
@@ -1,8 +1,9 @@
 Source: libtie-toobject-perl
 Section: perl
 Priority: optional
-Build-Depends: debhelper (>= 5.0.0)
-Build-Depends-Indep: perl (>= 5.8.8-12), libtest-use-ok-perl
+Build-Depends: debhelper (>= 8)
+Build-Depends-Indep: libtest-use-ok-perl,
+ perl (>= 5.8.8-12)
 Maintainer: Debian Perl Group <pkg-perl-maintainers at lists.alioth.debian.org>
 Uploaders: Krzysztof Krzyzaniak (eloy) <eloy at debian.org>,
  gregor herrmann <gregoa at debian.org>,
@@ -12,10 +13,10 @@
 Vcs-Svn: svn://svn.debian.org/pkg-perl/trunk/libtie-toobject-perl/
 Vcs-Browser: http://svn.debian.org/viewsvn/pkg-perl/trunk/libtie-toobject-perl/
 
-
 Package: libtie-toobject-perl
 Architecture: all
-Depends: ${perl:Depends}, ${misc:Depends}
+Depends: ${misc:Depends}, ${perl:Depends},
+ libtest-use-ok-perl
 Description: Tie to an existing object
  While perldoc/tie allows tying to an arbitrary object, the class in question
  must support this in it's implementation of TIEHASH, TIEARRAY or

Modified: trunk/libtie-toobject-perl/debian/copyright
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libtie-toobject-perl/debian/copyright?rev=75369&op=diff
==============================================================================
--- trunk/libtie-toobject-perl/debian/copyright (original)
+++ trunk/libtie-toobject-perl/debian/copyright Sat Jun 11 00:21:11 2011
@@ -4,11 +4,13 @@
 Name: Tie-ToObject
 
 Files: *
-Copyright: 2008, Yuval Kogman <nothingmuch at woobling.org>
+Copyright: Yuval Kogman <nothingmuch at woobling.org>
 License: Artistic or GPL-1+
 
 Files: debian/*
-Copyright: Krzysztof Krzyzaniak (eloy) <eloy at debian.org>
+Copyright: 2008, Krzysztof Krzyzaniak (eloy) <eloy at debian.org>
+ 2008, gregor herrmann <gregor+debian at comodo.priv.at>
+ 2011, Fabrizio Regalli <fabreg at fabreg.it>
 License: Artistic or GPL-1+
 
 License: Artistic

Modified: trunk/libtie-toobject-perl/debian/rules
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libtie-toobject-perl/debian/rules?rev=75369&op=diff
==============================================================================
--- trunk/libtie-toobject-perl/debian/rules (original)
+++ trunk/libtie-toobject-perl/debian/rules Sat Jun 11 00:21:11 2011
@@ -1,67 +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
-
-PACKAGE=$(shell dh_listpackages)
-
-ifndef PERL
-PERL = /usr/bin/perl
-endif
-
-TMP     =$(CURDIR)/debian/$(PACKAGE)
-
-build: build-stamp
-build-stamp:
-	dh_testdir
-	$(PERL) Makefile.PL INSTALLDIRS=vendor
-	$(MAKE)
-	$(MAKE) test
-	touch $@
-
-clean:
-	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
-	$(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
-	dh_installdocs 
-	dh_installchangelogs 
-	dh_perl
-	dh_compress
-	dh_fixperms
-	dh_installdeb
-	dh_gencontrol
-	dh_md5sums
-	dh_builddeb
-
-source diff:
-	@echo >&2 'source and diff are obsolete - use dpkg-source -b'; false
-
-binary: binary-indep binary-arch
-.PHONY: build clean binary-indep binary-arch binary
+%:
+	dh $@

Added: trunk/libtie-toobject-perl/debian/source/format
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libtie-toobject-perl/debian/source/format?rev=75369&op=file
==============================================================================
--- trunk/libtie-toobject-perl/debian/source/format (added)
+++ trunk/libtie-toobject-perl/debian/source/format Sat Jun 11 00:21:11 2011
@@ -1,0 +1,1 @@
+3.0 (quilt)




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