Received: from mail.netbsd.org (mail.netbsd.org [199.233.217.200]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits)) (Client CN "mail.NetBSD.org", Issuer "mail.NetBSD.org CA" (not verified)) by mollari.NetBSD.org (Postfix) with ESMTPS id 5672D1A921F for ; Tue, 12 Apr 2022 19:07:13 +0000 (UTC) Received: by mail.netbsd.org (Postfix, from userid 605) id 1150B84EAB; Tue, 12 Apr 2022 19:07:13 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by mail.netbsd.org (Postfix) with ESMTP id 4BCC884E67 for ; Tue, 12 Apr 2022 19:07:12 +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 A9H_nfA6OqB8 for ; Tue, 12 Apr 2022 19:07:11 +0000 (UTC) Received: from cvs.NetBSD.org (ivanova.netbsd.org [199.233.217.197]) by mail.netbsd.org (Postfix) with ESMTP id A24A884D24 for ; Tue, 12 Apr 2022 19:07:11 +0000 (UTC) Received: by cvs.NetBSD.org (Postfix, from userid 500) id 9BB3AFB24; Tue, 12 Apr 2022 19:07:11 +0000 (UTC) Content-Transfer-Encoding: 7bit Content-Type: multipart/mixed; boundary="_----------=_164979043117280" MIME-Version: 1.0 Date: Tue, 12 Apr 2022 19:07:11 +0000 From: "Nia Alarie" Subject: CVS commit: pkgsrc/lang/ruby To: pkgsrc-changes@NetBSD.org Reply-To: nia@netbsd.org X-Mailer: log_accum Message-Id: <20220412190711.9BB3AFB24@cvs.NetBSD.org> Sender: pkgsrc-changes-owner@NetBSD.org List-Id: Precedence: bulk List-Unsubscribe: This is a multi-part message in MIME format. --_----------=_164979043117280 Content-Disposition: inline Content-Transfer-Encoding: 8bit Content-Type: text/plain; charset="US-ASCII" Module Name: pkgsrc Committed By: nia Date: Tue Apr 12 19:07:11 UTC 2022 Modified Files: pkgsrc/lang/ruby: rubyversion.mk Log Message: ruby: use same style of module path for linux as we do netbsd should help centos bulk builds (maybe) To generate a diff of this commit: cvs rdiff -u -r1.249 -r1.250 pkgsrc/lang/ruby/rubyversion.mk Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files. --_----------=_164979043117280 Content-Disposition: inline Content-Length: 1004 Content-Transfer-Encoding: binary Content-Type: text/x-diff; charset=us-ascii Modified files: Index: pkgsrc/lang/ruby/rubyversion.mk diff -u pkgsrc/lang/ruby/rubyversion.mk:1.249 pkgsrc/lang/ruby/rubyversion.mk:1.250 --- pkgsrc/lang/ruby/rubyversion.mk:1.249 Tue Apr 12 15:12:13 2022 +++ pkgsrc/lang/ruby/rubyversion.mk Tue Apr 12 19:07:11 2022 @@ -1,4 +1,4 @@ -# $NetBSD: rubyversion.mk,v 1.249 2022/04/12 15:12:13 taca Exp $ +# $NetBSD: rubyversion.mk,v 1.250 2022/04/12 19:07:11 nia Exp $ # # This file determines which Ruby version is used as a dependency for @@ -621,7 +621,7 @@ RDOC?= ${PREFIX}/bin/rdoc${RUBY_SUFFIX RUBY_ARCH?= ${MACHINE_GNU_ARCH}-${LOWER_OPSYS}${APPEND_ELF}${LOWER_OPSYS_VERSUFFIX}${APPEND_ABI} # NetBSD does not append an OS version, so we have to do this OPSYS-specific. -.if ${OPSYS} == "NetBSD" +.if ${OPSYS} == "NetBSD" || ${OPSYS} == "Linux" RUBY_EXTARCH?= ${MACHINE_GNU_ARCH}-${LOWER_OPSYS}${APPEND_ELF}${LOWER_OPSYS_VERSUFFIX} .else RUBY_EXTARCH?= ${MACHINE_GNU_ARCH}-${LOWER_OPSYS}${APPEND_ELF}-${LOWER_OPSYS_VERSUFFIX}${APPEND_ABI} --_----------=_164979043117280--