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 96AA0138334 for ; Thu, 8 Nov 2018 12:29:52 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 80DBFE09B5; Thu, 8 Nov 2018 12:29:51 +0000 (UTC) Received: from smtp.gentoo.org (dev.gentoo.org [IPv6:2001:470:ea4a:1:5054:ff:fec7:86e4]) (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 4D635E09B1 for ; Thu, 8 Nov 2018 12:29:50 +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 9C35B335CC8 for ; Thu, 8 Nov 2018 12:29:48 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id D55E944F for ; Thu, 8 Nov 2018 12:29:45 +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: <1541680113.7cf49874809450e15cdecb250f5f4cfec955e569.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.1.0-r1.ebuild X-VCS-Directories: dev-db/kdb/ X-VCS-Committer: asturm X-VCS-Committer-Name: Andreas Sturmlechner X-VCS-Revision: 7cf49874809450e15cdecb250f5f4cfec955e569 X-VCS-Branch: master Date: Thu, 8 Nov 2018 12:29:45 +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-Archives-Salt: 984a289b-c8cf-45bb-8c8c-cd494c6371ca X-Archives-Hash: 24b04aa4c570990587eb51f7510f089f commit: 7cf49874809450e15cdecb250f5f4cfec955e569 Author: Andreas Sturmlechner gentoo org> AuthorDate: Thu Nov 8 10:33:10 2018 +0000 Commit: Andreas Sturmlechner gentoo org> CommitDate: Thu Nov 8 12:28:33 2018 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=7cf49874 dev-db/kdb: Drop 3.1.0-r1 Package-Manager: Portage-2.3.51, Repoman-2.3.12 Signed-off-by: Andreas Sturmlechner gentoo.org> dev-db/kdb/kdb-3.1.0-r1.ebuild | 50 ------------------------------------------ 1 file changed, 50 deletions(-) diff --git a/dev-db/kdb/kdb-3.1.0-r1.ebuild b/dev-db/kdb/kdb-3.1.0-r1.ebuild deleted file mode 100644 index d4fa79db739..00000000000 --- a/dev-db/kdb/kdb-3.1.0-r1.ebuild +++ /dev/null @@ -1,50 +0,0 @@ -# Copyright 1999-2018 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 - -EAPI=6 - -PYTHON_COMPAT=( python2_7 python3_6 ) - -inherit kde5 python-any-r1 - -DESCRIPTION="Database connectivity and creation framework for various vendors" -[[ ${KDE_BUILD_TYPE} != live ]] && SRC_URI="mirror://kde/stable/${PN}/src/${P}.tar.xz" - -LICENSE="LGPL-2+" -SLOT="5/4" -KEYWORDS="amd64 x86" -IUSE="debug mysql postgres sqlite" - -RDEPEND=" - $(add_frameworks_dep kcoreaddons) - $(add_qt_dep qtgui) - $(add_qt_dep qtwidgets) - $(add_qt_dep qtxml) - dev-libs/icu:= - mysql? ( virtual/mysql ) - postgres? ( - $(add_qt_dep qtnetwork) - dev-db/postgresql:* - ) - sqlite? ( dev-db/sqlite:3 ) -" -DEPEND="${RDEPEND} - ${PYTHON_DEPS} - dev-qt/linguist-tools:5 -" - -pkg_setup() { - python-any-r1_pkg_setup - kde5_pkg_setup -} - -src_configure() { - local mycmakeargs=( - -DKDB_DEBUG_GUI=$(usex debug) - $(cmake-utils_use_find_package mysql MySQL) - $(cmake-utils_use_find_package postgres PostgreSQL) - $(cmake-utils_use_find_package sqlite Sqlite) - ) - - kde5_src_configure -}