* [gentoo-commits] repo/proj/guru:dev commit in: sys-kernel/rte_kni-kmod/
@ 2021-12-23 15:08 Aisha Tammy
0 siblings, 0 replies; 8+ messages in thread
From: Aisha Tammy @ 2021-12-23 15:08 UTC (permalink / raw
To: gentoo-commits
commit: 477401e3f8e461ab5646dc122becd451efd24cb7
Author: Aisha Tammy <gentoo <AT> aisha <DOT> cc>
AuthorDate: Thu Dec 23 14:51:42 2021 +0000
Commit: Aisha Tammy <gentoo <AT> aisha <DOT> cc>
CommitDate: Thu Dec 23 14:51:42 2021 +0000
URL: https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=477401e3
sys-kernel/rte_kni-kmod: kernel nic interface module for DPDK
Package-Manager: Portage-3.0.28, Repoman-3.0.3
Signed-off-by: Aisha Tammy <gentoo <AT> aisha.cc>
sys-kernel/rte_kni-kmod/Manifest | 1 +
sys-kernel/rte_kni-kmod/metadata.xml | 8 +++
sys-kernel/rte_kni-kmod/rte_kni-kmod-21.11.ebuild | 67 +++++++++++++++++++++++
3 files changed, 76 insertions(+)
diff --git a/sys-kernel/rte_kni-kmod/Manifest b/sys-kernel/rte_kni-kmod/Manifest
new file mode 100644
index 000000000..cf0fb5cc1
--- /dev/null
+++ b/sys-kernel/rte_kni-kmod/Manifest
@@ -0,0 +1 @@
+DIST dpdk-21.11.tar.xz 15102516 BLAKE2B e82fb03242b74e458810ee5e0d21feaf5d6d781b81b8dc5c2a2ab977bac202290dadc8734ea13993bb1cb1df4b5c4d770df574052a384b590ac798d19c370c59 SHA512 843282023c2f77a9b8af393d50c6dde54f09d490cd6f4a99f03d4df5df13a7d963aa86885fdf64e13f9da71e01c881d1f301dd093574a32cddd84f4b1fb58fd5
diff --git a/sys-kernel/rte_kni-kmod/metadata.xml b/sys-kernel/rte_kni-kmod/metadata.xml
new file mode 100644
index 000000000..65ac1f205
--- /dev/null
+++ b/sys-kernel/rte_kni-kmod/metadata.xml
@@ -0,0 +1,8 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
+<pkgmetadata>
+ <maintainer type="person">
+ <email>gentoo@aisha.cc</email>
+ <name>Aisha Tammy</name>
+ </maintainer>
+</pkgmetadata>
diff --git a/sys-kernel/rte_kni-kmod/rte_kni-kmod-21.11.ebuild b/sys-kernel/rte_kni-kmod/rte_kni-kmod-21.11.ebuild
new file mode 100644
index 000000000..7f31811a4
--- /dev/null
+++ b/sys-kernel/rte_kni-kmod/rte_kni-kmod-21.11.ebuild
@@ -0,0 +1,67 @@
+# Copyright 2021 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+
+PYTHON_COMPAT=( python3_{8..10} )
+inherit linux-mod python-any-r1 meson
+
+DESCRIPTION="DPDK Kernel Nic Interface module"
+HOMEPAGE="https://dpdk.org/"
+SRC_URI="https://fast.dpdk.org/rel/dpdk-${PV}.tar.xz"
+S="${WORKDIR}/dpdk-${PV}"
+
+LICENSE="BSD GPL-2"
+SLOT="0"
+KEYWORDS="~amd64"
+
+DEPEND="
+ dev-libs/elfutils
+ dev-libs/jansson
+ dev-libs/libbpf
+ dev-libs/libbsd
+ dev-libs/openssl
+ net-libs/libmnl
+ net-libs/libpcap
+ sys-apps/dtc
+ sys-cluster/rdma-core
+ sys-process/numactl
+"
+RDEPEND="${DEPEND}"
+BDEPEND="
+ ${PYTHON_DEPS}
+"
+
+CONFIG_CHECK="~IOMMU_SUPPORT ~AMD_IOMMU ~VFIO ~VFIO_PCI ~UIO ~UIO_PDRV_GENIRQ ~UIO_DMEM_GENIRQ ~HPET_MMAP"
+
+pkg_setup() {
+ linux-mod_pkg_setup
+ python-any-r1_pkg_setup
+}
+
+src_configure() {
+ # we still have to do meson configuration as it creates
+ # header files needed for compiling the rte_kni module
+ local emesonargs=(
+ -Denable_kmods=false
+ -Dmachine=default
+ -Dplatform=generic
+ )
+ meson_src_configure
+
+ # export after meson_src_configure as BUILD_DIR is needed for module compilation
+ export MODULE_NAMES="rte_kni(extra/dpdk:${S}/kernel/linux/kni)"
+ export BUILD_PARAMS="-C \"${KERNEL_DIR}\" M=\"${S}\"/kernel/linux/kni \
+ src=\"${S}\"/kernel/linux/kni \
+ MODULE_CFLAGS=\"${HAVE_ARG_TX_QUEUE} -include ${S}/config/rte_config.h -I${S}/lib/eal/include \
+ -I${S}/lib/kni -I${S}/kernel/linux/kni -I${BUILD_DIR} -I${S}\""
+ export BUILD_TARGETS="modules"
+}
+
+src_compile() {
+ linux-mod_src_compile
+}
+
+src_install() {
+ linux-mod_src_install
+}
^ permalink raw reply related [flat|nested] 8+ messages in thread
* [gentoo-commits] repo/proj/guru:dev commit in: sys-kernel/rte_kni-kmod/
@ 2021-12-23 15:19 Aisha Tammy
0 siblings, 0 replies; 8+ messages in thread
From: Aisha Tammy @ 2021-12-23 15:19 UTC (permalink / raw
To: gentoo-commits
commit: 16757cbb8145a0128b3e89110a97a1fa3c378536
Author: Aisha Tammy <gentoo <AT> aisha <DOT> cc>
AuthorDate: Thu Dec 23 15:19:17 2021 +0000
Commit: Aisha Tammy <gentoo <AT> aisha <DOT> cc>
CommitDate: Thu Dec 23 15:19:17 2021 +0000
URL: https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=16757cbb
sys-kernel/rte_kni-kmod: kernel module has no RDEPEND
Package-Manager: Portage-3.0.28, Repoman-3.0.3
Signed-off-by: Aisha Tammy <gentoo <AT> aisha.cc>
sys-kernel/rte_kni-kmod/rte_kni-kmod-21.11.ebuild | 1 -
1 file changed, 1 deletion(-)
diff --git a/sys-kernel/rte_kni-kmod/rte_kni-kmod-21.11.ebuild b/sys-kernel/rte_kni-kmod/rte_kni-kmod-21.11.ebuild
index 7f31811a4..7bef3eaa9 100644
--- a/sys-kernel/rte_kni-kmod/rte_kni-kmod-21.11.ebuild
+++ b/sys-kernel/rte_kni-kmod/rte_kni-kmod-21.11.ebuild
@@ -27,7 +27,6 @@ DEPEND="
sys-cluster/rdma-core
sys-process/numactl
"
-RDEPEND="${DEPEND}"
BDEPEND="
${PYTHON_DEPS}
"
^ permalink raw reply related [flat|nested] 8+ messages in thread
* [gentoo-commits] repo/proj/guru:dev commit in: sys-kernel/rte_kni-kmod/
@ 2021-12-28 18:10 Aisha Tammy
0 siblings, 0 replies; 8+ messages in thread
From: Aisha Tammy @ 2021-12-28 18:10 UTC (permalink / raw
To: gentoo-commits
commit: 58492a40c1cbc56c03dadf1482429f4f3e44fcab
Author: Aisha Tammy <gentoo <AT> aisha <DOT> cc>
AuthorDate: Tue Dec 28 18:09:28 2021 +0000
Commit: Aisha Tammy <gentoo <AT> aisha <DOT> cc>
CommitDate: Tue Dec 28 18:10:00 2021 +0000
URL: https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=58492a40
sys-kernel/rte_kni-kmod: restrict tests
closes: https://bugs.gentoo.org/830144
Package-Manager: Portage-3.0.30, Repoman-3.0.3
Signed-off-by: Aisha Tammy <gentoo <AT> aisha.cc>
sys-kernel/rte_kni-kmod/rte_kni-kmod-21.11.ebuild | 2 ++
1 file changed, 2 insertions(+)
diff --git a/sys-kernel/rte_kni-kmod/rte_kni-kmod-21.11.ebuild b/sys-kernel/rte_kni-kmod/rte_kni-kmod-21.11.ebuild
index 6e7423e34..9d7d87a8f 100644
--- a/sys-kernel/rte_kni-kmod/rte_kni-kmod-21.11.ebuild
+++ b/sys-kernel/rte_kni-kmod/rte_kni-kmod-21.11.ebuild
@@ -15,6 +15,8 @@ LICENSE="BSD GPL-2"
SLOT="0"
KEYWORDS="~amd64"
REQUIRED_USE="${PYTHON_REQUIRED_USE}"
+# tests need root
+RESTRICT="test"
DEPEND="${PYTHON_DEPS}
$(python_gen_cond_dep '
^ permalink raw reply related [flat|nested] 8+ messages in thread
* [gentoo-commits] repo/proj/guru:dev commit in: sys-kernel/rte_kni-kmod/
2022-01-02 15:04 [gentoo-commits] repo/proj/guru:master " Andrew Ammerlaan
@ 2022-01-02 15:04 ` Andrew Ammerlaan
0 siblings, 0 replies; 8+ messages in thread
From: Andrew Ammerlaan @ 2022-01-02 15:04 UTC (permalink / raw
To: gentoo-commits
commit: c88fea59f6165a4dbef3384f56c9380fe4770a02
Author: Andrew Ammerlaan <andrewammerlaan <AT> gentoo <DOT> org>
AuthorDate: Sun Jan 2 15:04:47 2022 +0000
Commit: Andrew Ammerlaan <andrewammerlaan <AT> gentoo <DOT> org>
CommitDate: Sun Jan 2 15:04:47 2022 +0000
URL: https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=c88fea59
sys-kernel/rte_kni-kmod: fix python deps
Package-Manager: Portage-3.0.30, Repoman-3.0.3
Signed-off-by: Andrew Ammerlaan <andrewammerlaan <AT> gentoo.org>
sys-kernel/rte_kni-kmod/rte_kni-kmod-21.11.ebuild | 6 ++++--
1 file changed, 4 insertions(+), 2 deletions(-)
diff --git a/sys-kernel/rte_kni-kmod/rte_kni-kmod-21.11.ebuild b/sys-kernel/rte_kni-kmod/rte_kni-kmod-21.11.ebuild
index 9d7d87a8f..44e368c06 100644
--- a/sys-kernel/rte_kni-kmod/rte_kni-kmod-21.11.ebuild
+++ b/sys-kernel/rte_kni-kmod/rte_kni-kmod-21.11.ebuild
@@ -1,4 +1,4 @@
-# Copyright 2021 Gentoo Authors
+# Copyright 2021-2022 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=7
@@ -18,7 +18,9 @@ REQUIRED_USE="${PYTHON_REQUIRED_USE}"
# tests need root
RESTRICT="test"
-DEPEND="${PYTHON_DEPS}
+RDEPEND="${PYTHON_DEPS}"
+
+DEPEND="${RDEPEND}
$(python_gen_cond_dep '
dev-python/pyelftools[${PYTHON_USEDEP}]
')
^ permalink raw reply related [flat|nested] 8+ messages in thread
* [gentoo-commits] repo/proj/guru:dev commit in: sys-kernel/rte_kni-kmod/
@ 2022-04-26 17:40 Aisha Tammy
0 siblings, 0 replies; 8+ messages in thread
From: Aisha Tammy @ 2022-04-26 17:40 UTC (permalink / raw
To: gentoo-commits
commit: 031ac6163a9ab7284db2ee94a7115bb77757cf7d
Author: Aisha Tammy <gentoo <AT> aisha <DOT> cc>
AuthorDate: Tue Apr 26 17:39:35 2022 +0000
Commit: Aisha Tammy <gentoo <AT> aisha <DOT> cc>
CommitDate: Tue Apr 26 17:39:35 2022 +0000
URL: https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=031ac616
sys-kernel/rte_kni-kmod: add 21.11.1, 22.03
Signed-off-by: Aisha Tammy <gentoo <AT> aisha.cc>
sys-kernel/rte_kni-kmod/Manifest | 2 +
.../rte_kni-kmod/rte_kni-kmod-21.11.1.ebuild | 78 ++++++++++++++++++++++
sys-kernel/rte_kni-kmod/rte_kni-kmod-22.03.ebuild | 78 ++++++++++++++++++++++
3 files changed, 158 insertions(+)
diff --git a/sys-kernel/rte_kni-kmod/Manifest b/sys-kernel/rte_kni-kmod/Manifest
index cf0fb5cc1..bcd3dead8 100644
--- a/sys-kernel/rte_kni-kmod/Manifest
+++ b/sys-kernel/rte_kni-kmod/Manifest
@@ -1 +1,3 @@
+DIST dpdk-21.11.1.tar.xz 15115156 BLAKE2B 089e98279922b5494b205d957f9ac05001a668f4536d45e5fd89b9f7d04779e0671ec428b2408963641da3ae999d5943a1ff5dc59c23020ccefce824609c8f11 SHA512 d7afc0c918626b1706a18a129086fcd3741b251c28fa00c5711eb85a03137e5ee6e08de7bd5ebe957e442dc9b901314042b382b223e74f0fdd5d560ac657f1b3
DIST dpdk-21.11.tar.xz 15102516 BLAKE2B e82fb03242b74e458810ee5e0d21feaf5d6d781b81b8dc5c2a2ab977bac202290dadc8734ea13993bb1cb1df4b5c4d770df574052a384b590ac798d19c370c59 SHA512 843282023c2f77a9b8af393d50c6dde54f09d490cd6f4a99f03d4df5df13a7d963aa86885fdf64e13f9da71e01c881d1f301dd093574a32cddd84f4b1fb58fd5
+DIST dpdk-22.03.tar.xz 15055548 BLAKE2B 16fb52618e72deba7097e4d920e160e14f1332eed2b8f2f2957f3dd1b847859e6b8b8cd6adef0513cd7bc528a37d4c481f803e8c5badaa299d2bb2af3615e696 SHA512 b3940642f99767323f39470c1e3e0eab7a07bcaca225e2a714b62ba6c59d2c66e4ea17d38e8266f37ed8b5c5c2ad272930fd28f545324ec0a1cb185685e06a5f
diff --git a/sys-kernel/rte_kni-kmod/rte_kni-kmod-21.11.1.ebuild b/sys-kernel/rte_kni-kmod/rte_kni-kmod-21.11.1.ebuild
new file mode 100644
index 000000000..488bf4d94
--- /dev/null
+++ b/sys-kernel/rte_kni-kmod/rte_kni-kmod-21.11.1.ebuild
@@ -0,0 +1,78 @@
+# Copyright 2021-2022 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+
+PYTHON_COMPAT=( python3_{8..10} )
+inherit linux-mod python-single-r1 meson
+
+DESCRIPTION="DPDK Kernel Nic Interface module"
+HOMEPAGE="https://dpdk.org/"
+SRC_URI="https://fast.dpdk.org/rel/dpdk-${PV}.tar.xz"
+S="${WORKDIR}/dpdk-stable-${PV}"
+
+LICENSE="BSD GPL-2"
+SLOT="0"
+KEYWORDS="~amd64"
+REQUIRED_USE="${PYTHON_REQUIRED_USE}"
+# tests need root
+RESTRICT="test"
+
+RDEPEND="${PYTHON_DEPS}"
+
+DEPEND="${RDEPEND}
+ $(python_gen_cond_dep '
+ dev-python/pyelftools[${PYTHON_USEDEP}]
+ ')
+ app-crypt/intel-ipsec-mb
+ dev-libs/elfutils
+ dev-libs/isa-l
+ dev-libs/jansson
+ dev-libs/libbpf
+ dev-libs/libbsd
+ dev-libs/openssl
+ net-libs/libmnl
+ net-libs/libpcap
+ sys-apps/dtc
+ sys-cluster/rdma-core
+ sys-process/numactl
+"
+BDEPEND="
+ ${PYTHON_DEPS}
+"
+
+CONFIG_CHECK="~IOMMU_SUPPORT ~AMD_IOMMU ~VFIO ~VFIO_PCI ~UIO ~UIO_PDRV_GENIRQ ~UIO_DMEM_GENIRQ ~HPET_MMAP"
+
+pkg_setup() {
+ linux-mod_pkg_setup
+ python-single-r1_pkg_setup
+}
+
+src_configure() {
+ linux-mod_pkg_setup
+ python-single-r1_pkg_setup
+ # we still have to do meson configuration as it creates
+ # header files needed for compiling the rte_kni module
+ local emesonargs=(
+ -Denable_kmods=false
+ -Dmachine=default
+ -Dplatform=generic
+ )
+ meson_src_configure
+
+ # export after meson_src_configure as BUILD_DIR is needed for module compilation
+ export MODULE_NAMES="rte_kni(extra/dpdk:${S}/kernel/linux/kni)"
+ export BUILD_PARAMS="-C \"${KERNEL_DIR}\" M=\"${S}\"/kernel/linux/kni \
+ src=\"${S}\"/kernel/linux/kni \
+ MODULE_CFLAGS=\"${HAVE_ARG_TX_QUEUE} -include ${S}/config/rte_config.h -I${S}/lib/eal/include \
+ -I${S}/lib/kni -I${S}/kernel/linux/kni -I${BUILD_DIR} -I${S}\""
+ export BUILD_TARGETS="modules"
+}
+
+src_compile() {
+ linux-mod_src_compile
+}
+
+src_install() {
+ linux-mod_src_install
+}
diff --git a/sys-kernel/rte_kni-kmod/rte_kni-kmod-22.03.ebuild b/sys-kernel/rte_kni-kmod/rte_kni-kmod-22.03.ebuild
new file mode 100644
index 000000000..44e368c06
--- /dev/null
+++ b/sys-kernel/rte_kni-kmod/rte_kni-kmod-22.03.ebuild
@@ -0,0 +1,78 @@
+# Copyright 2021-2022 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+
+PYTHON_COMPAT=( python3_{8..10} )
+inherit linux-mod python-single-r1 meson
+
+DESCRIPTION="DPDK Kernel Nic Interface module"
+HOMEPAGE="https://dpdk.org/"
+SRC_URI="https://fast.dpdk.org/rel/dpdk-${PV}.tar.xz"
+S="${WORKDIR}/dpdk-${PV}"
+
+LICENSE="BSD GPL-2"
+SLOT="0"
+KEYWORDS="~amd64"
+REQUIRED_USE="${PYTHON_REQUIRED_USE}"
+# tests need root
+RESTRICT="test"
+
+RDEPEND="${PYTHON_DEPS}"
+
+DEPEND="${RDEPEND}
+ $(python_gen_cond_dep '
+ dev-python/pyelftools[${PYTHON_USEDEP}]
+ ')
+ app-crypt/intel-ipsec-mb
+ dev-libs/elfutils
+ dev-libs/isa-l
+ dev-libs/jansson
+ dev-libs/libbpf
+ dev-libs/libbsd
+ dev-libs/openssl
+ net-libs/libmnl
+ net-libs/libpcap
+ sys-apps/dtc
+ sys-cluster/rdma-core
+ sys-process/numactl
+"
+BDEPEND="
+ ${PYTHON_DEPS}
+"
+
+CONFIG_CHECK="~IOMMU_SUPPORT ~AMD_IOMMU ~VFIO ~VFIO_PCI ~UIO ~UIO_PDRV_GENIRQ ~UIO_DMEM_GENIRQ ~HPET_MMAP"
+
+pkg_setup() {
+ linux-mod_pkg_setup
+ python-single-r1_pkg_setup
+}
+
+src_configure() {
+ linux-mod_pkg_setup
+ python-single-r1_pkg_setup
+ # we still have to do meson configuration as it creates
+ # header files needed for compiling the rte_kni module
+ local emesonargs=(
+ -Denable_kmods=false
+ -Dmachine=default
+ -Dplatform=generic
+ )
+ meson_src_configure
+
+ # export after meson_src_configure as BUILD_DIR is needed for module compilation
+ export MODULE_NAMES="rte_kni(extra/dpdk:${S}/kernel/linux/kni)"
+ export BUILD_PARAMS="-C \"${KERNEL_DIR}\" M=\"${S}\"/kernel/linux/kni \
+ src=\"${S}\"/kernel/linux/kni \
+ MODULE_CFLAGS=\"${HAVE_ARG_TX_QUEUE} -include ${S}/config/rte_config.h -I${S}/lib/eal/include \
+ -I${S}/lib/kni -I${S}/kernel/linux/kni -I${BUILD_DIR} -I${S}\""
+ export BUILD_TARGETS="modules"
+}
+
+src_compile() {
+ linux-mod_src_compile
+}
+
+src_install() {
+ linux-mod_src_install
+}
^ permalink raw reply related [flat|nested] 8+ messages in thread
* [gentoo-commits] repo/proj/guru:dev commit in: sys-kernel/rte_kni-kmod/
@ 2022-04-26 17:40 Aisha Tammy
0 siblings, 0 replies; 8+ messages in thread
From: Aisha Tammy @ 2022-04-26 17:40 UTC (permalink / raw
To: gentoo-commits
commit: 8f6b73edbb7016736d596ae8290029be0e8a7e92
Author: Aisha Tammy <gentoo <AT> aisha <DOT> cc>
AuthorDate: Tue Apr 26 17:39:54 2022 +0000
Commit: Aisha Tammy <gentoo <AT> aisha <DOT> cc>
CommitDate: Tue Apr 26 17:39:54 2022 +0000
URL: https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=8f6b73ed
sys-kernel/rte_kni-kmod: drop 21.11
Signed-off-by: Aisha Tammy <gentoo <AT> aisha.cc>
sys-kernel/rte_kni-kmod/Manifest | 1 -
sys-kernel/rte_kni-kmod/rte_kni-kmod-21.11.ebuild | 78 -----------------------
2 files changed, 79 deletions(-)
diff --git a/sys-kernel/rte_kni-kmod/Manifest b/sys-kernel/rte_kni-kmod/Manifest
index bcd3dead8..a3e4c3a2c 100644
--- a/sys-kernel/rte_kni-kmod/Manifest
+++ b/sys-kernel/rte_kni-kmod/Manifest
@@ -1,3 +1,2 @@
DIST dpdk-21.11.1.tar.xz 15115156 BLAKE2B 089e98279922b5494b205d957f9ac05001a668f4536d45e5fd89b9f7d04779e0671ec428b2408963641da3ae999d5943a1ff5dc59c23020ccefce824609c8f11 SHA512 d7afc0c918626b1706a18a129086fcd3741b251c28fa00c5711eb85a03137e5ee6e08de7bd5ebe957e442dc9b901314042b382b223e74f0fdd5d560ac657f1b3
-DIST dpdk-21.11.tar.xz 15102516 BLAKE2B e82fb03242b74e458810ee5e0d21feaf5d6d781b81b8dc5c2a2ab977bac202290dadc8734ea13993bb1cb1df4b5c4d770df574052a384b590ac798d19c370c59 SHA512 843282023c2f77a9b8af393d50c6dde54f09d490cd6f4a99f03d4df5df13a7d963aa86885fdf64e13f9da71e01c881d1f301dd093574a32cddd84f4b1fb58fd5
DIST dpdk-22.03.tar.xz 15055548 BLAKE2B 16fb52618e72deba7097e4d920e160e14f1332eed2b8f2f2957f3dd1b847859e6b8b8cd6adef0513cd7bc528a37d4c481f803e8c5badaa299d2bb2af3615e696 SHA512 b3940642f99767323f39470c1e3e0eab7a07bcaca225e2a714b62ba6c59d2c66e4ea17d38e8266f37ed8b5c5c2ad272930fd28f545324ec0a1cb185685e06a5f
diff --git a/sys-kernel/rte_kni-kmod/rte_kni-kmod-21.11.ebuild b/sys-kernel/rte_kni-kmod/rte_kni-kmod-21.11.ebuild
deleted file mode 100644
index 44e368c06..000000000
--- a/sys-kernel/rte_kni-kmod/rte_kni-kmod-21.11.ebuild
+++ /dev/null
@@ -1,78 +0,0 @@
-# Copyright 2021-2022 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=7
-
-PYTHON_COMPAT=( python3_{8..10} )
-inherit linux-mod python-single-r1 meson
-
-DESCRIPTION="DPDK Kernel Nic Interface module"
-HOMEPAGE="https://dpdk.org/"
-SRC_URI="https://fast.dpdk.org/rel/dpdk-${PV}.tar.xz"
-S="${WORKDIR}/dpdk-${PV}"
-
-LICENSE="BSD GPL-2"
-SLOT="0"
-KEYWORDS="~amd64"
-REQUIRED_USE="${PYTHON_REQUIRED_USE}"
-# tests need root
-RESTRICT="test"
-
-RDEPEND="${PYTHON_DEPS}"
-
-DEPEND="${RDEPEND}
- $(python_gen_cond_dep '
- dev-python/pyelftools[${PYTHON_USEDEP}]
- ')
- app-crypt/intel-ipsec-mb
- dev-libs/elfutils
- dev-libs/isa-l
- dev-libs/jansson
- dev-libs/libbpf
- dev-libs/libbsd
- dev-libs/openssl
- net-libs/libmnl
- net-libs/libpcap
- sys-apps/dtc
- sys-cluster/rdma-core
- sys-process/numactl
-"
-BDEPEND="
- ${PYTHON_DEPS}
-"
-
-CONFIG_CHECK="~IOMMU_SUPPORT ~AMD_IOMMU ~VFIO ~VFIO_PCI ~UIO ~UIO_PDRV_GENIRQ ~UIO_DMEM_GENIRQ ~HPET_MMAP"
-
-pkg_setup() {
- linux-mod_pkg_setup
- python-single-r1_pkg_setup
-}
-
-src_configure() {
- linux-mod_pkg_setup
- python-single-r1_pkg_setup
- # we still have to do meson configuration as it creates
- # header files needed for compiling the rte_kni module
- local emesonargs=(
- -Denable_kmods=false
- -Dmachine=default
- -Dplatform=generic
- )
- meson_src_configure
-
- # export after meson_src_configure as BUILD_DIR is needed for module compilation
- export MODULE_NAMES="rte_kni(extra/dpdk:${S}/kernel/linux/kni)"
- export BUILD_PARAMS="-C \"${KERNEL_DIR}\" M=\"${S}\"/kernel/linux/kni \
- src=\"${S}\"/kernel/linux/kni \
- MODULE_CFLAGS=\"${HAVE_ARG_TX_QUEUE} -include ${S}/config/rte_config.h -I${S}/lib/eal/include \
- -I${S}/lib/kni -I${S}/kernel/linux/kni -I${BUILD_DIR} -I${S}\""
- export BUILD_TARGETS="modules"
-}
-
-src_compile() {
- linux-mod_src_compile
-}
-
-src_install() {
- linux-mod_src_install
-}
^ permalink raw reply related [flat|nested] 8+ messages in thread
* [gentoo-commits] repo/proj/guru:dev commit in: sys-kernel/rte_kni-kmod/
@ 2022-08-15 14:18 Aisha Tammy
0 siblings, 0 replies; 8+ messages in thread
From: Aisha Tammy @ 2022-08-15 14:18 UTC (permalink / raw
To: gentoo-commits
commit: e74c3f5cbb2c549702130a3b147c1df5ea83d832
Author: Aisha Tammy <gentoo <AT> aisha <DOT> cc>
AuthorDate: Mon Aug 15 14:15:11 2022 +0000
Commit: Aisha Tammy <gentoo <AT> aisha <DOT> cc>
CommitDate: Mon Aug 15 14:16:48 2022 +0000
URL: https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=e74c3f5c
sys-kernel/rte_kni-kmod: add 22.07
Signed-off-by: Aisha Tammy <gentoo <AT> aisha.cc>
sys-kernel/rte_kni-kmod/Manifest | 1 +
sys-kernel/rte_kni-kmod/rte_kni-kmod-22.07.ebuild | 86 +++++++++++++++++++++++
2 files changed, 87 insertions(+)
diff --git a/sys-kernel/rte_kni-kmod/Manifest b/sys-kernel/rte_kni-kmod/Manifest
index a3e4c3a2c..69dd6fcc9 100644
--- a/sys-kernel/rte_kni-kmod/Manifest
+++ b/sys-kernel/rte_kni-kmod/Manifest
@@ -1,2 +1,3 @@
DIST dpdk-21.11.1.tar.xz 15115156 BLAKE2B 089e98279922b5494b205d957f9ac05001a668f4536d45e5fd89b9f7d04779e0671ec428b2408963641da3ae999d5943a1ff5dc59c23020ccefce824609c8f11 SHA512 d7afc0c918626b1706a18a129086fcd3741b251c28fa00c5711eb85a03137e5ee6e08de7bd5ebe957e442dc9b901314042b382b223e74f0fdd5d560ac657f1b3
DIST dpdk-22.03.tar.xz 15055548 BLAKE2B 16fb52618e72deba7097e4d920e160e14f1332eed2b8f2f2957f3dd1b847859e6b8b8cd6adef0513cd7bc528a37d4c481f803e8c5badaa299d2bb2af3615e696 SHA512 b3940642f99767323f39470c1e3e0eab7a07bcaca225e2a714b62ba6c59d2c66e4ea17d38e8266f37ed8b5c5c2ad272930fd28f545324ec0a1cb185685e06a5f
+DIST dpdk-22.07.tar.xz 15231912 BLAKE2B 29e36519fb91d440645259932863b5fb6c2386f78d9ba78a871505d7d32e9f4803012aa62044aa578585eee4507aa1c277bda6ec0428a27820faef644f5bfd79 SHA512 8b2adb8a47732efca4e35a68ab03d6c579fc0f699344c0c10be45e62c90d412ebea5ddc37a26efd08a9af08e65c84de177817300a66e6107674f15ecfe3e696c
diff --git a/sys-kernel/rte_kni-kmod/rte_kni-kmod-22.07.ebuild b/sys-kernel/rte_kni-kmod/rte_kni-kmod-22.07.ebuild
new file mode 100644
index 000000000..f0b7092e5
--- /dev/null
+++ b/sys-kernel/rte_kni-kmod/rte_kni-kmod-22.07.ebuild
@@ -0,0 +1,86 @@
+# Copyright 2021-2022 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+
+PYTHON_COMPAT=( python3_{8..10} )
+inherit linux-mod python-single-r1 meson
+
+DESCRIPTION="DPDK Kernel Nic Interface module"
+HOMEPAGE="https://dpdk.org/"
+SRC_URI="https://fast.dpdk.org/rel/dpdk-${PV}.tar.xz"
+S="${WORKDIR}/dpdk-${PV}"
+
+LICENSE="BSD GPL-2"
+SLOT="0"
+KEYWORDS="~amd64"
+REQUIRED_USE="${PYTHON_REQUIRED_USE}"
+# tests need root
+RESTRICT="test"
+
+RDEPEND="${PYTHON_DEPS}"
+
+DEPEND="${RDEPEND}
+ $(python_gen_cond_dep '
+ dev-python/pyelftools[${PYTHON_USEDEP}]
+ ')
+ app-crypt/intel-ipsec-mb
+ dev-libs/elfutils
+ dev-libs/isa-l
+ dev-libs/jansson
+ dev-libs/libbpf
+ dev-libs/libbsd
+ dev-libs/openssl
+ net-libs/libmnl
+ net-libs/libpcap
+ sys-apps/dtc
+ sys-cluster/rdma-core
+ sys-process/numactl
+"
+BDEPEND="
+ ${PYTHON_DEPS}
+"
+
+PATCHES=( "${FILESDIR}/dpdk-22.03-binutils.patch" )
+
+pkg_setup() {
+ linux-mod_pkg_setup
+ python-single-r1_pkg_setup
+}
+
+src_prepare() {
+ default
+ sed -e "s/@OBJDUMP@/$(tc-getOBJDUMP)/g" -i \
+ buildtools/meson.build \
+ buildtools/check-symbols.sh \
+ devtools/check-abi-version.sh || die
+}
+
+src_configure() {
+ linux-mod_pkg_setup
+ python-single-r1_pkg_setup
+ # we still have to do meson configuration as it creates
+ # header files needed for compiling the rte_kni module
+ local emesonargs=(
+ -Denable_kmods=false
+ -Dmachine=default
+ -Dplatform=generic
+ )
+ meson_src_configure
+
+ # export after meson_src_configure as BUILD_DIR is needed for module compilation
+ export MODULE_NAMES="rte_kni(extra/dpdk:${S}/kernel/linux/kni)"
+ export BUILD_PARAMS="-C \"${KERNEL_DIR}\" M=\"${S}\"/kernel/linux/kni \
+ src=\"${S}\"/kernel/linux/kni \
+ MODULE_CFLAGS=\"${HAVE_ARG_TX_QUEUE} -include ${S}/config/rte_config.h -I${S}/lib/eal/include \
+ -I${S}/lib/kni -I${S}/kernel/linux/kni -I${BUILD_DIR} -I${S}\""
+ export BUILD_TARGETS="modules"
+}
+
+src_compile() {
+ linux-mod_src_compile
+}
+
+src_install() {
+ linux-mod_src_install
+}
^ permalink raw reply related [flat|nested] 8+ messages in thread
* [gentoo-commits] repo/proj/guru:dev commit in: sys-kernel/rte_kni-kmod/
@ 2022-08-15 14:22 Aisha Tammy
0 siblings, 0 replies; 8+ messages in thread
From: Aisha Tammy @ 2022-08-15 14:22 UTC (permalink / raw
To: gentoo-commits
commit: 4bc118ee0320a8a5e1e44ae2667316b36fbb41b7
Author: Aisha Tammy <gentoo <AT> aisha <DOT> cc>
AuthorDate: Mon Aug 15 14:22:41 2022 +0000
Commit: Aisha Tammy <gentoo <AT> aisha <DOT> cc>
CommitDate: Mon Aug 15 14:22:41 2022 +0000
URL: https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=4bc118ee
sys-kernel/rte_kni-kmod: drop 22.03
Signed-off-by: Aisha Tammy <gentoo <AT> aisha.cc>
sys-kernel/rte_kni-kmod/Manifest | 1 -
sys-kernel/rte_kni-kmod/rte_kni-kmod-22.03.ebuild | 86 -----------------------
2 files changed, 87 deletions(-)
diff --git a/sys-kernel/rte_kni-kmod/Manifest b/sys-kernel/rte_kni-kmod/Manifest
index 69dd6fcc9..26d1a089d 100644
--- a/sys-kernel/rte_kni-kmod/Manifest
+++ b/sys-kernel/rte_kni-kmod/Manifest
@@ -1,3 +1,2 @@
DIST dpdk-21.11.1.tar.xz 15115156 BLAKE2B 089e98279922b5494b205d957f9ac05001a668f4536d45e5fd89b9f7d04779e0671ec428b2408963641da3ae999d5943a1ff5dc59c23020ccefce824609c8f11 SHA512 d7afc0c918626b1706a18a129086fcd3741b251c28fa00c5711eb85a03137e5ee6e08de7bd5ebe957e442dc9b901314042b382b223e74f0fdd5d560ac657f1b3
-DIST dpdk-22.03.tar.xz 15055548 BLAKE2B 16fb52618e72deba7097e4d920e160e14f1332eed2b8f2f2957f3dd1b847859e6b8b8cd6adef0513cd7bc528a37d4c481f803e8c5badaa299d2bb2af3615e696 SHA512 b3940642f99767323f39470c1e3e0eab7a07bcaca225e2a714b62ba6c59d2c66e4ea17d38e8266f37ed8b5c5c2ad272930fd28f545324ec0a1cb185685e06a5f
DIST dpdk-22.07.tar.xz 15231912 BLAKE2B 29e36519fb91d440645259932863b5fb6c2386f78d9ba78a871505d7d32e9f4803012aa62044aa578585eee4507aa1c277bda6ec0428a27820faef644f5bfd79 SHA512 8b2adb8a47732efca4e35a68ab03d6c579fc0f699344c0c10be45e62c90d412ebea5ddc37a26efd08a9af08e65c84de177817300a66e6107674f15ecfe3e696c
diff --git a/sys-kernel/rte_kni-kmod/rte_kni-kmod-22.03.ebuild b/sys-kernel/rte_kni-kmod/rte_kni-kmod-22.03.ebuild
deleted file mode 100644
index f0b7092e5..000000000
--- a/sys-kernel/rte_kni-kmod/rte_kni-kmod-22.03.ebuild
+++ /dev/null
@@ -1,86 +0,0 @@
-# Copyright 2021-2022 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=7
-
-PYTHON_COMPAT=( python3_{8..10} )
-inherit linux-mod python-single-r1 meson
-
-DESCRIPTION="DPDK Kernel Nic Interface module"
-HOMEPAGE="https://dpdk.org/"
-SRC_URI="https://fast.dpdk.org/rel/dpdk-${PV}.tar.xz"
-S="${WORKDIR}/dpdk-${PV}"
-
-LICENSE="BSD GPL-2"
-SLOT="0"
-KEYWORDS="~amd64"
-REQUIRED_USE="${PYTHON_REQUIRED_USE}"
-# tests need root
-RESTRICT="test"
-
-RDEPEND="${PYTHON_DEPS}"
-
-DEPEND="${RDEPEND}
- $(python_gen_cond_dep '
- dev-python/pyelftools[${PYTHON_USEDEP}]
- ')
- app-crypt/intel-ipsec-mb
- dev-libs/elfutils
- dev-libs/isa-l
- dev-libs/jansson
- dev-libs/libbpf
- dev-libs/libbsd
- dev-libs/openssl
- net-libs/libmnl
- net-libs/libpcap
- sys-apps/dtc
- sys-cluster/rdma-core
- sys-process/numactl
-"
-BDEPEND="
- ${PYTHON_DEPS}
-"
-
-PATCHES=( "${FILESDIR}/dpdk-22.03-binutils.patch" )
-
-pkg_setup() {
- linux-mod_pkg_setup
- python-single-r1_pkg_setup
-}
-
-src_prepare() {
- default
- sed -e "s/@OBJDUMP@/$(tc-getOBJDUMP)/g" -i \
- buildtools/meson.build \
- buildtools/check-symbols.sh \
- devtools/check-abi-version.sh || die
-}
-
-src_configure() {
- linux-mod_pkg_setup
- python-single-r1_pkg_setup
- # we still have to do meson configuration as it creates
- # header files needed for compiling the rte_kni module
- local emesonargs=(
- -Denable_kmods=false
- -Dmachine=default
- -Dplatform=generic
- )
- meson_src_configure
-
- # export after meson_src_configure as BUILD_DIR is needed for module compilation
- export MODULE_NAMES="rte_kni(extra/dpdk:${S}/kernel/linux/kni)"
- export BUILD_PARAMS="-C \"${KERNEL_DIR}\" M=\"${S}\"/kernel/linux/kni \
- src=\"${S}\"/kernel/linux/kni \
- MODULE_CFLAGS=\"${HAVE_ARG_TX_QUEUE} -include ${S}/config/rte_config.h -I${S}/lib/eal/include \
- -I${S}/lib/kni -I${S}/kernel/linux/kni -I${BUILD_DIR} -I${S}\""
- export BUILD_TARGETS="modules"
-}
-
-src_compile() {
- linux-mod_src_compile
-}
-
-src_install() {
- linux-mod_src_install
-}
^ permalink raw reply related [flat|nested] 8+ messages in thread
end of thread, other threads:[~2022-08-15 14:22 UTC | newest]
Thread overview: 8+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2022-04-26 17:40 [gentoo-commits] repo/proj/guru:dev commit in: sys-kernel/rte_kni-kmod/ Aisha Tammy
-- strict thread matches above, loose matches on Subject: below --
2022-08-15 14:22 Aisha Tammy
2022-08-15 14:18 Aisha Tammy
2022-04-26 17:40 Aisha Tammy
2022-01-02 15:04 [gentoo-commits] repo/proj/guru:master " Andrew Ammerlaan
2022-01-02 15:04 ` [gentoo-commits] repo/proj/guru:dev " Andrew Ammerlaan
2021-12-28 18:10 Aisha Tammy
2021-12-23 15:19 Aisha Tammy
2021-12-23 15:08 Aisha Tammy
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox