Gentoo Archives: gentoo-commits

From: Alessandro Barbieri <lssndrbarbieri@×××××.com>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/proj/guru:dev commit in: dev-cpp/fbthrift/
Date: Tue, 05 Oct 2021 20:50:59
Message-Id: 1633467053.ea36a61dd9bf58eee20c8d16fb0e4dbae4903442.Alessandro-Barbieri@gentoo
1 commit: ea36a61dd9bf58eee20c8d16fb0e4dbae4903442
2 Author: Alessandro Barbieri <lssndrbarbieri <AT> gmail <DOT> com>
3 AuthorDate: Tue Oct 5 20:48:35 2021 +0000
4 Commit: Alessandro Barbieri <lssndrbarbieri <AT> gmail <DOT> com>
5 CommitDate: Tue Oct 5 20:50:53 2021 +0000
6 URL: https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=ea36a61d
7
8 dev-cpp/fbthrift: add 2021.10.04.00
9
10 Signed-off-by: Alessandro Barbieri <lssndrbarbieri <AT> gmail.com>
11
12 dev-cpp/fbthrift/Manifest | 1 +
13 dev-cpp/fbthrift/fbthrift-2021.10.04.00.ebuild | 38 ++++++++++++++++++++++++++
14 2 files changed, 39 insertions(+)
15
16 diff --git a/dev-cpp/fbthrift/Manifest b/dev-cpp/fbthrift/Manifest
17 index dcd8c044f..01b0015b5 100644
18 --- a/dev-cpp/fbthrift/Manifest
19 +++ b/dev-cpp/fbthrift/Manifest
20 @@ -1 +1,2 @@
21 DIST fbthrift-2021.08.02.00.tar.gz 5833339 BLAKE2B 647f582396a88ae616162e011bc77c15d4e08d0b511f12684d4b731a2108c370971d7ec52f8ac0c84ff9e94b228e69f4fca29b1ca0747e39bbcf5d58cd491b2a SHA512 a416f9a09a62293fc756d631355787fd0faed639d77986a654610c3fc49344e1f0184d2333c79bd49ac9a450be6d2542317beb512e72d99179206db0cc5e7467
22 +DIST fbthrift-2021.10.04.00.tar.gz 5974931 BLAKE2B f268dae6368c8619d877d41bf4eaa018110e002da6b5a57a573d3345da62d5dfc13310e84792ad59d3c9e11e70e67eced7b441bfad67fe23afe1a779e485030c SHA512 5b1c7f2e787d198bcf8664e38714e860fbeda75aa1c2cd35e6dde10493451d58241693c81fbf7680725747e9ccb958728dc1ed27d161c466ee18e00ca2d25b2f
23
24 diff --git a/dev-cpp/fbthrift/fbthrift-2021.10.04.00.ebuild b/dev-cpp/fbthrift/fbthrift-2021.10.04.00.ebuild
25 new file mode 100644
26 index 000000000..3320d823e
27 --- /dev/null
28 +++ b/dev-cpp/fbthrift/fbthrift-2021.10.04.00.ebuild
29 @@ -0,0 +1,38 @@
30 +# Copyright 1999-2021 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="Facebook's branch of Apache Thrift, including a new C++ server"
38 +HOMEPAGE="https://github.com/facebook/fbthrift"
39 +SRC_URI="https://github.com/facebook/fbthrift/archive/v${PV}.tar.gz -> ${P}.tar.gz"
40 +
41 +LICENSE="Apache-2.0"
42 +SLOT="0"
43 +KEYWORDS="~amd64"
44 +
45 +RDEPEND="
46 + app-arch/zstd
47 + ~dev-cpp/fizz-${PV}:=
48 + ~dev-cpp/folly-${PV}:=
49 + dev-cpp/gflags
50 + dev-cpp/glog
51 + ~dev-cpp/wangle-${PV}:=
52 + dev-libs/libfmt
53 + dev-libs/openssl:0=
54 + sys-libs/zlib
55 +"
56 +DEPEND="${RDEPEND}"
57 +BDEPEND="
58 + sys-devel/bison
59 + sys-devel/flex
60 +"
61 +
62 +src_configure() {
63 + local mycmakeargs=(
64 + -DLIB_INSTALL_DIR=$(get_libdir)
65 + )
66 + cmake_src_configure
67 +}