Gentoo Archives: gentoo-commits

From: David Seifert <soap@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: net-libs/openslp/files/
Date: Thu, 26 Jan 2017 22:37:21
Message-Id: 1485470176.9856a8b69a3f6c84c4d43137632b1b401b959d1b.soap@gentoo
1 commit: 9856a8b69a3f6c84c4d43137632b1b401b959d1b
2 Author: Michael Mair-Keimberger (asterix) <m.mairkeimberger <AT> gmail <DOT> com>
3 AuthorDate: Mon Jan 23 18:01:35 2017 +0000
4 Commit: David Seifert <soap <AT> gentoo <DOT> org>
5 CommitDate: Thu Jan 26 22:36:16 2017 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=9856a8b6
7
8 net-libs/openslp: remove unused patches
9
10 Closes: https://github.com/gentoo/gentoo/pull/3608
11
12 net-libs/openslp/files/openslp-compile_fix.patch | 14 ------------
13 .../openslp/files/openslp-no_install_doc.patch | 21 ------------------
14 net-libs/openslp/files/openslp-opt.patch | 25 ----------------------
15 3 files changed, 60 deletions(-)
16
17 diff --git a/net-libs/openslp/files/openslp-compile_fix.patch b/net-libs/openslp/files/openslp-compile_fix.patch
18 deleted file mode 100644
19 index 22bb3d6..00000000
20 --- a/net-libs/openslp/files/openslp-compile_fix.patch
21 +++ /dev/null
22 @@ -1,14 +0,0 @@
23 ---- openslp-1.3.0/common/slp_spi.c~ 2004-03-04 03:38:49.000000000 +0100
24 -+++ openslp-1.3.0/common/slp_spi.c 2004-03-04 03:38:49.000000000 +0100
25 -@@ -267,9 +267,9 @@
26 - fp = fopen(spifile,"r");
27 - if(fp)
28 - {
29 -- result = xmalloc(sizeof(structSLPSpiHandle));
30 -+ result = xmalloc(sizeof(struct _SLPSpiHandle));
31 - if(result == 0) return 0;
32 -- memset(result, 0, sizeof(structSLPSpiHandle));
33 -+ memset(result, 0, sizeof(struct _SLPSpiHandle));
34 -
35 - result->spifile = xstrdup(spifile);
36 - result->cacheprivate = cacheprivate;
37
38 diff --git a/net-libs/openslp/files/openslp-no_install_doc.patch b/net-libs/openslp/files/openslp-no_install_doc.patch
39 deleted file mode 100644
40 index 9f7e3d2..00000000
41 --- a/net-libs/openslp/files/openslp-no_install_doc.patch
42 +++ /dev/null
43 @@ -1,21 +0,0 @@
44 ---- openslp-1.3.0/Makefile.am~ 2004-03-04 03:56:37.000000000 +0100
45 -+++ openslp-1.3.0/Makefile.am 2004-03-04 03:56:37.000000000 +0100
46 -@@ -5,7 +5,6 @@
47 -
48 - SUBDIRS = common libslpattr slpd libslp slptool test
49 - EXTRA_DIST = win32 doc etc README.W32 FAQ
50 --DOC_DIR = $(prefix)/doc/openslp-$(VERSION)
51 -
52 - install-data-local:
53 - mkdir -p $(DESTDIR)$(sysconfdir)
54 -@@ -22,10 +21,6 @@
55 - if [ -f $$file ]; then true;\
56 - else cp -f $(srcdir)/etc/slp.spi $(DESTDIR)$(sysconfdir);\
57 - fi
58 -- rm -rf $(DESTDIR)$(DOC_DIR)
59 -- mkdir -p $(DESTDIR)$(DOC_DIR)
60 -- cp -r $(srcdir)/doc/* $(DESTDIR)$(DOC_DIR)
61 --# rm -rf `find $(DESTDIR)$(DOC_DIR) -name CVS`
62 -
63 - dist-hook:
64 - # rm -rf `find $(distdir)/doc -name CVS`
65
66 diff --git a/net-libs/openslp/files/openslp-opt.patch b/net-libs/openslp/files/openslp-opt.patch
67 deleted file mode 100644
68 index 0fe9af3..00000000
69 --- a/net-libs/openslp/files/openslp-opt.patch
70 +++ /dev/null
71 @@ -1,25 +0,0 @@
72 ---- openslp-1.0.11/configure.in.orig 2003-03-11 05:20:05.000000000 +0100
73 -+++ openslp-1.0.11/configure.in 2003-04-18 00:34:27.000000000 +0200
74 -@@ -120,9 +120,6 @@
75 - if test X"$debug" = X"yes"; then
76 - CFLAGS="$CFLAGS -Werror"
77 - fi
78 -- if test X"$debug" = X"no"; then
79 -- OPTFLAGS="-O3"
80 -- fi
81 -
82 - elif $CC -V 2>&1 | grep "WorkShop Compilers"; then
83 - dnl Allow C++ style comments
84 -@@ -161,9 +158,9 @@
85 - dnl ***********************************************************************
86 - dnl Checks for libraries.
87 - dnl ***********************************************************************
88 --AC_CHECK_LIB(resolv, inet_aton)
89 --AC_CHECK_LIB(socket, main)
90 --AC_CHECK_LIB(nsl, gethostbyname)
91 -+AC_SEARCH_LIBS(inet_aton, resolv)
92 -+AC_SEARCH_LIBS(socket, socket)
93 -+AC_SEARCH_LIBS(gethostbyname, nsl)
94 - AC_CHECK_LIB(m, main)
95 - AC_CHECK_FUNCS(ceil log10 strncasecmp strcasecmp )
96 - AC_OUTPUT(Makefile common/Makefile libslpattr/Makefile libslp/Makefile \