== 2.7.0 / 2013-08-03 Charlie Savage * Do not call Ruby code during a GC cycle (Dirkjan Bussink) * Fix thread error handling (Geoffrey Giesemann) * Set libxml error handler when a libxml-ruby error handler is set (Geoffrey Giesemann) * Fix tests for nil TypeErrors (Geoffrey Giesemann) * Fix segmentation fault for issue #62. The deregisternode function was incorrectly NULLing out a node's mark and free functions for nodes removed from a document tree (Charlie Savage) * Cleanup writer code (Charlie Savage) * Fix equality check of LibXML::XML::Error against other objects (Michał Szajbe) * Fix XML::Writer.set_quote_char UT, wrong expected string (#63). (julp) * Fix potential segfault when GC occurs while creating ns from xpath (Timothy Elliott) * Fix segmentation fault after failing to load external schema (#59). (Clifford Heath)
23 lines
707 B
Makefile
23 lines
707 B
Makefile
# $NetBSD: Makefile,v 1.20 2013/09/15 16:17:32 taca Exp $
|
|
|
|
DISTNAME= libxml-ruby-2.7.0
|
|
PKGNAME= ${RUBY_PKGPREFIX}-${DISTNAME:C/ruby-//}
|
|
CATEGORIES= textproc
|
|
|
|
MAINTAINER= pkgsrc-users@NetBSD.org
|
|
HOMEPAGE= http://libxml.rubyforge.org/
|
|
COMMENT= Support module for libxml2 library
|
|
LICENSE= mit
|
|
|
|
CONFIGURE_ARGS+= \
|
|
--with-xml2-include=${BUILDLINK_PREFIX.libxml2}/include/libxml2
|
|
OVERRIDE_GEMSPEC= :files ext/libxml/extconf.h= test/tc_parser.rb.orig=
|
|
|
|
pre-configure:
|
|
${RM} ${WRKSRC}/ext/libxml/extconf.h
|
|
|
|
.include "../../lang/ruby/gem.mk"
|
|
.include "../../converters/libiconv/buildlink3.mk"
|
|
.include "../../devel/zlib/buildlink3.mk"
|
|
.include "../../textproc/libxml2/buildlink3.mk"
|
|
.include "../../mk/bsd.pkg.mk"
|