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 BC7D91581E7 for ; Sun, 21 Apr 2024 21:14:37 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 055F4E29B0; Sun, 21 Apr 2024 21:14:37 +0000 (UTC) Received: from smtp.gentoo.org (dev.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)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id DA8C9E29B0 for ; Sun, 21 Apr 2024 21:14:36 +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 289213430A9 for ; Sun, 21 Apr 2024 21:14:36 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 89C501513 for ; Sun, 21 Apr 2024 21:14:34 +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: <1713733989.a41ffd2c033f677126fc9c506e5eefb0884bb2d1.mjo@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-php/PEAR-MDB2/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-php/PEAR-MDB2/PEAR-MDB2-2.5.0_beta5-r3.ebuild X-VCS-Directories: dev-php/PEAR-MDB2/ X-VCS-Committer: mjo X-VCS-Committer-Name: Michael Orlitzky X-VCS-Revision: a41ffd2c033f677126fc9c506e5eefb0884bb2d1 X-VCS-Branch: master Date: Sun, 21 Apr 2024 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: ffb12816-584a-4396-b3dd-99f20df7be8f X-Archives-Hash: e3deaa808f87dcd7656c6f3b2e60b8df commit: a41ffd2c033f677126fc9c506e5eefb0884bb2d1 Author: Michael Orlitzky gentoo org> AuthorDate: Sun Apr 21 21:07:19 2024 +0000 Commit: Michael Orlitzky gentoo org> CommitDate: Sun Apr 21 21:13:09 2024 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=a41ffd2c dev-php/PEAR-MDB2: update EAPI 7 -> 8 Also drop Oracle support. Upstream PHP is doing it. Signed-off-by: Michael Orlitzky gentoo.org> dev-php/PEAR-MDB2/PEAR-MDB2-2.5.0_beta5-r3.ebuild | 24 +++++++++++++++++++++++ 1 file changed, 24 insertions(+) diff --git a/dev-php/PEAR-MDB2/PEAR-MDB2-2.5.0_beta5-r3.ebuild b/dev-php/PEAR-MDB2/PEAR-MDB2-2.5.0_beta5-r3.ebuild new file mode 100644 index 000000000000..43edc74a8488 --- /dev/null +++ b/dev-php/PEAR-MDB2/PEAR-MDB2-2.5.0_beta5-r3.ebuild @@ -0,0 +1,24 @@ +# Copyright 1999-2024 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=8 + +PEAR_PV=${PV/_beta/b} + +inherit php-pear-r2 + +DESCRIPTION="Database Abstraction Layer" +LICENSE="BSD" +SLOT="0" +KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ppc ~ppc64 ~s390 ~sparc ~x86" +IUSE="mssql mysql mysqli postgres sqlite" + +RDEPEND="dev-php/PEAR-PEAR" + +PDEPEND="mssql? ( dev-php/PEAR-MDB2_Driver_mssql ) + mysql? ( dev-php/PEAR-MDB2_Driver_mysqli ) + mysqli? ( dev-php/PEAR-MDB2_Driver_mysqli ) + postgres? ( dev-php/PEAR-MDB2_Driver_pgsql )" + +DOCS=( docs/{CONTRIBUTORS,MAINTAINERS,README,STATUS,TODO} ) +HTML_DOCS=( docs/datatypes.html )