diff options
| author | 2025-03-03 16:27:40 +0100 | |
|---|---|---|
| committer | 2025-04-05 01:39:47 +0100 | |
| commit | 118f77923e182362bb1bcb45756c4679251dcdbf (patch) | |
| tree | 081d0ff89ffef4d0ea5f5b1c7dcdf003020ab03b /dev-cpp/abseil-cpp/abseil-cpp-20240722.1.ebuild | |
| parent | dev-cpp/abseil-cpp: rebuild with every subslot of dev-cpp/gtest (diff) | |
| download | gentoo-118f77923e182362bb1bcb45756c4679251dcdbf.tar.gz gentoo-118f77923e182362bb1bcb45756c4679251dcdbf.tar.bz2 gentoo-118f77923e182362bb1bcb45756c4679251dcdbf.zip | |
dev-cpp/abseil-cpp: add 20250127.0, 20240722.1, 20240116.3, 20230802.3
Closes: https://bugs.gentoo.org/942192
Signed-off-by: Paul Zander <[email protected]>
Signed-off-by: Sam James <[email protected]>
Diffstat (limited to 'dev-cpp/abseil-cpp/abseil-cpp-20240722.1.ebuild')
| -rw-r--r-- | dev-cpp/abseil-cpp/abseil-cpp-20240722.1.ebuild | 93 |
1 files changed, 93 insertions, 0 deletions
diff --git a/dev-cpp/abseil-cpp/abseil-cpp-20240722.1.ebuild b/dev-cpp/abseil-cpp/abseil-cpp-20240722.1.ebuild new file mode 100644 index 000000000000..980635fdd36e --- /dev/null +++ b/dev-cpp/abseil-cpp/abseil-cpp-20240722.1.ebuild @@ -0,0 +1,93 @@ +# Copyright 2020-2025 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 ~hppa ~loong ~mips ~ppc ~ppc64 ~riscv ~s390 ~sparc ~x86 ~arm64-macos ~x64-macos" +IUSE="test" + +RDEPEND=" + test? ( + dev-cpp/gtest:=[${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}-include-cstdint.patch" #937307 + "${FILESDIR}/${PN}-20240722.0-lto-odr.patch" + "${FILESDIR}/${PN}-20240722.0-ciso646-cxx17.patch" +) + +src_prepare() { + cmake_src_prepare + + use ppc && eapply "${FILESDIR}/${PN}-atomic.patch" + + # un-hardcode abseil compiler flags + sed -i \ + -e '/"-maes",/d' \ + -e '/"-msse4.1",/d' \ + -e '/"-mfpu=neon"/d' \ + -e '/"-march=armv8-a+crypto"/d' \ + -e '/NOMINMAX/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="$(usex test)" + -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 +} + +multilib_src_test() { + if ! use amd64; then + CMAKE_SKIP_TESTS=( + absl_symbolize_test + ) + + if use ppc; then + CMAKE_SKIP_TESTS+=( + absl_failure_signal_handler_test + ) + fi + fi + + cmake_src_test +} |
