commit: 79a1d312a6929820fda1142c0cb4cdc3fbd4637d Author: Michael Mair-Keimberger (asterix) <m.mairkeimberger <AT> gmail <DOT> com> AuthorDate: Sat Jan 28 15:36:53 2017 +0000 Commit: Michael Palimaka <kensington <AT> gentoo <DOT> org> CommitDate: Sun Jan 29 17:50:23 2017 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=79a1d312
sci-astronomy/esorex: remove unused patches .../esorex/files/esorex-3.10-cpl60_compat.patch | 13 ------------ .../esorex/files/esorex-3.10-fix-autotools.patch | 12 ----------- .../files/esorex-3.10-fix_format_strings.patch | 24 ---------------------- 3 files changed, 49 deletions(-) diff --git a/sci-astronomy/esorex/files/esorex-3.10-cpl60_compat.patch b/sci-astronomy/esorex/files/esorex-3.10-cpl60_compat.patch deleted file mode 100644 index 1203f78..00000000 --- a/sci-astronomy/esorex/files/esorex-3.10-cpl60_compat.patch +++ /dev/null @@ -1,13 +0,0 @@ -Author: Ole Streicher <deb...@liska.ath.cx> -Subject: Remove function that is only in cpl >= 6.3 to establish compability - with older (stable) versions and allow backporting. ---- a/src/er_main.c -+++ b/src/er_main.c -@@ -641,7 +641,6 @@ - - cpl_msg_set_domain (PACKAGE); - cpl_msg_set_time_off (); --cpl_msg_set_threadid_off (); - cpl_msg_set_domain_on (); - cpl_msg_set_component_off (); - diff --git a/sci-astronomy/esorex/files/esorex-3.10-fix-autotools.patch b/sci-astronomy/esorex/files/esorex-3.10-fix-autotools.patch deleted file mode 100644 index 68fbcb9..00000000 --- a/sci-astronomy/esorex/files/esorex-3.10-fix-autotools.patch +++ /dev/null @@ -1,12 +0,0 @@ -Author: Ole Streicher <deb...@liska.ath.cx> -Subject: Fix autotools files to allow the current version. ---- esorex-3.10/configure.ac.orig -+++ esorex-2.10/configure.ac -@@ -5,6 +5,7 @@ - - AC_CONFIG_SRCDIR([Makefile.am]) - AC_CONFIG_AUX_DIR([admin]) -+AC_CONFIG_MACRO_DIR([m4]) - AC_CONFIG_HEADERS([config.h]) - - AC_CANONICAL_HOST diff --git a/sci-astronomy/esorex/files/esorex-3.10-fix_format_strings.patch b/sci-astronomy/esorex/files/esorex-3.10-fix_format_strings.patch deleted file mode 100644 index fe4d37b..00000000 --- a/sci-astronomy/esorex/files/esorex-3.10-fix_format_strings.patch +++ /dev/null @@ -1,24 +0,0 @@ -Author: Ole Streicher <deb...@liska.ath.cx> -Description: Fix -Werror=format-security errors ---- a/src/er_paramutils.c -+++ b/src/er_paramutils.c -@@ -731,7 +731,7 @@ - (void) strcat (tmp, " to "); - (void) strcat (tmp, er_strutils_dblstr (cpl_parameter_get_range_max_double (p))); - (void) strcat (tmp, ".\n"); -- cpl_msg_error (er_func, tmp); -+ cpl_msg_error (er_func, "%s", tmp); - - cpl_free(tmp); - return -1; ---- a/src/er_plugin.c -+++ b/src/er_plugin.c -@@ -367,7 +367,7 @@ - if (wer != 0) - { - (void) snprintf(estr,(size_t)238,"Expansion of %s failed...",xpath); -- cpl_msg_error (er_func, estr); -+ cpl_msg_error (er_func, "%s", estr); - goto dealloc; - } - }