summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorManuel Rüger <mrueg@gentoo.org>2014-11-18 13:36:14 +0000
committerManuel Rüger <mrueg@gentoo.org>2014-11-18 13:36:14 +0000
commit4798c9ad9cfcb91313e39fe5c8492a88f123a227 (patch)
treec853cce99e2f3b631827dcf32963fdcf8e394168 /dev-ruby/simple-rss
parentCleanup unused patches. (diff)
downloadgentoo-2-4798c9ad9cfcb91313e39fe5c8492a88f123a227.tar.gz
gentoo-2-4798c9ad9cfcb91313e39fe5c8492a88f123a227.tar.bz2
gentoo-2-4798c9ad9cfcb91313e39fe5c8492a88f123a227.zip
Cleanup unused patches.
(Portage version: 2.2.14/cvs/Linux x86_64, signed Manifest commit with key )
Diffstat (limited to 'dev-ruby/simple-rss')
-rw-r--r--dev-ruby/simple-rss/ChangeLog6
-rw-r--r--dev-ruby/simple-rss/files/simple-rss-1.2.3-utf8.patch34
2 files changed, 5 insertions, 35 deletions
diff --git a/dev-ruby/simple-rss/ChangeLog b/dev-ruby/simple-rss/ChangeLog
index 5e2b3ac955af..2778e874283b 100644
--- a/dev-ruby/simple-rss/ChangeLog
+++ b/dev-ruby/simple-rss/ChangeLog
@@ -1,6 +1,10 @@
# ChangeLog for dev-ruby/simple-rss
# Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-ruby/simple-rss/ChangeLog,v 1.18 2014/10/30 14:00:27 mrueg Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-ruby/simple-rss/ChangeLog,v 1.19 2014/11/18 13:36:13 mrueg Exp $
+
+ 18 Nov 2014; Manuel Rüger <mrueg@gentoo.org>
+ -files/simple-rss-1.2.3-utf8.patch:
+ Cleanup unused patches.
30 Oct 2014; Manuel Rüger <mrueg@gentoo.org> -simple-rss-1.2.3-r2.ebuild,
simple-rss-1.2.3-r1.ebuild, simple-rss-1.3.1.ebuild:
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