r57167 - in /trunk/libfile-corresponding-perl/debian: control copyright patches/ patches/iso-to-uft patches/remove-lib-tricks patches/series

ddumont-guest at users.alioth.debian.org ddumont-guest at users.alioth.debian.org
Fri Apr 30 14:38:14 UTC 2010


Author: ddumont-guest
Date: Fri Apr 30 14:37:41 2010
New Revision: 57167

URL: http://svn.debian.org/wsvn/pkg-perl/?sc=1&rev=57167
Log:
Created patches to convert iso8859 to utf-8 and to remove use lib cruft. updated control and copyright

Added:
    trunk/libfile-corresponding-perl/debian/patches/
    trunk/libfile-corresponding-perl/debian/patches/iso-to-uft
    trunk/libfile-corresponding-perl/debian/patches/remove-lib-tricks
    trunk/libfile-corresponding-perl/debian/patches/series
Modified:
    trunk/libfile-corresponding-perl/debian/control
    trunk/libfile-corresponding-perl/debian/copyright

Modified: trunk/libfile-corresponding-perl/debian/control
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libfile-corresponding-perl/debian/control?rev=57167&op=diff
==============================================================================
--- trunk/libfile-corresponding-perl/debian/control (original)
+++ trunk/libfile-corresponding-perl/debian/control Fri Apr 30 14:37:41 2010
@@ -16,20 +16,13 @@
 Depends: ${misc:Depends}, ${perl:Depends}, libfile-chdir-perl,
  libfile-homedir-perl, liblist-moreutils-perl, libmoose-autobox-perl (>= 0.08),
  libmoose-perl (>= 0.57), libmoosex-types-path-class-perl,
- libpath-class-perl (>= 0.11), libtest-differences-perl, libtest-exception-perl,
+ libpath-class-perl (>= 0.11), 
  libyaml-tiny-perl, perl
 Description: Find corresponding files in the directory tree
- File::Corresponding uses a configuration of groups of File Profiles to
- identify corresponding files.
- .
- Using a .corresponding_file config file, and the command line script
- corresponding_file, you can easily look up corresponding files.
- .
- It's obviously better if you let your editor do the tedious bits for you,
- like passing the file name to the script, letting you choose which of the
- corresponding files you meant, and opening the file in the editor.
- .
- That's left as an exercise for the reader (well you are a programmer, aren't
- you?).
- .
- This description was automagically extracted from the module by dh-make-perl.
+ File::Corresponding is a developer tool to identify files in a
+ directory that correspond together, in other words, that are related
+ to each other.  This "relation" is defined by a configuration file
+ (.corresponding_file) that will let the user specify regular
+ expressions to identify related files. Several groups of files that
+ are related can also be defined in this configuration file.
+ 

Modified: trunk/libfile-corresponding-perl/debian/copyright
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libfile-corresponding-perl/debian/copyright?rev=57167&op=diff
==============================================================================
--- trunk/libfile-corresponding-perl/debian/copyright (original)
+++ trunk/libfile-corresponding-perl/debian/copyright Fri Apr 30 14:37:41 2010
@@ -2,17 +2,8 @@
 Maintainer: Johan Lindstrom <johanl[at]DarSerMan.com>
 Source: http://search.cpan.org/dist/File-Corresponding/
 Name: File-Corresponding
-DISCLAIMER: This copyright info was automatically extracted 
- from the perl module. It may not be accurate, so you better 
- check the module sources in order to ensure the module for its 
- inclusion in Debian or for general legal information. Please, 
- if licensing information is incorrectly generated, file a bug 
- on dh-make-perl.
- NOTE: Don't forget to remove this disclaimer once you are happy
- with this file.
-
 Files: *
-Copyright: Johan Lindstrom <johanl[at]DarSerMan.com>
+Copyright: 2007,2008, Johan Lindstrom <johanl[at]DarSerMan.com>
 License: Artistic or GPL-1+
 
 Files: debian/*

Added: trunk/libfile-corresponding-perl/debian/patches/iso-to-uft
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libfile-corresponding-perl/debian/patches/iso-to-uft?rev=57167&op=file
==============================================================================
--- trunk/libfile-corresponding-perl/debian/patches/iso-to-uft (added)
+++ trunk/libfile-corresponding-perl/debian/patches/iso-to-uft Fri Apr 30 14:37:41 2010
@@ -1,0 +1,51 @@
+--- a/Build.PL
++++ b/Build.PL
+@@ -5,7 +5,7 @@
+ my $builder = Module::Build->new(
+     module_name         => 'File::Corresponding',
+     license             => 'perl',
+-    dist_author         => 'Johan Lindström <johanl[ÄT]DarSerMan.com>',
++    dist_author         => 'Johan Lindström <johanl[ÄT]DarSerMan.com>',
+     dist_version_from   => 'lib/File/Corresponding.pm',
+     requires => {
+         'Carp'                       => 0,
+--- a/lib/File/Corresponding.pm
++++ b/lib/File/Corresponding.pm
+@@ -143,7 +143,7 @@
+ 
+ =head1 AUTHOR
+ 
+-Johan Lindström, C<< <johanl[ÄT]DarSerMan.com> >>
++Johan Lindström, C<< <johanl[ÄT]DarSerMan.com> >>
+ 
+ 
+ 
+@@ -171,7 +171,7 @@
+ 
+ =head1 COPYRIGHT & LICENSE
+ 
+-Copyright 2007 Johan Lindström, All Rights Reserved.
++Copyright 2007 Johan Lindström, All Rights Reserved.
+ 
+ This program is free software; you can redistribute it and/or modify it
+ under the same terms as Perl itself.
+--- a/README
++++ b/README
+@@ -109,7 +109,7 @@
+ 
+ SEE ALSO
+ AUTHOR
+-    Johan Lindström, `<johanl[ÄT]DarSerMan.com>'
++    Johan Lindström, `<johanl[ÄT]DarSerMan.com>'
+ 
+ BUGS AND CAVEATS
+   BUG REPORTS
+@@ -127,7 +127,7 @@
+ 
+   KNOWN BUGS
+ COPYRIGHT & LICENSE
+-    Copyright 2007 Johan Lindström, All Rights Reserved.
++    Copyright 2007 Johan Lindström, All Rights Reserved.
+ 
+     This program is free software; you can redistribute it and/or modify it
+     under the same terms as Perl itself.

Added: trunk/libfile-corresponding-perl/debian/patches/remove-lib-tricks
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libfile-corresponding-perl/debian/patches/remove-lib-tricks?rev=57167&op=file
==============================================================================
--- trunk/libfile-corresponding-perl/debian/patches/remove-lib-tricks (added)
+++ trunk/libfile-corresponding-perl/debian/patches/remove-lib-tricks Fri Apr 30 14:37:41 2010
@@ -1,0 +1,17 @@
+--- a/bin/corresponding_file
++++ b/bin/corresponding_file
+@@ -1,5 +1,4 @@
+ #!/usr/bin/perl -w
+-use lib "c:/Dokument/Project/Dev/CPAN/File-Corresponding/trunk/source/lib";
+ $|++;
+ use strict;
+ 
+@@ -9,8 +8,6 @@
+ use Data::Dumper;
+ use Path::Class qw/ dir /;
+ 
+-
+-use lib "../lib", "lib";
+ use File::Corresponding;
+ use Moose::Autobox;
+ use List::MoreUtils qw/ uniq /;

Added: trunk/libfile-corresponding-perl/debian/patches/series
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libfile-corresponding-perl/debian/patches/series?rev=57167&op=file
==============================================================================
--- trunk/libfile-corresponding-perl/debian/patches/series (added)
+++ trunk/libfile-corresponding-perl/debian/patches/series Fri Apr 30 14:37:41 2010
@@ -1,0 +1,2 @@
+iso-to-uft
+remove-lib-tricks




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