summaryrefslogtreecommitdiff
path: root/dev-ruby/ruby-dict/files/ruby-dict-ruby19.patch
diff options
context:
space:
mode:
authorV3n3RiX <venerix@redcorelinux.org>2018-07-14 20:57:42 +0100
committerV3n3RiX <venerix@redcorelinux.org>2018-07-14 20:57:42 +0100
commit1798c4aeca70ac8d0a243684d6a798fbc65735f8 (patch)
treee48e19cb6fa03de18e1c63e1a93371b7ebc4eb56 /dev-ruby/ruby-dict/files/ruby-dict-ruby19.patch
parentd87262dd706fec50cd150aab3e93883b6337466d (diff)
gentoo resync : 14.07.2018
Diffstat (limited to 'dev-ruby/ruby-dict/files/ruby-dict-ruby19.patch')
-rw-r--r--dev-ruby/ruby-dict/files/ruby-dict-ruby19.patch20
1 files changed, 0 insertions, 20 deletions
diff --git a/dev-ruby/ruby-dict/files/ruby-dict-ruby19.patch b/dev-ruby/ruby-dict/files/ruby-dict-ruby19.patch
deleted file mode 100644
index 5ed897773fac..000000000000
--- a/dev-ruby/ruby-dict/files/ruby-dict-ruby19.patch
+++ /dev/null
@@ -1,20 +0,0 @@
---- lib/dict.rb.orig 2013-10-27 19:15:03.957167192 +0100
-+++ lib/dict.rb 2013-10-27 19:16:15.191165936 +0100
-@@ -153,7 +153,7 @@
-
-
- require 'socket'
--require 'md5'
-+require 'digest/md5'
-
-
- # lines that start with .. need to be reduced to .
-@@ -434,7 +434,7 @@
- # AUTHorise user
- #
- def auth(user, secret)
-- auth = MD5::new(@msgid + secret).hexdigest
-+ auth = Digest::MD5.new.hexdigest(@msgid + secret)
- exec_cmd('AUTH %s %s' % [ user, auth ])
- end
-