summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSebastian Pipping <sping@gentoo.org>2018-03-28 01:31:45 +0200
committerSebastian Pipping <sping@gentoo.org>2018-03-28 01:51:59 +0200
commitbc65b297ed53567c1b41d8709db1bc91ac475a44 (patch)
treef422661543f0e76239a4815548297de1ecbe2723 /dev-libs/iniparser/files
parentnet-wireless/yatebts: remove eutils, use eapply, use HTTPS, remove unused pat... (diff)
downloadgentoo-bc65b297ed53567c1b41d8709db1bc91ac475a44.tar.gz
gentoo-bc65b297ed53567c1b41d8709db1bc91ac475a44.tar.bz2
gentoo-bc65b297ed53567c1b41d8709db1bc91ac475a44.zip
dev-libs/iniparser: 4.1 + EAPI 6
Bug: https://bugs.gentoo.org/647588 Package-Manager: Portage-2.3.24, Repoman-2.3.6
Diffstat (limited to 'dev-libs/iniparser/files')
-rw-r--r--dev-libs/iniparser/files/iniparser-4.0-cflags.patch28
-rw-r--r--dev-libs/iniparser/files/iniparser-4.0-soname.patch35
2 files changed, 0 insertions, 63 deletions
diff --git a/dev-libs/iniparser/files/iniparser-4.0-cflags.patch b/dev-libs/iniparser/files/iniparser-4.0-cflags.patch
deleted file mode 100644
index 817b087e6d20..000000000000
--- a/dev-libs/iniparser/files/iniparser-4.0-cflags.patch
+++ /dev/null
@@ -1,28 +0,0 @@
-From 14370f5ce94cce077c798db6611ef65cd1822df2 Mon Sep 17 00:00:00 2001
-From: Sebastian Pipping <sebastian@pipping.org>
-Date: Sat, 8 Aug 2015 19:04:08 +0200
-Subject: [PATCH 1/2] Respect user CFLAGS
-
----
- Makefile | 5 -----
- 1 file changed, 5 deletions(-)
-
-diff --git a/Makefile b/Makefile
-index 78708a5..744405a 100644
---- a/Makefile
-+++ b/Makefile
-@@ -6,11 +6,6 @@
- CC ?= gcc
-
- CFLAGS += -fPIC -Wall -Wextra -ansi -pedantic
--ifndef DEBUG
--CFLAGS += -O2
--else
--CFLAGS += -g
--endif
-
- # Ar settings to build the library
- AR ?= ar
---
-2.5.0
-
diff --git a/dev-libs/iniparser/files/iniparser-4.0-soname.patch b/dev-libs/iniparser/files/iniparser-4.0-soname.patch
deleted file mode 100644
index 0536b671a5c3..000000000000
--- a/dev-libs/iniparser/files/iniparser-4.0-soname.patch
+++ /dev/null
@@ -1,35 +0,0 @@
-From c3a112a89d3cbbfe0edc4fbac366a47986d6c118 Mon Sep 17 00:00:00 2001
-From: Sebastian Pipping <sebastian@pipping.org>
-Date: Sat, 8 Aug 2015 19:10:27 +0200
-Subject: [PATCH 2/2] Adjust soname and make target non-phony
-
----
- Makefile | 5 +++--
- 1 file changed, 3 insertions(+), 2 deletions(-)
-
-diff --git a/Makefile b/Makefile
-index 744405a..323e579 100644
---- a/Makefile
-+++ b/Makefile
-@@ -14,6 +14,7 @@ ARFLAGS = rcv
- SHLD = ${CC} ${CFLAGS}
- LDSHFLAGS = -shared -Wl,-Bsymbolic
- LDFLAGS += -Wl,-rpath -Wl,/usr/lib -Wl,-rpath,/usr/lib
-+SONAME_CURRENT = 1
-
- # Set RANLIB to ranlib on systems that require it (Sun OS < 4, Mac OSX)
- # RANLIB = ranlib
-@@ -52,8 +53,8 @@ libiniparser.a: $(OBJS)
- $(QUIET_RANLIB)$(RANLIB) $@
-
- libiniparser.so: $(OBJS)
-- $(QUIET_LINK)$(SHLD) $(LDSHFLAGS) $(LDFLAGS) -o $@.0 $(OBJS) \
-- -Wl,-soname=`basename $@`.0
-+ $(QUIET_LINK)$(SHLD) $(LDSHFLAGS) $(LDFLAGS) -o $@ $(OBJS) \
-+ -Wl,-soname=libiniparser4.so.$(SONAME_CURRENT)
-
- clean:
- $(RM) $(OBJS)
---
-2.5.0
-