Update ruby-nokogiri package to 1.4.4.

=== 1.4.4 / Unreleased

* New Features

  * XML::Node#children= sets the node's inner html (much like #inner_html=), but returns the reparent node(s).
  * XSLT supports function extensions. #336
  * XPath bind parameter substitution. #329
  * XML::Reader node type constants. #369
  * SAX Parser context provides line and column information

* Bugfixes

  * XML::DTD#attributes returns an empty hash instead of nil when there are no attributes.
  * XML::DTD#{keys,each} now work as expected. #324
  * {XML,HTML}::DocumentFragment.{new,parse} no longer strip leading and trailing whitespace. #319
  * XML::Node#{add_child,add_previous_sibling,add_next_sibling,replace} return a NodeSet when passed a string.
  * Unclosed tags parsed more robustly in fragments. #315
  * XML::Node#{replace,add_previous_sibling,add_next_sibling} edge cases fixed related to libxml's text node merging. #308
  * Fixed a segfault when GC occurs during xpath handler argument marshalling. #345
  * Added hack to Slop decorator to work with previously defined methods. #330
  * Fix a memory leak when duplicating child nodes. #353
  * Fixed off-by-one bug with nth-last-{child,of-type} CSS selectors when NOT using an+b notation. #354
  * Fixed passing of non-namespace attributes to SAX::Document#start_element. #356
  * Workaround for libxml2 in-context parsing bug. #362
  * Fixed NodeSet#wrap on nodes within a fragment. #331
This commit is contained in:
taca 2010-11-30 15:39:56 +00:00
parent 74989b6e62
commit 37286a4674
3 changed files with 13 additions and 8 deletions

View file

@ -1,15 +1,17 @@
# $NetBSD: Makefile,v 1.2 2010/09/10 08:29:06 taca Exp $
# $NetBSD: Makefile,v 1.3 2010/11/30 15:39:56 taca Exp $
DISTNAME= nokogiri-1.4.3.1
DISTNAME= nokogiri-1.4.4
CATEGORIES= textproc
MAINTAINER= filip@joyent.com
HOMEPAGE= http://nokogiri.org
HOMEPAGE= http://nokogiri.org/
COMMENT= HTML, XML, SAX, and Reader parser with XPath and CSS selector support
LICENSE= mit
CONFLICTS+= ruby[1-9][0-9]-nokogiri-*
PKG_DESTDIR_SUPPORT= user-destdir
.include "../../textproc/libxml2/buildlink3.mk"
.include "../../textproc/libxslt/buildlink3.mk"
.include "../../lang/ruby/gem.mk"

View file

@ -1,4 +1,4 @@
@comment $NetBSD: PLIST,v 1.2 2010/09/10 08:29:06 taca Exp $
@comment $NetBSD: PLIST,v 1.3 2010/11/30 15:39:56 taca Exp $
bin/nokogiri
${GEM_HOME}/cache/${GEM_NAME}.gem
${GEM_LIBDIR}/.autotest
@ -116,6 +116,7 @@ ${GEM_LIBDIR}/lib/nokogiri/ffi/structs/xml_node_set.rb
${GEM_LIBDIR}/lib/nokogiri/ffi/structs/xml_notation.rb
${GEM_LIBDIR}/lib/nokogiri/ffi/structs/xml_ns.rb
${GEM_LIBDIR}/lib/nokogiri/ffi/structs/xml_parser_context.rb
${GEM_LIBDIR}/lib/nokogiri/ffi/structs/xml_parser_input.rb
${GEM_LIBDIR}/lib/nokogiri/ffi/structs/xml_relax_ng.rb
${GEM_LIBDIR}/lib/nokogiri/ffi/structs/xml_sax_handler.rb
${GEM_LIBDIR}/lib/nokogiri/ffi/structs/xml_sax_push_parser_context.rb
@ -209,6 +210,7 @@ ${GEM_LIBDIR}/test/css/test_nthiness.rb
${GEM_LIBDIR}/test/css/test_parser.rb
${GEM_LIBDIR}/test/css/test_tokenizer.rb
${GEM_LIBDIR}/test/css/test_xpath_visitor.rb
${GEM_LIBDIR}/test/decorators/test_slop.rb
${GEM_LIBDIR}/test/ffi/test_document.rb
${GEM_LIBDIR}/test/files/2ch.html
${GEM_LIBDIR}/test/files/address_book.rlx
@ -281,4 +283,5 @@ ${GEM_LIBDIR}/test/xml/test_syntax_error.rb
${GEM_LIBDIR}/test/xml/test_text.rb
${GEM_LIBDIR}/test/xml/test_unparented_node.rb
${GEM_LIBDIR}/test/xml/test_xpath.rb
${GEM_LIBDIR}/test/xslt/test_custom_functions.rb
${GEM_HOME}/specifications/${GEM_NAME}.gemspec

View file

@ -1,5 +1,5 @@
$NetBSD: distinfo,v 1.2 2010/09/10 08:29:06 taca Exp $
$NetBSD: distinfo,v 1.3 2010/11/30 15:39:56 taca Exp $
SHA1 (nokogiri-1.4.3.1.gem) = 9e0bcc42efca3f345c04f6383ad216b09c4ed0a1
RMD160 (nokogiri-1.4.3.1.gem) = 01f66e7e2e63b18ab9c4afbf4e3aade2a5c5d704
Size (nokogiri-1.4.3.1.gem) = 188928 bytes
SHA1 (nokogiri-1.4.4.gem) = 15f5c381d98a4e53a879981b8fbc301d3561c675
RMD160 (nokogiri-1.4.4.gem) = 9f5fc2b15da160ccd03a096cf3074afb46e1a170
Size (nokogiri-1.4.4.gem) = 198656 bytes