summaryrefslogtreecommitdiff
path: root/dev-ruby
diff options
context:
space:
mode:
authorMichael Mair-Keimberger (asterix) <m.mairkeimberger@gmail.com>2016-09-26 18:19:59 +0200
committerPatrice Clement <monsieurp@gentoo.org>2016-10-31 13:00:11 +0100
commitf329429be76f6262fe681e117cdb657503d964f2 (patch)
tree4b354664fed7f0fb6bfd8a84e3a53c7081a0891f /dev-ruby
parent153c066d7870f11eaf15b0b96dc4b81ae5e53f92 (diff)
downloadgentoo-f329429be76f6262fe681e117cdb657503d964f2.tar.gz
gentoo-f329429be76f6262fe681e117cdb657503d964f2.tar.xz
dev-ruby/mechanize: remove unused patch.
Closes: https://github.com/gentoo/gentoo/pull/2417 Signed-off-by: Patrice Clement <monsieurp@gentoo.org>
Diffstat (limited to 'dev-ruby')
-rw-r--r--dev-ruby/mechanize/files/mechanize-2.6.0-libxml290.patch34
1 files changed, 0 insertions, 34 deletions
diff --git a/dev-ruby/mechanize/files/mechanize-2.6.0-libxml290.patch b/dev-ruby/mechanize/files/mechanize-2.6.0-libxml290.patch
deleted file mode 100644
index 0b5409f582b..00000000000
--- a/dev-ruby/mechanize/files/mechanize-2.6.0-libxml290.patch
+++ /dev/null
@@ -1,34 +0,0 @@
-commit 43f3b631484a2c0178e6699584471dedd598eca3
-Author: Lee Jarvis <ljjarvis@gmail.com>
-Date: Mon May 6 19:39:25 2013 +0100
-
- Ensure we prefix xpath with // for searching entire document
-
- Tests prior to this commit passed because libxml2 was not so
- strict. Since upgrading to 2.9.0 this issue has been revealed.
- The former test should have been written with this in mind.
-
- Steps to reproduce (on OSX with Homebrew installed):
-
- gem uninstall nokogiri
- brew install libxml2
- LDFLAGS="-L/usr/local/opt/libxml2/lib" \
- CPPFLAGS="-I/usr/local/opt/libxml2/include" \
- gem install nokogiri
-
- closes #308
-
-diff --git a/test/test_mechanize_xml_file.rb b/test/test_mechanize_xml_file.rb
-index 58eb67c..bbe486c 100644
---- a/test/test_mechanize_xml_file.rb
-+++ b/test/test_mechanize_xml_file.rb
-@@ -23,7 +23,7 @@ class TestMechanizeXmlFile < Mechanize::TestCase
- end
-
- def test_at
-- assert_equal 'Perl', @xml.at('language[2]').text
-+ assert_equal 'Perl', @xml.at('//language[2]').text
- end
-
- end
-\ No newline at end of file