commit:     d0807e01271d8c55cabd51ccf3dd8ad8a207b832
Author:     Sam James <sam <AT> gentoo <DOT> org>
AuthorDate: Mon Aug 29 19:53:37 2022 +0000
Commit:     Sam James <sam <AT> gentoo <DOT> org>
CommitDate: Mon Aug 29 20:12:55 2022 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=d0807e01

dev-cpp/folly: add 2022.08.29.00

Signed-off-by: Sam James <sam <AT> gentoo.org>

 dev-cpp/folly/Manifest                   |   1 +
 dev-cpp/folly/folly-2022.08.29.00.ebuild | 100 +++++++++++++++++++++++++++++++
 2 files changed, 101 insertions(+)

diff --git a/dev-cpp/folly/Manifest b/dev-cpp/folly/Manifest
index b7f871234569..52b8ed055ebc 100644
--- a/dev-cpp/folly/Manifest
+++ b/dev-cpp/folly/Manifest
@@ -4,3 +4,4 @@ DIST folly-v2022.07.04.00.tar.gz 3647988 BLAKE2B 
ab8916ff4be1468d44dc08921264486
 DIST folly-v2022.08.08.00.tar.gz 3684846 BLAKE2B 
462c183effea452ca706a7a14ebba820f377bc5ba6fd1475b15ca10e3c21df60a16b529b6599cf5dd5df2913b1fbd0432a3c411ab0aa400a9c84bb6aecd2f70f
 SHA512 
f44dbf96f42a86d44cad46129750ae2bc0abb6702e148de10def4b241a3c7afa62ad19acca96609e8a9bfdfeeb7eda3f19d8eb161b5e41702c943ca87a75c88e
 DIST folly-v2022.08.15.00.tar.gz 3691439 BLAKE2B 
96ba34a18b51ea91aacd2bbcdbfef855a8924004850534ef342799d1c36d6ece04b77100b8901053fd3d0a997d1764ffdfd5bcd60928b4a4f8c9480f5a6d8ee6
 SHA512 
72d8d29a1f26f5af33d13e1d2f7ed5ce439bc7345daecc3ed1d30e33b802e0aa4f1ca59fae16db25079e55da14f60cd6a548f0f31eef48abad49b71baa6e6307
 DIST folly-v2022.08.22.00.tar.gz 3693126 BLAKE2B 
1d28c114068d6d37bb0d57fddc9ab22438efc967aba810ba463b2e63c451a7d66152c5ec5b42d10879ed3d44467af5548d98998c52080b10f82aabfaec5f8b85
 SHA512 
b042a25c4e114d7098dbba94699a472e94a9074fe0814b1c5417e5bf995b69a22704613ae2a863d4e098511b0b8cc38c2e7c172a02b7bf772e238edcfe967c9e
+DIST folly-v2022.08.29.00.tar.gz 3696645 BLAKE2B 
c1ff618be8b6a73bf0a1249212cf904ac472711086e54da73dd631ecf002761e30496e8631d6591f51e279b736ae9b3fe50959de6b1f86f01f9d6bc08fe675fc
 SHA512 
1437a1314e26624715a0bb781049e19300eb3a67648287b319c55ce0dfbc867a09bd9d2f0cece6fc75fc62b21899aa94b464ae49c12687be7c94fdf0c7b95790

diff --git a/dev-cpp/folly/folly-2022.08.29.00.ebuild 
b/dev-cpp/folly/folly-2022.08.29.00.ebuild
new file mode 100644
index 000000000000..455df9c64760
--- /dev/null
+++ b/dev-cpp/folly/folly-2022.08.29.00.ebuild
@@ -0,0 +1,100 @@
+# Copyright 1999-2022 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+# These must be bumped together:
+# dev-cpp/edencommon
+# dev-cpp/folly
+# dev-util/watchman
+
+inherit cmake toolchain-funcs
+
+DESCRIPTION="An open-source C++ library developed and used at Facebook"
+HOMEPAGE="https://github.com/facebook/folly";
+SRC_URI="https://github.com/facebook/folly/releases/download/v${PV}/${PN}-v${PV}.tar.gz";
+S="${WORKDIR}"
+
+LICENSE="Apache-2.0"
+SLOT="0/${PV}"
+KEYWORDS="~amd64"
+IUSE="llvm-libunwind test"
+RESTRICT="!test? ( test )"
+
+RDEPEND="app-arch/bzip2
+       app-arch/lz4:=
+       app-arch/snappy:=
+       app-arch/xz-utils
+       app-arch/zstd:=
+       dev-cpp/gflags:=
+       dev-cpp/glog:=[gflags]
+       dev-libs/boost:=[context,threads(+)]
+       dev-libs/double-conversion:=
+       dev-libs/libaio
+       dev-libs/libevent:=
+       dev-libs/libfmt:=
+       dev-libs/libsodium:=
+       dev-libs/openssl:=
+       >=sys-libs/liburing-2.2:=
+       sys-libs/zlib
+       llvm-libunwind? ( sys-libs/llvm-libunwind:= )
+       !llvm-libunwind? ( sys-libs/libunwind:= )"
+# libiberty is linked statically
+DEPEND="${RDEPEND}
+       sys-libs/binutils-libs
+       test? ( dev-cpp/gtest )"
+BDEPEND="test? ( sys-devel/clang )"
+
+PATCHES=(
+       "${FILESDIR}"/${PN}-2022.07.04.00-musl-fix.patch
+)
+
+pkg_setup() {
+       [[ ${BUILD_TYPE} == binary ]] && return
+
+       if use test && ! tc-is-clang ; then
+               # Always build w/ Clang for now to avoid gcc ICE
+               # https://gcc.gnu.org/bugzilla/show_bug.cgi?id=106230
+               #if [[ $(gcc-major-version) -eq 12 ]] ; then
+               #       return
+               #fi
+
+               ## Only older GCC 11 is broken
+               #if [[ $(gcc-major-version) -eq 11 && $(gcc-minor-version) -ge 
3 && $(gcc-micro-version) -ge 1 ]] ; then
+               #       return
+               #fi
+
+               ewarn "Forcing build with Clang due to GCC bug (because tests 
are enabled)"
+               #ewarn "(https://gcc.gnu.org/bugzilla/show_bug.cgi?id=104008)"
+
+               export CC=${CHOST}-clang
+               export CXX=${CHOST}-clang++
+       fi
+}
+
+src_configure() {
+       # Fragile when changing compilers
+       export CCACHE_DISABLE=1
+
+       # TODO: liburing could in theory be optional but fails to link
+       local mycmakeargs=(
+               -DLIB_INSTALL_DIR="$(get_libdir)"
+
+               -DBUILD_TESTS=$(usex test)
+       )
+
+       cmake_src_configure
+}
+
+src_test() {
+       local myctestargs=(
+               # - 
timeseries_histogram_test.TimeseriesHistogram.Percentile|HHWheelTimerTest
+               # Long-standing known test failure
+               # TODO: report upstream
+               # - HHWheelTimerTest.HHWheelTimerTest.CancelTimeout
+               # Timeouts are fragile
+               -E 
"(timeseries_histogram_test.TimeseriesHistogram.Percentile|HHWheelTimerTest.HHWheelTimerTest.CancelTimeout)"
+       )
+
+       cmake_src_test
+}

Reply via email to