summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMichael Mair-Keimberger <mmk@levelnine.at>2022-07-07 16:32:52 +0200
committerSam James <sam@gentoo.org>2022-07-15 02:28:57 +0100
commit9f2f3ebd1a44b2c10b4ba9e73fa895ea39e46b7c (patch)
treef3e94e3a963904bc4234d5c2172898e368c7ce4e
parentmate-extra/mate-power-manager: Fix build on musl (diff)
downloadgentoo-9f2f3ebd1a44b2c10b4ba9e73fa895ea39e46b7c.tar.gz
gentoo-9f2f3ebd1a44b2c10b4ba9e73fa895ea39e46b7c.tar.bz2
gentoo-9f2f3ebd1a44b2c10b4ba9e73fa895ea39e46b7c.zip
net-libs/libtrace: remove unused patches
Package-Manager: Portage-3.0.30, Repoman-3.0.3 Signed-off-by: Michael Mair-Keimberger <mmk@levelnine.at> Closes: https://github.com/gentoo/gentoo/pull/26263 Signed-off-by: Sam James <sam@gentoo.org>
-rw-r--r--net-libs/libtrace/files/libtrace-3.0.20-autoconf-1.13.patch11
-rw-r--r--net-libs/libtrace/files/libtrace-4.0.0-no-examples.patch10
-rw-r--r--net-libs/libtrace/files/libtrace-4.0.0-with-numa.patch27
-rw-r--r--net-libs/libtrace/files/libtrace-4.0.9_p1-tinfo.patch30
4 files changed, 0 insertions, 78 deletions
diff --git a/net-libs/libtrace/files/libtrace-3.0.20-autoconf-1.13.patch b/net-libs/libtrace/files/libtrace-3.0.20-autoconf-1.13.patch
deleted file mode 100644
index ed51ecb82868..000000000000
--- a/net-libs/libtrace/files/libtrace-3.0.20-autoconf-1.13.patch
+++ /dev/null
@@ -1,11 +0,0 @@
---- a/configure.in
-+++ b/configure.in
-@@ -61,7 +61,7 @@
- ])
-
- # Put all our automake definitions in config.h
--AM_CONFIG_HEADER([config.h])
-+AC_CONFIG_HEADERS([config.h])
-
- # Checks for C and C++ compilers
- AC_PROG_CC
diff --git a/net-libs/libtrace/files/libtrace-4.0.0-no-examples.patch b/net-libs/libtrace/files/libtrace-4.0.0-no-examples.patch
deleted file mode 100644
index 8467ffda24b0..000000000000
--- a/net-libs/libtrace/files/libtrace-4.0.0-no-examples.patch
+++ /dev/null
@@ -1,10 +0,0 @@
---- a/Makefile.am
-+++ b/Makefile.am
-@@ -1,6 +1,6 @@
- LIBPACKETDUMP_DIR = libpacketdump
- TOOLS_DIR = tools
--SUBDIRS = lib $(LIBPACKETDUMP_DIR) $(TOOLS_DIR) docs examples
-+SUBDIRS = lib $(LIBPACKETDUMP_DIR) $(TOOLS_DIR) docs
-
- ACLOCAL_AMFLAGS = -I m4
- AUTOMAKE_OPTIONS = 1.9 foreign
diff --git a/net-libs/libtrace/files/libtrace-4.0.0-with-numa.patch b/net-libs/libtrace/files/libtrace-4.0.0-with-numa.patch
deleted file mode 100644
index 54e9f54f8dc1..000000000000
--- a/net-libs/libtrace/files/libtrace-4.0.0-with-numa.patch
+++ /dev/null
@@ -1,27 +0,0 @@
---- a/configure.in
-+++ b/configure.in
-@@ -431,7 +431,23 @@
- [[#include <linux/if_packet.h>]])
-
- # If we use DPDK we might be able to use libnuma
--AC_CHECK_LIB(numa, numa_node_to_cpus, have_numa=1, have_numa=0)
-+AC_ARG_WITH(numa,
-+ AS_HELP_STRING(--with-numa,include NUMA support),
-+[
-+ if test "$withval" = no
-+ then
-+ want_numa=no
-+ else
-+ want_numa=yes
-+ fi
-+],[
-+ # Default to building without NUMA
-+ want_numa=yes
-+])
-+
-+if test "$want_numa" != no; then
-+ AC_CHECK_LIB(numa, numa_node_to_cpus, have_numa=1, have_numa=0)
-+fi
-
- # Checks for various "optional" libraries
- AC_CHECK_LIB(pthread, pthread_create, have_pthread=1, have_pthread=0)
diff --git a/net-libs/libtrace/files/libtrace-4.0.9_p1-tinfo.patch b/net-libs/libtrace/files/libtrace-4.0.9_p1-tinfo.patch
deleted file mode 100644
index e79f7cf82f9f..000000000000
--- a/net-libs/libtrace/files/libtrace-4.0.9_p1-tinfo.patch
+++ /dev/null
@@ -1,30 +0,0 @@
---- a/tools/tracetop/Makefile.am
-+++ b/tools/tracetop/Makefile.am
-@@ -6,6 +6,6 @@
- include ../Makefile.tools
-
- tracetop_SOURCES = tracetop.cc
--tracetop_LDADD = -lncurses
-+tracetop_LDADD = @ncurses_LIBS@
- tracetop_CPPFLAGS = -fno-strict-aliasing $(AM_CFLAGS)
- endif
---- a/configure.in
-+++ b/configure.in
-@@ -79,6 +79,8 @@
- AC_CHECK_PROGS(YACC, 'bison -y' byacc yacc)
- AM_PROG_LEX
-
-+PKG_PROG_PKG_CONFIG
-+
- # All our source files for function replacements are in lib/
- AC_CONFIG_LIBOBJ_DIR(lib)
-
-@@ -645,6 +663,8 @@
- fi
- fi
-
-+PKG_CHECK_MODULES(ncurses,ncurses,have_ncurses=yes,have_ncurses=no)
-+
- AC_ARG_WITH([ncurses],
- AC_HELP_STRING([--with-ncurses], [build tracetop (requires ncurses)]))
-