From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (2048 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id 409B215AD37 for ; Wed, 10 May 2023 21:14:39 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 7C44AE0B89; Wed, 10 May 2023 21:14:38 +0000 (UTC) Received: from smtp.gentoo.org (woodpecker.gentoo.org [140.211.166.183]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 628F4E0B89 for ; Wed, 10 May 2023 21:14:38 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 71366340BE3 for ; Wed, 10 May 2023 21:14:37 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id A9F7AA6E for ; Wed, 10 May 2023 21:14:34 +0000 (UTC) From: "orbea" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "orbea" Message-ID: <1683746312.4d48686fe97baa8df348d74a354bfa9ce1c83d76.orbea@gentoo> Subject: [gentoo-commits] repo/proj/libressl:master commit in: dev-lang/ruby/ X-VCS-Repository: repo/proj/libressl X-VCS-Files: dev-lang/ruby/ruby-3.0.6-r2.ebuild dev-lang/ruby/ruby-3.1.4-r2.ebuild X-VCS-Directories: dev-lang/ruby/ X-VCS-Committer: orbea X-VCS-Committer-Name: orbea X-VCS-Revision: 4d48686fe97baa8df348d74a354bfa9ce1c83d76 X-VCS-Branch: master Date: Wed, 10 May 2023 21:14:34 +0000 (UTC) Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-commits@lists.gentoo.org X-Auto-Response-Suppress: DR, RN, NRN, OOF, AutoReply X-Archives-Salt: 395e4553-1ffd-4a6d-be49-6bfc9c71ae65 X-Archives-Hash: d7b5821495129f8296f4424cb4cafcc0 commit: 4d48686fe97baa8df348d74a354bfa9ce1c83d76 Author: orbea riseup net> AuthorDate: Wed May 10 19:18:32 2023 +0000 Commit: orbea riseup net> CommitDate: Wed May 10 19:18:32 2023 +0000 URL: https://gitweb.gentoo.org/repo/proj/libressl.git/commit/?id=4d48686f dev-lang/ruby: sync ::gentoo Signed-off-by: orbea riseup.net> dev-lang/ruby/ruby-3.0.6-r2.ebuild | 5 +++++ dev-lang/ruby/ruby-3.1.4-r2.ebuild | 5 +++++ 2 files changed, 10 insertions(+) diff --git a/dev-lang/ruby/ruby-3.0.6-r2.ebuild b/dev-lang/ruby/ruby-3.0.6-r2.ebuild index a901182..d176849 100644 --- a/dev-lang/ruby/ruby-3.0.6-r2.ebuild +++ b/dev-lang/ruby/ruby-3.0.6-r2.ebuild @@ -101,6 +101,11 @@ src_prepare() { sed -i \ -e "s/ac_cv_prog_ac_ct_AR='libtool/ac_cv_prog_AR='${CHOST}-libtool/" \ configure.ac || die + + # disable using security framework (GCC barfs on those headers) + sed -i \ + -e 's/MAC_OS_X_VERSION_MIN_REQUIRED/_DISABLED_/' \ + random.c || die fi fi diff --git a/dev-lang/ruby/ruby-3.1.4-r2.ebuild b/dev-lang/ruby/ruby-3.1.4-r2.ebuild index 7099a09..b137dee 100644 --- a/dev-lang/ruby/ruby-3.1.4-r2.ebuild +++ b/dev-lang/ruby/ruby-3.1.4-r2.ebuild @@ -106,6 +106,11 @@ src_prepare() { sed -i \ -e "s/ac_cv_prog_ac_ct_AR='libtool/ac_cv_prog_AR='${CHOST}-libtool/" \ configure.ac || die + + # disable using security framework (GCC barfs on those headers) + sed -i \ + -e 's/MAC_OS_X_VERSION_MIN_REQUIRED/_DISABLED_/' \ + random.c || die fi fi