r8421 - in /trunk/libpod-constants-perl: debian/ debian/changelog debian/compat debian/control debian/copyright debian/rules debian/watch t/perlpath

hanska-guest at users.alioth.debian.org hanska-guest at users.alioth.debian.org
Sun Oct 21 12:09:32 UTC 2007


Author: hanska-guest
Date: Sun Oct 21 12:09:32 2007
New Revision: 8421

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

Added:
    trunk/libpod-constants-perl/debian/
    trunk/libpod-constants-perl/debian/changelog
    trunk/libpod-constants-perl/debian/compat
    trunk/libpod-constants-perl/debian/control
    trunk/libpod-constants-perl/debian/copyright
    trunk/libpod-constants-perl/debian/rules   (with props)
    trunk/libpod-constants-perl/debian/watch
    trunk/libpod-constants-perl/t/perlpath

Added: trunk/libpod-constants-perl/debian/changelog
URL: http://svn.debian.org/wsvn/trunk/libpod-constants-perl/debian/changelog?rev=8421&op=file
==============================================================================
--- trunk/libpod-constants-perl/debian/changelog (added)
+++ trunk/libpod-constants-perl/debian/changelog Sun Oct 21 12:09:32 2007
@@ -1,0 +1,5 @@
+libpod-constants-perl (0.16-1) unstable; urgency=low
+
+  * Initial Release.
+
+ -- David Paleino <d.paleino at gmail.com>  Sun, 21 Oct 2007 11:38:05 +0200

Added: trunk/libpod-constants-perl/debian/compat
URL: http://svn.debian.org/wsvn/trunk/libpod-constants-perl/debian/compat?rev=8421&op=file
==============================================================================
--- trunk/libpod-constants-perl/debian/compat (added)
+++ trunk/libpod-constants-perl/debian/compat Sun Oct 21 12:09:32 2007
@@ -1,0 +1,1 @@
+5

Added: trunk/libpod-constants-perl/debian/control
URL: http://svn.debian.org/wsvn/trunk/libpod-constants-perl/debian/control?rev=8421&op=file
==============================================================================
--- trunk/libpod-constants-perl/debian/control (added)
+++ trunk/libpod-constants-perl/debian/control Sun Oct 21 12:09:32 2007
@@ -1,0 +1,24 @@
+Source: libpod-constants-perl
+Section: perl
+Priority: optional
+Build-Depends: debhelper (>= 5.0.0)
+Build-Depends-Indep: perl (>= 5.8.8-11.1), libtest-simple-perl (>= 0.18)
+Maintainer: Debian Perl Group <pkg-perl-maintainers at lists.alioth.debian.org>
+Uploaders: David Paleino <d.paleino at gmail.com>
+Standards-Version: 3.7.2
+Homepage: http://search.cpan.org/dist/Pod-Constants/
+Vcs-Svn: svn://svn.debian.org/pkg-perl/trunk/libpod-constants-perl/
+Vcs-Browser: http://svn.debian.org/wsvn/pkg-perl/trunk/libpod-constants-perl/
+
+Package: libpod-constants-perl
+Architecture: all
+Depends: ${perl:Depends}
+Description: include constants from POD
+ This module allows you to specify those constants that should be
+ documented in your POD, and pull them out a run time in a fairly
+ arbitrary fashion.
+ .
+ Pod::Constants uses Pod::Parser to do the parsing of the source file.
+ It has to open the source file it is called from, and does so directly
+ either by lookup in %INC or by assuming it is $0 if the caller is
+ "main" (or it can't find %INC{caller()})

Added: trunk/libpod-constants-perl/debian/copyright
URL: http://svn.debian.org/wsvn/trunk/libpod-constants-perl/debian/copyright?rev=8421&op=file
==============================================================================
--- trunk/libpod-constants-perl/debian/copyright (added)
+++ trunk/libpod-constants-perl/debian/copyright Sun Oct 21 12:09:32 2007
@@ -1,0 +1,20 @@
+This is the debian package for the Pod-Constants module.
+It was created by David Paleino <d.paleino at gmail.com> using dh-make-perl.
+
+It was downloaded from http://search.cpan.org/dist/Pod-Constants/
+
+The upstream author is: 
+
+Sam Vilain, <samv at cpan.org>.
+
+Copyright (C) 2001, 2002, 2007 Sam Vilain.  All Rights Reserved.
+This module is free software. It may be used, redistributed and/or
+modified under the terms of the Perl Artistic License, version 2 or
+later, OR the terms of the GNU General Public License, v3 or later.
+
+On Debian systems, the complete text of the Artistic license can be found in
+`/usr/share/common-licenses/Artistic'. The complete text of the GNU General
+Public License can be found in `/usr/share/common-licenses/GPL'.
+
+The Debian packaging is (C) 2007, David Paleino <d.paleino at gmail.com> and
+is licensed under the same terms as the software itself (see above).

Added: trunk/libpod-constants-perl/debian/rules
URL: http://svn.debian.org/wsvn/trunk/libpod-constants-perl/debian/rules?rev=8421&op=file
==============================================================================
--- trunk/libpod-constants-perl/debian/rules (added)
+++ trunk/libpod-constants-perl/debian/rules Sun Oct 21 12:09:32 2007
@@ -1,0 +1,70 @@
+#!/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 \
+		INSTALLVENDORARCH=/usr/share/perl5/ \
+		VENDORARCHEXP=/usr/share/perl5/
+	$(MAKE)
+	$(MAKE) test
+
+	touch $@
+
+clean:
+	dh_testdir
+	dh_testroot
+
+	dh_clean build-stamp install-stamp
+
+	[ ! -f Makefile ] || $(MAKE) realclean
+
+install: build install-stamp
+install-stamp:
+	dh_testdir
+	dh_testroot
+	dh_clean -k
+
+	$(MAKE) install DESTDIR=$(TMP) PREFIX=/usr
+
+	touch $@
+
+binary-arch:
+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/libpod-constants-perl/debian/rules
------------------------------------------------------------------------------
    svn:executable = *

Added: trunk/libpod-constants-perl/debian/watch
URL: http://svn.debian.org/wsvn/trunk/libpod-constants-perl/debian/watch?rev=8421&op=file
==============================================================================
--- trunk/libpod-constants-perl/debian/watch (added)
+++ trunk/libpod-constants-perl/debian/watch Sun Oct 21 12:09:32 2007
@@ -1,0 +1,3 @@
+# format version number, currently 3; this line is compulsory!
+version=3
+http://search.cpan.org/dist/Pod-Constants/ .*/Pod-Constants-([\.\d]+)\.(?:tar\.gz|tar|tgz)$

Added: trunk/libpod-constants-perl/t/perlpath
URL: http://svn.debian.org/wsvn/trunk/libpod-constants-perl/t/perlpath?rev=8421&op=file
==============================================================================
--- trunk/libpod-constants-perl/t/perlpath (added)
+++ trunk/libpod-constants-perl/t/perlpath Sun Oct 21 12:09:32 2007
@@ -1,0 +1,1 @@
+/usr/bin/perl




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