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 1EC701395E3 for ; Wed, 9 Nov 2016 13:14:36 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id CC9EDE09AF; Wed, 9 Nov 2016 13:14:33 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id A71ECE09AF for ; Wed, 9 Nov 2016 13:14:33 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id C256C341491 for ; Wed, 9 Nov 2016 13:14:32 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 29B7C24B5 for ; Wed, 9 Nov 2016 13:14:31 +0000 (UTC) From: "Michael Palimaka" 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 Palimaka" Message-ID: <1478697257.d8a96e68ff5ccbe80ab8c409c35d798bac13827f.kensington@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-db/kdb/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-db/kdb/Manifest dev-db/kdb/kdb-3.0.0.ebuild dev-db/kdb/metadata.xml X-VCS-Directories: dev-db/kdb/ X-VCS-Committer: kensington X-VCS-Committer-Name: Michael Palimaka X-VCS-Revision: d8a96e68ff5ccbe80ab8c409c35d798bac13827f X-VCS-Branch: master Date: Wed, 9 Nov 2016 13:14: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-Archives-Salt: 981d67c8-df3c-4a23-ba2d-703c4276737a X-Archives-Hash: 0e18c012e8add612b582f513c224f16b commit: d8a96e68ff5ccbe80ab8c409c35d798bac13827f Author: Michael Palimaka gentoo org> AuthorDate: Wed Nov 9 13:11:48 2016 +0000 Commit: Michael Palimaka gentoo org> CommitDate: Wed Nov 9 13:14:17 2016 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=d8a96e68 dev-db/kdb: new package Package-Manager: portage-2.3.2 dev-db/kdb/Manifest | 1 + dev-db/kdb/kdb-3.0.0.ebuild | 42 ++++++++++++++++++++++++++++++++++++++++++ dev-db/kdb/metadata.xml | 8 ++++++++ 3 files changed, 51 insertions(+) diff --git a/dev-db/kdb/Manifest b/dev-db/kdb/Manifest new file mode 100644 index 00000000..8ce005e --- /dev/null +++ b/dev-db/kdb/Manifest @@ -0,0 +1 @@ +DIST kdb-3.0.0.tar.xz 478500 SHA256 b7dcc4f90a6adf069faa725bb2182639b59ff4f570f7fd1b790c3012c68913a0 SHA512 68fbb9e13c3bd702f398ae554d9b436973aab29d9ce71fb350b962cc9ab9bfdf096e718d46d1b8ea69f265ee8e7094df9923aebfaa1609fda45d54bd9cf0723e WHIRLPOOL bbc471b5818f3b28f1aafd636996e4c4d6460541557dc3d5b2231e0c1dff622b4b69834e432d226f3aaa411e9c0d2ad30f1f1a2b2bc3976bfde239d823f1a456 diff --git a/dev-db/kdb/kdb-3.0.0.ebuild b/dev-db/kdb/kdb-3.0.0.ebuild new file mode 100644 index 00000000..59c4ba2 --- /dev/null +++ b/dev-db/kdb/kdb-3.0.0.ebuild @@ -0,0 +1,42 @@ +# Copyright 1999-2016 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Id$ + +EAPI=6 + +PYTHON_COMPAT=( python2_7 ) + +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+" +KEYWORDS="~amd64 ~x86" +IUSE="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? ( dev-db/postgresql:* ) + sqlite? ( dev-db/sqlite:3 ) +" +DEPEND="${RDEPEND} + ${PYTHON_DEPS} +" + +REQUIRED_USE="${PYTHON_REQUIRED_USE}" + +src_configure() { + local mycmakeargs=( + $(cmake-utils_use_find_package mysql MySQL) + $(cmake-utils_use_find_package postgres PostgreSQL) + $(cmake-utils_use_find_package sqlite Sqlite) + ) + + kde5_src_configure +} diff --git a/dev-db/kdb/metadata.xml b/dev-db/kdb/metadata.xml new file mode 100644 index 00000000..2fdbf33 --- /dev/null +++ b/dev-db/kdb/metadata.xml @@ -0,0 +1,8 @@ + + + + + kde@gentoo.org + Gentoo KDE Project + +