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/folly/
Date: Sat, 23 Oct 2021 14:18:29
Message-Id: 1634998704.11e367663d221f686978b0c069a5d96c03b6d8cc.Alessandro-Barbieri@gentoo
1 commit: 11e367663d221f686978b0c069a5d96c03b6d8cc
2 Author: Alessandro Barbieri <lssndrbarbieri <AT> gmail <DOT> com>
3 AuthorDate: Sat Oct 23 14:17:28 2021 +0000
4 Commit: Alessandro Barbieri <lssndrbarbieri <AT> gmail <DOT> com>
5 CommitDate: Sat Oct 23 14:18:24 2021 +0000
6 URL: https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=11e36766
7
8 dev-cpp/folly: add 2021.10.18.00
9
10 Signed-off-by: Alessandro Barbieri <lssndrbarbieri <AT> gmail.com>
11
12 dev-cpp/folly/Manifest | 1 +
13 dev-cpp/folly/folly-2021.10.18.00.ebuild | 37 ++++++++++++++++++++++++++++++++
14 2 files changed, 38 insertions(+)
15
16 diff --git a/dev-cpp/folly/Manifest b/dev-cpp/folly/Manifest
17 index c6f7a6ee9..f08f8f09d 100644
18 --- a/dev-cpp/folly/Manifest
19 +++ b/dev-cpp/folly/Manifest
20 @@ -1,2 +1,3 @@
21 DIST folly-2021.08.02.00.tar.gz 3469070 BLAKE2B f670746690c3531e573fb01293361808f943de7324bfd4862a10ea9764a41197094e522668e580946244279fa096f7173958cccc57b4f610c7c08ccbf3ec702d SHA512 dbe005f31eeb60e85ef949432de09d7c49a52b19f195c06ef265189a13ad98cbd4b902b59f303c140b7aedc5ff8a604cc9bda9d1d374290561124a729c07149d
22 DIST folly-2021.10.04.00.tar.gz 3495417 BLAKE2B ed8745c605ad66ee5bd2474737c7e0a7d08243bf809a1880cc010077a3ec8bd6155d7dc853fd165a956b5635fbdd1691de004320e78a1be194aaedae8554b77d SHA512 685cb716d1131a456a927d769eaf7174ec4528cdafd124c38a424c630a820a90998258c79cb793d91c8a4d587367524e597cb4dcc5d4f377815bfdd7ad29cbf2
23 +DIST folly-2021.10.18.00.tar.gz 3505501 BLAKE2B 3642c8f7ce3e3504f2078ea01dd1a07f8c94acc0c9a33a78923c05b9d17beaac03eb9276e49c437c952a94fec8775b5a7d6ff97b4c4a8c97d43863a776c672a7 SHA512 69f8c526cd1e88d5d8bf0e5e0e207fd10ba3bf898d89ad57ac6c420ed89c90048c59cb825e074bd495e306dfbff5f8a80631bf152952447313ce3084c8392a78
24
25 diff --git a/dev-cpp/folly/folly-2021.10.18.00.ebuild b/dev-cpp/folly/folly-2021.10.18.00.ebuild
26 new file mode 100644
27 index 000000000..e95ea64e9
28 --- /dev/null
29 +++ b/dev-cpp/folly/folly-2021.10.18.00.ebuild
30 @@ -0,0 +1,37 @@
31 +# Copyright 1999-2021 Gentoo Authors
32 +# Distributed under the terms of the GNU General Public License v2
33 +
34 +EAPI=8
35 +
36 +inherit cmake
37 +
38 +DESCRIPTION="An open-source C++ library developed and used at Facebook"
39 +HOMEPAGE="https://github.com/facebook/folly"
40 +SRC_URI="https://github.com/facebook/folly/archive/v${PV}.tar.gz -> ${P}.tar.gz"
41 +
42 +LICENSE="Apache-2.0"
43 +SLOT="0"
44 +KEYWORDS="~amd64 ~arm64 ~x86"
45 +
46 +DEPEND="
47 + app-arch/lz4
48 + <app-arch/snappy-1.1.9
49 + app-arch/zstd
50 + dev-cpp/gflags
51 + dev-cpp/glog[gflags]
52 + dev-libs/boost[context,threads(+)]
53 + dev-libs/double-conversion
54 + dev-libs/libevent
55 + dev-libs/libfmt
56 + sys-libs/binutils-libs
57 + sys-libs/zlib
58 +"
59 +RDEPEND="${DEPEND}"
60 +
61 +src_prepare() {
62 + cmake_src_prepare
63 + sed \
64 + -e "s/lib CACHE/$(get_libdir) CACHE/" \
65 + -e "s/lib\/cmake\/folly CACHE/$(get_libdir)\/cmake\/folly CACHE/" \
66 + -i CMakeLists.txt || die
67 +}