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 D6B24158015 for ; Thu, 28 Dec 2023 01:39:43 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 28EB92BC014; Thu, 28 Dec 2023 01:39:43 +0000 (UTC) Received: from smtp.gentoo.org (mail.gentoo.org [IPv6:2001:470:ea4a:1:5054:ff:fec7:86e4]) (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 0F6142BC014 for ; Thu, 28 Dec 2023 01:39:43 +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 43361340441 for ; Thu, 28 Dec 2023 01:39:42 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id AB7491441 for ; Thu, 28 Dec 2023 01:39:40 +0000 (UTC) From: "Conrad Kostecki" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Conrad Kostecki" Message-ID: <1703727539.400c7ae2532ddff610f6c277d860ff7cd8584d9d.conikost@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-php/pecl-apcu/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-php/pecl-apcu/pecl-apcu-5.1.23-r1.ebuild dev-php/pecl-apcu/pecl-apcu-5.1.23.ebuild X-VCS-Directories: dev-php/pecl-apcu/ X-VCS-Committer: conikost X-VCS-Committer-Name: Conrad Kostecki X-VCS-Revision: 400c7ae2532ddff610f6c277d860ff7cd8584d9d X-VCS-Branch: master Date: Thu, 28 Dec 2023 01:39:40 +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: c381d9e9-17ae-4719-befb-10f21238cc15 X-Archives-Hash: eb2c29095d1086f28c30c33c7195eb24 commit: 400c7ae2532ddff610f6c277d860ff7cd8584d9d Author: Conrad Kostecki gentoo org> AuthorDate: Thu Dec 28 01:38:59 2023 +0000 Commit: Conrad Kostecki gentoo org> CommitDate: Thu Dec 28 01:38:59 2023 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=400c7ae2 dev-php/pecl-apcu: fix path Closes: https://bugs.gentoo.org/915680 Signed-off-by: Conrad Kostecki gentoo.org> .../pecl-apcu/{pecl-apcu-5.1.23.ebuild => pecl-apcu-5.1.23-r1.ebuild} | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/dev-php/pecl-apcu/pecl-apcu-5.1.23.ebuild b/dev-php/pecl-apcu/pecl-apcu-5.1.23-r1.ebuild similarity index 92% rename from dev-php/pecl-apcu/pecl-apcu-5.1.23.ebuild rename to dev-php/pecl-apcu/pecl-apcu-5.1.23-r1.ebuild index ee87ded1ecb5..82e0d0a1108e 100644 --- a/dev-php/pecl-apcu/pecl-apcu-5.1.23.ebuild +++ b/dev-php/pecl-apcu/pecl-apcu-5.1.23-r1.ebuild @@ -42,11 +42,11 @@ src_configure() { src_install() { php-ext-pecl-r3_src_install - insinto /usr/share/php7/apcu + insinto /usr/share/php8/apcu doins apc.php } pkg_postinst() { elog "The apc.php file shipped with this release of pecl-apcu" - elog "was installed to ${EPREFIX}/usr/share/php7/apcu/." + elog "was installed to ${EPREFIX}/usr/share/php8/apcu/." }