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.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id 3CBD21382C5 for ; Sat, 24 Apr 2021 06:38:43 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 50144E0814; Sat, 24 Apr 2021 06:38:42 +0000 (UTC) Received: from smtp.gentoo.org (dev.gentoo.org [IPv6:2001:470:ea4a:1:5054:ff:fec7:86e4]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 278DDE0814 for ; Sat, 24 Apr 2021 06:38:42 +0000 (UTC) Received: from oystercatcher.gentoo.org (unknown [IPv6:2a01:4f8:202:4333:225:90ff:fed9:fc84]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 78EB7341253 for ; Sat, 24 Apr 2021 06:38:40 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 2A0194C3 for ; Sat, 24 Apr 2021 06:38:39 +0000 (UTC) From: "Andrew Ammerlaan" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Andrew Ammerlaan" Message-ID: <1619246259.0672bdc8223636d712c661feff4ef88f592881b5.andrewammerlaan@gentoo> Subject: [gentoo-commits] repo/proj/guru:dev commit in: sci-libs/kissfft/ X-VCS-Repository: repo/proj/guru X-VCS-Files: sci-libs/kissfft/Manifest sci-libs/kissfft/kissfft-131.ebuild sci-libs/kissfft/kissfft-9999.ebuild sci-libs/kissfft/metadata.xml X-VCS-Directories: sci-libs/kissfft/ X-VCS-Committer: andrewammerlaan X-VCS-Committer-Name: Andrew Ammerlaan X-VCS-Revision: 0672bdc8223636d712c661feff4ef88f592881b5 X-VCS-Branch: dev Date: Sat, 24 Apr 2021 06:38:39 +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: 3d247ee8-75d5-40e8-a3ef-a496e55974a8 X-Archives-Hash: 9fc6571a99813af64e2d347c54238ffc commit: 0672bdc8223636d712c661feff4ef88f592881b5 Author: Andrew Ammerlaan riseup net> AuthorDate: Sat Apr 24 06:37:39 2021 +0000 Commit: Andrew Ammerlaan riseup net> CommitDate: Sat Apr 24 06:37:39 2021 +0000 URL: https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=0672bdc8 sci-libs/kissfft: moved to ::gentoo Signed-off-by: Andrew Ammerlaan riseup.net> sci-libs/kissfft/Manifest | 1 - sci-libs/kissfft/kissfft-131.ebuild | 35 ----------------------------------- sci-libs/kissfft/kissfft-9999.ebuild | 34 ---------------------------------- sci-libs/kissfft/metadata.xml | 8 -------- 4 files changed, 78 deletions(-) diff --git a/sci-libs/kissfft/Manifest b/sci-libs/kissfft/Manifest deleted file mode 100644 index b772ae85a..000000000 --- a/sci-libs/kissfft/Manifest +++ /dev/null @@ -1 +0,0 @@ -DIST kissfft-131.tar.gz 44748 BLAKE2B 71418543995ce5bd26d12077bd7de24978ca30c827ea4fa210c63bb42fc64ee2449825605cc498d090670b08aaec08ea22901ae790a8276f156b899a687d5bc7 SHA512 6cc7efbe898287cdc623970f84b57c6a71148ded78732c36c4bd376a122efcf6c27d3a61679fccfbe47d0e79c7d1f3065b21a7091110154e402c0b2a49a378f9 diff --git a/sci-libs/kissfft/kissfft-131.ebuild b/sci-libs/kissfft/kissfft-131.ebuild deleted file mode 100644 index 8a1bbe150..000000000 --- a/sci-libs/kissfft/kissfft-131.ebuild +++ /dev/null @@ -1,35 +0,0 @@ -# Copyright 1999-2021 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=7 - -inherit autotools - -DESCRIPTION="A Fast Fourier Transform (FFT) library that tries to Keep it Simple, Stupid" -HOMEPAGE="https://github.com/mborgerding/kissfft" - -LICENSE="BSD" -IUSE="test" -RESTRICT="!test? ( test )" -SLOT="0" - -if [[ ${PV} == *9999 ]] ; then - EGIT_REPO_URI="https://github.com/mborgerding/kissfft" - inherit git-r3 -else - SRC_URI="https://github.com/mborgerding/kissfft/archive/v${PV}.tar.gz -> ${P}.tar.gz" - KEYWORDS="~amd64 ~x86" -fi - -DEPEND="sci-libs/fftw:3.0" -RDEPEND="${DEPEND}" - -src_install() { - dolib.so libkissfft.so - doheader kiss_fft.h -} - -src_test() { - make -C test testcpp && test/testcpp || die - make -C test DATATYPE=simd CFLAGADD="$(CFLAGADD)" test || die -} diff --git a/sci-libs/kissfft/kissfft-9999.ebuild b/sci-libs/kissfft/kissfft-9999.ebuild deleted file mode 100644 index 0c8c52a0a..000000000 --- a/sci-libs/kissfft/kissfft-9999.ebuild +++ /dev/null @@ -1,34 +0,0 @@ -# Copyright 1999-2021 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=7 - -inherit autotools - -DESCRIPTION="A Fast Fourier Transform (FFT) library that tries to Keep it Simple, Stupid" -HOMEPAGE="https://github.com/mborgerding/kissfft" - -LICENSE="BSD" -IUSE="test" -RESTRICT="!test? ( test )" -SLOT="0" - -if [[ ${PV} == *9999 ]] ; then - EGIT_REPO_URI="https://github.com/mborgerding/kissfft" - inherit git-r3 -else - SRC_URI="https://github.com/mborgerding/kissfft/archive/v${PV}.tar.gz -> ${P}.tar.gz" - KEYWORDS="~amd64 ~x86" -fi - -DEPEND="sci-libs/fftw:3.0" -RDEPEND="${DEPEND}" - -src_install() { - dolib.so libkissfft.so - doheader kiss_fft.h -} - -src_test() { - make testall || die -} diff --git a/sci-libs/kissfft/metadata.xml b/sci-libs/kissfft/metadata.xml deleted file mode 100644 index 01c1fc848..000000000 --- a/sci-libs/kissfft/metadata.xml +++ /dev/null @@ -1,8 +0,0 @@ - - - - - davidroman96@gmail.com - David Roman - - 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.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id 918A31382C5 for ; Sat, 24 Apr 2021 06:38:53 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id C81BEE0839; Sat, 24 Apr 2021 06:38:52 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 98150E0839 for ; Sat, 24 Apr 2021 06:38:52 +0000 (UTC) Received: from oystercatcher.gentoo.org (unknown [IPv6:2a01:4f8:202:4333:225:90ff:fed9:fc84]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 1738E34127A for ; Sat, 24 Apr 2021 06:38:51 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 66093730 for ; Sat, 24 Apr 2021 06:38:48 +0000 (UTC) From: "Andrew Ammerlaan" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Andrew Ammerlaan" Message-ID: <1619246259.0672bdc8223636d712c661feff4ef88f592881b5.andrewammerlaan@gentoo> Subject: [gentoo-commits] repo/proj/guru:master commit in: sci-libs/kissfft/ X-VCS-Repository: repo/proj/guru X-VCS-Files: sci-libs/kissfft/Manifest sci-libs/kissfft/kissfft-131.ebuild sci-libs/kissfft/kissfft-9999.ebuild sci-libs/kissfft/metadata.xml X-VCS-Directories: sci-libs/kissfft/ X-VCS-Committer: andrewammerlaan X-VCS-Committer-Name: Andrew Ammerlaan X-VCS-Revision: 0672bdc8223636d712c661feff4ef88f592881b5 X-VCS-Branch: master Date: Sat, 24 Apr 2021 06:38:48 +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: 607365fc-2759-4dc2-9629-136a620e70be X-Archives-Hash: ea8e85531855cfd671fd14e6073cbc40 Message-ID: <20210424063848.hph3yClQxDAK04sCr9pkuRwLV7GonRuyAvccBGCKgSg@z> commit: 0672bdc8223636d712c661feff4ef88f592881b5 Author: Andrew Ammerlaan riseup net> AuthorDate: Sat Apr 24 06:37:39 2021 +0000 Commit: Andrew Ammerlaan riseup net> CommitDate: Sat Apr 24 06:37:39 2021 +0000 URL: https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=0672bdc8 sci-libs/kissfft: moved to ::gentoo Signed-off-by: Andrew Ammerlaan riseup.net> sci-libs/kissfft/Manifest | 1 - sci-libs/kissfft/kissfft-131.ebuild | 35 ----------------------------------- sci-libs/kissfft/kissfft-9999.ebuild | 34 ---------------------------------- sci-libs/kissfft/metadata.xml | 8 -------- 4 files changed, 78 deletions(-) diff --git a/sci-libs/kissfft/Manifest b/sci-libs/kissfft/Manifest deleted file mode 100644 index b772ae85a..000000000 --- a/sci-libs/kissfft/Manifest +++ /dev/null @@ -1 +0,0 @@ -DIST kissfft-131.tar.gz 44748 BLAKE2B 71418543995ce5bd26d12077bd7de24978ca30c827ea4fa210c63bb42fc64ee2449825605cc498d090670b08aaec08ea22901ae790a8276f156b899a687d5bc7 SHA512 6cc7efbe898287cdc623970f84b57c6a71148ded78732c36c4bd376a122efcf6c27d3a61679fccfbe47d0e79c7d1f3065b21a7091110154e402c0b2a49a378f9 diff --git a/sci-libs/kissfft/kissfft-131.ebuild b/sci-libs/kissfft/kissfft-131.ebuild deleted file mode 100644 index 8a1bbe150..000000000 --- a/sci-libs/kissfft/kissfft-131.ebuild +++ /dev/null @@ -1,35 +0,0 @@ -# Copyright 1999-2021 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=7 - -inherit autotools - -DESCRIPTION="A Fast Fourier Transform (FFT) library that tries to Keep it Simple, Stupid" -HOMEPAGE="https://github.com/mborgerding/kissfft" - -LICENSE="BSD" -IUSE="test" -RESTRICT="!test? ( test )" -SLOT="0" - -if [[ ${PV} == *9999 ]] ; then - EGIT_REPO_URI="https://github.com/mborgerding/kissfft" - inherit git-r3 -else - SRC_URI="https://github.com/mborgerding/kissfft/archive/v${PV}.tar.gz -> ${P}.tar.gz" - KEYWORDS="~amd64 ~x86" -fi - -DEPEND="sci-libs/fftw:3.0" -RDEPEND="${DEPEND}" - -src_install() { - dolib.so libkissfft.so - doheader kiss_fft.h -} - -src_test() { - make -C test testcpp && test/testcpp || die - make -C test DATATYPE=simd CFLAGADD="$(CFLAGADD)" test || die -} diff --git a/sci-libs/kissfft/kissfft-9999.ebuild b/sci-libs/kissfft/kissfft-9999.ebuild deleted file mode 100644 index 0c8c52a0a..000000000 --- a/sci-libs/kissfft/kissfft-9999.ebuild +++ /dev/null @@ -1,34 +0,0 @@ -# Copyright 1999-2021 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=7 - -inherit autotools - -DESCRIPTION="A Fast Fourier Transform (FFT) library that tries to Keep it Simple, Stupid" -HOMEPAGE="https://github.com/mborgerding/kissfft" - -LICENSE="BSD" -IUSE="test" -RESTRICT="!test? ( test )" -SLOT="0" - -if [[ ${PV} == *9999 ]] ; then - EGIT_REPO_URI="https://github.com/mborgerding/kissfft" - inherit git-r3 -else - SRC_URI="https://github.com/mborgerding/kissfft/archive/v${PV}.tar.gz -> ${P}.tar.gz" - KEYWORDS="~amd64 ~x86" -fi - -DEPEND="sci-libs/fftw:3.0" -RDEPEND="${DEPEND}" - -src_install() { - dolib.so libkissfft.so - doheader kiss_fft.h -} - -src_test() { - make testall || die -} diff --git a/sci-libs/kissfft/metadata.xml b/sci-libs/kissfft/metadata.xml deleted file mode 100644 index 01c1fc848..000000000 --- a/sci-libs/kissfft/metadata.xml +++ /dev/null @@ -1,8 +0,0 @@ - - - - - davidroman96@gmail.com - David Roman - -