Received: by mail.netbsd.org (Postfix, from userid 605) id 155F884DCE; Sun, 14 Feb 2021 15:36:53 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by mail.netbsd.org (Postfix) with ESMTP id 511BA84DCE for ; Sun, 14 Feb 2021 15:31:24 +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 Qn-5bcu2bJKI for ; Sun, 14 Feb 2021 15:31:23 +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 BAA8B84D71 for ; Sun, 14 Feb 2021 15:31:23 +0000 (UTC) Received: by cvs.NetBSD.org (Postfix, from userid 500) id B7DD9FA95; Sun, 14 Feb 2021 15:31:23 +0000 (UTC) Content-Transfer-Encoding: 7bit Content-Type: multipart/mixed; boundary="_----------=_1613316683105410" MIME-Version: 1.0 Date: Sun, 14 Feb 2021 15:31:23 +0000 From: "Takahiro Kambe" Subject: CVS commit: pkgsrc/lang/ruby27-base To: pkgsrc-changes@NetBSD.org Reply-To: taca@netbsd.org X-Mailer: log_accum Message-Id: <20210214153123.B7DD9FA95@cvs.NetBSD.org> Sender: pkgsrc-changes-owner@NetBSD.org List-Id: Precedence: bulk List-Unsubscribe: This is a multi-part message in MIME format. --_----------=_1613316683105410 Content-Disposition: inline Content-Transfer-Encoding: 8bit Content-Type: text/plain; charset="US-ASCII" Module Name: pkgsrc Committed By: taca Date: Sun Feb 14 15:31:23 UTC 2021 Modified Files: pkgsrc/lang/ruby27-base: Makefile hacks.mk Log Message: lang/ruby27-base: trivial fixes * Do not REPLACE_RUBY for nonexistent files. * Fix include guard for hack.mk. To generate a diff of this commit: cvs rdiff -u -r1.5 -r1.6 pkgsrc/lang/ruby27-base/Makefile cvs rdiff -u -r1.1 -r1.2 pkgsrc/lang/ruby27-base/hacks.mk Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files. --_----------=_1613316683105410 Content-Disposition: inline Content-Length: 1788 Content-Transfer-Encoding: binary Content-Type: text/x-diff; charset=us-ascii Modified files: Index: pkgsrc/lang/ruby27-base/Makefile diff -u pkgsrc/lang/ruby27-base/Makefile:1.5 pkgsrc/lang/ruby27-base/Makefile:1.6 --- pkgsrc/lang/ruby27-base/Makefile:1.5 Sun Oct 4 03:29:25 2020 +++ pkgsrc/lang/ruby27-base/Makefile Sun Feb 14 15:31:23 2021 @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.5 2020/10/04 03:29:25 taca Exp $ +# $NetBSD: Makefile,v 1.6 2021/02/14 15:31:23 taca Exp $ DISTNAME= ${RUBY_DISTNAME} PKGNAME= ${RUBY_PKGPREFIX}-base-${RUBY_VERSION} @@ -59,9 +59,7 @@ BIGDECIMAL_EXAMPLES= linear.rb nlsolve.r OPENSSL_EXAMPLES= c_rehash.rb cert2text.rb certstore.rb cipher.rb \ crlstore.rb echo_cli.rb echo_svr.rb gen_csr.rb \ smime_read.rb smime_write.rb wget.rb -REPLACE_RUBY= bin/bundle bin/bundler bin/erb bin/gem bin/irb \ - bin/racc bin/racc2y bin/rdoc bin/ri bin/y2racc \ - libexec/bundle libexec/bundler libexec/irb \ +REPLACE_RUBY= libexec/bundle libexec/bundler libexec/irb \ libexec/racc libexec/racc2y libexec/rdoc libexec/ri \ libexec/y2racc \ gems/net-telnet-${RUBY_NET_TELNET_VERSION}/bin/console \ Index: pkgsrc/lang/ruby27-base/hacks.mk diff -u pkgsrc/lang/ruby27-base/hacks.mk:1.1 pkgsrc/lang/ruby27-base/hacks.mk:1.2 --- pkgsrc/lang/ruby27-base/hacks.mk:1.1 Sun Mar 15 15:26:22 2020 +++ pkgsrc/lang/ruby27-base/hacks.mk Sun Feb 14 15:31:23 2021 @@ -1,7 +1,7 @@ -# $NetBSD: hacks.mk,v 1.1 2020/03/15 15:26:22 taca Exp $ +# $NetBSD: hacks.mk,v 1.2 2021/02/14 15:31:23 taca Exp $ -.if !defined(RUBY24_BASE_HACKS_MK) -RUBY24_BASE_HACKS_MK= defined +.if !defined(RUBY27_BASE_HACKS_MK) +RUBY27_BASE_HACKS_MK= defined .include "../../mk/compiler.mk" @@ -41,4 +41,4 @@ PKG_HACKS+= optimisation BUILDLINK_TRANSFORM+= rm:-fomit-frame-pointer .endif -.endif # RUBY24_BASE_HACKS_MK +.endif # RUBY27_BASE_HACKS_MK --_----------=_1613316683105410--