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 7B6B01382C5 for ; Sat, 22 May 2021 16:25:12 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id BF048E0837; Sat, 22 May 2021 16:25:11 +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 A00FCE0837 for ; Sat, 22 May 2021 16:25:11 +0000 (UTC) Received: from oystercatcher.gentoo.org (unknown [IPv6:2a01:4f8:202:4333:225:90ff:fed9:fc84]) (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 87487335D0D for ; Sat, 22 May 2021 16:25:10 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 3B6A74A0 for ; Sat, 22 May 2021 16:25:09 +0000 (UTC) From: "Andreas Sturmlechner" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Andreas Sturmlechner" Message-ID: <1621700700.705571725cdbf0efaf883159de363b225f97ada1.asturm@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-db/kdb/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-db/kdb/kdb-3.2.0.ebuild X-VCS-Directories: dev-db/kdb/ X-VCS-Committer: asturm X-VCS-Committer-Name: Andreas Sturmlechner X-VCS-Revision: 705571725cdbf0efaf883159de363b225f97ada1 X-VCS-Branch: master Date: Sat, 22 May 2021 16:25:09 +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: ee465443-bb38-4a82-b82f-5b10488bf93b X-Archives-Hash: a9cc8a53bbacda2e6448e094ab0f7943 commit: 705571725cdbf0efaf883159de363b225f97ada1 Author: Andreas Sturmlechner gentoo org> AuthorDate: Sat May 22 16:01:20 2021 +0000 Commit: Andreas Sturmlechner gentoo org> CommitDate: Sat May 22 16:25:00 2021 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=70557172 dev-db/kdb: Drop 3.2.0 (r0) Package-Manager: Portage-3.0.18, Repoman-3.0.3 Signed-off-by: Andreas Sturmlechner gentoo.org> dev-db/kdb/kdb-3.2.0.ebuild | 63 --------------------------------------------- 1 file changed, 63 deletions(-) diff --git a/dev-db/kdb/kdb-3.2.0.ebuild b/dev-db/kdb/kdb-3.2.0.ebuild deleted file mode 100644 index 65db2faf69e..00000000000 --- a/dev-db/kdb/kdb-3.2.0.ebuild +++ /dev/null @@ -1,63 +0,0 @@ -# Copyright 1999-2020 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=7 - -ECM_QTHELP="true" -ECM_TEST="true" -PYTHON_COMPAT=( python3_{7,8,9} ) -KFMIN=5.60.0 -QTMIN=5.12.3 -inherit ecm kde.org python-any-r1 - -DESCRIPTION="Database connectivity and creation framework for various vendors" -HOMEPAGE="https://community.kde.org/KDb" - -if [[ ${KDE_BUILD_TYPE} = release ]]; then - SRC_URI="mirror://kde/stable/${PN}/src/${P}.tar.xz" - KEYWORDS="amd64 x86" -fi - -LICENSE="LGPL-2+" -SLOT="5/4" -IUSE="debug mysql postgres sqlite" - -BDEPEND="${PYTHON_DEPS} - dev-qt/linguist-tools:5 -" -DEPEND=" - dev-libs/icu:= - >=dev-qt/qtgui-${QTMIN}:5 - >=dev-qt/qtnetwork-${QTMIN}:5 - >=dev-qt/qtwidgets-${QTMIN}:5 - >=dev-qt/qtxml-${QTMIN}:5 - >=kde-frameworks/kcoreaddons-${KFMIN}:5 - mysql? ( dev-db/mysql-connector-c:= ) - postgres? ( - >=dev-qt/qtnetwork-${QTMIN}:5 - dev-db/postgresql:* - ) - sqlite? ( dev-db/sqlite:3 ) -" -RDEPEND="${DEPEND}" - -PATCHES=( - "${FILESDIR}"/${P}-cmake-pg12.patch - "${FILESDIR}"/${P}-build-w-pg12.patch -) - -pkg_setup() { - python-any-r1_pkg_setup - ecm_pkg_setup -} - -src_configure() { - local mycmakeargs=( - -DKDB_DEBUG_GUI=$(usex debug) - $(cmake_use_find_package mysql MySQL) - $(cmake_use_find_package postgres PostgreSQL) - $(cmake_use_find_package sqlite Sqlite) - ) - - ecm_src_configure -}