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/fbthrift/
Date: Fri, 28 May 2021 10:28:39
Message-Id: 1622110689.e0336eb7a62e6d668c1f1d5b7386609cc7add2ea.andrewammerlaan@gentoo
1 commit: e0336eb7a62e6d668c1f1d5b7386609cc7add2ea
2 Author: Alessandro Barbieri <lssndrbarbieri <AT> gmail <DOT> com>
3 AuthorDate: Thu May 27 10:18:09 2021 +0000
4 Commit: Andrew Ammerlaan <andrewammerlaan <AT> gentoo <DOT> org>
5 CommitDate: Thu May 27 10:18:09 2021 +0000
6 URL: https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=e0336eb7
7
8 dev-cpp/fbthrift: add 2021.05.24.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.05.24.00.ebuild | 40 ++++++++++++++++++++++++++
14 2 files changed, 41 insertions(+)
15
16 diff --git a/dev-cpp/fbthrift/Manifest b/dev-cpp/fbthrift/Manifest
17 index 4608a3f94..cfd659b69 100644
18 --- a/dev-cpp/fbthrift/Manifest
19 +++ b/dev-cpp/fbthrift/Manifest
20 @@ -1 +1,2 @@
21 DIST fbthrift-2021.04.19.00.tar.gz 5453537 BLAKE2B 72a6b395f24786e211d7bf18f53abe3833bd12abca536cd85e6db4c284e0851121a4cdb2663b3a10bce628787eda556e71db4d4549f9d49d9c82e6dd8c31ac96 SHA512 eb0dd6c05c4ec8714d8dc5b5dcd8f3574b625c1992fff876b4ac5fb5a48f1d174b4405fbef0305ce008ccc7cae3d30499852989f30fdeb56eabf89269ed7ec23
22 +DIST fbthrift-2021.05.24.00.tar.gz 5641993 BLAKE2B 47615d438d23bf3ce6dc5bcb264fe0b9db443b177b872b490711c360b33faeff2e364049e4fe666cf0759a681a0a5b799f5c79cca1eadeaa69d3a9973e9c816a SHA512 58c720373e9261b9968a3008a60a008c79b6cddf65944212d7e08f3be68519cc226860d1977b5dfee364c432cbd158b9f5295c0b2b16098a165decb144008040
23
24 diff --git a/dev-cpp/fbthrift/fbthrift-2021.05.24.00.ebuild b/dev-cpp/fbthrift/fbthrift-2021.05.24.00.ebuild
25 new file mode 100644
26 index 000000000..fe7319ed7
27 --- /dev/null
28 +++ b/dev-cpp/fbthrift/fbthrift-2021.05.24.00.ebuild
29 @@ -0,0 +1,40 @@
30 +# Copyright 2021 Gentoo Authors
31 +# Distributed under the terms of the GNU General Public License v2
32 +
33 +EAPI=7
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 +
40 +SRC_URI="https://github.com/facebook/fbthrift/archive/v${PV}.tar.gz -> ${P}.tar.gz"
41 +
42 +LICENSE="Apache-2.0"
43 +SLOT="0"
44 +KEYWORDS="~amd64"
45 +
46 +RDEPEND="
47 + app-arch/zstd
48 + ~dev-cpp/fizz-${PV}:=
49 + ~dev-cpp/folly-${PV}:=
50 + dev-cpp/gflags
51 + dev-cpp/glog
52 + ~dev-cpp/wangle-${PV}:=
53 + dev-libs/libfmt
54 + dev-libs/openssl:0=
55 + sys-libs/zlib
56 +"
57 +DEPEND="${RDEPEND}"
58 +BDEPEND="
59 + sys-devel/bison
60 + sys-devel/flex
61 +"
62 +
63 +src_configure() {
64 + local mycmakeargs=(
65 + -DLIB_INSTALL_DIR=$(get_libdir)
66 + )
67 +
68 + cmake_src_configure
69 +}