Received: by mail.netbsd.org (Postfix, from userid 605) id 3A184850FD; Sun, 14 Feb 2021 15:36:52 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by mail.netbsd.org (Postfix) with ESMTP id BFDD384DCD for ; Sun, 14 Feb 2021 15:31:02 +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 iDuknNbF4Yrw for ; Sun, 14 Feb 2021 15:31:02 +0000 (UTC) Received: from cvs.NetBSD.org (ivanova.netbsd.org [199.233.217.197]) by mail.netbsd.org (Postfix) with ESMTP id 466E584D71 for ; Sun, 14 Feb 2021 15:31:02 +0000 (UTC) Received: by cvs.NetBSD.org (Postfix, from userid 500) id 4233AFA95; Sun, 14 Feb 2021 15:31:02 +0000 (UTC) Content-Transfer-Encoding: 7bit Content-Type: multipart/mixed; boundary="_----------=_161331666236930" MIME-Version: 1.0 Date: Sun, 14 Feb 2021 15:31:02 +0000 From: "Takahiro Kambe" Subject: CVS commit: pkgsrc/lang/ruby26-base To: pkgsrc-changes@NetBSD.org Reply-To: taca@netbsd.org X-Mailer: log_accum Message-Id: <20210214153102.4233AFA95@cvs.NetBSD.org> Sender: pkgsrc-changes-owner@NetBSD.org List-Id: Precedence: bulk List-Unsubscribe: This is a multi-part message in MIME format. --_----------=_161331666236930 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:02 UTC 2021 Modified Files: pkgsrc/lang/ruby26-base: Makefile hacks.mk Log Message: lang/ruby26-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.11 -r1.12 pkgsrc/lang/ruby26-base/Makefile cvs rdiff -u -r1.3 -r1.4 pkgsrc/lang/ruby26-base/hacks.mk Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files. --_----------=_161331666236930 Content-Disposition: inline Content-Length: 1764 Content-Transfer-Encoding: binary Content-Type: text/x-diff; charset=us-ascii Modified files: Index: pkgsrc/lang/ruby26-base/Makefile diff -u pkgsrc/lang/ruby26-base/Makefile:1.11 pkgsrc/lang/ruby26-base/Makefile:1.12 --- pkgsrc/lang/ruby26-base/Makefile:1.11 Sun Oct 4 03:41:12 2020 +++ pkgsrc/lang/ruby26-base/Makefile Sun Feb 14 15:31:02 2021 @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.11 2020/10/04 03:41:12 taca Exp $ +# $NetBSD: Makefile,v 1.12 2021/02/14 15:31:02 taca Exp $ DISTNAME= ${RUBY_DISTNAME} PKGNAME= ${RUBY_PKGPREFIX}-base-${RUBY_VERSION} @@ -57,8 +57,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/rdoc bin/ri libexec/bundle libexec/bundle_ruby \ +REPLACE_RUBY= libexec/bundle libexec/bundle_ruby \ libexec/bundler libexec/irb libexec/rdoc libexec/ri \ gems/rake-${RUBY_RAKE_VERSION}/exe/rake \ gems/net-telnet-${RUBY_NET_TELNET_VERSION}/bin/console \ Index: pkgsrc/lang/ruby26-base/hacks.mk diff -u pkgsrc/lang/ruby26-base/hacks.mk:1.3 pkgsrc/lang/ruby26-base/hacks.mk:1.4 --- pkgsrc/lang/ruby26-base/hacks.mk:1.3 Sat Dec 7 07:18:52 2019 +++ pkgsrc/lang/ruby26-base/hacks.mk Sun Feb 14 15:31:02 2021 @@ -1,7 +1,7 @@ -# $NetBSD: hacks.mk,v 1.3 2019/12/07 07:18:52 mrg Exp $ +# $NetBSD: hacks.mk,v 1.4 2021/02/14 15:31:02 taca Exp $ -.if !defined(RUBY24_BASE_HACKS_MK) -RUBY24_BASE_HACKS_MK= defined +.if !defined(RUBY26_BASE_HACKS_MK) +RUBY26_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 # RUBY26_BASE_HACKS_MK --_----------=_161331666236930--