[gentoo-commits] repo/gentoo:master commit in: net-misc/lksctp-tools/, net-misc/lksctp-tools/files/

2021-09-04 Thread David Seifert
commit: 10904c6bd4e1600974f1edb3d49cd477fed1f3b9
Author: David Seifert  gentoo  org>
AuthorDate: Sat Sep  4 17:34:01 2021 +
Commit: David Seifert  gentoo  org>
CommitDate: Sat Sep  4 17:34:01 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=10904c6b

net-misc/lksctp-tools: drop 1.0.18-r1

Signed-off-by: David Seifert  gentoo.org>

 net-misc/lksctp-tools/Manifest |  1 -
 .../files/lksctp-tools-1.0.18-autoconf-2.70.patch  | 82 --
 .../files/lksctp-tools-1.0.18-install-sctp.h.patch | 11 ---
 .../lksctp-tools/lksctp-tools-1.0.18-r1.ebuild | 62 
 4 files changed, 156 deletions(-)

diff --git a/net-misc/lksctp-tools/Manifest b/net-misc/lksctp-tools/Manifest
index 152a8512991..982d4df4aec 100644
--- a/net-misc/lksctp-tools/Manifest
+++ b/net-misc/lksctp-tools/Manifest
@@ -1,2 +1 @@
-DIST lksctp-tools-1.0.18.tar.gz 560302 BLAKE2B 
6151109a0f43044048ff64a6ca021710f28e695017b79513412a44999ec67bdbe7cb0bbba7d5e0deb28b8fdd097379100046ef77508678f726f18944b9799f22
 SHA512 
1d7275fadc0f2270865307cff2645810e9bab6c1a97e70be6115cace737334dbdd87a072fae25b89dd9cac2e05974556542de70ea8ef70b9e4f14873c82a5055
 DIST lksctp-tools-1.0.19.tar.gz 561962 BLAKE2B 
ae6a5b7c30413dadac736bd17dd1ac3f97bd34f74323959f4e9cb60186db735b4e79b101ad550bdb2975350951fd6ae8bb27b165c6dc86fc7c822fce30f49d05
 SHA512 
e56a4b00206acfb88cab1b8fc7424a1a4996f67ef925c29a97395c44c57f2cbcb3fc36ec2648f5e5a5ce29d8d61ee1f7a5e7869e6bbd68bff85590b6ec521883

diff --git 
a/net-misc/lksctp-tools/files/lksctp-tools-1.0.18-autoconf-2.70.patch 
b/net-misc/lksctp-tools/files/lksctp-tools-1.0.18-autoconf-2.70.patch
deleted file mode 100644
index fa7b4195d93..000
--- a/net-misc/lksctp-tools/files/lksctp-tools-1.0.18-autoconf-2.70.patch
+++ /dev/null
@@ -1,82 +0,0 @@
-From d6d7130f0a2e3b81880fca29966e42c1b2be40a7 Mon Sep 17 00:00:00 2001
-From: Sergei Trofimovich 
-Date: Fri, 8 Jan 2021 22:22:52 +
-Subject: [PATCH] m4/sctp.m4: make conpatible to autoconf-2.70
-
-On recently released `autoconf-2.70` generated `./configure`
-fails as:
-
-```
-$ ./configure
-...
-checking for struct sctp_event_subscribe.sctp_stream_reset_event... yes
-checking for gcc options needed to detect all undeclared functions... none 
needed
-./configure: line 16464: syntax error: unexpected end of file
-```
-
-This happens becuase new autoconf generates less whitespace:
-
-```
-{
-if ...
-...
-fi}
-```
-
-It requires at least whitespace between `fi` and `}`.
-
-As input already has newlines the change just drops extra `{}`.
-
-Tested on `autoconf-2.69` and `autoconf-2.70`.
-
-Signed-off-by: Sergei Trofimovich 
-Signed-off-by: Marcelo Ricardo Leitner 

- m4/sctp.m4 | 12 ++--
- 1 file changed, 6 insertions(+), 6 deletions(-)
-
-diff --git a/m4/sctp.m4 b/m4/sctp.m4
-index 6593517..94527a6 100644
 a/m4/sctp.m4
-+++ b/m4/sctp.m4
-@@ -6,7 +6,7 @@
- 
- # Macros to assist on probing kernel features
- #   Probes if a type is defined
--AC_DEFUN([LKSCTP_CHECK_TYPE], [{
-+AC_DEFUN([LKSCTP_CHECK_TYPE], [
- AC_CHECK_TYPE([$1],
-   AC_DEFINE([$2], 1,
- [Define if $1 is present.])
-@@ -22,10 +22,10 @@ AC_CHECK_TYPE([$1],
- #ifdef HAVE_LINUX_SCTP_H
- # include 
- #endif
--])}])
-+])])
- 
- #   Probes if a struct has a given member
--AC_DEFUN([LKSCTP_CHECK_MEMBER], [{
-+AC_DEFUN([LKSCTP_CHECK_MEMBER], [
- AC_CHECK_MEMBER([$1],
-   AC_DEFINE([$2], 1,
- [Define if $1 is present.])
-@@ -41,10 +41,10 @@ AC_CHECK_MEMBER([$1],
- #ifdef HAVE_LINUX_SCTP_H
- # include 
- #endif
--])}])
-+])])
- 
- #   Probes if a declaration is present
--AC_DEFUN([LKSCTP_CHECK_DECL], [{
-+AC_DEFUN([LKSCTP_CHECK_DECL], [
- AC_CHECK_DECL([$1],
-   AC_DEFINE([$2], 1,
- [Define if $1 is present.])
-@@ -60,4 +60,4 @@ AC_CHECK_DECL([$1],
- #ifdef HAVE_LINUX_SCTP_H
- # include 
- #endif
--])}])
-+])])

diff --git 
a/net-misc/lksctp-tools/files/lksctp-tools-1.0.18-install-sctp.h.patch 
b/net-misc/lksctp-tools/files/lksctp-tools-1.0.18-install-sctp.h.patch
deleted file mode 100644
index f831e6c30b3..000
--- a/net-misc/lksctp-tools/files/lksctp-tools-1.0.18-install-sctp.h.patch
+++ /dev/null
@@ -1,11 +0,0 @@
-https://github.com/sctp/lksctp-tools/commit/378560050a8f93786c590cc99a55461666205b61
-
 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

diff --git a/net-misc/lksctp-tools/lksctp-tools-1.0.18-r1.ebuild 
b/net-misc/lksctp-tools/lksctp-tools-1.0.18-r1.ebuild
deleted file mode 100644
index 98ec51669c8..000
--- a/net-misc/lksctp-tools/lksctp-tools-1.0.18-r1.ebuild
+++ /dev/null
@@ -1,62 +0,0 @@
-# Copyright 1999-2021 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI="6"
-
-inherit flag-o-matic autotools linux

[gentoo-commits] repo/gentoo:master commit in: net-misc/lksctp-tools/, net-misc/lksctp-tools/files/

2021-03-13 Thread David Seifert
commit: 9ab47c293202bf8181645541ad64550ff8c8af32
Author: David Seifert  gentoo  org>
AuthorDate: Sat Mar 13 20:18:51 2021 +
Commit: David Seifert  gentoo  org>
CommitDate: Sat Mar 13 20:18:51 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=9ab47c29

net-misc/lksctp-tools: Remove old 1.0.17

Package-Manager: Portage-3.0.17, Repoman-3.0.2
Signed-off-by: David Seifert  gentoo.org>

 net-misc/lksctp-tools/Manifest |  1 -
 .../files/lksctp-tools-1.0.8-prefix.patch  | 13 --
 net-misc/lksctp-tools/lksctp-tools-1.0.17.ebuild   | 48 --
 3 files changed, 62 deletions(-)

diff --git a/net-misc/lksctp-tools/Manifest b/net-misc/lksctp-tools/Manifest
index 5d31ff28f39..fa17a5b0296 100644
--- a/net-misc/lksctp-tools/Manifest
+++ b/net-misc/lksctp-tools/Manifest
@@ -1,2 +1 @@
-DIST lksctp-tools-1.0.17.tar.gz 795762 BLAKE2B 
a37b653b1f9effd039c5241669c767d8b0918bf4790d9f017c70eefd4ce1efdbe5d76f6e88e15ddf214308267ee62a6004d2af781ad720ef847e8d99ae5a55f6
 SHA512 
055719130b7dda4da9cf002dcd5f1fb3d8cf75300a99365976e087b2b6971b4ccd357f95b515a44e37874af161f7b7f9b42c60191aff938d18fada5a49aa44c4
 DIST lksctp-tools-1.0.18.tar.gz 560302 BLAKE2B 
6151109a0f43044048ff64a6ca021710f28e695017b79513412a44999ec67bdbe7cb0bbba7d5e0deb28b8fdd097379100046ef77508678f726f18944b9799f22
 SHA512 
1d7275fadc0f2270865307cff2645810e9bab6c1a97e70be6115cace737334dbdd87a072fae25b89dd9cac2e05974556542de70ea8ef70b9e4f14873c82a5055

diff --git a/net-misc/lksctp-tools/files/lksctp-tools-1.0.8-prefix.patch 
b/net-misc/lksctp-tools/files/lksctp-tools-1.0.8-prefix.patch
deleted file mode 100644
index 6e5808468d5..000
--- a/net-misc/lksctp-tools/files/lksctp-tools-1.0.8-prefix.patch
+++ /dev/null
@@ -1,13 +0,0 @@
-default @bindir@ expands to ${exec_prefix}/bin and default @exec_prefix@
-expands to ${prefix}
-
 src/withsctp/withsctp.in
-+++ src/withsctp/withsctp.in
-@@ -1,5 +1,7 @@
- #!/bin/sh
- # -*- sh -*-
-+prefix=@prefix@
-+exec_prefix=@exec_prefix@
- LIBDIR=@libdir@/@PACKAGE@
- BINDIR=@bindir@
- export LD_PRELOAD=${LIBDIR}/libwithsctp.so.1.0.6

diff --git a/net-misc/lksctp-tools/lksctp-tools-1.0.17.ebuild 
b/net-misc/lksctp-tools/lksctp-tools-1.0.17.ebuild
deleted file mode 100644
index a6b2e1760bd..000
--- a/net-misc/lksctp-tools/lksctp-tools-1.0.17.ebuild
+++ /dev/null
@@ -1,48 +0,0 @@
-# Copyright 1999-2020 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=5
-
-inherit eutils multilib flag-o-matic autotools autotools-utils linux-info
-
-DESCRIPTION="Tools for Linux Kernel Stream Control Transmission Protocol 
implementation"
-HOMEPAGE="http://lksctp.sourceforge.net/";
-SRC_URI="mirror://sourceforge/lksctp/${P}.tar.gz"
-
-LICENSE="|| ( GPL-2+ LGPL-2.1 )"
-SLOT="0"
-KEYWORDS="~alpha amd64 arm arm64 hppa ~ia64 ~m68k ~mips ppc ppc64 s390 ~sparc 
x86"
-IUSE="kernel_linux static-libs"
-
-# This is only supposed to work with Linux to begin with.
-DEPEND=">=sys-kernel/linux-headers-2.6"
-RDEPEND=""
-
-REQUIRED_USE="kernel_linux"
-
-CONFIG_CHECK="~IP_SCTP"
-WARNING_IP_SCTP="CONFIG_IP_SCTP:\tis not set when it should be."
-
-src_prepare() {
-   epatch "${FILESDIR}"/${PN}-1.0.8-prefix.patch #181602
-   eautoreconf
-}
-
-src_configure() {
-   append-flags -fno-strict-aliasing
-
-   autotools-utils_src_configure
-}
-
-DOCS=( AUTHORS ChangeLog INSTALL NEWS README ROADMAP )
-
-src_install() {
-   autotools-utils_src_install
-
-   dodoc doc/*txt
-   newdoc src/withsctp/README README.withsctp
-
-   # Don't install static library or libtool file, since this is used
-   # only as preloadable library.
-   use static-libs && rm "${D}"/usr/$(get_libdir)/${PN}/*.a
-}



[gentoo-commits] repo/gentoo:master commit in: net-misc/lksctp-tools/, net-misc/lksctp-tools/files/

2019-06-04 Thread Andreas Sturmlechner
commit: ba0b67d74b508cfe6eeb93138715c4494eb7a28d
Author: Andreas Sturmlechner  gentoo  org>
AuthorDate: Tue Jun  4 22:22:53 2019 +
Commit: Andreas Sturmlechner  gentoo  org>
CommitDate: Tue Jun  4 22:23:26 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=ba0b67d7

net-misc/lksctp-tools: Drop 1.0.13 and 1.0.16

All arches have newer versions stable.

Closes: https://bugs.gentoo.org/609620
Package-Manager: Portage-2.3.67, Repoman-2.3.13
Signed-off-by: Andreas Sturmlechner  gentoo.org>

 net-misc/lksctp-tools/Manifest |  2 -
 .../files/lksctp-tools-1.0.13-build.patch  | 30 -
 net-misc/lksctp-tools/lksctp-tools-1.0.13.ebuild   | 50 --
 net-misc/lksctp-tools/lksctp-tools-1.0.16.ebuild   | 48 -
 4 files changed, 130 deletions(-)

diff --git a/net-misc/lksctp-tools/Manifest b/net-misc/lksctp-tools/Manifest
index dc04fa574de..5d31ff28f39 100644
--- a/net-misc/lksctp-tools/Manifest
+++ b/net-misc/lksctp-tools/Manifest
@@ -1,4 +1,2 @@
-DIST lksctp-tools-1.0.13.tar.gz 564530 BLAKE2B 
e9d374910e7acad2ce05f336e8f66c8ef22bce85912a02cf23c7f691b949b681e75cd9031cf676cb1f4911f311f0153e3a68730f3faba47714f020625924b5e2
 SHA512 
bdcf06223641ca062fd528ad87efbd3ac2a4e721b691bade528ae6d2ad8eaee5a6c0516eff42c83a3afed812c378f3ce782b93efe8ec830d91280b7419ce17b4
-DIST lksctp-tools-1.0.16.tar.gz 565446 BLAKE2B 
2eff562809f24b76b8f129698c8fef30f9612706482e3061356e3a6fef2503c677421de4e7cb0ab30c8830cdccf7541f67234469920394554fc574fe45833a88
 SHA512 
ea771f3ffeef4630638ee9cbdf01723d01b1b0ca2e8f147a2b61b907339bd1a0c5d621a58638a3b700b6ffc41de06c7b9002645254a471e279663b64b313f467
 DIST lksctp-tools-1.0.17.tar.gz 795762 BLAKE2B 
a37b653b1f9effd039c5241669c767d8b0918bf4790d9f017c70eefd4ce1efdbe5d76f6e88e15ddf214308267ee62a6004d2af781ad720ef847e8d99ae5a55f6
 SHA512 
055719130b7dda4da9cf002dcd5f1fb3d8cf75300a99365976e087b2b6971b4ccd357f95b515a44e37874af161f7b7f9b42c60191aff938d18fada5a49aa44c4
 DIST lksctp-tools-1.0.18.tar.gz 560302 BLAKE2B 
6151109a0f43044048ff64a6ca021710f28e695017b79513412a44999ec67bdbe7cb0bbba7d5e0deb28b8fdd097379100046ef77508678f726f18944b9799f22
 SHA512 
1d7275fadc0f2270865307cff2645810e9bab6c1a97e70be6115cace737334dbdd87a072fae25b89dd9cac2e05974556542de70ea8ef70b9e4f14873c82a5055

diff --git a/net-misc/lksctp-tools/files/lksctp-tools-1.0.13-build.patch 
b/net-misc/lksctp-tools/files/lksctp-tools-1.0.13-build.patch
deleted file mode 100644
index 919bb1728ae..000
--- a/net-misc/lksctp-tools/files/lksctp-tools-1.0.13-build.patch
+++ /dev/null
@@ -1,30 +0,0 @@
-From 2f2ba4e271b91535860705ca5911a3a6e1f64121 Mon Sep 17 00:00:00 2001
-From: =?UTF-8?q?Diego=20Elio=20Petten=C3=B2?= 
-Date: Sat, 23 Feb 2013 23:08:49 -0800
-Subject: [PATCH lksctp-tools] build: fix out-of-tree build of withsctp.
-MIME-Version: 1.0
-Content-Type: text/plain; charset=UTF-8
-Content-Transfer-Encoding: 8bit
-
-
-Signed-off-by: Diego Elio Pettenò 

- src/withsctp/Makefile.am | 2 +-
- 1 file changed, 1 insertion(+), 1 deletion(-)
-
-diff --git a/src/withsctp/Makefile.am b/src/withsctp/Makefile.am
-index e091049..cecf606 100644
 a/src/withsctp/Makefile.am
-+++ b/src/withsctp/Makefile.am
-@@ -10,7 +10,7 @@ include $(top_srcdir)/Makefile.rules
- bin_PROGRAMS = checksctp
- bin_SCRIPTS = withsctp
- 
--AM_CPPFLAGS=-I../include
-+AM_CPPFLAGS=-I$(top_srcdir)/src/include
- pkglib_LTLIBRARIES = libwithsctp.la
- libwithsctp_la_SOURCES = sctp_load_libs.c sctp_socket.c sctp_bind.c \
-   sctp_sockopt.c sctp_socket.h
--- 
-1.8.1.2
-

diff --git a/net-misc/lksctp-tools/lksctp-tools-1.0.13.ebuild 
b/net-misc/lksctp-tools/lksctp-tools-1.0.13.ebuild
deleted file mode 100644
index 993649af936..000
--- a/net-misc/lksctp-tools/lksctp-tools-1.0.13.ebuild
+++ /dev/null
@@ -1,50 +0,0 @@
-# Copyright 1999-2013 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=5
-
-inherit eutils multilib flag-o-matic autotools autotools-utils linux-info
-
-DESCRIPTION="Tools for Linux Kernel Stream Control Transmission Protocol 
implementation"
-HOMEPAGE="http://lksctp.sourceforge.net/";
-SRC_URI="mirror://sourceforge/lksctp/${P}.tar.gz"
-
-LICENSE="|| ( GPL-2+ LGPL-2.1 )"
-SLOT="0"
-KEYWORDS="alpha amd64 ppc ppc64 sparc x86"
-IUSE="kernel_linux static-libs"
-
-# This is only supposed to work with Linux to begin with.
-DEPEND=">=sys-kernel/linux-headers-2.6"
-RDEPEND=""
-
-REQUIRED_USE="kernel_linux"
-
-CONFIG_CHECK="~IP_SCTP"
-WARNING_IP_SCTP="CONFIG_IP_SCTP:\tis not set when it should be."
-
-src_prepare() {
-   epatch "${FILESDIR}"/${PN}-1.0.8-prefix.patch #181602
-   epatch "${FILESDIR}"/${P}-build.patch
-   sed -i 's:AM_CONFIG_HEADER:AC_CONFIG_HEADERS:' configure.in || die
-   eautoreconf
-}
-
-src_configure() {
-   append-flags -fno-strict-aliasing
-
-   autotools-utils_src_configure
-}
-
-DOCS=( AUTHORS ChangeLog INSTALL NEWS README ROADMAP )
-
-src_install() {
-   autotoo