Gentoo Archives: gentoo-commits

From: Rick Farina <zerochaos@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: sci-libs/volk/
Date: Fri, 02 Sep 2022 16:37:35
Message-Id: 1662136445.b078be02b9a71b11fe44e03547a001dc2e02954b.zerochaos@gentoo
1 commit: b078be02b9a71b11fe44e03547a001dc2e02954b
2 Author: Rick Farina <zerochaos <AT> gentoo <DOT> org>
3 AuthorDate: Fri Sep 2 16:34:05 2022 +0000
4 Commit: Rick Farina <zerochaos <AT> gentoo <DOT> org>
5 CommitDate: Fri Sep 2 16:34:05 2022 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=b078be02
7
8 sci-libs/volk: drop 2.4.1
9
10 Signed-off-by: Rick Farina <zerochaos <AT> gentoo.org>
11
12 sci-libs/volk/Manifest | 1 -
13 sci-libs/volk/volk-2.4.1.ebuild | 45 -----------------------------------------
14 2 files changed, 46 deletions(-)
15
16 diff --git a/sci-libs/volk/Manifest b/sci-libs/volk/Manifest
17 index a7e2357d1ec2..60292a150ed8 100644
18 --- a/sci-libs/volk/Manifest
19 +++ b/sci-libs/volk/Manifest
20 @@ -1,2 +1 @@
21 -DIST volk-2.4.1.tar.xz 315072 BLAKE2B 1ce1d220f9e1e9251332fb6caf7d72eaf3db85009a49434edbf6490b02ab016c4b1eb8677f0e5f446f5783615f2256710621b1806684dffeb1ff441756e4a635 SHA512 7c16a5d750cdea2927c3b08dcad29e19f10932a3b7b35cb25ecc66554d7e441c95906a4746fcf62f895709aee1191f1bb91189c3509b444b6b4ba37a306f9909
22 DIST volk-2.5.0.tar.xz 322280 BLAKE2B edbf0f7ffecf08e8f0d8ebbb85a9bc943286c5d022442d0d7e480be4ecbd696a8b2e87e4d16d7133467b429e4894a1d166c534b5a05630cb313906aed8476cfe SHA512 94e5af925d6b6e157445ca80c2ba47a92f5ee681716d2a70a5519caa30a603b3f31a9f1ccbd14ef65349645b56a3f406b4aa1f354c322be60bd76d646a4850c6
23
24 diff --git a/sci-libs/volk/volk-2.4.1.ebuild b/sci-libs/volk/volk-2.4.1.ebuild
25 deleted file mode 100644
26 index aff22b50715c..000000000000
27 --- a/sci-libs/volk/volk-2.4.1.ebuild
28 +++ /dev/null
29 @@ -1,45 +0,0 @@
30 -# Copyright 1999-2021 Gentoo Authors
31 -# Distributed under the terms of the GNU General Public License v2
32 -
33 -EAPI=7
34 -
35 -PYTHON_COMPAT=( python3_{7,8,9} )
36 -
37 -#https://github.com/gnuradio/volk/issues/383
38 -CMAKE_BUILD_TYPE="None"
39 -inherit cmake python-single-r1
40 -
41 -DESCRIPTION="vector optimized library of kernels"
42 -HOMEPAGE="http://libvolk.org"
43 -SRC_URI="https://github.com/gnuradio/volk/releases/download/v${PV}/${P}.tar.xz"
44 -
45 -LICENSE="GPL-3"
46 -SLOT="0/$(ver_cut 1-2)"
47 -KEYWORDS="~amd64 ~arm ~x86"
48 -IUSE="orc test"
49 -
50 -REQUIRED_USE="${PYTHON_REQUIRED_USE}"
51 -RDEPEND="${PYTHON_DEPS}
52 - !<net-wireless/gnuradio-3.8
53 - dev-libs/boost:=
54 - orc? ( dev-lang/orc )"
55 -DEPEND="${RDEPEND}
56 - $(python_gen_cond_dep 'dev-python/mako[${PYTHON_USEDEP}]
57 - dev-python/six[${PYTHON_USEDEP}]')"
58 -
59 -RESTRICT="test"
60 -
61 -src_configure() {
62 - local mycmakeargs=(
63 - -DENABLE_ORC=$(usex orc)
64 - -DPYTHON_EXECUTABLE="${PYTHON}"
65 - -DENABLE_TESTING="$(usex test)"
66 - -DENABLE_PROFILING=OFF
67 - )
68 - cmake_src_configure
69 -}
70 -
71 -src_install() {
72 - cmake_src_install
73 - python_optimize
74 -}