Gentoo Archives: gentoo-commits

From: Andrew Ammerlaan <andrewammerlaan@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/proj/guru:master commit in: dev-cpp/trantor/
Date: Wed, 01 Dec 2021 19:34:54
Message-Id: 1638186945.1c000f9110e7cdcea88883c6c76324903e64f0c1.andrewammerlaan@gentoo
1 commit: 1c000f9110e7cdcea88883c6c76324903e64f0c1
2 Author: Ronny (tastytea) Gutbrod <gentoo <AT> tastytea <DOT> de>
3 AuthorDate: Mon Nov 29 09:53:53 2021 +0000
4 Commit: Andrew Ammerlaan <andrewammerlaan <AT> gentoo <DOT> org>
5 CommitDate: Mon Nov 29 11:55:45 2021 +0000
6 URL: https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=1c000f91
7
8 dev-cpp/trantor: Version bump 1.5.3.
9
10 Signed-off-by: Ronny (tastytea) Gutbrod <gentoo <AT> tastytea.de>
11
12 dev-cpp/trantor/Manifest | 1 +
13 dev-cpp/trantor/trantor-1.5.3.ebuild | 49 ++++++++++++++++++++++++++++++++++++
14 2 files changed, 50 insertions(+)
15
16 diff --git a/dev-cpp/trantor/Manifest b/dev-cpp/trantor/Manifest
17 index 6121d49a9..a816340ed 100644
18 --- a/dev-cpp/trantor/Manifest
19 +++ b/dev-cpp/trantor/Manifest
20 @@ -1,2 +1,3 @@
21 DIST trantor-1.5.1.tar.gz 102696 BLAKE2B 7670b2e2bb56b703aa387df463433261cff33b5a8682681071ff5159d14a516e11faebde7e2431232ba3651f6420a017491a7468ce3f90c4c099284808e27171 SHA512 9f6664abc94943598805192ee09a98340e6e20efb15e448aac5e21480f1798b0991782d18766f5ef54399251d4980c2f68aeda3136c7e058e3c31623c8f7ce3f
22 DIST trantor-1.5.2.tar.gz 104534 BLAKE2B d6c5a1d2eff46f5ddcd2d31d3908ee0ac71c96fde097eb3f46ec368f4292604c2dd0689018c9c7272f1a8479d908e6c486776689d517513c6e15b7392e0c7376 SHA512 e5977023c7b435bb7c9041a57e9b4488f34aa977e81709b3f20ae2c56ff6920ef8a4c64813be36705465ef87015c678537e22e349d1408aeb27b33f80eb38f1b
23 +DIST trantor-1.5.3.tar.gz 104794 BLAKE2B 47cebfc81543d050aa26e9aa0ec2fc9a30311ef25ab750dfe0086a917cc6c5588029b839b6c6205c7a23511f570e9d1dd0cbfdb8ef6a6769ee2d06095862c12a SHA512 2d032c59ad1b57bb1711fe99436fbc8eec5400d91bf310986cb4985e2c2ce1143844701a67241d0fe8dc7ab706b828feded3138aef8cf9d5620e581a1a770079
24
25 diff --git a/dev-cpp/trantor/trantor-1.5.3.ebuild b/dev-cpp/trantor/trantor-1.5.3.ebuild
26 new file mode 100644
27 index 000000000..ab1fc953c
28 --- /dev/null
29 +++ b/dev-cpp/trantor/trantor-1.5.3.ebuild
30 @@ -0,0 +1,49 @@
31 +# Copyright 2021 Gentoo Authors
32 +# Distributed under the terms of the GNU General Public License v2
33 +
34 +EAPI=8
35 +
36 +inherit cmake
37 +
38 +DESCRIPTION="Non-blocking I/O tcp network lib based on c++14/17"
39 +HOMEPAGE="https://github.com/an-tao/trantor"
40 +SRC_URI="https://github.com/an-tao/trantor/archive/refs/tags/v${PV}.tar.gz -> ${P}.tar.gz"
41 +
42 +LICENSE="BSD"
43 +SLOT="0"
44 +KEYWORDS="~amd64"
45 +IUSE="adns doc +ssl test"
46 +RESTRICT="!test? ( test )"
47 +
48 +RDEPEND="
49 + adns? ( net-dns/c-ares )
50 + ssl? ( dev-libs/openssl )
51 +"
52 +DEPEND="
53 + ${RDEPEND}
54 + test? ( dev-cpp/gtest )
55 +"
56 +BDEPEND="doc? ( app-doc/doxygen )"
57 +
58 +src_prepare() {
59 + use ssl || sed -i '/find_package(OpenSSL)/d' CMakeLists.txt || die
60 +
61 + cmake_src_prepare
62 +}
63 +
64 +src_configure() {
65 + local -a mycmakeargs=(
66 + "-DBUILD_TRANTOR_SHARED=YES"
67 + "-DBUILD_DOC=$(usex doc)"
68 + "-DBUILD_TESTING=$(usex test)"
69 + "-DBUILD_C-ARES=$(usex adns)"
70 + )
71 +
72 + cmake_src_configure
73 +}
74 +
75 +src_install() {
76 + use doc && HTML_DOCS="${BUILD_DIR}/docs/trantor/html/*"
77 +
78 + cmake_src_install
79 +}