Gentoo Archives: gentoo-commits

From: Patrice Clement <monsieurp@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: dev-db/cpp-driver/
Date: Fri, 31 Aug 2018 22:13:03
Message-Id: 1535753552.94b2b8a10c2b8710a6059eba385544e893621e4c.monsieurp@gentoo
1 commit: 94b2b8a10c2b8710a6059eba385544e893621e4c
2 Author: Geaaru <geaaru <AT> gmail <DOT> com>
3 AuthorDate: Tue Aug 28 20:09:38 2018 +0000
4 Commit: Patrice Clement <monsieurp <AT> gentoo <DOT> org>
5 CommitDate: Fri Aug 31 22:12:32 2018 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=94b2b8a1
7
8 dev-db/cpp-driver: version bump to 2.9.0.
9
10 Package-Manager: Portage-2.3.40, Repoman-2.3.9
11 Closes: https://github.com/gentoo/gentoo/pull/9723
12
13 dev-db/cpp-driver/Manifest | 1 +
14 dev-db/cpp-driver/cpp-driver-2.9.0.ebuild | 28 ++++++++++++++++++++++++++++
15 2 files changed, 29 insertions(+)
16
17 diff --git a/dev-db/cpp-driver/Manifest b/dev-db/cpp-driver/Manifest
18 index c75a4ea63d7..ada7b3c9785 100644
19 --- a/dev-db/cpp-driver/Manifest
20 +++ b/dev-db/cpp-driver/Manifest
21 @@ -1 +1,2 @@
22 DIST cpp-driver-2.8.1.tar.gz 1526453 BLAKE2B 8ab4332f00a1da9f35be6fa8651ace54d71fbac76223c1665089096376dcfd6f5976beb83c25094f531786a4aa628aa4e288540ef7bcb8cc5221625dcd1ccf78 SHA512 1b303e874d6b24cb429ec92d6030880ad7d7b28b167a25c62060626c206f623863ecf58eab33e89b0efea4a474ca9500e1701b719ac203c76b0875c2b5d0a1c8
23 +DIST cpp-driver-2.9.0.tar.gz 9178108 BLAKE2B 22c51d050dc65303dd6b584f0a89e510905bf084ff5e45a543666675a4e0b904c11895c9a7dd3d0df2fb12c1e2e58e8530c4113706c8b2548adb0b6f9431419c SHA512 45c6d58b1d287d142c9d7d6b1e28114683648a3634f44b185208fa44da64d4c8a9d485b3956a0cf7429e96f74faa588de832de30265dfa17782ca90e8163a0c1
24
25 diff --git a/dev-db/cpp-driver/cpp-driver-2.9.0.ebuild b/dev-db/cpp-driver/cpp-driver-2.9.0.ebuild
26 new file mode 100644
27 index 00000000000..66d76de1def
28 --- /dev/null
29 +++ b/dev-db/cpp-driver/cpp-driver-2.9.0.ebuild
30 @@ -0,0 +1,28 @@
31 +# Copyright 1999-2018 Gentoo Foundation
32 +# Distributed under the terms of the GNU General Public License v2
33 +
34 +EAPI=6
35 +
36 +inherit cmake-utils
37 +
38 +DESCRIPTION="DataStax C/C++ Driver for Cassandra"
39 +HOMEPAGE="https://datastax.github.io/cpp-driver/"
40 +SRC_URI="https://github.com/datastax/${PN}/archive/${PV}.tar.gz -> ${P}.tar.gz"
41 +
42 +LICENSE="Apache-2.0"
43 +SLOT="0"
44 +KEYWORDS="~amd64 ~x86"
45 +IUSE="libressl ssl"
46 +
47 +RDEPEND="
48 + dev-libs/libuv:=
49 + ssl? (
50 + !libressl? ( dev-libs/openssl:= )
51 + libressl? ( dev-libs/libressl:= )
52 + )"
53 +DEPEND="${RDEPEND}"
54 +
55 +src_configure() {
56 + local mycmakeargs=( -DCASS_USE_OPENSSL=$(usex ssl) )
57 + cmake-utils_src_configure
58 +}