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 635DD1581FB for ; Fri, 30 Aug 2024 13:11:55 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 16A3CE29EF; Fri, 30 Aug 2024 13:11:54 +0000 (UTC) Received: from smtp.gentoo.org (woodpecker.gentoo.org [140.211.166.183]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id EE894E29F0 for ; Fri, 30 Aug 2024 13:11:53 +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 0B3DA343060 for ; Fri, 30 Aug 2024 13:11:53 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 14B611A88 for ; Fri, 30 Aug 2024 13:11: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: <1725023481.cfaf5bc8606de38042eefb54ab8ad8d98db474cb.asturm@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: sci-libs/kissfft/ X-VCS-Repository: repo/gentoo X-VCS-Files: sci-libs/kissfft/kissfft-131.1.0.ebuild X-VCS-Directories: sci-libs/kissfft/ X-VCS-Committer: asturm X-VCS-Committer-Name: Andreas Sturmlechner X-VCS-Revision: cfaf5bc8606de38042eefb54ab8ad8d98db474cb X-VCS-Branch: master Date: Fri, 30 Aug 2024 13:11: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: 80cd6c3a-3d3e-4914-a0be-418529ecae4a X-Archives-Hash: b3ab3d90b01440a1870f48c125a455aa commit: cfaf5bc8606de38042eefb54ab8ad8d98db474cb Author: Andreas Sturmlechner gentoo org> AuthorDate: Thu Aug 29 19:47:18 2024 +0000 Commit: Andreas Sturmlechner gentoo org> CommitDate: Fri Aug 30 13:11:21 2024 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=cfaf5bc8 sci-libs/kissfft: drop 131.1.0 Bug: https://bugs.gentoo.org/938697 Signed-off-by: Andreas Sturmlechner gentoo.org> sci-libs/kissfft/kissfft-131.1.0.ebuild | 62 --------------------------------- 1 file changed, 62 deletions(-) diff --git a/sci-libs/kissfft/kissfft-131.1.0.ebuild b/sci-libs/kissfft/kissfft-131.1.0.ebuild deleted file mode 100644 index 9fb779d33ddd..000000000000 --- a/sci-libs/kissfft/kissfft-131.1.0.ebuild +++ /dev/null @@ -1,62 +0,0 @@ -# Copyright 1999-2024 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=7 - -PYTHON_COMPAT=( python3_{9..11} ) - -inherit cmake python-any-r1 toolchain-funcs - -DESCRIPTION="A Fast Fourier Transform (FFT) library that tries to Keep it Simple, Stupid" -HOMEPAGE="https://github.com/mborgerding/kissfft" - -if [[ ${PV} == *9999 ]] ; then - EGIT_REPO_URI="https://github.com/mborgerding/kissfft" - inherit git-r3 -else - SRC_URI="https://github.com/mborgerding/kissfft/archive/${PV}.tar.gz -> ${P}.tar.gz" - KEYWORDS="amd64 ~arm arm64 ~riscv ~x86" -fi - -LICENSE="BSD" -SLOT="0" -IUSE="alloca cpu_flags_x86_sse openmp test tools" -RESTRICT="!test? ( test )" - -DEPEND=" - test? ( - sci-libs/fftw:3.0 - $(python_gen_any_dep ' - dev-python/numpy[${PYTHON_USEDEP}] - ') - ) -" - -PATCHES=( - "${FILESDIR}"/${PN}-131.1.0-cross.patch -) - -python_check_deps() { - python_has_version -d "dev-python/numpy[${PYTHON_USEDEP}]" -} - -pkg_pretend() { - [[ ${MERGE_TYPE} != binary ]] && use openmp && tc-check-openmp -} - -pkg_setup() { - use test && python-any-r1_pkg_setup - [[ ${MERGE_TYPE} != binary ]] && use openmp && tc-check-openmp -} - -src_configure() { - local mycmakeargs=( - -DKISSFFT_OPENMP=$(usex openmp 1 0) - -DKISSFFT_TEST=$(usex test) - -DKISSFFT_TOOLS=$(usex tools) - -DKISSFFT_USE_ALLOCA=$(usex alloca) - -DKISSFFT_DATATYPE=$(usex cpu_flags_x86_sse simd float) - ) - - cmake_src_configure -}