diff options
author | Michael Mair-Keimberger (asterix) <m.mairkeimberger@gmail.com> | 2017-01-28 16:36:53 +0100 |
---|---|---|
committer | Michael Palimaka <kensington@gentoo.org> | 2017-01-30 04:50:23 +1100 |
commit | 79a1d312a6929820fda1142c0cb4cdc3fbd4637d (patch) | |
tree | 4630904bb30db7d71914d28d307dc1606dc88300 /sci-astronomy/esorex | |
parent | net-misc/wicd: remove unused patch/file (diff) | |
download | gentoo-79a1d312a6929820fda1142c0cb4cdc3fbd4637d.tar.gz gentoo-79a1d312a6929820fda1142c0cb4cdc3fbd4637d.tar.bz2 gentoo-79a1d312a6929820fda1142c0cb4cdc3fbd4637d.zip |
sci-astronomy/esorex: remove unused patches
Diffstat (limited to 'sci-astronomy/esorex')
3 files changed, 0 insertions, 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 1203f7812fa0..000000000000 --- a/sci-astronomy/esorex/files/esorex-3.10-cpl60_compat.patch +++ /dev/null @@ -1,13 +0,0 @@ -Author: Ole Streicher <debian@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 68fbcb971f45..000000000000 --- a/sci-astronomy/esorex/files/esorex-3.10-fix-autotools.patch +++ /dev/null @@ -1,12 +0,0 @@ -Author: Ole Streicher <debian@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 fe4d37b3009c..000000000000 --- a/sci-astronomy/esorex/files/esorex-3.10-fix_format_strings.patch +++ /dev/null @@ -1,24 +0,0 @@ -Author: Ole Streicher <debian@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; - } - } |