From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: 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 finch.gentoo.org (Postfix) with ESMTPS id 26B391581B9 for ; Fri, 03 Oct 2025 01:18:00 +0000 (UTC) Received: from lists.gentoo.org (bobolink.gentoo.org [140.211.166.189]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange x25519) (No client certificate requested) (Authenticated sender: relay-lists.gentoo.org@gentoo.org) by smtp.gentoo.org (Postfix) with ESMTPSA id 10C4B340E96 for ; Fri, 03 Oct 2025 01:18:00 +0000 (UTC) Received: from bobolink.gentoo.org (localhost [127.0.0.1]) by bobolink.gentoo.org (Postfix) with ESMTP id 1292F110213; Fri, 03 Oct 2025 01:17:59 +0000 (UTC) Received: from smtp.gentoo.org (smtp.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) (No client certificate requested) by bobolink.gentoo.org (Postfix) with ESMTPS id 05F6F110213 for ; Fri, 03 Oct 2025 01:17:59 +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) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 602F3340E10 for ; Fri, 03 Oct 2025 01:17:54 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 4D8A33A84 for ; Fri, 03 Oct 2025 01:15:40 +0000 (UTC) From: "Sam James" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Sam James" Message-ID: <1759454058.eb70ce4796ee6b0969a64f7c209fc8eed910d484.sam@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-db/libdbi-drivers/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-db/libdbi-drivers/libdbi-drivers-0.9.0-r3.ebuild X-VCS-Directories: dev-db/libdbi-drivers/ X-VCS-Committer: sam X-VCS-Committer-Name: Sam James X-VCS-Revision: eb70ce4796ee6b0969a64f7c209fc8eed910d484 X-VCS-Branch: master Date: Fri, 03 Oct 2025 01:15: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: 620f2fd6-5530-4667-8aab-a433d41c7b5e X-Archives-Hash: 84c000b1e2681c7996127bf0fe073b06 commit: eb70ce4796ee6b0969a64f7c209fc8eed910d484 Author: Hank Leininger korelogic com> AuthorDate: Sat Aug 23 01:00:30 2025 +0000 Commit: Sam James gentoo org> CommitDate: Fri Oct 3 01:14:18 2025 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=eb70ce47 dev-db/libdbi-drivers: drop references to removed dev-db/firebird Bug: https://bugs.gentoo.org/909528 Signed-off-by: Hank Leininger korelogic.com> Part-of: https://github.com/gentoo/gentoo/pull/43537 Signed-off-by: Sam James gentoo.org> dev-db/libdbi-drivers/libdbi-drivers-0.9.0-r3.ebuild | 7 ++----- 1 file changed, 2 insertions(+), 5 deletions(-) diff --git a/dev-db/libdbi-drivers/libdbi-drivers-0.9.0-r3.ebuild b/dev-db/libdbi-drivers/libdbi-drivers-0.9.0-r3.ebuild index 37db3d1e816b..304551ec1a1a 100644 --- a/dev-db/libdbi-drivers/libdbi-drivers-0.9.0-r3.ebuild +++ b/dev-db/libdbi-drivers/libdbi-drivers-0.9.0-r3.ebuild @@ -12,14 +12,12 @@ SRC_URI="https://downloads.sourceforge.net/project/${PN}/${PN}/${P}/${P}.tar.gz" LICENSE="LGPL-2.1+" SLOT="0" KEYWORDS="~alpha amd64 arm arm64 ~hppa ~loong ~m68k ~mips ppc ppc64 ~riscv ~s390 ~sparc x86" -IUSE="doc firebird mysql oci8 postgres +sqlite static-libs" +IUSE="doc mysql oci8 postgres +sqlite static-libs" -REQUIRED_USE="|| ( mysql postgres sqlite firebird oci8 )" -RESTRICT="firebird? ( bindist )" +REQUIRED_USE="|| ( mysql postgres sqlite oci8 )" RDEPEND=" >=dev-db/libdbi-0.9.0 - firebird? ( dev-db/firebird ) mysql? ( dev-db/mysql-connector-c:= ) postgres? ( dev-db/postgresql:* ) sqlite? ( dev-db/sqlite:3 ) @@ -60,7 +58,6 @@ src_configure() { use mysql && myconf+=" --with-mysql" use postgres && myconf+=" --with-pgsql" use sqlite && myconf+=" --with-sqlite3" - use firebird && myconf+=" --with-firebird" if use oci8; then [[ -z "${ORACLE_HOME}" ]] && die "\$ORACLE_HOME is not set!" myconf+=" --with-oracle-dir=${ORACLE_HOME} --with-oracle"