r21342 - in /trunk/libmodule-pluggable-fast-perl/debian: ./ changelog compat control copyright rules

gregoa at users.alioth.debian.org gregoa at users.alioth.debian.org
Sun Jun 15 14:27:09 UTC 2008


Author: gregoa
Date: Sun Jun 15 14:27:09 2008
New Revision: 21342

URL: http://svn.debian.org/wsvn/pkg-perl/?sc=1&rev=21342
Log:
[svn-inject] Applying Debian modifications to trunk

Added:
    trunk/libmodule-pluggable-fast-perl/debian/
    trunk/libmodule-pluggable-fast-perl/debian/changelog
    trunk/libmodule-pluggable-fast-perl/debian/compat
    trunk/libmodule-pluggable-fast-perl/debian/control
    trunk/libmodule-pluggable-fast-perl/debian/copyright
    trunk/libmodule-pluggable-fast-perl/debian/rules   (with props)

Added: trunk/libmodule-pluggable-fast-perl/debian/changelog
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libmodule-pluggable-fast-perl/debian/changelog?rev=21342&op=file
==============================================================================
--- trunk/libmodule-pluggable-fast-perl/debian/changelog (added)
+++ trunk/libmodule-pluggable-fast-perl/debian/changelog Sun Jun 15 14:27:09 2008
@@ -1,0 +1,21 @@
+libmodule-pluggable-fast-perl (0.18-1.1) unstable; urgency=low
+
+  * Non-maintainer upload.
+  * Fix FTBFS with Perl 5.10.  Closes: #467898
+
+ -- Mark Hymers <mhy at debian.org>  Sat, 05 Apr 2008 21:09:11 +0100
+
+libmodule-pluggable-fast-perl (0.18-1) unstable; urgency=low
+
+  * New upstream release.
+  * Updated Maintainer field.
+  * Cleaned up debian/rules.
+
+ -- Florian Ragwitz <rafl at debian.org>  Fri, 27 Jan 2006 04:05:23 +0100
+
+libmodule-pluggable-fast-perl (0.16-1) unstable; urgency=low
+
+  * Initial Release.
+
+ -- Florian Ragwitz <florian at mookooh.org>  Mon, 30 May 2005 16:36:36 +0200
+

Added: trunk/libmodule-pluggable-fast-perl/debian/compat
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libmodule-pluggable-fast-perl/debian/compat?rev=21342&op=file
==============================================================================
--- trunk/libmodule-pluggable-fast-perl/debian/compat (added)
+++ trunk/libmodule-pluggable-fast-perl/debian/compat Sun Jun 15 14:27:09 2008
@@ -1,0 +1,1 @@
+4

Added: trunk/libmodule-pluggable-fast-perl/debian/control
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libmodule-pluggable-fast-perl/debian/control?rev=21342&op=file
==============================================================================
--- trunk/libmodule-pluggable-fast-perl/debian/control (added)
+++ trunk/libmodule-pluggable-fast-perl/debian/control Sun Jun 15 14:27:09 2008
@@ -1,0 +1,14 @@
+Source: libmodule-pluggable-fast-perl
+Section: perl
+Priority: optional
+Build-Depends: debhelper (>= 4.0.2)
+Build-Depends-Indep: perl (>= 5.8.0-7), libuniversal-exports-perl, libtest-pod-perl (>= 1.14), libtest-pod-coverage-perl (>= 1.04)
+Maintainer: Florian Ragwitz <rafl at debian.org>
+Standards-Version: 3.6.2
+
+Package: libmodule-pluggable-fast-perl
+Architecture: all
+Depends: ${perl:Depends}, libuniversal-exports-perl
+Description:  Fast plugins with instantiation
+ Similar to Module::Pluggable but instantiates plugins as soon as they're
+ found, useful for code generators like Class::DBI::Loader.

Added: trunk/libmodule-pluggable-fast-perl/debian/copyright
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libmodule-pluggable-fast-perl/debian/copyright?rev=21342&op=file
==============================================================================
--- trunk/libmodule-pluggable-fast-perl/debian/copyright (added)
+++ trunk/libmodule-pluggable-fast-perl/debian/copyright Sun Jun 15 14:27:09 2008
@@ -1,0 +1,16 @@
+This package was debianized by Florian Ragwitz <florian at mookooh.org> on
+Mon, 30 May 2005 14:57:19 +0200.
+
+It was downloaded from http://search.cpan.org/~sri/Module-Pluggable-Fast/
+
+Upstream author: Sebastian Riedel sri at cpan.org
+
+License:
+
+ This program is free software, you can redistribute it and/or modify it under
+ the same terms as Perl itself.
+
+ Perl is distributed under your choice of the GNU General Public License or the
+ Artistic License.  On Debian GNU/Linux systems, the complete text of the GNU
+ General Public License can be found in `/usr/share/common-licenses/GPL' and
+ the Artistic Licence in `/usr/share/common-licenses/Artistic'.

Added: trunk/libmodule-pluggable-fast-perl/debian/rules
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libmodule-pluggable-fast-perl/debian/rules?rev=21342&op=file
==============================================================================
--- trunk/libmodule-pluggable-fast-perl/debian/rules (added)
+++ trunk/libmodule-pluggable-fast-perl/debian/rules Sun Jun 15 14:27:09 2008
@@ -1,0 +1,56 @@
+#!/usr/bin/make -f
+
+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) OPTIMIZE="-Wall -O2 -g"
+	touch build-stamp
+
+clean:
+	dh_testdir
+	dh_testroot
+	-$(MAKE) distclean
+	dh_clean build-stamp install-stamp
+
+install: build install-stamp
+install-stamp:
+	dh_testdir
+	dh_testroot
+	dh_clean -k
+	TEST_POD=1 $(MAKE) test
+	$(MAKE) install DESTDIR=$(TMP) PREFIX=/usr
+	[ ! -d $(TMP)/usr/lib/perl5 ] || rmdir --ignore-fail-on-non-empty --parents $(TMP)/usr/lib/perl5
+	touch install-stamp
+
+binary-arch:
+# We have nothing to do by default.
+
+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
+
+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

Propchange: trunk/libmodule-pluggable-fast-perl/debian/rules
------------------------------------------------------------------------------
    svn:executable = *




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