diff options
-rw-r--r-- | app-text/crm114/ChangeLog | 8 | ||||
-rw-r--r-- | app-text/crm114/files/crm114-20060704a-fataltraptest.patch | 32 | ||||
-rw-r--r-- | app-text/recode/ChangeLog | 6 | ||||
-rw-r--r-- | app-text/recode/files/recode-3.6-debian-11.patch | 63 | ||||
-rw-r--r-- | app-text/recode/files/recode-3.6-gcc43.patch | 20 |
5 files changed, 11 insertions, 118 deletions
diff --git a/app-text/crm114/ChangeLog b/app-text/crm114/ChangeLog index c39ff6d73c0f..71738efae635 100644 --- a/app-text/crm114/ChangeLog +++ b/app-text/crm114/ChangeLog @@ -1,6 +1,10 @@ # ChangeLog for app-text/crm114 -# Copyright 2000-2009 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/app-text/crm114/ChangeLog,v 1.36 2009/08/01 17:55:38 darkside Exp $ +# Copyright 1999-2009 Gentoo Foundation; Distributed under the GPL v2 +# $Header: /var/cvsroot/gentoo-x86/app-text/crm114/ChangeLog,v 1.37 2009/08/20 03:42:46 darkside Exp $ + + 20 Aug 2009; Jeremy Olexa <darkside@gentoo.org> + -files/crm114-20060704a-fataltraptest.patch: + remove unused patches 01 Aug 2009; Jeremy Olexa <darkside@gentoo.org> -crm114-20041231.ebuild, -crm114-20060704a.ebuild: diff --git a/app-text/crm114/files/crm114-20060704a-fataltraptest.patch b/app-text/crm114/files/crm114-20060704a-fataltraptest.patch deleted file mode 100644 index 3297c2c9785c..000000000000 --- a/app-text/crm114/files/crm114-20060704a-fataltraptest.patch +++ /dev/null @@ -1,32 +0,0 @@ ---- megatest_knowngood.log.orig 2006-01-18 22:34:42.000000000 +0000 -+++ megatest_knowngood.log 2006-04-17 14:30:35.000000000 +0100 -@@ -23,12 +23,6 @@ - For some reason, I was unable to read-open the file named zoob.zipulrlfjf - Sorry, but this program is very sick and probably should be killed off. - This happened at line 19 of file fataltraptest.crm -- --- and again, the next thing you see SHOULD be an error "unable to write-open"--- -- Caught the error - fault text was --crm: *ERROR* -- For some reason, I was unable to write-open the file named /No/Such/Directory/frotz.mumble -- Sorry, but this program is very sick and probably should be killed off. --This happened at line 29 of file fataltraptest.crm - - - Start of insert processor testing ---- fataltraptest.crm.orig 2006-01-18 22:34:42.000000000 +0000 -+++ fataltraptest.crm 2006-04-17 14:35:22.000000000 +0100 -@@ -23,14 +23,4 @@ - output / Caught the error - fault text was :*:my_fault: / - } - } --output / --- and again, the next thing you see SHOULD be an error "unable to write-open"--- :*:_nl:/ --{ -- { -- output [/No/Such/Directory/frotz.mumble] (:hi:) -- } -- trap (:my_fault:) /.*/ -- { -- output / Caught the error - fault text was :*:my_fault: / -- } --} - output /:*:_nl:/ diff --git a/app-text/recode/ChangeLog b/app-text/recode/ChangeLog index 8291d001fbfb..7adf8fb8f0ab 100644 --- a/app-text/recode/ChangeLog +++ b/app-text/recode/ChangeLog @@ -1,6 +1,10 @@ # ChangeLog for app-text/recode # Copyright 1999-2009 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/app-text/recode/ChangeLog,v 1.68 2009/08/14 14:22:00 armin76 Exp $ +# $Header: /var/cvsroot/gentoo-x86/app-text/recode/ChangeLog,v 1.69 2009/08/20 03:45:25 darkside Exp $ + + 20 Aug 2009; Jeremy Olexa <darkside@gentoo.org> + -files/recode-3.6-debian-11.patch, -files/recode-3.6-gcc43.patch: + remove unused patches 14 Aug 2009; Raúl Porcel <armin76@gentoo.org> recode-3.6_p15-r1.ebuild: alpha/arm/ia64/s390/sh/sparc stable wrt #279935 diff --git a/app-text/recode/files/recode-3.6-debian-11.patch b/app-text/recode/files/recode-3.6-debian-11.patch deleted file mode 100644 index d13c2206ae7b..000000000000 --- a/app-text/recode/files/recode-3.6-debian-11.patch +++ /dev/null @@ -1,63 +0,0 @@ -Ripped from Debian patchset 3.6-11 - ---- recode-3.6.orig/src/libiconv.c -+++ recode-3.6/src/libiconv.c -@@ -195,12 +195,17 @@ - memcpy() doesn't do here, because the regions might overlap. - memmove() isn't worth it, because we rarely have to move more - than 12 bytes. */ -- if (input > input_buffer && input_left > 0) -+ cursor = input_buffer; -+ if (input_left > 0) - { -- cursor = input_buffer; -- do -- *cursor++ = *input++; -- while (--input_left > 0); -+ if (input > input_buffer) -+ { -+ do -+ *cursor++ = *input++; -+ while (--input_left > 0); -+ } -+ else -+ cursor += input_left; - } - } - ---- recode-3.6.orig/src/request.c -+++ recode-3.6/src/request.c -@@ -1073,7 +1073,7 @@ - if (task->output.cursor + 4 >= task->output.limit) - { - RECODE_OUTER outer = task->request->outer; -- size_t old_size = task->output.limit - task->output.buffer; -+ size_t old_size = task->output.cursor - task->output.buffer; - size_t new_size = task->output.cursor + 4 - task->output.buffer; - - /* FIXME: Rethink about how the error should be reported. */ ---- recode-3.6.orig/src/task.c -+++ recode-3.6/src/task.c -@@ -1198,6 +1198,8 @@ - else - success = transform_mere_copy (subtask); - -+ task->output = subtask->output; -+ - if (subtask->input.name && *subtask->input.name) - fclose (subtask->input.file); - if (subtask->output.name && *subtask->output.name) ---- recode-3.6.orig/src/hash.h -+++ recode-3.6/src/hash.h -@@ -21,6 +21,11 @@ - /* Make sure USE_OBSTACK is defined to 1 if you want the allocator to use - obstacks instead of malloc, and recompile `hash.c' with same setting. */ - -+#define hash_lookup recode_hash_lookup -+#define hash_delete recode_hash_delete -+#define hash_free recode_hash_free -+#define hash_insert recode_hash_insert -+ - #ifndef PARAMS - # if PROTOTYPES || __STDC__ - # define PARAMS(Args) Args diff --git a/app-text/recode/files/recode-3.6-gcc43.patch b/app-text/recode/files/recode-3.6-gcc43.patch deleted file mode 100644 index beaf26e9a3e1..000000000000 --- a/app-text/recode/files/recode-3.6-gcc43.patch +++ /dev/null @@ -1,20 +0,0 @@ -http://bugs.gentoo.org/209036 - -fix building with gcc-4.3 - ---- src/recodext.h 2008-04-03 18:35:42 +0000 -+++ src/recodext.h 2008-04-03 18:36:32 +0000 -@@ -215,10 +215,10 @@ - struct recode_single *unsurfacer; - - /* Non zero if this is an acceptable charset (not only a surface). */ -- enum recode_symbol_type type : 3; -+ enum recode_symbol_type type : 2; - - /* Non zero if this one should be ignored. */ -- bool ignore : 2; -+ bool ignore : 1; - }; - - struct recode_surface_list - |