Received: from localhost (localhost [127.0.0.1]) by mail.netbsd.org (Postfix) with ESMTP id 89B3484FF7 for ; Sat, 9 Sep 2023 13:55:46 +0000 (UTC) X-Virus-Scanned: amavisd-new at netbsd.org Received: from mail.netbsd.org ([127.0.0.1]) by localhost (mail.netbsd.org [127.0.0.1]) (amavisd-new, port 10025) with ESMTP id 3OVlT7pvJMC1 for ; Sat, 9 Sep 2023 13:55:46 +0000 (UTC) Received: from cvs.NetBSD.org (ivanova.netbsd.org [199.233.217.197]) by mail.netbsd.org (Postfix) with ESMTP id DC3CC84EBF for ; Sat, 9 Sep 2023 13:55:45 +0000 (UTC) Received: by cvs.NetBSD.org (Postfix, from userid 500) id D5C77FBDB; Sat, 9 Sep 2023 13:55:45 +0000 (UTC) Content-Transfer-Encoding: 7bit Content-Type: multipart/mixed; boundary="_----------=_1694267745292170" MIME-Version: 1.0 Date: Sat, 9 Sep 2023 13:55:45 +0000 From: "Takahiro Kambe" Subject: CVS commit: pkgsrc/textproc/ruby-classifier-reborn To: pkgsrc-changes@NetBSD.org Approved: commit_and_comment Reply-To: taca@netbsd.org X-Mailer: log_accum Message-Id: <20230909135545.D5C77FBDB@cvs.NetBSD.org> This is a multi-part message in MIME format. --_----------=_1694267745292170 Content-Disposition: inline Content-Transfer-Encoding: 8bit Content-Type: text/plain; charset="US-ASCII" Module Name: pkgsrc Committed By: taca Date: Sat Sep 9 13:55:45 UTC 2023 Modified Files: pkgsrc/textproc/ruby-classifier-reborn: Makefile Log Message: textproc/ruby-classifier-reborn: drop support for Ruby 3.0 Now drop support for Ruby 3.0. To generate a diff of this commit: cvs rdiff -u -r1.8 -r1.9 pkgsrc/textproc/ruby-classifier-reborn/Makefile Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files. --_----------=_1694267745292170 Content-Disposition: inline Content-Length: 876 Content-Transfer-Encoding: binary Content-Type: text/x-diff; charset=us-ascii Modified files: Index: pkgsrc/textproc/ruby-classifier-reborn/Makefile diff -u pkgsrc/textproc/ruby-classifier-reborn/Makefile:1.8 pkgsrc/textproc/ruby-classifier-reborn/Makefile:1.9 --- pkgsrc/textproc/ruby-classifier-reborn/Makefile:1.8 Thu Jan 19 15:51:07 2023 +++ pkgsrc/textproc/ruby-classifier-reborn/Makefile Sat Sep 9 13:55:45 2023 @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.8 2023/01/19 15:51:07 taca Exp $ +# $NetBSD: Makefile,v 1.9 2023/09/09 13:55:45 taca Exp $ DISTNAME= classifier-reborn-2.3.0 CATEGORIES= textproc @@ -12,11 +12,7 @@ DEPENDS= ${RUBY_PKGPREFIX}-fast-stemmer> RUBYGEM_OPTIONS+= --format-executable -.include "../../lang/ruby/rubyversion.mk" - -.if ${RUBY_VER} < 31 -DEPENDS+= ${RUBY_PKGPREFIX}-matrix>=0.4:../../math/ruby-matrix -.endif +RUBY_VERSIONS_ACCEPTED= 31 32 .include "../../lang/ruby/gem.mk" .include "../../mk/bsd.pkg.mk" --_----------=_1694267745292170--