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.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id 0E0F713835A for ; Fri, 19 Mar 2021 21:43:35 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 46442E08EF; Fri, 19 Mar 2021 21:43:34 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 2E57AE08EF for ; Fri, 19 Mar 2021 21:43:34 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 32458340C9A for ; Fri, 19 Mar 2021 21:43:33 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 92AC74A5 for ; Fri, 19 Mar 2021 21:43:31 +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: <1616190202.07dc19427b95b7e7adbbd6b32cd38afe5a27cc3f.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-r1.ebuild X-VCS-Directories: dev-db/libdbi-drivers/ X-VCS-Committer: sam X-VCS-Committer-Name: Sam James X-VCS-Revision: 07dc19427b95b7e7adbbd6b32cd38afe5a27cc3f X-VCS-Branch: master Date: Fri, 19 Mar 2021 21:43:31 +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: b5a2ecf8-328e-4257-8151-16c0e0054944 X-Archives-Hash: b28705a91cfdf4546921473c51cce042 commit: 07dc19427b95b7e7adbbd6b32cd38afe5a27cc3f Author: Sam James gentoo org> AuthorDate: Fri Mar 19 21:34:48 2021 +0000 Commit: Sam James gentoo org> CommitDate: Fri Mar 19 21:43:22 2021 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=07dc1942 dev-db/libdbi-drivers: tidy ebuild Signed-off-by: Sam James gentoo.org> .../libdbi-drivers/libdbi-drivers-0.9.0-r1.ebuild | 21 +++++++++++---------- 1 file changed, 11 insertions(+), 10 deletions(-) diff --git a/dev-db/libdbi-drivers/libdbi-drivers-0.9.0-r1.ebuild b/dev-db/libdbi-drivers/libdbi-drivers-0.9.0-r1.ebuild index 81c597acfdf..f7695f3a433 100644 --- a/dev-db/libdbi-drivers/libdbi-drivers-0.9.0-r1.ebuild +++ b/dev-db/libdbi-drivers/libdbi-drivers-0.9.0-r1.ebuild @@ -1,4 +1,4 @@ -# Copyright 1999-2020 Gentoo Authors +# Copyright 1999-2021 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 EAPI=7 @@ -6,13 +6,14 @@ EAPI=7 inherit autotools DESCRIPTION="The libdbi-drivers project maintains drivers for libdbi" -SRC_URI="mirror://sourceforge/project/${PN}/${PN}/${P}/${P}.tar.gz" HOMEPAGE="http://libdbi-drivers.sourceforge.net/" -LICENSE="LGPL-2.1" +SRC_URI="mirror://sourceforge/project/${PN}/${PN}/${P}/${P}.tar.gz" -IUSE="doc firebird mysql oci8 postgres +sqlite static-libs" +LICENSE="LGPL-2.1" +SLOT="0" KEYWORDS="~alpha amd64 arm arm64 ~hppa ~ia64 ~m68k ~mips ppc ppc64 s390 sparc x86" -SLOT=0 +IUSE="doc firebird mysql oci8 postgres +sqlite static-libs" + REQUIRED_USE="|| ( mysql postgres sqlite firebird oci8 )" RESTRICT="firebird? ( bindist )" @@ -29,10 +30,10 @@ BDEPEND="doc? ( app-text/openjade )" DOCS=( AUTHORS ChangeLog NEWS README README.osx TODO ) PATCHES=( - #"${FILESDIR}"/${P}-fix-ac-macro.patch \ - #"${FILESDIR}"/${PN}-0.8.3-oracle-build-fix.patch \ - #"${FILESDIR}"/${PN}-0.8.3-firebird-fix.patch - "${FILESDIR}"/${PN}-0.9.0-doc-build-fix.patch + #"${FILESDIR}"/${P}-fix-ac-macro.patch + #"${FILESDIR}"/${PN}-0.8.3-oracle-build-fix.patch + #"${FILESDIR}"/${PN}-0.8.3-firebird-fix.patch + "${FILESDIR}"/${PN}-0.9.0-doc-build-fix.patch ) pkg_setup() { @@ -83,5 +84,5 @@ src_test() { src_install() { default - find "${D}" -name '*.la' -type f -delete || die + find "${ED}" -name '*.la' -type f -delete || die }