Received: by mail.netbsd.org (Postfix, from userid 605) id E456684DA8; Sun, 11 Apr 2021 00:08:41 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by mail.netbsd.org (Postfix) with ESMTP id 2490E84DA1 for ; Sun, 11 Apr 2021 00:08:41 +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 po0de4CR2xZa for ; Sun, 11 Apr 2021 00:08:40 +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 75E0484D93 for ; Sun, 11 Apr 2021 00:08:40 +0000 (UTC) Received: by cvs.NetBSD.org (Postfix, from userid 500) id 6F7D4FA95; Sun, 11 Apr 2021 00:08:40 +0000 (UTC) Content-Transfer-Encoding: 7bit Content-Type: multipart/mixed; boundary="_----------=_161809972035040" MIME-Version: 1.0 Date: Sun, 11 Apr 2021 00:08:40 +0000 From: "Takahiro Kambe" Subject: CVS commit: pkgsrc/textproc/ruby-rexml To: pkgsrc-changes@NetBSD.org Reply-To: taca@netbsd.org X-Mailer: log_accum Message-Id: <20210411000840.6F7D4FA95@cvs.NetBSD.org> Sender: pkgsrc-changes-owner@NetBSD.org List-Id: Precedence: bulk List-Unsubscribe: This is a multi-part message in MIME format. --_----------=_161809972035040 Content-Disposition: inline Content-Transfer-Encoding: 8bit Content-Type: text/plain; charset="US-ASCII" Module Name: pkgsrc Committed By: taca Date: Sun Apr 11 00:08:40 UTC 2021 Modified Files: pkgsrc/textproc/ruby-rexml: Makefile Log Message: textproc/ruby-rexml: do not build on Ruby 3.0 Do not build on Ruby 3.0 since it contains the same version of rexml gem and conflicts with this package. Noted by private e-mail from wiz@, thank you! To generate a diff of this commit: cvs rdiff -u -r1.12 -r1.13 pkgsrc/textproc/ruby-rexml/Makefile Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files. --_----------=_161809972035040 Content-Disposition: inline Content-Length: 720 Content-Transfer-Encoding: binary Content-Type: text/x-diff; charset=us-ascii Modified files: Index: pkgsrc/textproc/ruby-rexml/Makefile diff -u pkgsrc/textproc/ruby-rexml/Makefile:1.12 pkgsrc/textproc/ruby-rexml/Makefile:1.13 --- pkgsrc/textproc/ruby-rexml/Makefile:1.12 Sun Feb 14 14:53:04 2021 +++ pkgsrc/textproc/ruby-rexml/Makefile Sun Apr 11 00:08:40 2021 @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.12 2021/02/14 14:53:04 taca Exp $ +# $NetBSD: Makefile,v 1.13 2021/04/11 00:08:40 taca Exp $ DISTNAME= rexml-3.2.4 CATEGORIES= textproc @@ -8,6 +8,9 @@ HOMEPAGE= https://github.com/ruby/rexml COMMENT= XML toolkit for Ruby LICENSE= 2-clause-bsd +# Ruby 3.0 contain the same version of rexml. +RUBY_VERSIONS_ACCEPTED= 26 27 + USE_LANGUAGES= # empty .include "../../lang/ruby/gem.mk" --_----------=_161809972035040--