aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJoão Victor Duarte Martins <jvictor@mandriva.com>2010-04-26 16:40:21 +0000
committerJoão Victor Duarte Martins <jvictor@mandriva.com>2010-04-26 16:40:21 +0000
commit668926cfc0e72f1b950888eedd20362221fb8dbc (patch)
treee496e49dbde1094d8080e7334e7d30cb63c8e65c
parentbc093f18e8dac71c9120b647aae73a964ae36bff (diff)
downloadrpmdrake-668926cfc0e72f1b950888eedd20362221fb8dbc.tar
rpmdrake-668926cfc0e72f1b950888eedd20362221fb8dbc.tar.gz
rpmdrake-668926cfc0e72f1b950888eedd20362221fb8dbc.tar.bz2
rpmdrake-668926cfc0e72f1b950888eedd20362221fb8dbc.tar.xz
rpmdrake-668926cfc0e72f1b950888eedd20362221fb8dbc.zip
- Added auto_select and clean_cache options to conf file
- Cleaned up readconf() - Readability fixes (variable names, indentation)
-rwxr-xr-xrpmdrake39
-rw-r--r--rpmdrake.pm29
2 files changed, 53 insertions, 15 deletions
diff --git a/rpmdrake b/rpmdrake
index 706e64d2..8f235e49 100755
--- a/rpmdrake
+++ b/rpmdrake
@@ -529,8 +529,11 @@ sub run_treeview_dialog {
my $status = gtknew('Label');
my $checkbox_show_autoselect;
my %check_boxes;
- my $auto_string = N("/_Options") . N("/_Select dependencies without asking");
- my $noclean_string = N("/_Options") . "/" . N("Clear download cache after successfull install");
+ my $auto_select_string =
+ N("/_Options") . N("/_Select dependencies without asking");
+ my $clean_cache_string =
+ N("/_Options") . "/" .
+ N("Clear download cache after successfull install");
my $updates_string = N("/_Options") . N("/_Compute updates on startup");
my $NVR_string = N("/_Options") . "/" . N("Search in _full package names");
my $regexp_search_string = N("/_Options") . "/" . N("Use _regular expressions in searches");
@@ -564,12 +567,21 @@ sub run_treeview_dialog {
#[ N("/_View"), undef, undef, undef, '<Branch>' ],
if_(!$>,
[ N("/_Options"), undef, undef, undef, '<Branch>' ],
- [ $auto_string, undef, sub {
- $urpm->{options}{auto} = $::rpmdrake_options{auto} = $check_boxes{$auto_string}->get_active if $check_boxes{$auto_string};
- }, undef, '<CheckItem>' ],
- [ $noclean_string, undef, sub {
- $::noclean = $check_boxes{$noclean_string}->get_active if $check_boxes{$noclean_string};
- }, undef, '<CheckItem>' ],
+ [ $auto_select_string, undef,
+ sub {
+ my $box = $check_boxes{$auto_select_string};
+ $auto_select->[0] = $box->get_active;
+ $::rpmdrake_options{auto} = $box->get_active;
+ $urpm->{options}{auto} = $box->get_active;
+ },
+ undef, '<CheckItem>' ],
+ [ $clean_cache_string, undef,
+ sub {
+ $clean_cache->[0] =
+ $check_boxes{$clean_cache_string}->get_active;
+ $::noclean = !$clean_cache->[0];
+ },
+ undef, '<CheckItem>' ],
[ N("/_Options") . N("/_Media Manager"), undef, sub {
require Rpmdrake::edit_urpm_sources;
Rpmdrake::edit_urpm_sources::run() && $reload_db_and_clear_all->();
@@ -636,13 +648,18 @@ sub run_treeview_dialog {
%check_boxes = map {
$_ => $factory->get_widget("<main>" . $get_path->($_));
- } ($auto_string, $noclean_string, $NVR_string, $updates_string, $regexp_search_string);
+ } ($auto_select_string,
+ $clean_cache_string,
+ $NVR_string,
+ $updates_string,
+ $regexp_search_string);
+
if (!$>) {
$check_boxes{$regexp_search_string}->set_active($use_regexp->[0]);
$check_boxes{$NVR_string}->set_active($NVR_searches->[0]);
- $check_boxes{$auto_string}->set_active($::rpmdrake_options{auto});
+ $check_boxes{$auto_select_string}->set_active($auto_select->[0]);
$check_boxes{$updates_string}->set_active($compute_updates->[0]);
- $check_boxes{$noclean_string}->set_active(!$::noclean);
+ $check_boxes{$clean_cache_string}->set_active($clean_cache->[0]);
}
$checkbox_show_autoselect = $factory->get_widget("<main>" . strip_first_underscore(N("/_Options"), N("/_Show automatically selected packages")))
diff --git a/rpmdrake.pm b/rpmdrake.pm
index 71595295..6dcc1edc 100644
--- a/rpmdrake.pm
+++ b/rpmdrake.pm
@@ -63,6 +63,8 @@ our @EXPORT = qw(
$tree_mode
$use_regexp
$typical_width
+ $clean_cache
+ $auto_select
add_distrib_update_media
add_medium_and_check
but
@@ -159,10 +161,30 @@ $ENV{HOME} = $> == 0 ? $root->[7] : $ENV{HOME} || '/root';
$ENV{HOME} = $::env if $::env = $Rpmdrake::init::rpmdrake_options{env}[0];
our $configfile = "$ENV{HOME}/.rpmdrake";
+
+#
+# Configuration File Options
+#
+
+# clear download cache after succesfull installation of packages
+our $clean_cache;
+
+# automatic select dependencies without user intervention
+our $auto_select;
+
our ($changelog_first_config, $compute_updates, $filter, $max_info_in_descr, $mode, $NVR_searches, $tree_flat, $tree_mode, $use_regexp);
our ($mandrakeupdate_wanted_categories, $ignore_debug_media, $offered_to_add_sources, $no_confirmation);
our ($rpmdrake_height, $rpmdrake_width, $mandrivaupdate_height, $mandrivaupdate_width);
+
our %config = (
+ clean_cache => {
+ var => \$clean_cache,
+ default => [ 0 ]
+ },
+ auto_select => {
+ var => \$auto_select,
+ default => [ 0 ]
+ },
changelog_first_config => { var => \$changelog_first_config, default => [ 0 ] },
compute_updates => { var => \$compute_updates, default => [ 1 ] },
dont_show_selections => { var => \$dont_show_selections, default => [ $> ? 1 : 0 ] },
@@ -186,10 +208,9 @@ our %config = (
sub readconf() {
${$config{$_}{var}} = $config{$_}{default} foreach keys %config;
foreach my $l (cat_($configfile)) {
- $l =~ /^\Q$_\E (.*)/ and ${$config{$_}{var}} = [ split ' ', $1 ] foreach keys %config;
- foreach (keys %config) {
- $l =~ /^\Q$_\E (.*)/ and $1 and ${$config{$_}{var}} = [ split ' ', $1 ];
- }
+ foreach (keys %config) {
+ ${$config{$_}{var}} = [ split ' ', $1 ] if $l =~ /^\Q$_\E(.*)/;
+ }
}
# special cases:
$::rpmdrake_options{'no-confirmation'} = $no_confirmation->[0] if !defined $::rpmdrake_options{'no-confirmation'};