summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorManuel Rüger <mrueg@gentoo.org>2014-11-18 13:37:32 +0000
committerManuel Rüger <mrueg@gentoo.org>2014-11-18 13:37:32 +0000
commitf0007898f8f7648419f440e8415e2f9d10f4c11e (patch)
tree990a31df75279c1ba5a5a7246d0115070df35dcf /dev-ruby/simple-rss/files
parentDrop old. (diff)
downloadhistorical-f0007898f8f7648419f440e8415e2f9d10f4c11e.tar.gz
historical-f0007898f8f7648419f440e8415e2f9d10f4c11e.tar.bz2
historical-f0007898f8f7648419f440e8415e2f9d10f4c11e.zip
Cleanup unused patches.
Package-Manager: portage-2.2.14/cvs/Linux x86_64
Diffstat (limited to 'dev-ruby/simple-rss/files')
-rw-r--r--dev-ruby/simple-rss/files/simple-rss-1.2.3-utf8.patch34
1 files changed, 0 insertions, 34 deletions
diff --git a/dev-ruby/simple-rss/files/simple-rss-1.2.3-utf8.patch b/dev-ruby/simple-rss/files/simple-rss-1.2.3-utf8.patch
deleted file mode 100644
index 4be17b7276bb..000000000000
--- a/dev-ruby/simple-rss/files/simple-rss-1.2.3-utf8.patch
+++ /dev/null
@@ -1,34 +0,0 @@
-commit ef0d5db568faa75073a43f45d5f544d4414a8ea3
-Author: Lucas Carlson <lucas@rufy.com>
-Date: Tue Aug 24 14:42:26 2010 -0700
-
- Adding support for regex of UTF8 characters
-
-Note that we also applied the change in
-http://hightechsorcery.com/2011/04/fixing-a-bug-in-simple-rss/
-
-This effectively does not force an encoding for the regexp.
-
-diff --git a/lib/simple-rss.rb b/lib/simple-rss.rb
-index 38a5623..fc375ab 100644
---- a/lib/simple-rss.rb
-+++ b/lib/simple-rss.rb
-@@ -152,13 +152,13 @@ class SimpleRSS
- end
-
- def unescape(content)
-- if content =~ /([^-_.!~*'()a-zA-Z\d;\/?:@&=+$,\[\]]%)/n then
-- CGI.unescape(content).gsub(/(<!\[CDATA\[|\]\]>)/,'').strip
-+ if content =~ /([^-_.!~*'()a-zA-Z\d;\/?:@&=+$,\[\]]%)/ then
-+ CGI.unescape(content).gsub(/(<!\[CDATA\[|\]\]>)/,'').strip
- else
-- content.gsub(/(<!\[CDATA\[|\]\]>)/,'').strip
-+ content.gsub(/(<!\[CDATA\[|\]\]>)/,'').strip
- end
- end
- end
-
- class SimpleRSSError < StandardError
--end
-\ No newline at end of file
-+end