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 927B7158013 for ; Fri, 8 Dec 2023 13:48:32 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id D821B2BC016; Fri, 8 Dec 2023 13:48:31 +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) server-digest SHA256) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id AFEC92BC016 for ; Fri, 8 Dec 2023 13:48:31 +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) server-digest SHA256) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id A9B1133FE2A for ; Fri, 8 Dec 2023 13:48:30 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 13BEAAC2 for ; Fri, 8 Dec 2023 13:48:29 +0000 (UTC) From: "Michael Orlitzky" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Michael Orlitzky" Message-ID: <1702043202.3f3dcbee1d366757fc869fa365717a7d31bae7c1.mjo@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-lang/php/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-lang/php/php-8.2.13-r1.ebuild dev-lang/php/php-8.2.13.ebuild dev-lang/php/php-8.3.0-r1.ebuild dev-lang/php/php-8.3.0.ebuild X-VCS-Directories: dev-lang/php/ X-VCS-Committer: mjo X-VCS-Committer-Name: Michael Orlitzky X-VCS-Revision: 3f3dcbee1d366757fc869fa365717a7d31bae7c1 X-VCS-Branch: master Date: Fri, 8 Dec 2023 13:48:29 +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: 046ddf8e-3ba3-4217-a2da-04766008e0c8 X-Archives-Hash: 25dbe4aee91b780445451ad2a933e8c4 commit: 3f3dcbee1d366757fc869fa365717a7d31bae7c1 Author: Michael Orlitzky gentoo org> AuthorDate: Fri Dec 8 13:42:33 2023 +0000 Commit: Michael Orlitzky gentoo org> CommitDate: Fri Dec 8 13:46:42 2023 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=3f3dcbee dev-lang/php: always use the system libcrypt Unbundling things has inherent value, but this in particular should lead to better security. Thanks to hanno for noticing that it wasn't default! The removal of --enable-ipv6 is unrelated and should be a no-op since we append $(use_enable ipv6) to our econf args later on. Closes: https://bugs.gentoo.org/919439 Signed-off-by: Michael Orlitzky gentoo.org> dev-lang/php/{php-8.2.13.ebuild => php-8.2.13-r1.ebuild} | 2 +- dev-lang/php/{php-8.3.0.ebuild => php-8.3.0-r1.ebuild} | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/dev-lang/php/php-8.2.13.ebuild b/dev-lang/php/php-8.2.13-r1.ebuild similarity index 99% rename from dev-lang/php/php-8.2.13.ebuild rename to dev-lang/php/php-8.2.13-r1.ebuild index 7d6a005d1c10..a0aadbfbb272 100644 --- a/dev-lang/php/php-8.2.13.ebuild +++ b/dev-lang/php/php-8.2.13-r1.ebuild @@ -335,7 +335,7 @@ src_configure() { --localstatedir="${EPREFIX}/var" --without-pear --without-valgrind - --enable-ipv6 + --with-external-libcrypt $(use_enable threads zts) ) diff --git a/dev-lang/php/php-8.3.0.ebuild b/dev-lang/php/php-8.3.0-r1.ebuild similarity index 99% rename from dev-lang/php/php-8.3.0.ebuild rename to dev-lang/php/php-8.3.0-r1.ebuild index 195326a5aff5..c694a628967e 100644 --- a/dev-lang/php/php-8.3.0.ebuild +++ b/dev-lang/php/php-8.3.0-r1.ebuild @@ -289,7 +289,7 @@ src_configure() { --localstatedir="${EPREFIX}/var" --without-pear --without-valgrind - --enable-ipv6 + --with-external-libcrypt $(use_enable threads zts) )