summarylogtreecommitdiffstats
diff options
context:
space:
mode:
authorkarel2021-03-12 11:36:53 +0200
committerkarel2021-03-12 11:36:53 +0200
commit4fce7785ebac470d22a65119f02d2c142d9dc1cf (patch)
tree82103082806a19200b06fb2611e9aa4c927ff6a9
parent82f021945e947ae5f89fa33d21347256c681f900 (diff)
downloadaur-4fce7785ebac470d22a65119f02d2c142d9dc1cf.tar.gz
Update to 19.11.6
-rw-r--r--.SRCINFO6
-rw-r--r--PKGBUILD5
-rw-r--r--dpdk-dev-mk-disable-new-gcc-truncation-flag.patch14
3 files changed, 6 insertions, 19 deletions
diff --git a/.SRCINFO b/.SRCINFO
index c465a81588a5..14a4a9f3b067 100644
--- a/.SRCINFO
+++ b/.SRCINFO
@@ -1,6 +1,6 @@
pkgbase = dpdk-lts
pkgdesc = A set of libraries and drivers for fast packet processing
- pkgver = 19.11
+ pkgver = 19.11.6
pkgrel = 1
url = http://dpdk.org
arch = x86_64
@@ -10,8 +10,8 @@ pkgbase = dpdk-lts
makedepends = libpcap
depends = numactl
options = staticlibs
- source = http://fast.dpdk.org/rel/dpdk-19.11.tar.xz
- sha256sums = 467133968843677bb1c276bb74a3458aa7c002cc21e295c51e3bd65497b112ab
+ source = http://fast.dpdk.org/rel/dpdk-19.11.6.tar.xz
+ sha256sums = 97ee27bb98f5e38bdaa3762345817a56f821b016bb2f518cf0aade4fdffde9f4
pkgname = dpdk-lts
diff --git a/PKGBUILD b/PKGBUILD
index 789aee7071f1..14c02f169d3c 100644
--- a/PKGBUILD
+++ b/PKGBUILD
@@ -1,5 +1,5 @@
pkgname=dpdk-lts
-pkgver=19.11
+pkgver=19.11.6
pkgrel=1
pkgdesc='A set of libraries and drivers for fast packet processing'
arch=(x86_64 i686)
@@ -13,10 +13,11 @@ source=(
"http://fast.dpdk.org/rel/dpdk-$pkgver.tar.xz"
)
sha256sums=(
- '467133968843677bb1c276bb74a3458aa7c002cc21e295c51e3bd65497b112ab'
+ '97ee27bb98f5e38bdaa3762345817a56f821b016bb2f518cf0aade4fdffde9f4'
)
prepare() {
+ mv dpdk-stable-$pkgver dpdk-$pkgver
cd dpdk-$pkgver
make T=x86_64-native-linuxapp-gcc config
diff --git a/dpdk-dev-mk-disable-new-gcc-truncation-flag.patch b/dpdk-dev-mk-disable-new-gcc-truncation-flag.patch
deleted file mode 100644
index d932db85c1a2..000000000000
--- a/dpdk-dev-mk-disable-new-gcc-truncation-flag.patch
+++ /dev/null
@@ -1,14 +0,0 @@
-diff --git a/lib/librte_eal/linuxapp/kni/Makefile b/lib/librte_eal/linuxapp/kni/Makefile
-index 154c528db..79bb498dd 100644
---- a/lib/librte_eal/linuxapp/kni/Makefile
-+++ b/lib/librte_eal/linuxapp/kni/Makefile
-@@ -43,6 +43,9 @@ MODULE_CFLAGS += -I$(SRCDIR) --param max-inline-insns-single=50
- MODULE_CFLAGS += -I$(RTE_OUTPUT)/include -I$(SRCDIR)/ethtool/ixgbe -I$(SRCDIR)/ethtool/igb
- MODULE_CFLAGS += -include $(RTE_OUTPUT)/include/rte_config.h
- MODULE_CFLAGS += -Wall -Werror
-+ifeq ($(shell test $(GCC_VERSION) -ge 70 && echo 1), 1)
-+MODULE_CFLAGS += -Wno-format-truncation
-+endif
-
- -include /etc/lsb-release
-