diff options
author | Andreas Sturmlechner <asturm@gentoo.org> | 2023-04-30 01:06:25 +0200 |
---|---|---|
committer | Andreas Sturmlechner <asturm@gentoo.org> | 2023-04-30 09:53:42 +0200 |
commit | 5a12e44afa0af72134d8dc7342aefbb647a4144a (patch) | |
tree | 1ea48c7b67974a02b661a34e1ea90f664c2570dd /dev-libs/crc32c | |
parent | app-emulation/dynamips: drop 0.2.21 (diff) | |
download | gentoo-5a12e44afa0af72134d8dc7342aefbb647a4144a.tar.gz gentoo-5a12e44afa0af72134d8dc7342aefbb647a4144a.tar.bz2 gentoo-5a12e44afa0af72134d8dc7342aefbb647a4144a.zip |
dev-libs/crc32c: drop 1.1.2-r1
Signed-off-by: Andreas Sturmlechner <asturm@gentoo.org>
Diffstat (limited to 'dev-libs/crc32c')
-rw-r--r-- | dev-libs/crc32c/crc32c-1.1.2-r1.ebuild | 41 |
1 files changed, 0 insertions, 41 deletions
diff --git a/dev-libs/crc32c/crc32c-1.1.2-r1.ebuild b/dev-libs/crc32c/crc32c-1.1.2-r1.ebuild deleted file mode 100644 index dde949144a27..000000000000 --- a/dev-libs/crc32c/crc32c-1.1.2-r1.ebuild +++ /dev/null @@ -1,41 +0,0 @@ -# Copyright 1999-2022 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=7 - -inherit cmake - -DESCRIPTION="CRC32C implementation with support for CPU-specific acceleration instructions" -HOMEPAGE="https://github.com/google/crc32c" -SRC_URI="https://github.com/google/crc32c/archive/${PV}.tar.gz -> ${P}.tar.gz" - -LICENSE="BSD" -SLOT="0" -KEYWORDS="amd64 arm arm64 ~mips ppc ppc64 ~riscv ~sparc x86" -IUSE="test" -RESTRICT="!test? ( test )" - -BDEPEND="test? ( dev-cpp/gtest )" - -PATCHES=( - "${FILESDIR}/${PN}-1.1.1-system-testdeps.patch" -) - -DOCS=( README.md ) - -src_prepare() { - sed -e '/-Werror/d' \ - -e '/-march=armv8/d' \ - -i CMakeLists.txt || die - cmake_src_prepare -} - -src_configure() { - local mycmakeargs=( - -DCRC32C_BUILD_TESTS=$(usex test) - -DCRC32C_BUILD_BENCHMARKS=OFF - -DCRC32C_USE_GLOG=OFF - ) - - cmake_src_configure -} |