Gentoo Archives: gentoo-commits

From: Yuan Liao <liaoyuan@×××××.com>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/proj/guru:dev commit in: dev-cpp/fizz/
Date: Fri, 01 Apr 2022 14:41:36
Message-Id: 1648822689.e9a3be3336390fae2754ade9bd8506afa83e2562.liaoyuan@gentoo
1 commit: e9a3be3336390fae2754ade9bd8506afa83e2562
2 Author: Yuan Liao <liaoyuan <AT> gmail <DOT> com>
3 AuthorDate: Fri Apr 1 14:18:07 2022 +0000
4 Commit: Yuan Liao <liaoyuan <AT> gmail <DOT> com>
5 CommitDate: Fri Apr 1 14:18:09 2022 +0000
6 URL: https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=e9a3be33
7
8 dev-cpp/fizz: Drop 2022.02.28.00
9
10 Dropping 2022.02.28.00 after dependency ~dev-cpp/folly-2022.02.28.00 has
11 been dropped from ::gentoo.
12
13 Signed-off-by: Yuan Liao <liaoyuan <AT> gmail.com>
14
15 dev-cpp/fizz/Manifest | 1 -
16 dev-cpp/fizz/fizz-2022.02.28.00.ebuild | 49 ----------------------------------
17 2 files changed, 50 deletions(-)
18
19 diff --git a/dev-cpp/fizz/Manifest b/dev-cpp/fizz/Manifest
20 index a3ac9534d..7e54932b0 100644
21 --- a/dev-cpp/fizz/Manifest
22 +++ b/dev-cpp/fizz/Manifest
23 @@ -1,2 +1 @@
24 -DIST fizz-2022.02.28.00.tar.gz 581059 BLAKE2B 31b086ca41db7919abdfc1fb8f88efe93f09ad59b5727ada2d04bd95f22f03bec7346de3944dad44d688b1281a5d789df2e134c0990dd1c751723b60791c1770 SHA512 ccfd493b04cca5e8e76e64dea2659b88ec1fe0dcdfa3b1133d46fe8d37abc4fc78710c0831c2038ce0806f7ebad47607aa7597f9ee8577b9bbd11436ff1cdeaf
25 DIST fizz-2022.03.21.00.tar.gz 581670 BLAKE2B 2dc9691abfaf646db56e047a74894b745102764c773b9f244c4b357b74b6d00d1a2548664a5e343f2c5f84458de36d453e99b9901c89bc621c54840a7b45b5e4 SHA512 81a7b764c2c2e17fd5df32a69ecb368eb01df04df6dbd1155a40b68fc39cda4f86ce81afc5c89425a5751ef7f4dbb8a40df8b5095685e72ce5e9043c0a74682e
26
27 diff --git a/dev-cpp/fizz/fizz-2022.02.28.00.ebuild b/dev-cpp/fizz/fizz-2022.02.28.00.ebuild
28 deleted file mode 100644
29 index 12e7ec567..000000000
30 --- a/dev-cpp/fizz/fizz-2022.02.28.00.ebuild
31 +++ /dev/null
32 @@ -1,49 +0,0 @@
33 -# Copyright 2021 Gentoo Authors
34 -# Distributed under the terms of the GNU General Public License v2
35 -
36 -EAPI=8
37 -
38 -inherit cmake
39 -
40 -DESCRIPTION="C++14 implementation of the TLS-1.3 standard"
41 -HOMEPAGE="https://github.com/facebookincubator/fizz"
42 -SRC_URI="https://github.com/facebookincubator/fizz/archive/v${PV}.tar.gz -> ${P}.tar.gz"
43 -
44 -LICENSE="BSD"
45 -SLOT="0"
46 -KEYWORDS="~amd64"
47 -IUSE="examples test"
48 -
49 -RDEPEND="
50 - ~dev-cpp/folly-${PV}:=
51 - dev-cpp/gflags
52 - dev-cpp/glog
53 - dev-libs/double-conversion
54 - dev-libs/libevent
55 - dev-libs/libfmt
56 - dev-libs/libsodium
57 - dev-libs/openssl:0=
58 -"
59 -#TODO: discover if gtest is linked
60 -DEPEND="
61 - ${RDEPEND}
62 - test? ( <dev-cpp/gtest-1.11.0 )
63 -"
64 -
65 -RESTRICT="!test? ( test )"
66 -CMAKE_USE_DIR="${S}/fizz"
67 -
68 -src_prepare() {
69 - cmake_src_prepare
70 - sed -i '/Sodium/d' fizz/cmake/fizz-config.cmake.in || die
71 -}
72 -
73 -src_configure() {
74 - local mycmakeargs=(
75 - -DBUILD_EXAMPLES=$(usex examples)
76 - -DBUILD_TESTS=$(usex test)
77 - -DLIB_INSTALL_DIR=$(get_libdir)
78 - )
79 -
80 - cmake_src_configure
81 -}