e4f3048392
== 0.2.3 (2015-12-29) * *Fix* documentation of XZ module (a :nodoc: was causing havoc in the XZ module so it appeared to have no methods). * No other changes this release. == 0.2.2 (2015-12-27) * *Add* XZ.disable_deprecation_notices * *Deprecate* use of XZ::StreamReader.open with an IO argument * *Deprecate* use of XZ::StreamReader.new with a filename argument * *Deprecate* use of XZ::StreamWriter.open with an IO argument * *Deprecate* use of XZ::StreamWriter.new with a filename argument * *Deprecate* nonautomatic IO close in XZ::StreamReader#close * *Deprecate* nonautomatic IO close in XZ::StreamWriter#close * *Fix* incompatibility with Resolv.getaddress() in Ruby 2.2 (Ticket #13 by Ken Simon) * Goal of these deprecations is to sync the API with Ruby’s own Zlib::GzipWriter and Zlib::GzipReader mostly. * Add required versions to gemspec. * Comment format cleanup, results in better docs. * Internal code cleanup * Add more tests.
23 lines
708 B
Makefile
23 lines
708 B
Makefile
# $NetBSD: Makefile,v 1.13 2016/01/03 05:31:55 taca Exp $
|
|
|
|
DISTNAME= ruby-xz-0.2.3
|
|
PKGNAME= ${RUBY_PKGPREFIX}-${DISTNAME:S/ruby-//}
|
|
CATEGORIES= archivers
|
|
|
|
MAINTAINER= minskim@NetBSD.org
|
|
HOMEPAGE= https://github.com/Quintus/ruby-xz
|
|
COMMENT= Ruby bindings for liblzma
|
|
LICENSE= mit
|
|
|
|
DEPENDS+= xz-[0-9]*:../../archivers/xz
|
|
DEPENDS+= ${RUBY_PKGPREFIX}-ffi-[0-9]*:../../devel/ruby-ffi
|
|
DEPENDS+= ${RUBY_PKGPREFIX}-io-like-[0-9]*:../../devel/ruby-io-like
|
|
|
|
SUBST_CLASSES+= path
|
|
SUBST_STAGE.path= pre-configure
|
|
SUBST_FILES.path= lib/xz/lib_lzma.rb
|
|
SUBST_SED.path+= -e "s,@LOCALBASE@,${LOCALBASE},g"
|
|
SUBST_SED.path+= -e "s,@SHLIB_EXT@,${RUBY_SLEXT},g"
|
|
|
|
.include "../../lang/ruby/gem.mk"
|
|
.include "../../mk/bsd.pkg.mk"
|