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 2E65515817D for ; Tue, 4 Jun 2024 19:10:52 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 0F163E2BC2; Tue, 4 Jun 2024 19:10:51 +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 DD3B8E2BC2 for ; Tue, 4 Jun 2024 19:10:50 +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 CAB7E33E3A9 for ; Tue, 4 Jun 2024 19:10:49 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 2D9871C5D for ; Tue, 4 Jun 2024 19:10:48 +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: <1717528152.118eabf595a6f71f38babc0faf7bc9ea40ab928c.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.3.7-r1.ebuild dev-lang/php/php-8.3.7.ebuild X-VCS-Directories: dev-lang/php/ X-VCS-Committer: mjo X-VCS-Committer-Name: Michael Orlitzky X-VCS-Revision: 118eabf595a6f71f38babc0faf7bc9ea40ab928c X-VCS-Branch: master Date: Tue, 4 Jun 2024 19:10:48 +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: 9d2a5e7a-278a-441c-ae8c-3f04a5ddfeba X-Archives-Hash: 636673c66bb06e25e7503eae2b46d448 commit: 118eabf595a6f71f38babc0faf7bc9ea40ab928c Author: Michael Orlitzky gentoo org> AuthorDate: Tue Jun 4 18:40:35 2024 +0000 Commit: Michael Orlitzky gentoo org> CommitDate: Tue Jun 4 19:09:12 2024 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=118eabf5 dev-lang/php: drop autotools.eclass There's a comment in the ebuild about using eautoreconf to support cross-compilation, but I don't think that should have been necessary in the first place. Or at least, it shouldn't be necessary now. Aside from that, the remaining autotools patches (requiring eautoreconf) have been dropped. Maybe we can do without, to speed up the build and simplify the ebuild a bit? Signed-off-by: Michael Orlitzky gentoo.org> dev-lang/php/{php-8.3.7.ebuild => php-8.3.7-r1.ebuild} | 8 +------- 1 file changed, 1 insertion(+), 7 deletions(-) diff --git a/dev-lang/php/php-8.3.7.ebuild b/dev-lang/php/php-8.3.7-r1.ebuild similarity index 99% rename from dev-lang/php/php-8.3.7.ebuild rename to dev-lang/php/php-8.3.7-r1.ebuild index 8bb61d05fe7b..607ae090b3e6 100644 --- a/dev-lang/php/php-8.3.7.ebuild +++ b/dev-lang/php/php-8.3.7-r1.ebuild @@ -5,7 +5,7 @@ EAPI=8 WANT_AUTOMAKE="none" -inherit flag-o-matic multilib systemd autotools +inherit flag-o-matic multilib systemd DESCRIPTION="The PHP language runtime engine" HOMEPAGE="https://www.php.net/" @@ -224,12 +224,6 @@ src_prepare() { sapi/fpm/php-fpm.conf.in \ || die 'failed to move the include directory in php-fpm.conf' - # Emulate buildconf to support cross-compilation - rm -fr aclocal.m4 autom4te.cache config.cache \ - configure main/php_config.h.in || die - eautoconf --force - eautoheader - # fails in a network sandbox, # # https://github.com/php/php-src/issues/11662