diff options
author | Rick Farina <zerochaos@gentoo.org> | 2022-09-02 12:34:05 -0400 |
---|---|---|
committer | Rick Farina <zerochaos@gentoo.org> | 2022-09-02 12:34:05 -0400 |
commit | b078be02b9a71b11fe44e03547a001dc2e02954b (patch) | |
tree | a973daf8e3a65814cbf3ebbf7f4cf4abd0ff2f9a /sci-libs | |
parent | dev-python/pytest: Bump to 7.1.3 (diff) | |
download | gentoo-b078be02b9a71b11fe44e03547a001dc2e02954b.tar.gz gentoo-b078be02b9a71b11fe44e03547a001dc2e02954b.tar.bz2 gentoo-b078be02b9a71b11fe44e03547a001dc2e02954b.zip |
sci-libs/volk: drop 2.4.1
Signed-off-by: Rick Farina <zerochaos@gentoo.org>
Diffstat (limited to 'sci-libs')
-rw-r--r-- | sci-libs/volk/Manifest | 1 | ||||
-rw-r--r-- | sci-libs/volk/volk-2.4.1.ebuild | 45 |
2 files changed, 0 insertions, 46 deletions
diff --git a/sci-libs/volk/Manifest b/sci-libs/volk/Manifest index a7e2357d1ec2..60292a150ed8 100644 --- a/sci-libs/volk/Manifest +++ b/sci-libs/volk/Manifest @@ -1,2 +1 @@ -DIST volk-2.4.1.tar.xz 315072 BLAKE2B 1ce1d220f9e1e9251332fb6caf7d72eaf3db85009a49434edbf6490b02ab016c4b1eb8677f0e5f446f5783615f2256710621b1806684dffeb1ff441756e4a635 SHA512 7c16a5d750cdea2927c3b08dcad29e19f10932a3b7b35cb25ecc66554d7e441c95906a4746fcf62f895709aee1191f1bb91189c3509b444b6b4ba37a306f9909 DIST volk-2.5.0.tar.xz 322280 BLAKE2B edbf0f7ffecf08e8f0d8ebbb85a9bc943286c5d022442d0d7e480be4ecbd696a8b2e87e4d16d7133467b429e4894a1d166c534b5a05630cb313906aed8476cfe SHA512 94e5af925d6b6e157445ca80c2ba47a92f5ee681716d2a70a5519caa30a603b3f31a9f1ccbd14ef65349645b56a3f406b4aa1f354c322be60bd76d646a4850c6 diff --git a/sci-libs/volk/volk-2.4.1.ebuild b/sci-libs/volk/volk-2.4.1.ebuild deleted file mode 100644 index aff22b50715c..000000000000 --- a/sci-libs/volk/volk-2.4.1.ebuild +++ /dev/null @@ -1,45 +0,0 @@ -# Copyright 1999-2021 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=7 - -PYTHON_COMPAT=( python3_{7,8,9} ) - -#https://github.com/gnuradio/volk/issues/383 -CMAKE_BUILD_TYPE="None" -inherit cmake python-single-r1 - -DESCRIPTION="vector optimized library of kernels" -HOMEPAGE="http://libvolk.org" -SRC_URI="https://github.com/gnuradio/volk/releases/download/v${PV}/${P}.tar.xz" - -LICENSE="GPL-3" -SLOT="0/$(ver_cut 1-2)" -KEYWORDS="~amd64 ~arm ~x86" -IUSE="orc test" - -REQUIRED_USE="${PYTHON_REQUIRED_USE}" -RDEPEND="${PYTHON_DEPS} - !<net-wireless/gnuradio-3.8 - dev-libs/boost:= - orc? ( dev-lang/orc )" -DEPEND="${RDEPEND} - $(python_gen_cond_dep 'dev-python/mako[${PYTHON_USEDEP}] - dev-python/six[${PYTHON_USEDEP}]')" - -RESTRICT="test" - -src_configure() { - local mycmakeargs=( - -DENABLE_ORC=$(usex orc) - -DPYTHON_EXECUTABLE="${PYTHON}" - -DENABLE_TESTING="$(usex test)" - -DENABLE_PROFILING=OFF - ) - cmake_src_configure -} - -src_install() { - cmake_src_install - python_optimize -} |