summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMichael Mair-Keimberger (asterix) <m.mairkeimberger@gmail.com>2017-01-22 09:54:09 +0100
committerMichael Palimaka <kensington@gentoo.org>2017-01-23 03:16:53 +1100
commitc416884809060c0f40b5710635a5a7a82284d5a3 (patch)
tree4704ecf0464a2c976e6c6fe9d9c2be4e7a870df5 /net-irc/rbot
parentmedia-gfx/photoqt: version bump 1.5.1 (diff)
downloadgentoo-c416884809060c0f40b5710635a5a7a82284d5a3.tar.gz
gentoo-c416884809060c0f40b5710635a5a7a82284d5a3.tar.bz2
gentoo-c416884809060c0f40b5710635a5a7a82284d5a3.zip
net-irc/rbot: remove unused patch
Diffstat (limited to 'net-irc/rbot')
-rw-r--r--net-irc/rbot/files/rbot-rakefile.patch30
1 files changed, 0 insertions, 30 deletions
diff --git a/net-irc/rbot/files/rbot-rakefile.patch b/net-irc/rbot/files/rbot-rakefile.patch
deleted file mode 100644
index 35747263870f..000000000000
--- a/net-irc/rbot/files/rbot-rakefile.patch
+++ /dev/null
@@ -1,30 +0,0 @@
---- Rakefile.old 2013-08-20 01:00:05.000000000 +0200
-+++ Rakefile 2013-10-21 19:42:06.800019343 +0200
-@@ -1,5 +1,6 @@
- require 'rake'
--require 'rake/gempackagetask'
-+require 'rubygems'
-+require 'rubygems/package_task'
-
- task :default => [:buildext]
-
-@@ -15,7 +16,7 @@
- # we must (and can) skip defining the gem packaging tasks.
- if File.exist? SPECFILE
- spec = eval(File.read(SPECFILE), nil, SPECFILE)
-- Rake::GemPackageTask.new(spec) do |pkg|
-+ Gem::PackageTask.new(spec) do |pkg|
- pkg.need_zip = true
- pkg.need_tar = true
- end
-@@ -125,8 +126,8 @@
- }) do |t|
- po_file, mo_file = t.source, t.name
- puts "#{po_file} => #{mo_file}"
-- require 'gettext/utils'
-- GetText.rmsgfmt po_file, mo_file
-+ require 'gettext/tools'
-+ GetText::Tools::MsgFmt.run po_file, mo_file
- end
-
- task :check_po_tools do