Received: by mail.netbsd.org (Postfix, from userid 605) id B7A4384D8D; Thu, 19 Jan 2023 15:51:08 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by mail.netbsd.org (Postfix) with ESMTP id E8A0F84D5B for ; Thu, 19 Jan 2023 15:51:07 +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 KthlxvnaJakM for ; Thu, 19 Jan 2023 15:51:07 +0000 (UTC) Received: from cvs.NetBSD.org (ivanova.netbsd.org [199.233.217.197]) by mail.netbsd.org (Postfix) with ESMTP id 3F5FE84C13 for ; Thu, 19 Jan 2023 15:51:07 +0000 (UTC) Received: by cvs.NetBSD.org (Postfix, from userid 500) id 31D2DFA90; Thu, 19 Jan 2023 15:51:07 +0000 (UTC) Content-Transfer-Encoding: 7bit Content-Type: multipart/mixed; boundary="_----------=_1674143467203150" MIME-Version: 1.0 Date: Thu, 19 Jan 2023 15:51:07 +0000 From: "Takahiro Kambe" Subject: CVS commit: pkgsrc/textproc/ruby-classifier-reborn To: pkgsrc-changes@NetBSD.org Reply-To: taca@netbsd.org X-Mailer: log_accum Message-Id: <20230119155107.31D2DFA90@cvs.NetBSD.org> Sender: pkgsrc-changes-owner@NetBSD.org List-Id: Precedence: bulk List-Unsubscribe: This is a multi-part message in MIME format. --_----------=_1674143467203150 Content-Disposition: inline Content-Transfer-Encoding: 8bit Content-Type: text/plain; charset="US-ASCII" Module Name: pkgsrc Committed By: taca Date: Thu Jan 19 15:51:07 UTC 2023 Modified Files: pkgsrc/textproc/ruby-classifier-reborn: Makefile Log Message: textproc/ruby-classifier-reborn: fix condition for Ruby's version Take care of Ruby 3.1 above. To generate a diff of this commit: cvs rdiff -u -r1.7 -r1.8 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. --_----------=_1674143467203150 Content-Disposition: inline Content-Length: 756 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.7 pkgsrc/textproc/ruby-classifier-reborn/Makefile:1.8 --- pkgsrc/textproc/ruby-classifier-reborn/Makefile:1.7 Mon Oct 10 03:36:50 2022 +++ pkgsrc/textproc/ruby-classifier-reborn/Makefile Thu Jan 19 15:51:07 2023 @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.7 2022/10/10 03:36:50 taca Exp $ +# $NetBSD: Makefile,v 1.8 2023/01/19 15:51:07 taca Exp $ DISTNAME= classifier-reborn-2.3.0 CATEGORIES= textproc @@ -14,7 +14,7 @@ RUBYGEM_OPTIONS+= --format-executable .include "../../lang/ruby/rubyversion.mk" -.if ${RUBY_VER} != 31 +.if ${RUBY_VER} < 31 DEPENDS+= ${RUBY_PKGPREFIX}-matrix>=0.4:../../math/ruby-matrix .endif --_----------=_1674143467203150--