From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (unknown [208.92.234.80]) by finch.gentoo.org (Postfix) with ESMTP id 8BE741381FA for ; Mon, 12 May 2014 02:18:16 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id D8BB6E0A88; Mon, 12 May 2014 02:18:10 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id A2146E0A83 for ; Mon, 12 May 2014 02:18:09 +0000 (UTC) Received: from spoonbill.gentoo.org (unknown [81.93.255.5]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 82C4533FAAE for ; Mon, 12 May 2014 02:18:08 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by spoonbill.gentoo.org (Postfix) with ESMTP id 2C9FF181A9 for ; Mon, 12 May 2014 02:18:07 +0000 (UTC) From: "Christoph Junghans" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Christoph Junghans" Message-ID: <1399689139.c0580b628598d106b6cd6cc304bd2767156c8b36.ottxor@gentoo> Subject: [gentoo-commits] proj/sci:master commit in: dev-db/cppdb/ X-VCS-Repository: proj/sci X-VCS-Files: dev-db/cppdb/ChangeLog dev-db/cppdb/cppdb-0.3.1-r1.ebuild dev-db/cppdb/metadata.xml X-VCS-Directories: dev-db/cppdb/ X-VCS-Committer: ottxor X-VCS-Committer-Name: Christoph Junghans X-VCS-Revision: c0580b628598d106b6cd6cc304bd2767156c8b36 X-VCS-Branch: master Date: Mon, 12 May 2014 02:18:07 +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: 37b747a8-1168-4a6c-876e-dada20378eb1 X-Archives-Hash: 3ebf58bbd57021b8fe501d39ed3c1926 commit: c0580b628598d106b6cd6cc304bd2767156c8b36 Author: Jauhien Piatlicki gentoo org> AuthorDate: Sat May 10 02:32:19 2014 +0000 Commit: Christoph Junghans gentoo org> CommitDate: Sat May 10 02:32:19 2014 +0000 URL: http://git.overlays.gentoo.org/gitweb/?p=proj/sci.git;a=commit;h=c0580b62 dev-db/cppdb: imported to the main tree --- dev-db/cppdb/ChangeLog | 26 -------------------- dev-db/cppdb/cppdb-0.3.1-r1.ebuild | 50 -------------------------------------- dev-db/cppdb/metadata.xml | 14 ----------- 3 files changed, 90 deletions(-) diff --git a/dev-db/cppdb/ChangeLog b/dev-db/cppdb/ChangeLog deleted file mode 100644 index 8017ba4..0000000 --- a/dev-db/cppdb/ChangeLog +++ /dev/null @@ -1,26 +0,0 @@ -# ChangeLog for dev-db/cppdb -# Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2 -# $Header: $ - - 18 Mar 2013; Justin Lecher +cppdb-0.3.1-r1.ebuild, - +metadata.xml: - Import from sunrise - -*cppdb-0.3.1-r1 (08 Mar 2013) - - 08 Mar 2013; Patrick Lauer -cppdb-0.3.1.ebuild, - +cppdb-0.3.1-r1.ebuild: - Add ~amd64 keyword, EAPI bump - -*cppdb-0.3.1 (28 Jun 2012) - - 28 Jun 2012; Jauhien Piatlicki (jauhien) piatlicki@gmail.com - -cppdb-0.3.0.ebuild, +cppdb-0.3.1.ebuild: - Version bump: dev-db/cppdb-0.3.1 - -*cppdb-0.3.0 (03 Apr 2012) - - 03 Apr 2012; Jauhien Piatlicki (jauhien) piatlicki@gmail.com - +cppdb-0.3.0.ebuild, +metadata.xml: - New ebuild for bug #410713 thanks to people from #gentoo-sunrise - diff --git a/dev-db/cppdb/cppdb-0.3.1-r1.ebuild b/dev-db/cppdb/cppdb-0.3.1-r1.ebuild deleted file mode 100644 index 2102857..0000000 --- a/dev-db/cppdb/cppdb-0.3.1-r1.ebuild +++ /dev/null @@ -1,50 +0,0 @@ -# Copyright 1999-2014 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 -# $Header: $ - -EAPI=5 - -inherit cmake-utils multilib - -DESCRIPTION="An SQL connectivity library for platform and database independent connectivity" -HOMEPAGE="http://cppcms.com/sql/cppdb/" -SRC_URI="mirror://sourceforge/cppcms/${P}.tar.bz2" - -LICENSE="|| ( Boost-1.0 MIT )" -SLOT="0" -KEYWORDS="~amd64 ~x86" -IUSE="doc examples mysql mysql_internal odbc odbc_internal postgres postgres_internal sqlite sqlite_internal" - -DEPEND=" - mysql? ( virtual/mysql ) - odbc? ( dev-db/unixODBC ) - postgres? ( dev-db/postgresql-base ) - sqlite? ( dev-db/sqlite:3 )" -RDEPEND="${DEPEND}" - -src_configure() { - local mycmakeargs=" - $(cmake-utils_use_disable mysql MYSQL) - $(cmake-utils_use mysql_internal MYSQL_BACKEND_INTERNAL) - $(cmake-utils_use_disable odbc ODBC) - $(cmake-utils_use odbc_internal ODBC_BACKEND_INTERNAL) - $(cmake-utils_use_disable postgres PQ) - $(cmake-utils_use postgres_internal PQ_BACKEND_INTERNAL) - $(cmake-utils_use_disable sqlite SQLITE) - $(cmake-utils_use sqlite_internal SQLITE_BACKEND_INTERNAL) - -DLIBDIR=$(get_libdir)" - cmake-utils_src_configure -} - -src_install() { - cmake-utils_src_install - if use doc; then - rm docs/build.txt || die - dodoc -r docs/* - dohtml -r html/* - fi - if use examples; then - insinto /usr/share/doc/${PF} - doins -r examples - fi -} diff --git a/dev-db/cppdb/metadata.xml b/dev-db/cppdb/metadata.xml deleted file mode 100644 index 1d2ef4b..0000000 --- a/dev-db/cppdb/metadata.xml +++ /dev/null @@ -1,14 +0,0 @@ - - - -sci-chemistry - - maintainer-wanted@gentoo.org - - - Don't build a separate mysql loadable module but rather build it into the cppdb library itself - Don't build a separate postgresql loadable module but rather build it into the cppdb library itself - Don't build a separate odbc loadable module but rather build it into the cppdb library itself - Don't build a separate sqlite3 loadable module but rather build it into the cppdb library itself - -