debian/0000755000000000000000000000000011636130704007167 5ustar debian/control0000644000000000000000000000226311636130704010575 0ustar Source: libfile-find-rule-perl Section: perl Priority: optional Maintainer: Debian Perl Group Uploaders: Niko Tyni , gregor herrmann , Jonathan Yu , Angel Abad Build-Depends: debhelper (>= 8) Build-Depends-Indep: libnumber-compare-perl, libtest-differences-perl, libtext-glob-perl, perl Standards-Version: 3.9.2 Vcs-Browser: http://anonscm.debian.org/gitweb/?p=pkg-perl/packages/libfile-find-rule-perl.git Vcs-Git: git://git.debian.org/pkg-perl/packages/libfile-find-rule-perl.git Homepage: http://search.cpan.org/dist/File-Find-Rule/ Package: libfile-find-rule-perl Architecture: all Depends: ${misc:Depends}, ${perl:Depends}, libnumber-compare-perl, libtext-glob-perl Description: module to search for files based on rules File::Find::Rule is a Perl module which essentially provides an easy-to-use interface to the popular module, File::Find. It provides a way to build rules that specify desired file and directory names using a text-globbing syntax (provided by Text::Glob). This makes it useful for simple tasks, like finding all ".pm" files in a given directory. debian/copyright0000644000000000000000000000254011636130704011123 0ustar Format-Specification: http://anonscm.debian.org/viewvc/dep/web/deps/dep5.mdwn?view=markup&pathrev=135 Maintainer: Richard Clamp Source: http://search.cpan.org/dist/File-Find-Rule/ Name: File-Find-Rule Files: * Copyright: 2002-2011, Richard Clamp License: Artistic or GPL-1+ Files: debian/* Copyright: 2004, S. Zachariah Sprackett 2006, Gunnar Wolf 2006, Jonas Genannt 2006, Matej Vela 2006, Niko Tyni 2009, Jonathan Yu 2008-2010, gregor herrmann 2011, Angel Abad License: Artistic or 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 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 systems, the complete text of version 1 of the GNU General Public License can be found in `/usr/share/common-licenses/GPL-1'. debian/watch0000644000000000000000000000016711636130704010224 0ustar version=3 http://search.cpan.org/dist/File-Find-Rule/ .*/File-Find-Rule-v?(\d[\d.]+)\.(?:tar(?:\.gz|\.bz2)?|tgz|zip) debian/patches/0000755000000000000000000000000011636130704010616 5ustar debian/patches/sequential_slashes.patch0000644000000000000000000000105011636130704015527 0ustar Description: handle sequential slashes properly Author: Niko Tyni Bug: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=329377 Origin: vendor Forwarded: no --- a/lib/File/Find/Rule.pm +++ b/lib/File/Find/Rule.pm @@ -540,6 +540,7 @@ my $topdir; my $code = 'sub { (my $path = $File::Find::name) =~ s#^(?:\./+)+##; + $path = "." if ($path eq ""); # See Debian bug #329377 my @args = ($_, $File::Find::dir, $path); my $maxdepth = $self->{maxdepth}; my $mindepth = $self->{mindepth}; debian/patches/series0000644000000000000000000000003111636130704012025 0ustar sequential_slashes.patch debian/compat0000644000000000000000000000000211636130704010365 0ustar 8 debian/changelog0000644000000000000000000001021111636130704011034 0ustar libfile-find-rule-perl (0.33-1) unstable; urgency=low [ gregor herrmann ] * debian/rules: switch order of arguments to dh. [ Ansgar Burchardt ] * debian/control: Convert Vcs-* fields to Git. [ Salvatore Bonaccorso ] * debian/copyright: Replace DEP5 Format-Specification URL from svn.debian.org to anonscm.debian.org URL. [ Angel Abad ] * Imported Upstream version 0.33 * Remove quilt framework * debian/copyright: - Update license stanzas - Update debian/* section * Bump Debhelper compat level to 8 * Bump Standards-Version to 3.9.2 (no changes) * debian/control: Add myself to Uploaders * debian/lintian-overrides: New file, override spelling error because it is an option [ gregor herrmann ] * Update also upstream copyright years. -- Angel Abad Mon, 19 Sep 2011 19:09:18 +0200 libfile-find-rule-perl (0.32-1) unstable; urgency=low [ Jonathan Yu ] * New upstream release * Remove Jonas Gennant from Uploaders; given that he has not responded to various mails, I assume he's MIA * Update control description * Use debhelper 7, short rules and --with quilt * Refresh quilt patch to unified format * Standards-Version 3.8.3 (no changes) * Refresh copyright file to new format (DEP5) * Add myself to Copyright and Uploaders * Add header for sequential slash patch (DEP3) [ gregor herrmann ] * Add debian/README.source to document quilt usage, as required by Debian Policy since 3.8.0. * debian/control: Changed: Switched Vcs-Browser field to ViewSVN (source stanza). * debian/control: Added: ${misc:Depends} to Depends: field. * Change my email address. * debian/control: Changed: (build-)depend on perl instead of perl- modules. [ Nathan Handler ] * debian/watch: Update to ignore development releases. [ Salvatore Bonaccorso ] * debian/control: Changed: Replace versioned (build-)dependency on perl (>= 5.6.0-{12,16}) with an unversioned dependency on perl (as permitted by Debian Policy 3.8.3). [ gregor herrmann ] * debian/control: add build dependency on libtest-differences-perl. -- Jonathan Yu Sat, 28 Nov 2009 13:01:30 -0500 libfile-find-rule-perl (0.30-3) unstable; urgency=low * debian/control: Added: Vcs-Svn field (source stanza); Vcs-Browser field (source stanza); Homepage field (source stanza). Removed: XS- Vcs-Svn fields. Added: /me to Uploaders. * debian/rules: - delete /usr/lib/perl5 only if it exists (closes: #467789) - update based on dh-make-perl's templates * debian/watch: use dist-based URL. * Set Standards-Version to 3.7.3 (no changes). * debian/copyright: use author-agnostic download URL. * Remove debian/docs and don't install README any more (text version of the POD documentation). * Split out the patch for #329377 into sequential_slashes.patch; add quilt framework. -- gregor herrmann Sat, 08 Mar 2008 02:08:36 +0100 libfile-find-rule-perl (0.30-2) unstable; urgency=low * Applied Niko Tyni's patch fixing incorrect handling of sequential patches - Upstream still has to formally apply/reject it (Closes: #329377) -- Gunnar Wolf Thu, 2 Nov 2006 14:02:19 -0600 libfile-find-rule-perl (0.30-1) unstable; urgency=low * New upstream release. * Upgraded to Standards-Version 3.7.2. No changes needed. * Updated debian/copyright; the module is nowadays licensed as Perl itself. -- Niko Tyni Thu, 1 Jun 2006 22:10:39 +0300 libfile-find-rule-perl (0.28-3) unstable; urgency=low * New Maintainer (Closes: #357351) * Bumped up to Standards version 3.7.0 -- Jonas Genannt Sun, 30 Apr 2006 21:38:34 +0200 libfile-find-rule-perl (0.28-2) unstable; urgency=low * QA upload. * Package is orphaned (#357351); set maintainer to Debian QA Group. * Switch to debhelper 5. * debian/watch: Add. * Conforms to Standards version 3.6.2. -- Matej Vela Fri, 7 Apr 2006 17:45:04 +0200 libfile-find-rule-perl (0.28-1) unstable; urgency=low * Initial Release. -- S. Zachariah Sprackett Thu, 15 Jul 2004 20:41:18 -0400 debian/libfile-find-rule-perl.lintian-overrides0000644000000000000000000000025211636130704016777 0ustar # this is an option offered as an alternative to writable libfile-find-rule-perl: spelling-error-in-manpage usr/share/man/man3/File::Find::Rule.3pm.gz writeable writable debian/source/0000755000000000000000000000000011636130704010467 5ustar debian/source/format0000644000000000000000000000001411636130704011675 0ustar 3.0 (quilt) debian/rules0000755000000000000000000000003611636130704010246 0ustar #!/usr/bin/make -f %: dh $@