rpms/python-feedparser/devel democracynow_feedparser_fix.patch, NONE, 1.1 python-feedparser.spec, 1.11, 1.12

Konstantin Ryabitsev icon at fedoraproject.org
Fri Aug 7 12:54:00 UTC 2009


Author: icon

Update of /cvs/extras/rpms/python-feedparser/devel
In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv17106/devel

Modified Files:
	python-feedparser.spec 
Added Files:
	democracynow_feedparser_fix.patch 
Log Message:
Apply patch for title-munging issue (#491373)


democracynow_feedparser_fix.patch:
 feedparser.py |    2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

--- NEW FILE democracynow_feedparser_fix.patch ---
--- feedparser.py.orig	2007-12-28 00:59:15.000000000 +0100
+++ feedparser.py	2007-12-28 00:59:46.000000000 +0100
@@ -563,7 +563,7 @@
 
     def mapContentType(self, contentType):
         contentType = contentType.lower()
-        if contentType == 'text':
+        if contentType == 'text' or contentType == 'plain':
             contentType = 'text/plain'
         elif contentType == 'html':
             contentType = 'text/html'


Index: python-feedparser.spec
===================================================================
RCS file: /cvs/extras/rpms/python-feedparser/devel/python-feedparser.spec,v
retrieving revision 1.11
retrieving revision 1.12
diff -u -p -r1.11 -r1.12
--- python-feedparser.spec	26 Jul 2009 20:23:00 -0000	1.11
+++ python-feedparser.spec	7 Aug 2009 12:53:59 -0000	1.12
@@ -2,7 +2,7 @@
 
 Name:           python-feedparser
 Version:        4.1
-Release:        9%{?dist}
+Release:        10%{?dist}
 Summary:        Parse RSS and Atom feeds in Python
 
 Group:          Development/Languages
@@ -10,6 +10,7 @@ License:        BSD
 URL:            http://feedparser.org/
 Source0:        http://feedparser.googlecode.com/files/feedparser-%{version}.zip
 Patch0:         feedparser_utf8_decoding.patch
+Patch1:         democracynow_feedparser_fix.patch
 BuildRoot:      %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n)
 
 BuildArch:      noarch
@@ -26,6 +27,7 @@ modules, including Dublin Core and Apple
 %prep
 %setup -q -c
 %patch0 -p0 -b .utf8_decoding
+%patch1 -p0 -b .title_munging
 find -type f -exec sed -i 's/\r//' {} ';'
 find -type f -exec chmod 0644 {} ';'
 
@@ -52,6 +54,9 @@ rm -rf $RPM_BUILD_ROOT
 
 
 %changelog
+* Fri Aug 07 2009 Konstantin Ryabitsev <icon at fedoraproject.org> - 4.1-10
+- Apply patch for title munging issue (#491373)
+
 * Sun Jul 26 2009 Fedora Release Engineering <rel-eng at lists.fedoraproject.org> - 4.1-9
 - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild
 




More information about the fedora-extras-commits mailing list