diff options
| author | Paul Zander <negril.nx+gentoo@gmail.com> | 2024-08-09 17:51:28 +0200 |
|---|---|---|
| committer | Yixun Lan <dlan@gentoo.org> | 2024-09-04 02:30:41 +0000 |
| commit | ef4be08b30a9e4c6b268f6d58f54d4c4c86da26a (patch) | |
| tree | 3167f3e06be17ec18900cdc161e72dd2b0a807fb /dev-cpp/abseil-cpp/abseil-cpp-20240722.0.ebuild | |
| parent | 5e4767ace5f77154ba7c6c89c5fe7ed8b595f456 (diff) | |
| download | gentoo-ef4be08b30a9e4c6b268f6d58f54d4c4c86da26a.tar.gz gentoo-ef4be08b30a9e4c6b268f6d58f54d4c4c86da26a.tar.bz2 gentoo-ef4be08b30a9e4c6b268f6d58f54d4c4c86da26a.zip | |
dev-cpp/abseil-cpp: add 20240722.0
Signed-off-by: Paul Zander <negril.nx+gentoo@gmail.com>
Signed-off-by: Yixun Lan <dlan@gentoo.org>
Diffstat (limited to 'dev-cpp/abseil-cpp/abseil-cpp-20240722.0.ebuild')
| -rw-r--r-- | dev-cpp/abseil-cpp/abseil-cpp-20240722.0.ebuild | 71 |
1 files changed, 71 insertions, 0 deletions
diff --git a/dev-cpp/abseil-cpp/abseil-cpp-20240722.0.ebuild b/dev-cpp/abseil-cpp/abseil-cpp-20240722.0.ebuild new file mode 100644 index 000000000000..ce79f7e1ba8d --- /dev/null +++ b/dev-cpp/abseil-cpp/abseil-cpp-20240722.0.ebuild @@ -0,0 +1,71 @@ +# Copyright 2020-2024 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=8 + +PYTHON_COMPAT=( python3_{10..13} ) + +inherit cmake-multilib python-any-r1 + +DESCRIPTION="Abseil Common Libraries (C++), LTS Branch" +HOMEPAGE="https://abseil.io/" +SRC_URI="https://github.com/abseil/abseil-cpp/archive/${PV}.tar.gz -> ${P}.tar.gz" + +LICENSE="Apache-2.0" +SLOT="0/${PV:2:4}.$(ver_cut 2).0" +KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~loong ~ppc64 ~riscv ~s390 ~sparc ~x86 ~arm64-macos ~x64-macos" +IUSE="test" + +RDEPEND=">=dev-cpp/gtest-1.13.0[${MULTILIB_USEDEP}]" +DEPEND="${RDEPEND}" +BDEPEND=" + ${PYTHON_DEPS} + test? ( + sys-libs/timezone-data + ) +" + +RESTRICT="!test? ( test )" + +PATCHES=( + "${FILESDIR}/${PN}-20230802.0-sdata-tests.patch" + # "${FILESDIR}/${PN}-random-tests.patch" #935417 + # "${FILESDIR}/${PN}-20230802.0-conditional-use-of-lzcnt.patch" #934337 + "${FILESDIR}/${PN}-include-cstdint.patch" #937307 + "${FILESDIR}/${PN}-20240722.0-lto-odr.patch" +) + +src_prepare() { + cmake_src_prepare + + # un-hardcode abseil compiler flags + sed -i \ + -e '/"-maes",/d' \ + -e '/"-msse4.1",/d' \ + -e '/"-mfpu=neon"/d' \ + -e '/"-march=armv8-a+crypto"/d' \ + absl/copts/copts.py || die + + # now generate cmake files + python_fix_shebang absl/copts/generate_copts.py + absl/copts/generate_copts.py || die +} + +multilib_src_configure() { + local mycmakeargs=( + -DABSL_ENABLE_INSTALL=TRUE + -DABSL_USE_EXTERNAL_GOOGLETEST=ON + -DABSL_PROPAGATE_CXX_STD=TRUE + # TEST_HELPERS needed for protobuf (bug #915902) + -DABSL_BUILD_TEST_HELPERS=ON + -DABSL_BUILD_TESTING="$(usex test)" + ) + # intentional use, it uses both variables for tests. + if use test; then + mycmakeargs+=( + -DBUILD_TESTING="yes" + ) + fi + + cmake_src_configure +} |
