[SCM] Debian packaging of libxml-feed-perl branch, master, updated. debian/0.47+dfsg2-1-4-g1c0313a

Florian Schlichting fschlich at zedat.fu-berlin.de
Tue Mar 20 22:32:22 UTC 2012


The following commit has been merged in the master branch:
commit 1c0313ad329313965c52f3c3e503dc9a378e1df3
Author: Florian Schlichting <fschlich at zedat.fu-berlin.de>
Date:   Tue Mar 20 23:23:58 2012 +0100

    drop 01_atom_date.patch, applied upstream

diff --git a/debian/changelog b/debian/changelog
index 9067d47..9f0b329 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -1,8 +1,9 @@
-libxml-feed-perl (0.48+dfsg-1) UNRELEASED; urgency=low
+libxml-feed-perl (0.48+dfsg-1) unstable; urgency=low
 
   * Imported Upstream version 0.48+dfsg.
+  * Dropped 01_atom_date.patch, applied upstream.
 
- -- Florian Schlichting <fschlich at zedat.fu-berlin.de>  Tue, 20 Mar 2012 23:17:17 +0100
+ -- Florian Schlichting <fschlich at zedat.fu-berlin.de>  Tue, 20 Mar 2012 23:31:22 +0100
 
 libxml-feed-perl (0.47+dfsg2-1) unstable; urgency=low
 
diff --git a/debian/patches/01_atom_date.patch b/debian/patches/01_atom_date.patch
deleted file mode 100644
index e4a1694..0000000
--- a/debian/patches/01_atom_date.patch
+++ /dev/null
@@ -1,21 +0,0 @@
-Author: Gregor Herrmann <gregoa at debian.org>
-Subject: fix problems with dates in XML::Feed:Atom;
- Note according to changelog for 0.21 this was only partly adopted upstream
-Bug-Debian: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=380498
-Bug: http://rt.cpan.org/Ticket/Display.html?id=20763
-Last-Update: 2012-03-11
-Reviewed-by: Florian Schlichting <fschlich at ZEDAT.FU-Berlin.DE>
-
---- a/lib/XML/Feed/Entry/Format/Atom.pm
-+++ b/lib/XML/Feed/Entry/Format/Atom.pm
-@@ -145,7 +145,9 @@
-     if (@_) {
-         $entry->{entry}->issued(DateTime::Format::W3CDTF->format_datetime($_[0])) if $_[0];
-     } else {
--        $entry->{entry}->issued ? iso2dt($entry->{entry}->issued) : undef;
-+        return iso2dt($entry->{entry}->issued) if $entry->{entry}->issued;
-+        return iso2dt($entry->{entry}->published) if $entry->{entry}->published;
-+        return undef;
-     }
- }
- 
diff --git a/debian/patches/series b/debian/patches/series
index 64b63a5..8524b63 100644
--- a/debian/patches/series
+++ b/debian/patches/series
@@ -1,3 +1,2 @@
-01_atom_date.patch
 fix-category-test
 fix-bug73160-test.patch

-- 
Debian packaging of libxml-feed-perl



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