r24302 - in /trunk/libfile-find-rule-perl-perl/debian: ./ changelog compat control copyright rules watch

vdanjean at users.alioth.debian.org vdanjean at users.alioth.debian.org
Fri Aug 15 12:49:06 UTC 2008


Author: vdanjean
Date: Fri Aug 15 12:49:02 2008
New Revision: 24302

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

Added:
    trunk/libfile-find-rule-perl-perl/debian/
    trunk/libfile-find-rule-perl-perl/debian/changelog
    trunk/libfile-find-rule-perl-perl/debian/compat
    trunk/libfile-find-rule-perl-perl/debian/control
    trunk/libfile-find-rule-perl-perl/debian/copyright
    trunk/libfile-find-rule-perl-perl/debian/rules   (with props)
    trunk/libfile-find-rule-perl-perl/debian/watch

Added: trunk/libfile-find-rule-perl-perl/debian/changelog
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libfile-find-rule-perl-perl/debian/changelog?rev=24302&op=file
==============================================================================
--- trunk/libfile-find-rule-perl-perl/debian/changelog (added)
+++ trunk/libfile-find-rule-perl-perl/debian/changelog Fri Aug 15 12:49:02 2008
@@ -1,0 +1,9 @@
+libfile-find-rule-perl-perl (1.04-1) unstable; urgency=low
+
+  * debian/control:
+    build-depends on "libtest-minimumversion-perl (>= 0.007) | perl"
+    in order to break circular build-dependencies loops
+  * Initial release. (Closes: #495197: ITP: libfile-find-rule-perl-perl
+    -- common rules for searching for Perl things)
+
+ -- Vincent Danjean <vdanjean at debian.org>  Fri, 15 Aug 2008 14:41:28 +0200

Added: trunk/libfile-find-rule-perl-perl/debian/compat
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libfile-find-rule-perl-perl/debian/compat?rev=24302&op=file
==============================================================================
--- trunk/libfile-find-rule-perl-perl/debian/compat (added)
+++ trunk/libfile-find-rule-perl-perl/debian/compat Fri Aug 15 12:49:02 2008
@@ -1,0 +1,1 @@
+7

Added: trunk/libfile-find-rule-perl-perl/debian/control
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libfile-find-rule-perl-perl/debian/control?rev=24302&op=file
==============================================================================
--- trunk/libfile-find-rule-perl-perl/debian/control (added)
+++ trunk/libfile-find-rule-perl-perl/debian/control Fri Aug 15 12:49:02 2008
@@ -1,0 +1,21 @@
+Source: libfile-find-rule-perl-perl
+Section: perl
+Priority: optional
+Build-Depends: debhelper (>= 7)
+Build-Depends-Indep: perl (>= 5.005), libfile-find-rule-perl (>= 0.20),
+ libtest-minimumversion-perl (>= 0.007) | perl,
+ libtest-cpan-meta-perl (>= 0.07),
+ libtest-pod-perl (>= 1.00)
+Maintainer: Debian Perl Group <pkg-perl-maintainers at lists.alioth.debian.org>
+Uploaders: Vincent Danjean <vdanjean at debian.org>
+Standards-Version: 3.8.0
+Homepage: http://search.cpan.org/dist/File-Find-Rule-Perl/
+Vcs-Svn: svn://svn.debian.org/pkg-perl/trunk/libfile-find-rule-perl-perl/
+Vcs-Browser: http://svn.debian.org/wsvn/pkg-perl/trunk/libfile-find-rule-perl-perl/
+
+Package: libfile-find-rule-perl-perl
+Architecture: all
+Depends: perl (>= 5.005), ${misc:Depends}, libfile-find-rule-perl (>= 0.20)
+Description: common rules for searching for Perl things
+ File::Find::Rule::Perl provides methods for finding various Perl-related
+ files. It specializes the generic module File::Find::Rule.

Added: trunk/libfile-find-rule-perl-perl/debian/copyright
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libfile-find-rule-perl-perl/debian/copyright?rev=24302&op=file
==============================================================================
--- trunk/libfile-find-rule-perl-perl/debian/copyright (added)
+++ trunk/libfile-find-rule-perl-perl/debian/copyright Fri Aug 15 12:49:02 2008
@@ -1,0 +1,22 @@
+This is the debian package for the File-Find-Rule-Perl module.
+It was created by Vincent Danjean <vdanjean at debian.org> using dh-make-perl.
+
+It was downloaded from http://search.cpan.org/dist/File-Find-Rule-Perl/
+
+The upstream author is: Adam Kennedy <adamk at cpan.org>.
+
+Copyright (C) 2006-2008 Adam Kennedy
+
+This library is free software; you can redistribute it and/or modify
+it under the same terms as Perl itself, either Perl version 5.8.7 or,
+at your option, any later version of Perl 5 you may have available.
+
+Perl is distributed under either the Artistic licence or the GPL.
+The full text of the GPL is available on Debian systems in
+/usr/share/common-licenses/GPL
+The full text of the Artistic Licence is available on Debian systems in
+/usr/share/common-licenses/Artistic.
+
+
+The Debian packaging is (C) 2008, Vincent Danjean <vdanjean at debian.org> and
+is licensed under the same terms as the software itself (see above).

Added: trunk/libfile-find-rule-perl-perl/debian/rules
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libfile-find-rule-perl-perl/debian/rules?rev=24302&op=file
==============================================================================
--- trunk/libfile-find-rule-perl-perl/debian/rules (added)
+++ trunk/libfile-find-rule-perl-perl/debian/rules Fri Aug 15 12:49:02 2008
@@ -1,0 +1,26 @@
+#!/usr/bin/make -f
+
+# Needed to get all tests
+export AUTOMATED_TESTING=true
+
+build: build-stamp
+build-stamp:
+	dh build
+	touch $@
+
+clean:
+	dh $@
+
+install: install-stamp
+install-stamp: build-stamp
+	dh install
+	touch $@
+
+binary-arch:
+
+binary-indep: install
+	dh $@
+
+binary: binary-arch binary-indep
+
+.PHONY: binary binary-arch binary-indep install clean build

Propchange: trunk/libfile-find-rule-perl-perl/debian/rules
------------------------------------------------------------------------------
    svn:executable = *

Added: trunk/libfile-find-rule-perl-perl/debian/watch
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libfile-find-rule-perl-perl/debian/watch?rev=24302&op=file
==============================================================================
--- trunk/libfile-find-rule-perl-perl/debian/watch (added)
+++ trunk/libfile-find-rule-perl-perl/debian/watch Fri Aug 15 12:49:02 2008
@@ -1,0 +1,4 @@
+# format version number, currently 3; this line is compulsory!
+version=3
+# URL to the package page followed by a regex to search
+http://search.cpan.org/dist/File-Find-Rule-Perl/   .*/File-Find-Rule-Perl-v?(\d[\d_.-]+)\.(?:tar(?:\.gz|\.bz2)?|tgz|zip)$




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