Gentoo Archives: gentoo-commits

From: Aisha Tammy <gentoo@×××××.cc>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/proj/guru:dev commit in: net-libs/dpdk/
Date: Tue, 26 Apr 2022 17:31:47
Message-Id: 1650994298.3afe6e1f7b0b0b2d85732eb12e7273a16b5fa25b.epsilon-0@gentoo
1 commit: 3afe6e1f7b0b0b2d85732eb12e7273a16b5fa25b
2 Author: Aisha Tammy <gentoo <AT> aisha <DOT> cc>
3 AuthorDate: Tue Apr 26 17:31:38 2022 +0000
4 Commit: Aisha Tammy <gentoo <AT> aisha <DOT> cc>
5 CommitDate: Tue Apr 26 17:31:38 2022 +0000
6 URL: https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=3afe6e1f
7
8 net-libs/dpdk: drop 21.11
9
10 Signed-off-by: Aisha Tammy <gentoo <AT> aisha.cc>
11
12 net-libs/dpdk/Manifest | 1 -
13 net-libs/dpdk/dpdk-21.11.ebuild | 67 -----------------------------------------
14 2 files changed, 68 deletions(-)
15
16 diff --git a/net-libs/dpdk/Manifest b/net-libs/dpdk/Manifest
17 index bcd3dead8..a3e4c3a2c 100644
18 --- a/net-libs/dpdk/Manifest
19 +++ b/net-libs/dpdk/Manifest
20 @@ -1,3 +1,2 @@
21 DIST dpdk-21.11.1.tar.xz 15115156 BLAKE2B 089e98279922b5494b205d957f9ac05001a668f4536d45e5fd89b9f7d04779e0671ec428b2408963641da3ae999d5943a1ff5dc59c23020ccefce824609c8f11 SHA512 d7afc0c918626b1706a18a129086fcd3741b251c28fa00c5711eb85a03137e5ee6e08de7bd5ebe957e442dc9b901314042b382b223e74f0fdd5d560ac657f1b3
22 -DIST dpdk-21.11.tar.xz 15102516 BLAKE2B e82fb03242b74e458810ee5e0d21feaf5d6d781b81b8dc5c2a2ab977bac202290dadc8734ea13993bb1cb1df4b5c4d770df574052a384b590ac798d19c370c59 SHA512 843282023c2f77a9b8af393d50c6dde54f09d490cd6f4a99f03d4df5df13a7d963aa86885fdf64e13f9da71e01c881d1f301dd093574a32cddd84f4b1fb58fd5
23 DIST dpdk-22.03.tar.xz 15055548 BLAKE2B 16fb52618e72deba7097e4d920e160e14f1332eed2b8f2f2957f3dd1b847859e6b8b8cd6adef0513cd7bc528a37d4c481f803e8c5badaa299d2bb2af3615e696 SHA512 b3940642f99767323f39470c1e3e0eab7a07bcaca225e2a714b62ba6c59d2c66e4ea17d38e8266f37ed8b5c5c2ad272930fd28f545324ec0a1cb185685e06a5f
24
25 diff --git a/net-libs/dpdk/dpdk-21.11.ebuild b/net-libs/dpdk/dpdk-21.11.ebuild
26 deleted file mode 100644
27 index c2affead6..000000000
28 --- a/net-libs/dpdk/dpdk-21.11.ebuild
29 +++ /dev/null
30 @@ -1,67 +0,0 @@
31 -# Copyright 2021 Gentoo Authors
32 -# Distributed under the terms of the GNU General Public License v2
33 -
34 -EAPI=7
35 -
36 -PYTHON_COMPAT=( python3_{8..10} )
37 -inherit toolchain-funcs python-single-r1 meson
38 -
39 -DESCRIPTION="Data Plane Development Kit libraries for fast userspace networking"
40 -HOMEPAGE="https://dpdk.org/"
41 -SRC_URI="https://fast.dpdk.org/rel/${P}.tar.xz"
42 -
43 -LICENSE="BSD GPL-2"
44 -SLOT="0"
45 -KEYWORDS="~amd64"
46 -IUSE="test"
47 -REQUIRED_USE="${PYTHON_REQUIRED_USE}"
48 -# tests require rte_kni module to be loaded
49 -# and also needs network and /dev access
50 -# and need to be run as root
51 -RESTRICT="test"
52 -
53 -DEPEND="${PYTHON_DEPS}
54 - $(python_gen_cond_dep '
55 - dev-python/pyelftools[${PYTHON_USEDEP}]
56 - ')
57 - ~sys-kernel/rte_kni-kmod-${PV}[${PYTHON_SINGLE_USEDEP}]
58 - app-arch/libarchive
59 - app-crypt/intel-ipsec-mb
60 - dev-libs/elfutils
61 - dev-libs/isa-l
62 - dev-libs/jansson
63 - dev-libs/libbpf
64 - dev-libs/libbsd
65 - dev-libs/openssl
66 - net-libs/libmnl
67 - net-libs/libpcap
68 - sys-apps/dtc
69 - sys-cluster/rdma-core
70 - sys-process/numactl
71 -"
72 -RDEPEND="${DEPEND}"
73 -BDEPEND="
74 - dev-lang/nasm
75 -"
76 -
77 -PATCHES=( "${FILESDIR}/dpdk-21.11-static_linker.patch" )
78 -
79 -src_configure() {
80 - python-single-r1_pkg_setup
81 - local emesonargs=(
82 - -Denable_kmods=false
83 - -Dmachine=default
84 - -Dplatform=generic
85 - -Dstatic_linker=$(tc-getAR)
86 - $(meson_use test tests)
87 - )
88 - meson_src_configure
89 -}
90 -
91 -src_install() {
92 - meson_src_install
93 - local pyfiles=( "${ED}"/usr/bin/*.py )
94 - for pyfile in "${pyfiles[@]}"; do
95 - python_fix_shebang "${pyfile}"
96 - done
97 -}