Update to 1.7.12.

Properly patch config.rb to set the default XML parser to ruby-xmlparser.
This commit is contained in:
Akinori MUSHA 2002-10-23 21:16:06 +00:00
parent d37eecde02
commit 1101316e4b
Notes: svn2git 2021-03-31 03:12:20 +00:00
svn path=/head/; revision=68685
3 changed files with 14 additions and 3 deletions

View File

@ -6,7 +6,7 @@
#
PORTNAME= xmlrpc
PORTVERSION= 1.7.11
PORTVERSION= 1.7.12
CATEGORIES= net ruby
MASTER_SITES= http://www.fantasy-coders.de/ruby/xmlrpc4r/
PKGNAMEPREFIX= ${RUBY_PKGNAMEPREFIX}
@ -21,7 +21,7 @@ RUN_DEPENDS= ${RUBY_SITEARCHLIBDIR}/xmlparser.so:${PORTSDIR}/textproc/ruby-xmlpa
# Alternative to ruby-xmlparser:
# NQXML
# ${RUBY_SITELIBDIR}/nqxml/info.rb:${PORTSDIR}/textproc/ruby-nqxml
# REXML (not fully supported yet)
# REXML
# ${RUBY_SITELIBDIR}/rexml/rexml.rb:${PORTSDIR}/textproc/ruby-rexml
USE_RUBY= yes

View File

@ -1 +1 @@
MD5 (ruby/xmlrpc4r-1_7_11.tar.gz) = 8beda061ca31fcfe946435165c7fdecf
MD5 (ruby/xmlrpc4r-1_7_12.tar.gz) = d75d5f4d878afe1b18643312820ccb13

View File

@ -0,0 +1,11 @@
--- lib/config.rb.orig Tue Jun 18 03:56:29 2002
+++ lib/config.rb Thu Oct 24 06:14:18 2002
@@ -15,7 +15,7 @@
# * XMLParser::XMLTreeParser
# * XMLParser::XMLStreamParser (fastest)
# * XMLParser::REXMLStreamParser
- DEFAULT_PARSER = XMLParser::NQXMLStreamParser
+ DEFAULT_PARSER = XMLParser::XMLStreamParser
# enable <nil/> tag
ENABLE_NIL_CREATE = false