Gentoo Archives: gentoo-commits

From: Ronny Gutbrod <gentoo@××××××××.de>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/proj/guru:dev commit in: dev-cpp/trantor/
Date: Fri, 26 Aug 2022 13:18:06
Message-Id: 1661519830.d54e271402a60c54d6e6f78888dcad50740ba1fd.tastytea@gentoo
1 commit: d54e271402a60c54d6e6f78888dcad50740ba1fd
2 Author: Ronny (tastytea) Gutbrod <gentoo <AT> tastytea <DOT> de>
3 AuthorDate: Fri Aug 26 13:17:10 2022 +0000
4 Commit: Ronny Gutbrod <gentoo <AT> tastytea <DOT> de>
5 CommitDate: Fri Aug 26 13:17:10 2022 +0000
6 URL: https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=d54e2714
7
8 dev-cpp/trantor: drop 1.5.5
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.5.ebuild | 44 ------------------------------------
14 2 files changed, 45 deletions(-)
15
16 diff --git a/dev-cpp/trantor/Manifest b/dev-cpp/trantor/Manifest
17 index d9b9f8508..b79498b2c 100644
18 --- a/dev-cpp/trantor/Manifest
19 +++ b/dev-cpp/trantor/Manifest
20 @@ -1,2 +1 @@
21 -DIST trantor-1.5.5.tar.gz 106134 BLAKE2B 52af020c2b862532f5a473b7714654d5a1ea93415059aa3675e0c48d630a1b5ef43782a60ca1d09752c1ef9b90dfec19155af39673e25eb0c99dfc40a9dc0ddb SHA512 41068dcefcaf55908735126375b65a83a7d7085f30d5eb14e8d73fa255405ec77164c34b9ef0e5e6da3aeae3e66b9d57d4fca8901d63d4414bf8e857bd25dcd4
22 DIST trantor-1.5.6.tar.gz 109719 BLAKE2B 5465f1cddd014a9dee4dd1ea1f8e6f36a1eef3a16424305ff2102fb489838260b415d92e43d72a3fe99db924946987e8e8c64f6720488c2e9e0f42b1b031ca0a SHA512 9c9827b1640fa23f2941c6c10ffe692d4207595de1cb149f94140c0f20d4fe6c45e3efcc50d464bd40aff80443dfe3bdd8db263302755ab8f639a920e497c0b3
23
24 diff --git a/dev-cpp/trantor/trantor-1.5.5.ebuild b/dev-cpp/trantor/trantor-1.5.5.ebuild
25 deleted file mode 100644
26 index a75b7b087..000000000
27 --- a/dev-cpp/trantor/trantor-1.5.5.ebuild
28 +++ /dev/null
29 @@ -1,44 +0,0 @@
30 -# Copyright 2021-2022 Gentoo Authors
31 -# Distributed under the terms of the GNU General Public License v2
32 -
33 -EAPI=8
34 -
35 -inherit cmake
36 -
37 -DESCRIPTION="Non-blocking I/O tcp network lib based on c++14/17"
38 -HOMEPAGE="https://github.com/an-tao/trantor"
39 -SRC_URI="https://github.com/an-tao/trantor/archive/refs/tags/v${PV}.tar.gz -> ${P}.tar.gz"
40 -
41 -LICENSE="BSD"
42 -SLOT="0/${PV}"
43 -KEYWORDS="~amd64"
44 -IUSE="adns doc +ssl test"
45 -RESTRICT="!test? ( test )"
46 -
47 -RDEPEND="
48 - adns? ( net-dns/c-ares )
49 - ssl? ( dev-libs/openssl )
50 -"
51 -DEPEND="
52 - ${RDEPEND}
53 - test? ( dev-cpp/gtest )
54 -"
55 -BDEPEND="doc? ( app-doc/doxygen )"
56 -
57 -src_configure() {
58 - local -a mycmakeargs=(
59 - "-DBUILD_TRANTOR_SHARED=YES"
60 - "-DBUILD_DOC=$(usex doc)"
61 - "-DBUILD_TESTING=$(usex test)"
62 - "-DBUILD_C-ARES=$(usex adns)"
63 - "$(cmake_use_find_package ssl OpenSSL)"
64 - )
65 -
66 - cmake_src_configure
67 -}
68 -
69 -src_install() {
70 - use doc && HTML_DOCS="${BUILD_DIR}/docs/trantor/html/*"
71 -
72 - cmake_src_install
73 -}