[libmodule-info-perl] 03/04: Drop all patches, applied upstream

Florian Schlichting fsfs at alioth.debian.org
Fri Sep 20 23:05:12 UTC 2013


This is an automated email from the git hooks/post-receive script.

fsfs pushed a commit to branch master
in repository libmodule-info-perl.

commit 5ece4172dee96dede9dc665da87e79c01acd48d1
Author: Florian Schlichting <fsfs at debian.org>
Date:   Sat Sep 21 01:00:06 2013 +0200

    Drop all patches, applied upstream
    
    version-comparison.patch was rejected by upstream: "the code has been
    there since 2005, looks not-incorrect, and I can remember some nasty
    errors with version comparisons as numbers, so I'm reluctant to change
    it, unless there is a specific failure the patch addresses."
    
    There doesn't seem to be a specific failure the patch addresses, and the
    author didn't comment on the rejection, so let's stay with upstream and
    drop this (apparently unnecessary) patch as well.
---
 debian/patches/is-deeply.patch          |   16 -----------
 debian/patches/series                   |    4 ---
 debian/patches/spelling.patch           |   45 -------------------------------
 debian/patches/version-comparison.patch |   30 ---------------------
 debian/patches/whatis-entry.patch       |   24 -----------------
 5 files changed, 119 deletions(-)

diff --git a/debian/patches/is-deeply.patch b/debian/patches/is-deeply.patch
deleted file mode 100644
index 039b05a..0000000
--- a/debian/patches/is-deeply.patch
+++ /dev/null
@@ -1,16 +0,0 @@
-From: Ansgar Burchardt <ansgar at 43-1.org>
-Date: Sun, 06 Jun 2010 21:40:08 +0900
-Origin: vendor
-Subject: Use is_deeply correctly
-Forwarded: https://rt.cpan.org/Public/Bug/Display.html?id=87789
---- a/t/Module-Info.t
-+++ b/t/Module-Info.t
-@@ -300,6 +300,6 @@
-     $module = Module::Info->new_from_file('t/lib/Bar.pm');
-     @mods   = $module->modules_used;
-     is( @mods, 3, 'modules_used with complex BEGIN block' );
--    is_deeply( sort @mods,
--               (sort qw(Cwd Carp strict)) );
-+    is_deeply( [sort @mods],
-+               [sort qw(Cwd Carp strict)] );
- }
diff --git a/debian/patches/series b/debian/patches/series
deleted file mode 100644
index 99d7408..0000000
--- a/debian/patches/series
+++ /dev/null
@@ -1,4 +0,0 @@
-version-comparison.patch
-is-deeply.patch
-spelling.patch
-whatis-entry.patch
diff --git a/debian/patches/spelling.patch b/debian/patches/spelling.patch
deleted file mode 100644
index eb457c9..0000000
--- a/debian/patches/spelling.patch
+++ /dev/null
@@ -1,45 +0,0 @@
-From: Ansgar Burchardt <ansgar at 43-1.org>
-Date: Sun, 06 Jun 2010 21:44:25 +0900
-Origin: vendor
-Subject: Fix spelling errors
-Forwarded: https://rt.cpan.org/Public/Bug/Display.html?id=87789
---- a/bin/module_info
-+++ b/bin/module_info
-@@ -2,7 +2,7 @@
- 
- =head1 NAME
- 
--module_info - find informations about modules
-+module_info - find information about modules
- 
- =head1 SYNOPSIS
- 
-@@ -14,7 +14,7 @@
- C<Module::Name> or paths in the form C<Foo/Bar.pm> or C<foo/bar.pl>).
- 
- By default only shows module name, version, directory, absolute path
--and a flag indicating if it is a core module. Additional informations
-+and a flag indicating if it is a core module. Additional information
- can be requested through command line switches.
- 
- =over 4
---- a/lib/Module/Info.pm
-+++ b/lib/Module/Info.pm
-@@ -320,7 +320,7 @@
- 
- The following methods get their information by compiling the module
- and examining the opcode tree.  The module will be compiled in a
--seperate process so as not to disturb the current program.
-+separate process so as not to disturb the current program.
- 
- They will only work on 5.6.1 and up and requires the B::Utils module.
- 
-@@ -734,7 +734,7 @@
- Code refs in @INC are currently ignored.  If this bothers you submit a
- patch.
- 
--superclasses() is cheating and just loading the module in a seperate
-+superclasses() is cheating and just loading the module in a separate
- process and looking at @ISA.  I don't think its worth the trouble to
- go through and parse the opcode tree as it still requires loading the
- module and running all the BEGIN blocks.  Patches welcome.
diff --git a/debian/patches/version-comparison.patch b/debian/patches/version-comparison.patch
deleted file mode 100644
index eb50141..0000000
--- a/debian/patches/version-comparison.patch
+++ /dev/null
@@ -1,30 +0,0 @@
-From: Ansgar Burchardt <ansgar at 43-1.org>
-Date: Sun, 06 Jun 2010 21:35:17 +0900
-Origin: vendor
-Subject: Compare versions as numbers, not as strings
-Forwarded: https://rt.cpan.org/Public/Bug/Display.html?id=87789
---- libmodule-info-perl.orig/t/n3_version.t
-+++ libmodule-info-perl/t/n3_version.t
-@@ -20,18 +20,18 @@
- }
- 
- is( $moo->use_version, 0 );
--is( $moo->version, '0.12' );
--is( $boo->version, '1.35', 'proper quoting in complex expression' );
-+is( $moo->version, 0.12 );
-+is( $boo->version, 1.35, 'proper quoting in complex expression' );
- 
- SKIP: {
-     skip 'version.pm not found', 5 unless $has_version_pm;
- 
-     is( $moo_ver->use_version, 1 );
-     isa_ok( $moo_ver->version, 'version' );
--    is( $moo_ver->version, '0.120' );
-+    is( $moo_ver->version, 0.120 );
- 
-     isa_ok( $foo_ver->version, 'version' );
--    is( $foo_ver->version, '7.254' );
-+    is( $foo_ver->version, 7.254 );
- }
- 
- SKIP: {
diff --git a/debian/patches/whatis-entry.patch b/debian/patches/whatis-entry.patch
deleted file mode 100644
index 5364811..0000000
--- a/debian/patches/whatis-entry.patch
+++ /dev/null
@@ -1,24 +0,0 @@
-From: Ansgar Burchardt <ansgar at 43-1.org>
-Date: Sun, 06 Jun 2010 21:47:36 +0900
-Origin: vendor
-Subject: Add missing whatis entry
-
-It might be better to remove the POD from this module, but maybe somebody will
-someday want to read it...
-
-Forwarded: https://rt.cpan.org/Public/Bug/Display.html?id=87789
---- libmodule-info-perl.orig/lib/B/Module/Info.pm
-+++ libmodule-info-perl/lib/B/Module/Info.pm
-@@ -7,6 +7,12 @@
-                  opgrep all_roots);
- @B::Utils::bad_stashes = qw();  # give us everything.
- 
-+=head1 NAME
-+
-+B::Module::Info - information about Perl modules
-+
-+=cut
-+
- {
-     # From: Roland Walker <walker at ncbi.nlm.nih.gov>
-     # "Syntax OK" may land inside output and render it unusable

-- 
Alioth's /usr/local/bin/git-commit-notice on /srv/git.debian.org/git/pkg-perl/packages/libmodule-info-perl.git



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