Thu Dec 22 01:47:47 2022 UTC ()
devel/hoe: add missing dependency

hoe implictly assumes that minitest 5.16 and later is available.

Bump PKGREVISION.


(taca)
diff -r1.61 -r1.62 pkgsrc/devel/hoe/Makefile

cvs diff -r1.61 -r1.62 pkgsrc/devel/hoe/Makefile (expand / switch to unified diff)

--- pkgsrc/devel/hoe/Makefile 2022/12/18 13:53:02 1.61
+++ pkgsrc/devel/hoe/Makefile 2022/12/22 01:47:47 1.62
@@ -1,16 +1,20 @@ @@ -1,16 +1,20 @@
1# $NetBSD: Makefile,v 1.61 2022/12/18 13:53:02 taca Exp $ 1# $NetBSD: Makefile,v 1.62 2022/12/22 01:47:47 taca Exp $
2 2
3DISTNAME= hoe-4.0.1 3DISTNAME= hoe-4.0.1
 4PKGREVISION= 1
4CATEGORIES= devel 5CATEGORIES= devel
5 6
6MAINTAINER= minskim@NetBSD.org 7MAINTAINER= minskim@NetBSD.org
7HOMEPAGE= https://www.zenspider.com/projects/hoe.html 8HOMEPAGE= https://www.zenspider.com/projects/hoe.html
8COMMENT= Rake extension to provide full project automation 9COMMENT= Rake extension to provide full project automation
9LICENSE= mit 10LICENSE= mit
10 11
 12# hoe implictly assumes minitest 5.16 and later is available.
 13DEPENDS+= ${RUBY_PKGPREFIX}-minitest>=5.16:../../devel/ruby-minitest
 14
11USE_LANGUAGES= # empty 15USE_LANGUAGES= # empty
12 16
13RUBYGEM_OPTIONS+= --format-executable 17RUBYGEM_OPTIONS+= --format-executable
14 18
15.include "../../lang/ruby/gem.mk" 19.include "../../lang/ruby/gem.mk"
16.include "../../mk/bsd.pkg.mk" 20.include "../../mk/bsd.pkg.mk"