summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMichael Mair-Keimberger <m.mairkeimberger@gmail.com>2020-08-31 19:45:09 +0200
committerHans de Graaff <graaff@gentoo.org>2020-09-08 14:02:55 +0200
commit10d8daa7a34e62047a82d73f53a4134188e6da76 (patch)
treefcaffb4ed433575c043b3a686f081036e69013c6 /dev-ruby/charlock_holmes
parentoasis.eclass: Fix @SUPPORTED_EAPIS. (diff)
downloadgentoo-10d8daa7a34e62047a82d73f53a4134188e6da76.tar.gz
gentoo-10d8daa7a34e62047a82d73f53a4134188e6da76.tar.bz2
gentoo-10d8daa7a34e62047a82d73f53a4134188e6da76.zip
dev-ruby/charlock_holmes: remove unused patch(es)
Package-Manager: Portage-3.0.4, Repoman-3.0.1 Signed-off-by: Michael Mair-Keimberger <m.mairkeimberger@gmail.com> Signed-off-by: Hans de Graaff <graaff@gentoo.org>
Diffstat (limited to 'dev-ruby/charlock_holmes')
-rw-r--r--dev-ruby/charlock_holmes/files/charlock_holmes-0.7.6-gcc5.patch16
1 files changed, 0 insertions, 16 deletions
diff --git a/dev-ruby/charlock_holmes/files/charlock_holmes-0.7.6-gcc5.patch b/dev-ruby/charlock_holmes/files/charlock_holmes-0.7.6-gcc5.patch
deleted file mode 100644
index 944efac19253..000000000000
--- a/dev-ruby/charlock_holmes/files/charlock_holmes-0.7.6-gcc5.patch
+++ /dev/null
@@ -1,16 +0,0 @@
---- a/ext/charlock_holmes/extconf.rb
-+++ b/ext/charlock_holmes/extconf.rb
-@@ -54,11 +54,8 @@
- have_library 'icuuc' or abort 'libicuuc missing'
- have_library 'icudata' or abort 'libicudata missing'
-
--# icu4c might be built in C++11 mode, but it also might not have been
--icuconfig = `which icu-config`.chomp if icuconfig.empty?
--if File.exist?(icuconfig) && `#{icuconfig} --cxxflags`.include?("c++11")
-- $CXXFLAGS << ' -std=c++11'
--end
-+# Always use C++11
-+$CXXFLAGS << ' -std=c++11'
-
- $CFLAGS << ' -Wall -funroll-loops'
- $CFLAGS << ' -Wextra -O0 -ggdb3' if ENV['DEBUG']