aboutsummaryrefslogtreecommitdiffstats
path: root/emi
diff options
context:
space:
mode:
authorMichael Scherer <misc@mageia.org>2010-11-07 23:06:36 +0000
committerMichael Scherer <misc@mageia.org>2010-11-07 23:06:36 +0000
commitb7154169745a25a862b2b0a3b345cfe16cfc1046 (patch)
tree1bcae0564cb8d130c536f2b8551b6fdb243e5ffe /emi
parentf5e1684beaa6c1a3302f840ea5462bef4baa09eb (diff)
downloadiurt-b7154169745a25a862b2b0a3b345cfe16cfc1046.tar
iurt-b7154169745a25a862b2b0a3b345cfe16cfc1046.tar.gz
iurt-b7154169745a25a862b2b0a3b345cfe16cfc1046.tar.bz2
iurt-b7154169745a25a862b2b0a3b345cfe16cfc1046.tar.xz
iurt-b7154169745a25a862b2b0a3b345cfe16cfc1046.zip
- clean the code ( cache is unused, and get_date too, I checked check_upload_tree )
Diffstat (limited to 'emi')
-rwxr-xr-xemi6
1 files changed, 1 insertions, 5 deletions
diff --git a/emi b/emi
index f499627..0b77a05 100755
--- a/emi
+++ b/emi
@@ -29,7 +29,7 @@
use strict;
use MDK::Common;
-use Iurt::Config qw(config_usage get_date config_init dump_cache init_cache get_author_email);
+use Iurt::Config qw(config_usage config_init get_author_email);
use Iurt::Process qw(check_pid);
use Iurt::Mail qw(sendmail);
use Iurt::File qw(check_upload_tree);
@@ -109,11 +109,8 @@ $run{pidfile_home} = $config->{tmp};
$run{pidfile} = "upload";
my $pidfile = check_pid(\%run);
-#my $cache = init_cache(\%run, $config, { arch => {} });
my $cache = { arch => {} };
-my ($_fulldate, $daydate) = get_date();
-$run{daydate} = $daydate;
my $todo = "$config->{queue}/todo/";
my $done = "$config->{queue}/done/";
@@ -284,6 +281,5 @@ foreach my $prefix (keys %pkg_tree) {
}
}
-#dump_cache(\%run);
exit();