Received: from localhost (localhost [127.0.0.1]) by mail.netbsd.org (Postfix) with ESMTP id B2E5584ED7 for ; Sat, 16 Dec 2023 15:41:53 +0000 (UTC) X-Virus-Scanned: amavisd-new at netbsd.org Received: from mail.netbsd.org ([IPv6:::1]) by localhost (mail.netbsd.org [IPv6:::1]) (amavisd-new, port 10025) with ESMTP id xQDcdAFhFv9c for ; Sat, 16 Dec 2023 15:41:53 +0000 (UTC) Received: from cvs.NetBSD.org (ivanova.NetBSD.org [IPv6:2001:470:a085:999:28c:faff:fe03:5984]) by mail.netbsd.org (Postfix) with ESMTP id 253C884EC5 for ; Sat, 16 Dec 2023 15:41:53 +0000 (UTC) Received: by cvs.NetBSD.org (Postfix, from userid 500) id 14875FA42; Sat, 16 Dec 2023 15:41:53 +0000 (UTC) Content-Transfer-Encoding: 7bit Content-Type: multipart/mixed; boundary="_----------=_1702741313200170" MIME-Version: 1.0 Date: Sat, 16 Dec 2023 15:41:53 +0000 From: "Takahiro Kambe" Subject: CVS commit: pkgsrc/devel/hoe To: pkgsrc-changes@NetBSD.org Approved: commit_and_comment Reply-To: taca@netbsd.org X-Mailer: log_accum Message-Id: <20231216154153.14875FA42@cvs.NetBSD.org> This is a multi-part message in MIME format. --_----------=_1702741313200170 Content-Disposition: inline Content-Transfer-Encoding: 8bit Content-Type: text/plain; charset="US-ASCII" Module Name: pkgsrc Committed By: taca Date: Sat Dec 16 15:41:53 UTC 2023 Modified Files: pkgsrc/devel/hoe: Makefile distinfo Log Message: devel/hoe: update to 4.1.0 4.1.0 (2023-11-16) 1 minor enhancement: * Added Hoe::Cov#cov_filter accessor. 2 bug fixes: * Removed use of Gem.bin_wrapper. rdoc is now just rdoc. * Removed use of Gem.default_exec_format. gem is now just gem. To generate a diff of this commit: cvs rdiff -u -r1.67 -r1.68 pkgsrc/devel/hoe/Makefile cvs rdiff -u -r1.60 -r1.61 pkgsrc/devel/hoe/distinfo Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files. --_----------=_1702741313200170 Content-Disposition: inline Content-Length: 1685 Content-Transfer-Encoding: binary Content-Type: text/x-diff; charset=us-ascii Modified files: Index: pkgsrc/devel/hoe/Makefile diff -u pkgsrc/devel/hoe/Makefile:1.67 pkgsrc/devel/hoe/Makefile:1.68 --- pkgsrc/devel/hoe/Makefile:1.67 Sun Aug 6 07:48:10 2023 +++ pkgsrc/devel/hoe/Makefile Sat Dec 16 15:41:52 2023 @@ -1,6 +1,6 @@ -# $NetBSD: Makefile,v 1.67 2023/08/06 07:48:10 taca Exp $ +# $NetBSD: Makefile,v 1.68 2023/12/16 15:41:52 taca Exp $ -DISTNAME= hoe-4.0.5 +DISTNAME= hoe-4.1.0 CATEGORIES= devel MAINTAINER= minskim@NetBSD.org @@ -12,5 +12,10 @@ USE_LANGUAGES= # empty RUBYGEM_OPTIONS+= --format-executable +.include "../../lang/ruby/rubyversion.mk" +.if ${RUBY_VER} == 31 +DEPENDS+= ${RUBY_PKGPREFIX}-minitest>=1.0.0:../../devel/ruby-minitest +.endif + .include "../../lang/ruby/gem.mk" .include "../../mk/bsd.pkg.mk" Index: pkgsrc/devel/hoe/distinfo diff -u pkgsrc/devel/hoe/distinfo:1.60 pkgsrc/devel/hoe/distinfo:1.61 --- pkgsrc/devel/hoe/distinfo:1.60 Sun Jul 30 03:45:01 2023 +++ pkgsrc/devel/hoe/distinfo Sat Dec 16 15:41:52 2023 @@ -1,5 +1,5 @@ -$NetBSD: distinfo,v 1.60 2023/07/30 03:45:01 taca Exp $ +$NetBSD: distinfo,v 1.61 2023/12/16 15:41:52 taca Exp $ -BLAKE2s (hoe-4.0.5.gem) = 97a4aa770c2ab634b73d2b0e726fcb797bae5511079440a2f621017e17601bf1 -SHA512 (hoe-4.0.5.gem) = 5f9e423dfe49d2b41ae4380a8b226a7c6efa939ba48022a0d872e9ccb4fb8aeed67ea2366034f61edc92a5be3f23014a0428ea64a48c644a2308621a0d417a23 -Size (hoe-4.0.5.gem) = 190976 bytes +BLAKE2s (hoe-4.1.0.gem) = 9881169ed2b042f8046c3c1b812238fb83a416992b53dadf881fccf241d5a204 +SHA512 (hoe-4.1.0.gem) = 6a90adcd2bc767ccf6e2fa425e98a9e765135cbcb39793aa0e4a1314028a8cf568a7beca2a16924abf1d0984c855b077be8123109140181ae2986c3ebc1c9010 +Size (hoe-4.1.0.gem) = 190976 bytes --_----------=_1702741313200170--