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-libs/capnproto/
Date: Wed, 19 Jan 2022 09:49:54
Message-Id: 1642585781.f9ebd941a5c3fb80b10589bedf5b25415fef1db2.asturm@gentoo
1 commit: f9ebd941a5c3fb80b10589bedf5b25415fef1db2
2 Author: Andreas Sturmlechner <asturm <AT> gentoo <DOT> org>
3 AuthorDate: Wed Jan 19 09:46:43 2022 +0000
4 Commit: Andreas Sturmlechner <asturm <AT> gentoo <DOT> org>
5 CommitDate: Wed Jan 19 09:49:41 2022 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=f9ebd941
7
8 dev-libs/capnproto: 0.9.1 version bump, cmake, EAPI-8
9
10 No revdep use of static-libs so no effort to keep it.
11
12 Bug: https://bugs.gentoo.org/751754
13 Closes: https://bugs.gentoo.org/827845
14 Package-Manager: Portage-3.0.28, Repoman-3.0.3
15 Signed-off-by: Andreas Sturmlechner <asturm <AT> gentoo.org>
16
17 dev-libs/capnproto/Manifest | 1 +
18 dev-libs/capnproto/capnproto-0.9.1.ebuild | 39 +++++++++++++++++++++++++++++++
19 2 files changed, 40 insertions(+)
20
21 diff --git a/dev-libs/capnproto/Manifest b/dev-libs/capnproto/Manifest
22 index 1beec3cfb268..d4db69afc68d 100644
23 --- a/dev-libs/capnproto/Manifest
24 +++ b/dev-libs/capnproto/Manifest
25 @@ -1,2 +1,3 @@
26 DIST capnproto-0.7.0.tar.gz 1983172 BLAKE2B d88b5f8e3278f8e3aceccdc459001b99328b0440812352dcb6b54bd11e18aa7fee6d337252841c86e9c3eb1afcdbd99884c965156d6cec37e3c0996c9ec1241f SHA512 a3ea278ded6a866759c0517d16b99bd38ffea1c163ce63a3604b752d8bdaafbc38a600de94afe12db35e7f7f06e29cc94c911dc2e0ecec6fe1185452df2a2bd3
27 DIST capnproto-0.8.0.tar.gz 2121249 BLAKE2B 6d4ef9adb026a8ea8bc558bed1f8ce910e9c3b050ad0ac7ebd4be323cc1709a6b08956d4d2f39daee5c6485438f64695a028ea198aaae8a6c366316f10b1a64f SHA512 a3b87d47f4c160c3c72304539c3d2a6836488a50d1014c9f0eb95c112dc1e0f85b3158d26c248eff464205388ea61733c45ba10dc5441e5dd04064ba2c7970e6
28 +DIST capnproto-0.9.1.tar.gz 2238849 BLAKE2B f8de56c7f79b0ddad35f3e8fec7740510ca2328e4ddc633a71420901d3fc44df44d807c3965213dfc2535bbe03832c5164242d33cd0bff901d6f288fb62bab21 SHA512 bdc5960f26214139744d768ca4558b085e2d359c375a8849ca532a4c458a2daf0ee1a1f4d00745de5abf353aa1e4084a2d85e5523006f23f591f21fac2d847fd
29
30 diff --git a/dev-libs/capnproto/capnproto-0.9.1.ebuild b/dev-libs/capnproto/capnproto-0.9.1.ebuild
31 new file mode 100644
32 index 000000000000..ff77790127b8
33 --- /dev/null
34 +++ b/dev-libs/capnproto/capnproto-0.9.1.ebuild
35 @@ -0,0 +1,39 @@
36 +# Copyright 1999-2022 Gentoo Authors
37 +# Distributed under the terms of the GNU General Public License v2
38 +
39 +EAPI=8
40 +
41 +inherit cmake
42 +
43 +DESCRIPTION="RPC/Serialization system with capabilities support"
44 +HOMEPAGE="https://capnproto.org"
45 +SRC_URI="https://github.com/sandstorm-io/capnproto/archive/v${PV}.tar.gz -> ${P}.tar.gz"
46 +S="${WORKDIR}"/${P}/c++
47 +
48 +LICENSE="MIT"
49 +SLOT="0/091"
50 +KEYWORDS="~amd64 ~arm ~arm64 ~ppc ~ppc64 ~x86"
51 +IUSE="+ssl test zlib"
52 +
53 +RESTRICT="!test? ( test )"
54 +
55 +RDEPEND="
56 + ssl? ( dev-libs/openssl:0= )
57 + zlib? ( sys-libs/zlib:0= )
58 +"
59 +DEPEND="${RDEPEND}
60 + test? ( dev-cpp/gtest )
61 +"
62 +
63 +src_configure() {
64 + local mycmakeargs=(
65 + -DWITH_OPENSSL=$(usex ssl)
66 + -DBUILD_TESTING=$(usex test)
67 + $(cmake_use_find_package zlib ZLIB)
68 + )
69 + cmake_src_configure
70 +}
71 +
72 +src_test() {
73 + cmake_build check
74 +}