Gentoo Archives: gentoo-commits

From: Aaron Bauman <bman@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: sci-libs/ldl/files/
Date: Fri, 29 Nov 2019 22:08:26
Message-Id: 1575065281.4dd92703a79be5d9bf81623691822628739c0bc2.bman@gentoo
1 commit: 4dd92703a79be5d9bf81623691822628739c0bc2
2 Author: Michael Mair-Keimberger <m.mairkeimberger <AT> gmail <DOT> com>
3 AuthorDate: Mon Nov 25 12:41:07 2019 +0000
4 Commit: Aaron Bauman <bman <AT> gentoo <DOT> org>
5 CommitDate: Fri Nov 29 22:08:01 2019 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=4dd92703
7
8 sci-libs/ldl: remove unused patch(es)
9
10 Signed-off-by: Michael Mair-Keimberger <m.mairkeimberger <AT> gmail.com>
11 Closes: https://github.com/gentoo/gentoo/pull/13759
12 Signed-off-by: Aaron Bauman <bman <AT> gentoo.org>
13
14 sci-libs/ldl/files/ldl-2.0.3-autotools.patch | 64 ----------------------------
15 1 file changed, 64 deletions(-)
16
17 diff --git a/sci-libs/ldl/files/ldl-2.0.3-autotools.patch b/sci-libs/ldl/files/ldl-2.0.3-autotools.patch
18 deleted file mode 100644
19 index 5e174999a5f..00000000000
20 --- a/sci-libs/ldl/files/ldl-2.0.3-autotools.patch
21 +++ /dev/null
22 @@ -1,64 +0,0 @@
23 ---- configure.ac 1970-01-01 01:00:00.000000000 +0100
24 -+++ configure.ac 2008-01-30 12:45:53.174426797 +0000
25 -@@ -0,0 +1,10 @@
26 -+# -*- Autoconf -*-
27 -+AC_PREREQ(2.59)
28 -+AC_INIT(ldl, 2.0.3, davis@××××××××.edu)
29 -+AM_INIT_AUTOMAKE([foreign])
30 -+AC_PROG_INSTALL
31 -+AC_PROG_LIBTOOL
32 -+AC_CHECK_LIB(m, sqrt)
33 -+AC_CHECK_HEADERS(UFconfig.h)
34 -+AC_CONFIG_FILES([Makefile Source/Makefile Demo/Makefile])
35 -+AC_OUTPUT
36 ---- Makefile.am 1970-01-01 01:00:00.000000000 +0100
37 -+++ Makefile.am 2008-01-30 15:49:41.835515468 +0000
38 -@@ -0,0 +1,4 @@
39 -+SUBDIRS = Source Demo
40 -+EXTRA_DIST = README.txt
41 -+include_HEADERS = Include/ldl.h
42 -+
43 ---- Source/Makefile.am 1970-01-01 01:00:00.000000000 +0100
44 -+++ Source/Makefile.am 2008-01-30 12:49:25.858546974 +0000
45 -@@ -0,0 +1,11 @@
46 -+AM_CPPFLAGS = -I$(top_srcdir)/Include
47 -+
48 -+LDLSRC=ldl.c
49 -+lib_LTLIBRARIES = libldl.la
50 -+noinst_LTLIBRARIES = libldli.la libldll.la
51 -+libldli_la_SOURCES = $(LDLSRC)
52 -+libldli_la_CPPFLAGS = $(AM_CPPFLAGS)
53 -+libldll_la_SOURCES = $(LDLSRC)
54 -+libldll_la_CPPFLAGS = $(AM_CPPFLAGS) -DLDL_LONG
55 -+libldl_la_SOURCES =
56 -+libldl_la_LIBADD = libldll.la libldli.la
57 ---- Demo/Makefile.am 1970-01-01 01:00:00.000000000 +0100
58 -+++ Demo/Makefile.am 2008-01-30 15:43:45.603214946 +0000
59 -@@ -0,0 +1,27 @@
60 -+LDADD = $(top_builddir)/Source/libldl.la -lm
61 -+AM_CPPFLAGS = -I$(top_srcdir)/Include
62 -+check_PROGRAMS = ldlsimple ldllsimple ldlmain ldllmain ldlamd ldllamd
63 -+
64 -+ldlmain_SOURCES = ldlmain.c
65 -+ldllmain_SOURCES = ldlmain.c
66 -+ldllmain_CPPFLAGS = $(AM_CPPFLAGS) -DLDL_LONG
67 -+
68 -+ldlsimple_SOURCES = ldlsimple.c
69 -+ldllsimple_SOURCES = ldlsimple.c
70 -+ldllsimple_CPPFLAGS = $(AM_CPPFLAGS) -DLDL_LONG
71 -+
72 -+ldlamd_SOURCES = ldlamd.c
73 -+ldllamd_CPPFLAGS = $(AM_CPPFLAGS) -DUSE_AMD
74 -+ldllamd_SOURCES = ldlamd.c
75 -+ldllamd_CPPFLAGS = $(AM_CPPFLAGS) -DUSE_AMD -DLDL_LONG
76 -+ldllamd_LDADD = $(LDADD) -lamd
77 -+
78 -+check-local: $(check_PROGRAMS)
79 -+ @for i in $(check_PROGRAMS); do \
80 -+ echo "Testing $$i"; \
81 -+ ./$$i > my_$$i.out; \
82 -+ if ! diff $$i.out my_$$i.out; then \
83 -+ echo "Testing $$i failed"; \
84 -+ exit 1; \
85 -+ fi \
86 -+ done;