Gentoo Archives: gentoo-commits

From: Andreas Sturmlechner <asturm@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: dev-db/soci/
Date: Sun, 01 Jul 2018 00:04:08
Message-Id: 1530403415.bd35e01fc6da1bf8d32e164562a705f2f51e8940.asturm@gentoo
1 commit: bd35e01fc6da1bf8d32e164562a705f2f51e8940
2 Author: Andreas Sturmlechner <asturm <AT> gentoo <DOT> org>
3 AuthorDate: Sat Jun 30 21:31:15 2018 +0000
4 Commit: Andreas Sturmlechner <asturm <AT> gentoo <DOT> org>
5 CommitDate: Sun Jul 1 00:03:35 2018 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=bd35e01f
7
8 dev-db/soci: Drop old
9
10 Package-Manager: Portage-2.3.41, Repoman-2.3.9
11
12 dev-db/soci/Manifest | 1 -
13 dev-db/soci/soci-3.2.2.ebuild | 46 -------------------------------------------
14 2 files changed, 47 deletions(-)
15
16 diff --git a/dev-db/soci/Manifest b/dev-db/soci/Manifest
17 index 19e0dddd887..1f4e653a34d 100644
18 --- a/dev-db/soci/Manifest
19 +++ b/dev-db/soci/Manifest
20 @@ -1,2 +1 @@
21 -DIST soci-3.2.2.zip 518502 BLAKE2B 0e043c1390249e43a66d3c858178b3cfd70a5a53748f52bc3fc0688daf2b3e38a3bf682dbd48a7e40ef8c194d783169f5966f0f60166f858d21609da3fc1b234 SHA512 36fa977e8827ec546ec85be45d78bb21b2700ee7838d144e6f6ac91cc70242cbe8ce968092146e2b29d52fe1022b9287cff7465c156a49c0ffb1dde6d89964ab
22 DIST soci-3.2.3.zip 508929 BLAKE2B e1a83172391508506744b18ac0b18d69bec34bfbd31d9156b2cb786cdb7cdd8a99ace21d1286a2c4432ba18e18dedc4f390075a25a30fa2e45f36d802661ddb2 SHA512 dd9b7eaf535502e3230eada4d4d019963d2c9cf59b69fff5d466b4fc00976fa08f7b0199a0e4564a0395d0d30095b97aa1d613dfbaa329feb077ece3b0efacdf
23
24 diff --git a/dev-db/soci/soci-3.2.2.ebuild b/dev-db/soci/soci-3.2.2.ebuild
25 deleted file mode 100644
26 index 390012ef0f7..00000000000
27 --- a/dev-db/soci/soci-3.2.2.ebuild
28 +++ /dev/null
29 @@ -1,46 +0,0 @@
30 -# Copyright 1999-2017 Gentoo Foundation
31 -# Distributed under the terms of the GNU General Public License v2
32 -
33 -EAPI=5
34 -
35 -inherit cmake-utils
36 -
37 -KEYWORDS="~amd64 ~x86"
38 -
39 -DESCRIPTION="Makes the illusion of embedding SQL queries in the regular C++ code"
40 -HOMEPAGE="http://soci.sourceforge.net/"
41 -SRC_URI="mirror://sourceforge/${PN}/${P}.zip"
42 -LICENSE="Boost-1.0"
43 -SLOT="0"
44 -IUSE="boost doc +empty firebird mysql odbc oracle postgres sqlite"
45 -
46 -DEPEND="boost? ( dev-libs/boost )
47 - firebird? ( dev-db/firebird )
48 - mysql? ( virtual/mysql )
49 - odbc? ( dev-db/unixODBC )
50 - oracle? ( dev-db/oracle-instantclient-basic )
51 - postgres? ( dev-db/postgresql:= )
52 - sqlite? ( dev-db/sqlite:3 )
53 -"
54 -RDEPEND=${DEPEND}
55 -
56 -src_configure() {
57 - local mycmakeargs="$(cmake-utils_use_with boost )
58 - $(cmake-utils_use empty SOCI_EMPTY)
59 - $(cmake-utils_use_with firebird FIREBIRD)
60 - $(cmake-utils_use_with mysql MYSQL)
61 - $(cmake-utils_use_with odbc ODBC)
62 - $(cmake-utils_use_with oracle ORACLE)
63 - $(cmake-utils_use_with postgres POSTGRESQL)
64 - $(cmake-utils_use_with sqlite SQLITE3)
65 - -DWITH_DB2=OFF" #use MYCMAKEARGS if you want enable IBM DB2 support
66 - cmake-utils_src_configure
67 -}
68 -
69 -src_install() {
70 - cmake-utils_src_install
71 - dodoc AUTHORS CHANGES
72 - if use doc; then
73 - dohtml -r doc/*
74 - fi
75 -}