summaryrefslogtreecommitdiff
path: root/dev-cpp/abseil-cpp
diff options
context:
space:
mode:
authorPaul Zander <negril.nx+gentoo@gmail.com>2025-03-03 16:38:06 +0100
committerSam James <sam@gentoo.org>2025-04-05 01:39:48 +0100
commit082b53d1611f956a5d186f4bfb1102924bb2e47d (patch)
tree1747f2bc0bf7e2b356929edf1c6a65cf406c0441 /dev-cpp/abseil-cpp
parent118f77923e182362bb1bcb45756c4679251dcdbf (diff)
downloadgentoo-082b53d1611f956a5d186f4bfb1102924bb2e47d.tar.gz
gentoo-082b53d1611f956a5d186f4bfb1102924bb2e47d.tar.bz2
gentoo-082b53d1611f956a5d186f4bfb1102924bb2e47d.zip
dev-cpp/abseil-cpp: drop old
Signed-off-by: Paul Zander <negril.nx+gentoo@gmail.com> Signed-off-by: Sam James <sam@gentoo.org>
Diffstat (limited to 'dev-cpp/abseil-cpp')
-rw-r--r--dev-cpp/abseil-cpp/abseil-cpp-20230125.3-r3.ebuild66
-rw-r--r--dev-cpp/abseil-cpp/abseil-cpp-20230802.0-r3.ebuild67
-rw-r--r--dev-cpp/abseil-cpp/abseil-cpp-20240116.2-r3.ebuild67
3 files changed, 0 insertions, 200 deletions
diff --git a/dev-cpp/abseil-cpp/abseil-cpp-20230125.3-r3.ebuild b/dev-cpp/abseil-cpp/abseil-cpp-20230125.3-r3.ebuild
deleted file mode 100644
index c248fe6ae1a4..000000000000
--- a/dev-cpp/abseil-cpp/abseil-cpp-20230125.3-r3.ebuild
+++ /dev/null
@@ -1,66 +0,0 @@
-# Copyright 2020-2024 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=8
-
-PYTHON_COMPAT=( python3_{10..12} )
-
-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%%.*}.0"
-KEYWORDS="amd64 ~arm ~arm64 ~loong ~ppc64 ~riscv x86"
-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}-20230125.2-musl-1.2.4.patch #906218
- "${FILESDIR}"/${PN}-random-tests.patch #935417
-)
-
-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=(
- # We use -std=c++14 here so that abseil-cpp's string_view is used
- # See the discussion in https://github.com/gentoo/gentoo/pull/32281.
- -DCMAKE_CXX_STANDARD=14
- -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 ON OFF)
- $(usex test -DBUILD_TESTING=ON '') # intentional usex, it used both variables for tests.
- )
-
- cmake_src_configure
-}
diff --git a/dev-cpp/abseil-cpp/abseil-cpp-20230802.0-r3.ebuild b/dev-cpp/abseil-cpp/abseil-cpp-20230802.0-r3.ebuild
deleted file mode 100644
index dc13dfe5045f..000000000000
--- a/dev-cpp/abseil-cpp/abseil-cpp-20230802.0-r3.ebuild
+++ /dev/null
@@ -1,67 +0,0 @@
-# Copyright 2020-2024 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=8
-
-PYTHON_COMPAT=( python3_{10..12} )
-
-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%%.*}"
-KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~loong ~ppc64 ~riscv ~sparc ~x86"
-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
-)
-
-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=(
- # We use -std=c++14 here so that abseil-cpp's string_view is used
- # See the discussion in https://github.com/gentoo/gentoo/pull/32281.
- -DCMAKE_CXX_STANDARD=14
- -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 ON OFF)
- $(usex test -DBUILD_TESTING=ON '') # intentional usex, it used both variables for tests.
- )
-
- cmake_src_configure
-}
diff --git a/dev-cpp/abseil-cpp/abseil-cpp-20240116.2-r3.ebuild b/dev-cpp/abseil-cpp/abseil-cpp-20240116.2-r3.ebuild
deleted file mode 100644
index dc13dfe5045f..000000000000
--- a/dev-cpp/abseil-cpp/abseil-cpp-20240116.2-r3.ebuild
+++ /dev/null
@@ -1,67 +0,0 @@
-# Copyright 2020-2024 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=8
-
-PYTHON_COMPAT=( python3_{10..12} )
-
-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%%.*}"
-KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~loong ~ppc64 ~riscv ~sparc ~x86"
-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
-)
-
-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=(
- # We use -std=c++14 here so that abseil-cpp's string_view is used
- # See the discussion in https://github.com/gentoo/gentoo/pull/32281.
- -DCMAKE_CXX_STANDARD=14
- -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 ON OFF)
- $(usex test -DBUILD_TESTING=ON '') # intentional usex, it used both variables for tests.
- )
-
- cmake_src_configure
-}