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: Mon, 14 Jun 2021 02:27:38
Message-Id: 1623637650.51104fe0f9d4b0889c316592527c897543d0133f.Alessandro-Barbieri@gentoo
1 commit: 51104fe0f9d4b0889c316592527c897543d0133f
2 Author: Alessandro Barbieri <lssndrbarbieri <AT> gmail <DOT> com>
3 AuthorDate: Mon Jun 14 00:00:01 2021 +0000
4 Commit: Alessandro Barbieri <lssndrbarbieri <AT> gmail <DOT> com>
5 CommitDate: Mon Jun 14 02:27:30 2021 +0000
6 URL: https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=51104fe0
7
8 dev-cpp/fbthrift: add 2021.06.07.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.06.07.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 cfd659b69..d2b6a3563 100644
18 --- a/dev-cpp/fbthrift/Manifest
19 +++ b/dev-cpp/fbthrift/Manifest
20 @@ -1,2 +1,3 @@
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 +DIST fbthrift-2021.06.07.00.tar.gz 5642451 BLAKE2B 8af279235f9e3502ac888860b52ba586fcfdf323c392486c7f09ec92fa0a5c54adda6f1eb06ff6b84447a974a75537b2d002f5546f0db3f6952637a14a549577 SHA512 e497a2fdf2b4223e3985ef9dfb904a3c56581a310a88cb17568d647a2f863827631f7075944b0ff9de369caccac5a7f25b5f7fe4cd8629df4b8c5a15a53589e9
24
25 diff --git a/dev-cpp/fbthrift/fbthrift-2021.06.07.00.ebuild b/dev-cpp/fbthrift/fbthrift-2021.06.07.00.ebuild
26 new file mode 100644
27 index 000000000..fe7319ed7
28 --- /dev/null
29 +++ b/dev-cpp/fbthrift/fbthrift-2021.06.07.00.ebuild
30 @@ -0,0 +1,40 @@
31 +# Copyright 2021 Gentoo Authors
32 +# Distributed under the terms of the GNU General Public License v2
33 +
34 +EAPI=7
35 +
36 +inherit cmake
37 +
38 +DESCRIPTION="Facebook's branch of Apache Thrift, including a new C++ server"
39 +HOMEPAGE="https://github.com/facebook/fbthrift"
40 +
41 +SRC_URI="https://github.com/facebook/fbthrift/archive/v${PV}.tar.gz -> ${P}.tar.gz"
42 +
43 +LICENSE="Apache-2.0"
44 +SLOT="0"
45 +KEYWORDS="~amd64"
46 +
47 +RDEPEND="
48 + app-arch/zstd
49 + ~dev-cpp/fizz-${PV}:=
50 + ~dev-cpp/folly-${PV}:=
51 + dev-cpp/gflags
52 + dev-cpp/glog
53 + ~dev-cpp/wangle-${PV}:=
54 + dev-libs/libfmt
55 + dev-libs/openssl:0=
56 + sys-libs/zlib
57 +"
58 +DEPEND="${RDEPEND}"
59 +BDEPEND="
60 + sys-devel/bison
61 + sys-devel/flex
62 +"
63 +
64 +src_configure() {
65 + local mycmakeargs=(
66 + -DLIB_INSTALL_DIR=$(get_libdir)
67 + )
68 +
69 + cmake_src_configure
70 +}