[libtest-lectrotest-perl] 08/11: drop universal.patch, applied upstream

Florian Schlichting fsfs at alioth.debian.org
Sat Aug 10 19:30:18 UTC 2013


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

fsfs pushed a commit to branch master
in repository libtest-lectrotest-perl.

commit f5569e0f6ff2c0739a4ce2232fc1cf5461543609
Author: Florian Schlichting <fsfs at debian.org>
Date:   Sat Aug 10 21:05:11 2013 +0200

    drop universal.patch, applied upstream
---
 debian/patches/series          |    1 -
 debian/patches/universal.patch |   29 -----------------------------
 2 files changed, 30 deletions(-)

diff --git a/debian/patches/series b/debian/patches/series
index f50dd3b..5299247 100644
--- a/debian/patches/series
+++ b/debian/patches/series
@@ -1,2 +1 @@
 spelling.patch
-universal.patch
diff --git a/debian/patches/universal.patch b/debian/patches/universal.patch
deleted file mode 100644
index 4129a91..0000000
--- a/debian/patches/universal.patch
+++ /dev/null
@@ -1,29 +0,0 @@
-Author: Nicholas Bamber <nicholas at periapt.co.uk>
-Subject: UNIVERSAL->import deprecated in perl 5.12
-Last-Update: 2011-05-11
-Bug: http://rt.cpan.org/Ticket/Display.html?id=66114
-Bug-Debian: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=614872
---- a/lib/Test/LectroTest/TestRunner.pm
-+++ b/lib/Test/LectroTest/TestRunner.pm
-@@ -2,9 +2,7 @@
- 
- use strict;
- use warnings;
--
--use UNIVERSAL qw( isa );
--
-+use Scalar::Util qw(blessed);
- use Carp;
- use Data::Dumper;
- 
-@@ -399,7 +397,9 @@
- 
- =cut
- 
--sub _prop($) { isa $_[0], "Test::LectroTest::Property" }
-+sub _prop($) {
-+    return blessed $_[0] && $_[0]->isa("Test::LectroTest::Property");
-+}
- 
- sub run_suite {
-     local $| = 1;

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



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