r56347 - in /trunk/libmodule-runtime-perl/debian: ./ changelog compat control copyright rules watch

ivan at users.alioth.debian.org ivan at users.alioth.debian.org
Sun Apr 18 02:01:59 UTC 2010


Author: ivan
Date: Sun Apr 18 02:01:40 2010
New Revision: 56347

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

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

Added: trunk/libmodule-runtime-perl/debian/changelog
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libmodule-runtime-perl/debian/changelog?rev=56347&op=file
==============================================================================
--- trunk/libmodule-runtime-perl/debian/changelog (added)
+++ trunk/libmodule-runtime-perl/debian/changelog Sun Apr 18 02:01:40 2010
@@ -1,0 +1,30 @@
+libmodule-runtime-perl (0.007-1) unstable; urgency=low
+
+  * New upstream release
+  * debhelper compat 5
+
+ -- Ivan Kohler <ivan-debian at 420.am>  Wed, 24 Mar 2010 17:26:39 -0700
+
+libmodule-runtime-perl (0.005-2) unstable; urgency=low
+
+  * Add libmodule-build-perl to Build-Dep, doh (closes: Bug#470321)
+
+ -- Ivan Kohler <ivan-debian at 420.am>  Wed, 12 Mar 2008 16:51:58 -0700
+
+libmodule-runtime-perl (0.005-1) unstable; urgency=low
+
+  * New upstream releaseA
+  * Upstream has changed build systems from ExtUtils::MakeMaker to
+    Module::Build; update debian/rules to latest Module::Build dh-make-perl
+    template
+  * Current dh-make-perl template fixes "unconditional rmdir" FTBFS
+    (closes: Bug#467810)
+
+ -- Ivan Kohler <ivan-debian at 420.am>  Tue, 26 Feb 2008 21:39:44 -0800
+
+libmodule-runtime-perl (0.003-1) unstable; urgency=low
+
+  * Initial Release (closes: Bug#277159).
+
+ -- Ivan Kohler <ivan-debian at 420.am>  Tue, 20 Feb 2007 00:56:58 -0800
+

Added: trunk/libmodule-runtime-perl/debian/compat
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libmodule-runtime-perl/debian/compat?rev=56347&op=file
==============================================================================
--- trunk/libmodule-runtime-perl/debian/compat (added)
+++ trunk/libmodule-runtime-perl/debian/compat Sun Apr 18 02:01:40 2010
@@ -1,0 +1,1 @@
+5

Added: trunk/libmodule-runtime-perl/debian/control
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libmodule-runtime-perl/debian/control?rev=56347&op=file
==============================================================================
--- trunk/libmodule-runtime-perl/debian/control (added)
+++ trunk/libmodule-runtime-perl/debian/control Sun Apr 18 02:01:40 2010
@@ -1,0 +1,14 @@
+Source: libmodule-runtime-perl
+Section: perl
+Priority: optional
+Build-Depends: debhelper (>= 4.0.0), libmodule-build-perl
+Build-Depends-Indep: perl (>= 5.8.4-8)
+Maintainer: Ivan Kohler <ivan-debian at 420.am>
+Standards-Version: 3.7.2
+
+Package: libmodule-runtime-perl
+Architecture: all
+Depends: ${perl:Depends}, ${misc:Depends}, 
+Description: Perl module for runtime module handling
+ The functions exported by this module deal with runtime handling of Perl
+ modules, which are normally handled at compile time.

Added: trunk/libmodule-runtime-perl/debian/copyright
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libmodule-runtime-perl/debian/copyright?rev=56347&op=file
==============================================================================
--- trunk/libmodule-runtime-perl/debian/copyright (added)
+++ trunk/libmodule-runtime-perl/debian/copyright Sun Apr 18 02:01:40 2010
@@ -1,0 +1,16 @@
+This is the debian package for the Module-Runtime module.
+It was created by Ivan Kohler <ivan-debian at 420.am> using dh-make-perl.
+
+The upstream author is: 
+
+Andrew Main (Zefram) <zefram at fysh.org>.
+
+Copyright (C) 2004, 2006, 2007 Andrew Main (Zefram) <zefram at fysh.org>
+
+This module 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-runtime-perl/debian/rules
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libmodule-runtime-perl/debian/rules?rev=56347&op=file
==============================================================================
--- trunk/libmodule-runtime-perl/debian/rules (added)
+++ trunk/libmodule-runtime-perl/debian/rules Sun Apr 18 02:01:40 2010
@@ -1,0 +1,77 @@
+#!/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
+
+PACKAGE=$(shell dh_listpackages)
+
+ifndef PERL
+PERL = /usr/bin/perl
+endif
+
+TMP     =$(CURDIR)/debian/$(PACKAGE)
+
+build: build-stamp
+build-stamp:
+	dh_testdir
+
+	# Add commands to compile the package here
+	$(PERL) Build.PL installdirs=vendor
+	$(PERL) Build
+	$(PERL) Build test
+
+	touch $@
+
+clean:
+	dh_testdir
+	dh_testroot
+
+	dh_clean build-stamp install-stamp
+
+	# Add commands to clean up after the build process here
+	[ ! -f Build ] || $(PERL) Build distclean
+
+install: install-stamp
+install-stamp: build-stamp
+	dh_testdir
+	dh_testroot
+	dh_clean -k
+
+	# Add commands to install the package into $(TMP) here
+	$(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 README
+	dh_installexamples
+	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-runtime-perl/debian/rules
------------------------------------------------------------------------------
    svn:executable = *

Added: trunk/libmodule-runtime-perl/debian/watch
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libmodule-runtime-perl/debian/watch?rev=56347&op=file
==============================================================================
--- trunk/libmodule-runtime-perl/debian/watch (added)
+++ trunk/libmodule-runtime-perl/debian/watch Sun Apr 18 02:01:40 2010
@@ -1,0 +1,3 @@
+# format version number, currently 2; this line is compulsory!
+version=2
+http://www.cpan.org/modules/by-module/Module/Module-Runtime-(.*).(tar.gz|tar|tgz)




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