Wed Jan 6 14:45:01 2016 UTC ()
* Support ruby200, ruby21 and ruby22 since ruby23 bundles the same version
  of test-unit gem.
* Depends on devel/ruby-power_assert with ruby 200 and ruby21 since ruby22
  bundles power_assert gem.

Bump PKGREVISION.


(taca)
diff -r1.22 -r1.23 pkgsrc/devel/ruby-test-unit/Makefile

cvs diff -r1.22 -r1.23 pkgsrc/devel/ruby-test-unit/Makefile (expand / switch to unified diff)

--- pkgsrc/devel/ruby-test-unit/Makefile 2016/01/01 16:14:46 1.22
+++ pkgsrc/devel/ruby-test-unit/Makefile 2016/01/06 14:45:01 1.23
@@ -1,20 +1,24 @@ @@ -1,20 +1,24 @@
1# $NetBSD: Makefile,v 1.22 2016/01/01 16:14:46 taca Exp $ 1# $NetBSD: Makefile,v 1.23 2016/01/06 14:45:01 taca Exp $
2 2
3DISTNAME= test-unit-3.1.5 3DISTNAME= test-unit-3.1.5
 4PKGREVISION= 1
4CATEGORIES= devel 5CATEGORIES= devel
5 6
6MAINTAINER= pkgsrc-users@NetBSD.org 7MAINTAINER= pkgsrc-users@NetBSD.org
7HOMEPAGE= https://github.com/test-unit/test-unit/ 8HOMEPAGE= https://github.com/test-unit/test-unit/
8COMMENT= Improved version of Test::Unit 9COMMENT= Improved version of Test::Unit
9LICENSE= ruby-license 10LICENSE= ruby-license
10 11
11USE_LANGUAGES= # none 12USE_LANGUAGES= # none
12 13
 14# ruby23 has the same version.
 15RUBY_VERSION_SUPPORTED= 200 21 22
 16
13.include "../../lang/ruby/rubyversion.mk" 17.include "../../lang/ruby/rubyversion.mk"
14 18
15.if ${RUBY_VER} != "23" 19.if ${RUBY_VER} == "200" || ${RUBY_VER} == "21"
16DEPENDS+= ${RUBY_PKGPREFIX}-power_assert>=0:../../devel/ruby-power_assert 20DEPENDS+= ${RUBY_PKGPREFIX}-power_assert>=0:../../devel/ruby-power_assert
17.endif 21.endif
18 22
19.include "../../lang/ruby/gem.mk" 23.include "../../lang/ruby/gem.mk"
20.include "../../mk/bsd.pkg.mk" 24.include "../../mk/bsd.pkg.mk"