From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (2048 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id 312A915ACFC for ; Sun, 30 Apr 2023 07:53:55 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 6C432E0858; Sun, 30 Apr 2023 07:53:54 +0000 (UTC) Received: from smtp.gentoo.org (mail.gentoo.org [IPv6:2001:470:ea4a:1:5054:ff:fec7:86e4]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits) server-digest SHA256) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 53775E0858 for ; Sun, 30 Apr 2023 07:53:54 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits) server-digest SHA256) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 854E13412AA for ; Sun, 30 Apr 2023 07:53:53 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id DFA42A59 for ; Sun, 30 Apr 2023 07:53:51 +0000 (UTC) From: "Andreas Sturmlechner" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Andreas Sturmlechner" Message-ID: <1682841222.5a12e44afa0af72134d8dc7342aefbb647a4144a.asturm@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-libs/crc32c/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-libs/crc32c/crc32c-1.1.2-r1.ebuild X-VCS-Directories: dev-libs/crc32c/ X-VCS-Committer: asturm X-VCS-Committer-Name: Andreas Sturmlechner X-VCS-Revision: 5a12e44afa0af72134d8dc7342aefbb647a4144a X-VCS-Branch: master Date: Sun, 30 Apr 2023 07:53:51 +0000 (UTC) Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-commits@lists.gentoo.org X-Auto-Response-Suppress: DR, RN, NRN, OOF, AutoReply X-Archives-Salt: a94bbd54-da71-4520-8728-8cc577bce8aa X-Archives-Hash: c9acdc22e54cab2f9496e2d202feb85b commit: 5a12e44afa0af72134d8dc7342aefbb647a4144a Author: Andreas Sturmlechner gentoo org> AuthorDate: Sat Apr 29 23:06:25 2023 +0000 Commit: Andreas Sturmlechner gentoo org> CommitDate: Sun Apr 30 07:53:42 2023 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=5a12e44a dev-libs/crc32c: drop 1.1.2-r1 Signed-off-by: Andreas Sturmlechner gentoo.org> dev-libs/crc32c/crc32c-1.1.2-r1.ebuild | 41 ---------------------------------- 1 file changed, 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 -}