Received: from mail.netbsd.org (mail.netbsd.org [199.233.217.200]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client CN "mail.netbsd.org", Issuer "Postmaster NetBSD.org" (verified OK)) by mollari.NetBSD.org (Postfix) with ESMTPS id 4164D7A173 for ; Tue, 30 May 2017 15:49:14 +0000 (UTC) Received: by mail.netbsd.org (Postfix, from userid 605) id E76A984DBA; Tue, 30 May 2017 15:49:13 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by mail.netbsd.org (Postfix) with ESMTP id 75FE084DB9 for ; Tue, 30 May 2017 15:49:13 +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 UUmBCf5hqoPt for ; Tue, 30 May 2017 15:49:13 +0000 (UTC) Received: from cvs.NetBSD.org (ivanova.netbsd.org [199.233.217.197]) by mail.netbsd.org (Postfix) with ESMTP id C90B684C86 for ; Tue, 30 May 2017 15:49:12 +0000 (UTC) Received: by cvs.NetBSD.org (Postfix, from userid 500) id C6DA2FBEE; Tue, 30 May 2017 15:49:12 +0000 (UTC) Content-Transfer-Encoding: 7bit Content-Type: multipart/mixed; boundary="_----------=_1496159352142820" MIME-Version: 1.0 Date: Tue, 30 May 2017 15:49:12 +0000 From: "Takahiro Kambe" Subject: CVS commit: pkgsrc/x11/ruby-tk To: pkgsrc-changes@NetBSD.org Reply-To: taca@netbsd.org X-Mailer: log_accum Message-Id: <20170530154912.C6DA2FBEE@cvs.NetBSD.org> Sender: pkgsrc-changes-owner@NetBSD.org List-Id: pkgsrc-changes.NetBSD.org Precedence: bulk List-Unsubscribe: This is a multi-part message in MIME format. --_----------=_1496159352142820 Content-Disposition: inline Content-Transfer-Encoding: 8bit Content-Type: text/plain; charset="US-ASCII" Module Name: pkgsrc Committed By: taca Date: Tue May 30 15:49:12 UTC 2017 Modified Files: pkgsrc/x11/ruby-tk: Makefile Log Message: * Replace RUBY_VERSION_FULL with RUBY_VERSION since there is no RUBY_VERSION_FULL contains Ruby's patchlevel. * Add comment to RUBY_VERSIONS_ACCEPTED that ruby-tk is not bundled by Ruby 2.4 and later. To generate a diff of this commit: cvs rdiff -u -r1.51 -r1.52 pkgsrc/x11/ruby-tk/Makefile Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files. --_----------=_1496159352142820 Content-Disposition: inline Content-Length: 876 Content-Transfer-Encoding: binary Content-Type: text/x-diff; charset=us-ascii Modified files: Index: pkgsrc/x11/ruby-tk/Makefile diff -u pkgsrc/x11/ruby-tk/Makefile:1.51 pkgsrc/x11/ruby-tk/Makefile:1.52 --- pkgsrc/x11/ruby-tk/Makefile:1.51 Sat Apr 22 18:27:05 2017 +++ pkgsrc/x11/ruby-tk/Makefile Tue May 30 15:49:12 2017 @@ -1,7 +1,7 @@ -# $NetBSD: Makefile,v 1.51 2017/04/22 18:27:05 taca Exp $ +# $NetBSD: Makefile,v 1.52 2017/05/30 15:49:12 taca Exp $ DISTNAME= ${RUBY_DISTNAME} -PKGNAME= ${RUBY_PKGPREFIX}-${RUBY_EXTNAME}-${RUBY_VERSION_FULL} +PKGNAME= ${RUBY_PKGPREFIX}-${RUBY_EXTNAME}-${RUBY_VERSION} PKGREVISION= 4 RUBY_EXTNAME= tk CATEGORIES= x11 ruby @@ -11,7 +11,9 @@ MAINTAINER= taca@NetBSD.org HOMEPAGE= ${RUBY_HOMEPAGE} COMMENT= Ruby interface to the Tk widget set +# Ruby 2.4 and later do not bundle ruby-tk. RUBY_VERSIONS_ACCEPTED= 23 22 21 + USE_TOOLS+= pax USE_RUBY_EXTCONF= yes RUBY_EXTCONF_SUBDIRS= . tkutil --_----------=_1496159352142820--