dev-ruby/moneta: remove unused patch.
authorMichael Mair-Keimberger (asterix) <m.mairkeimberger@gmail.com>
Mon, 26 Sep 2016 16:20:24 +0000 (18:20 +0200)
committerPatrice Clement <monsieurp@gentoo.org>
Mon, 31 Oct 2016 12:00:11 +0000 (13:00 +0100)
Closes: https://github.com/gentoo/gentoo/pull/2417

Signed-off-by: Patrice Clement <monsieurp@gentoo.org>
dev-ruby/moneta/files/moneta-0.6.0-optional-memcache.patch [deleted file]

diff --git a/dev-ruby/moneta/files/moneta-0.6.0-optional-memcache.patch b/dev-ruby/moneta/files/moneta-0.6.0-optional-memcache.patch
deleted file mode 100644 (file)
index 382d073..0000000
+++ /dev/null
@@ -1,30 +0,0 @@
-commit f24e8010e01449648f1d1e28cb325bde21bfdaed
-Author: Hans de Graaff <hans@degraaff.org>
-Date:   Thu Jul 8 20:37:26 2010 +0200
-
-    Fix case where both memcached and memcache are not present.
-    
-    The second require attempt will also generate a LoadError if memcache is not
-    present, so this requires an extra block to rescue that error.
-
-diff --git a/lib/moneta/memcache.rb b/lib/moneta/memcache.rb
-index 5cf8c02..4e2f9d6 100644
---- a/lib/moneta/memcache.rb
-+++ b/lib/moneta/memcache.rb
-@@ -2,10 +2,12 @@ begin
-   require "memcached"
-   MemCache = Memcached
- rescue LoadError
--  require "memcache"
--rescue
--  puts "You need either the `memcached` or `memcache-client` gem to use the Memcache moneta store"
--  exit
-+  begin
-+    require "memcache"
-+  rescue LoadError
-+    puts "You need either the `memcached` or `memcache-client` gem to use the Memcache moneta store"
-+    exit
-+  end
- end
- module Moneta