[SCM] Packaging of Dancer-Session-Memcached CPAN distribution branch, master, updated. debian/0.1-1-13-ge49e7e4

gregor herrmann gregoa at debian.org
Tue Oct 4 16:39:23 UTC 2011


The following commit has been merged in the master branch:
commit 8aee34cacbb544d44fc4f4d8f94aa5b7e5e7a724
Author: gregor herrmann <gregoa at debian.org>
Date:   Tue Oct 4 18:32:11 2011 +0200

    Remove patch, applied upstream.

diff --git a/debian/patches/init-call-super.patch b/debian/patches/init-call-super.patch
deleted file mode 100644
index 1e00c9a..0000000
--- a/debian/patches/init-call-super.patch
+++ /dev/null
@@ -1,29 +0,0 @@
-Description: make init() call SUPER::init() for proper initialization of id
- Without id, the session can't be stored by memcached. Besides, using undef id
- makes Cache::Memcached give a warning, which can result in Dancer crash if
- warnings are trapped.
-Origin: vendor
-Forwarded: https://rt.cpan.org/Ticket/Display.html?id=69075
-Author: Damyan Ivanov <dmn at debian.org>
-Last-Update: 2011-06-24
-
---- a/lib/Dancer/Session/Memcached.pm
-+++ b/lib/Dancer/Session/Memcached.pm
-@@ -17,7 +17,7 @@ $VERSION = '0.1';
- my $MEMCACHED;
- 
- sub init {
--    my ($class) = @_;
-+    my $self = shift;
- 
-     my $servers = setting("memcached_servers");
-     die "The setting memcached_servers must be defined"
-@@ -32,6 +32,8 @@ sub init {
-     }
- 
-     $MEMCACHED = Cache::Memcached->new(servers => $servers);
-+
-+    $self->SUPER::init(@_);
- }
- 
- # create a new session and return the newborn object
diff --git a/debian/patches/series b/debian/patches/series
deleted file mode 100644
index ee54ffa..0000000
--- a/debian/patches/series
+++ /dev/null
@@ -1 +0,0 @@
-init-call-super.patch

-- 
Packaging of Dancer-Session-Memcached CPAN distribution



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