diff options
author | Diego Elio Pettenò <flameeyes@gentoo.org> | 2007-02-05 12:40:14 +0000 |
---|---|---|
committer | Diego Elio Pettenò <flameeyes@gentoo.org> | 2007-02-05 12:40:14 +0000 |
commit | 811a7154483119ea9831d8fdfe78190d5f146f40 (patch) | |
tree | 1769dd645f3ad12960ee724355664d952ee01460 /kde-base/kvoctrain | |
parent | Stable on sparc wrt #165335 (diff) | |
download | historical-811a7154483119ea9831d8fdfe78190d5f146f40.tar.gz historical-811a7154483119ea9831d8fdfe78190d5f146f40.tar.bz2 historical-811a7154483119ea9831d8fdfe78190d5f146f40.zip |
Remove unneeded patches.
Package-Manager: portage-2.1.2-r7
Diffstat (limited to 'kde-base/kvoctrain')
-rw-r--r-- | kde-base/kvoctrain/ChangeLog | 6 | ||||
-rw-r--r-- | kde-base/kvoctrain/files/post-3.4.2-kdeedu.diff | 63 |
2 files changed, 5 insertions, 64 deletions
diff --git a/kde-base/kvoctrain/ChangeLog b/kde-base/kvoctrain/ChangeLog index aa03f8fa75c2..1743f2c8e247 100644 --- a/kde-base/kvoctrain/ChangeLog +++ b/kde-base/kvoctrain/ChangeLog @@ -1,6 +1,10 @@ # ChangeLog for kde-base/kvoctrain # Copyright 1999-2007 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/kde-base/kvoctrain/ChangeLog,v 1.69 2007/02/04 03:06:14 flameeyes Exp $ +# $Header: /var/cvsroot/gentoo-x86/kde-base/kvoctrain/ChangeLog,v 1.70 2007/02/05 11:57:10 flameeyes Exp $ + + 05 Feb 2007; Diego Pettenò <flameeyes@gentoo.org> + -files/post-3.4.2-kdeedu.diff: + Remove unneeded patches. 04 Feb 2007; Diego Pettenò <flameeyes@gentoo.org> -kvoctrain-3.5.2.ebuild: diff --git a/kde-base/kvoctrain/files/post-3.4.2-kdeedu.diff b/kde-base/kvoctrain/files/post-3.4.2-kdeedu.diff deleted file mode 100644 index 1d75c63bac18..000000000000 --- a/kde-base/kvoctrain/files/post-3.4.2-kdeedu.diff +++ /dev/null @@ -1,63 +0,0 @@ -Index: kvoctrain/kvoctrain/langen2kvtml -=================================================================== ---- kvoctrain/kvoctrain/langen2kvtml (revision 443975) -+++ kvoctrain/kvoctrain/langen2kvtml (working copy) -@@ -89,6 +89,9 @@ - - require "flush.pl"; - use Getopt::Long; -+use File::Temp qw(tempdir); -+my $tmpdir = tempdir(TEMPDIR => 1, CLEANUP => 1 ); -+ - $/="\r\n"; # we work with dos files - - # -@@ -165,10 +168,6 @@ - $country="GB"; - } - --# All logging information goes into this file --$logfile = "/tmp/langen2kvtml.log"; --open(LOG, ">$logfile") || die "Cannot create $logfile: $!"; -- - &printflush(STDOUT,"Waiting for generating files ...\n"); - $tmp1=$#ARGV+1; - &printflush(STDOUT,"... $tmp1 files given via command line ...\n"); -@@ -178,13 +177,11 @@ - if ($proxy) { - &printflush(STDOUT,"... using proxy service $proxy ...\n"); - } -- `lwp-request $proxy http://www.vokabeln.de/files/Voc-$country.zip >/tmp/Voc-$country.zip`; -- # unzip -u update only! -- # unzip -o overwrite! -- `unzip -u /tmp/Voc-$country.zip >/tmp/unzip.log`; -+ `lwp-request $proxy http://www.vokabeln.de/files/Voc-$country.zip >$tmpdir/Voc-$country.zip`; - &printflush(STDOUT,"... updating Voc-$country.zip ...\n"); - $/="\n"; # we work with a unix file -- open(ZIP,"</tmp/unzip.log"); -+ # unzip -u update only! -+ open(ZIP,"unzip -u $tmpdir/Voc-$country.zip |"); - while(<ZIP>) { - chomp; - if( /voc/ ) { -@@ -194,20 +191,16 @@ - } - } - close(ZIP); -- unlink("/tmp/unzip.log"); - $/="\r\n"; # we work with a dos file - } - - for my $file (@res, @ARGV) { - $vocfile = $file; -- &printflush(LOG,"... generating \"$kvtfile\"...\n"); - $lang = ""; # initially unset - $filestage = 0; # file stage - &process_vocfile($vocfile); - } - print STDERR "...\tAll Complete.\n"; --&printflush(LOG,"\nAll Complete.\n"); --close(LOG); - - exit; - |