r31955 - in /trunk/libfile-finder-perl/debian: ./ changelog compat control copyright rules watch

rmayorga at users.alioth.debian.org rmayorga at users.alioth.debian.org
Thu Mar 12 03:59:34 UTC 2009


Author: rmayorga
Date: Thu Mar 12 03:59:30 2009
New Revision: 31955

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

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

Added: trunk/libfile-finder-perl/debian/changelog
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libfile-finder-perl/debian/changelog?rev=31955&op=file
==============================================================================
--- trunk/libfile-finder-perl/debian/changelog (added)
+++ trunk/libfile-finder-perl/debian/changelog Thu Mar 12 03:59:30 2009
@@ -1,0 +1,5 @@
+libfile-finder-perl (0.53-1) unstable; urgency=low
+
+  * Initial Release.
+
+ -- Rene Mayorga <rmayorga at debian.org>  Wed, 11 Mar 2009 20:42:47 -0600

Added: trunk/libfile-finder-perl/debian/compat
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libfile-finder-perl/debian/compat?rev=31955&op=file
==============================================================================
--- trunk/libfile-finder-perl/debian/compat (added)
+++ trunk/libfile-finder-perl/debian/compat Thu Mar 12 03:59:30 2009
@@ -1,0 +1,1 @@
+7

Added: trunk/libfile-finder-perl/debian/control
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libfile-finder-perl/debian/control?rev=31955&op=file
==============================================================================
--- trunk/libfile-finder-perl/debian/control (added)
+++ trunk/libfile-finder-perl/debian/control Thu Mar 12 03:59:30 2009
@@ -1,0 +1,28 @@
+Source: libfile-finder-perl
+Section: perl
+Priority: optional
+Build-Depends: debhelper (>= 7)
+Build-Depends-Indep: perl (>= 5.6.0-12), libtext-glob-perl, libtest-pod-perl,
+ libtest-pod-coverage-perl
+Maintainer: Debian Perl Group <pkg-perl-maintainers at lists.alioth.debian.org>
+Uploaders: Rene Mayorga <rmayorga at debian.org>
+Standards-Version: 3.8.0
+Homepage: http://search.cpan.org/dist/File-Finder/
+Vcs-Svn: svn://svn.debian.org/pkg-perl/trunk/libfile-finder-perl/
+Vcs-Browser: http://svn.debian.org/viewsvn/pkg-perl/trunk/libfile-finder-perl/
+
+Package: libfile-finder-perl
+Architecture: all
+Depends: ${misc:Depends}, ${perl:Depends}, libtext-glob-perl
+Description: wrapper for File::Find ala find(1)
+ File::Find is great, but constructing the wanted routine can sometimes be a
+ pain. File::Finder provides a wanted-writer, using syntax that is directly
+ mappable to the find command's syntax.
+ .
+ A File::Finder object contains a hash of File::Find options, and a series of
+ steps that mimic find's predicates. Initially, a File::Finder object has no
+ steps. Each step method clones the previous object's options and steps, and
+ then adds the new step, returning the new object. In this manner, an object
+ can be grown, step by step, by chaining method calls. Furthermore, a partial
+ sequence can be created and held, and used as the head of many different
+ sequences.

Added: trunk/libfile-finder-perl/debian/copyright
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libfile-finder-perl/debian/copyright?rev=31955&op=file
==============================================================================
--- trunk/libfile-finder-perl/debian/copyright (added)
+++ trunk/libfile-finder-perl/debian/copyright Thu Mar 12 03:59:30 2009
@@ -1,0 +1,30 @@
+Format-Specification:
+    http://wiki.debian.org/Proposals/CopyrightFormat?action=recall&rev=196
+Upstream-Maintainer: Randal L. Schwartz, <merlyn at stonehenge.com>, with a tip
+    of the hat to Richard Clamp for File::Find::Rule.
+Upstream-Source: http://search.cpan.org/dist/File-Finder/
+Upstream-Name: File-Finder
+
+Files: *
+Copyright: © 2003-2004 Randal L. Schwartz, <merlyn at stonehenge.com>, 
+           © 2003-2004 Stonehenge Consulting Services, Inc.
+License-Alias: Perl
+License: Artistic | GPL-1+
+
+Files: debian/*
+Copyright: 2009, Rene Mayorga <rmayorga at debian.org>
+License: Artistic | GPL-1+
+
+License: Artistic
+    This program is free software; you can redistribute it and/or modify
+    it under the terms of the Artistic License, which comes with Perl.
+    On Debian GNU/Linux systems, the complete text of the Artistic License
+    can be found in `/usr/share/common-licenses/Artistic'
+
+License: GPL-1+
+    This program is free software; you can redistribute it and/or modify
+    it under the terms of the GNU General Public License as published by
+    the Free Software Foundation; either version 1, or (at your option)
+    any later version.
+    On Debian GNU/Linux systems, the complete text of the GNU General
+    Public License can be found in `/usr/share/common-licenses/GPL-1'

Added: trunk/libfile-finder-perl/debian/rules
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libfile-finder-perl/debian/rules?rev=31955&op=file
==============================================================================
--- trunk/libfile-finder-perl/debian/rules (added)
+++ trunk/libfile-finder-perl/debian/rules Thu Mar 12 03:59:30 2009
@@ -1,0 +1,25 @@
+#!/usr/bin/make -f
+
+build: build-stamp
+build-stamp:
+	dh build --before test
+	$(MAKE) test TEST_VERBOSE=1
+	dh build --after test
+	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-finder-perl/debian/rules
------------------------------------------------------------------------------
    svn:executable = *

Added: trunk/libfile-finder-perl/debian/watch
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libfile-finder-perl/debian/watch?rev=31955&op=file
==============================================================================
--- trunk/libfile-finder-perl/debian/watch (added)
+++ trunk/libfile-finder-perl/debian/watch Thu Mar 12 03:59:30 2009
@@ -1,0 +1,2 @@
+version=3
+http://search.cpan.org/dist/File-Finder/   .*/File-Finder-v?(\d[\d_.-]+)\.(?:tar(?:\.gz|\.bz2)?|tgz|zip)$




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