diff options
author | Rosen Penev <rosenp@gmail.com> | 2021-07-20 20:25:12 -0700 |
---|---|---|
committer | Rosen Penev <rosenp@gmail.com> | 2021-07-21 00:18:15 -0700 |
commit | 7fe327a31a6e3c51f0b8d5522a42bd4ca7b870e6 (patch) | |
tree | db10e4198a9bcd69f429d14e2a41f08ef266bf1a /net/lksctp-tools | |
parent | 08f1cb23b9f27988202b6e729776c02dd16b188f (diff) |
lksctp-tools: update to 1.0.19
Switch to AUTORELEASE for simplicity.
Remove upstreamed patch.
Signed-off-by: Rosen Penev <rosenp@gmail.com>
Diffstat (limited to 'net/lksctp-tools')
-rw-r--r-- | net/lksctp-tools/Makefile | 6 | ||||
-rw-r--r-- | net/lksctp-tools/patches/010-build-fix-netinet-sctp.h-not-to-be-installed.patch | 30 |
2 files changed, 3 insertions, 33 deletions
diff --git a/net/lksctp-tools/Makefile b/net/lksctp-tools/Makefile index a57c336d6..1cb4ea973 100644 --- a/net/lksctp-tools/Makefile +++ b/net/lksctp-tools/Makefile @@ -8,12 +8,12 @@ include $(TOPDIR)/rules.mk PKG_NAME:=lksctp-tools -PKG_VERSION:=1.0.18 -PKG_RELEASE:=1 +PKG_VERSION:=1.0.19 +PKG_RELEASE:=$(AUTORELEASE) PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.gz PKG_SOURCE_URL:=https://codeload.github.com/sctp/lksctp-tools/tar.gz/v$(PKG_VERSION)? -PKG_HASH:=3e9ab5b3844a8b65fc8152633aafe85f406e6da463e53921583dfc4a443ff03a +PKG_HASH:=9251b1368472fb55aaeafe4787131bdde4e96758f6170620bc75b638449cef01 PKG_MAINTAINER:= PKG_LICENSE:=GPL-2.0 diff --git a/net/lksctp-tools/patches/010-build-fix-netinet-sctp.h-not-to-be-installed.patch b/net/lksctp-tools/patches/010-build-fix-netinet-sctp.h-not-to-be-installed.patch deleted file mode 100644 index 389138a81..000000000 --- a/net/lksctp-tools/patches/010-build-fix-netinet-sctp.h-not-to-be-installed.patch +++ /dev/null @@ -1,30 +0,0 @@ -From 378560050a8f93786c590cc99a55461666205b61 Mon Sep 17 00:00:00 2001 -From: Xin Long <lucien.xin@gmail.com> -Date: Fri, 24 Aug 2018 01:13:32 +0800 -Subject: [PATCH] build: fix netinet/sctp.h not to be installed - -After libcnetinet_HEADERS was set to sctp.h.in, netinet/sctp.h can -no longer be installed into ${includedir}. - -Since "AC_CONFIG_HEADERS([src/include/netinet/sctp.h])" is already -added into configure.ac, there's no need to generate sctp.h by -automake. - -So we simply set libcnetinet_HEADERS back to sctp.h. - -Fixes: 9607dd85e70a ("netinet/sctp.h: dynamically build based on system setup") -Signed-off-by: Xin Long <lucien.xin@gmail.com> -Signed-off-by: Marcelo Ricardo Leitner <marcelo.leitner@gmail.com> ---- - src/include/netinet/Makefile.am | 3 +-- - 1 file changed, 1 insertion(+), 2 deletions(-) - ---- a/src/include/netinet/Makefile.am -+++ b/src/include/netinet/Makefile.am -@@ -11,5 +11,4 @@ libcnetinetdir = $(includedir)/netinet - # API. - include_HEADERS = - --libcnetinet_HEADERS = sctp.h.in --BUILT_SOURCES = sctp.h -+libcnetinet_HEADERS = sctp.h |