diff options
-rw-r--r-- | gurpmi.pm | 5 | ||||
-rwxr-xr-x | urpme | 8 | ||||
-rwxr-xr-x | urpmf | 8 | ||||
-rwxr-xr-x | urpmi | 8 | ||||
-rw-r--r-- | urpmi.recover | 6 | ||||
-rwxr-xr-x | urpmq | 8 |
6 files changed, 27 insertions, 16 deletions
@@ -37,11 +37,12 @@ urpm::select::add_packages_to_priority_upgrade_list('gurpmi', 'perl-Glib', 'perl sub usage () { print N("urpmi version %s -Copyright (C) 1999-2010 Mandriva. +%s This is free software and may be redistributed under the terms of the GNU GPL. usage: -", $urpm::VERSION) . " gurpmi <rpm> [ <rpm>... ] +", $urpm::VERSION, N("Copyright (C) %s by %s", "1999-2010", "Mandriva") + ) . " gurpmi <rpm> [ <rpm>... ] " . N("Options:") . "\n" . N(" --help - print this help message. ") . N(" --auto - non-interactive mode, assume default answers to questions. @@ -39,12 +39,14 @@ my $yesexpr = sub usage() { print N("urpme version %s -Copyright (C) 1999-2010 Mandriva. -Copyright (C) 2012 Mageia. +%s This is free software and may be redistributed under the terms of the GNU GPL. usage: -", $urpm::VERSION) . N(" --help - print this help message. +", $urpm::VERSION, + N("Copyright (C) %s by %s", "1999-2010", "Mandriva") . + N("Copyright (C) %s by %s", "2012", "Mageia") + ) . N(" --help - print this help message. ") . N(" --auto - automatically select a package in choices. ") . N(" --auto-orphans - remove orphans ") . N(" --test - verify if the removal can be achieved correctly. @@ -27,12 +27,14 @@ use urpm::media; sub usage() { print N("urpmf version %s -Copyright (C) 2002-2010 Mandriva. -Copyright (C) 2012 Mageia. +%s This is free software and may be redistributed under the terms of the GNU GPL. usage: urpmf [options] pattern-expression -", $urpm::VERSION) +", $urpm::VERSION, + N("Copyright (C) %s by %s", "2002-2010", "Mandriva") . + N("Copyright (C) %s by %s", "2012", "Mageia") + ) . N(" --help - print this help message. ") . N(" --version - print this tool's version number. ") . N(" --env - use specific environment (typically a bug report). @@ -64,12 +64,14 @@ $ENV{USER} ||= "root"; sub usage () { print N("urpmi version %s -Copyright (C) 1999-2010 Mandriva. -Copyright (C) 2011-2012 Mageia. +%s This is free software and may be redistributed under the terms of the GNU GPL. usage: -", $urpm::VERSION) . N(" --help - print this help message. +", $urpm::VERSION, + N("Copyright (C) %s by %s", "1999-2010", "Mandriva") . + N("Copyright (C) %s by %s", "2011-2012", "Mageia") + ) . N(" --help - print this help message. ") . N(" --media - use only the given media, separated by comma. ") . N(" --excludemedia - do not use the given media, separated by comma. ") . N(" --update - use only update media. diff --git a/urpmi.recover b/urpmi.recover index 8f806838..dc7e4dae 100644 --- a/urpmi.recover +++ b/urpmi.recover @@ -26,11 +26,13 @@ our $disable; sub usage () { print N("urpmi.recover version %s -Copyright (C) 2006-2010 Mandriva. +%s This is free software and may be redistributed under the terms of the GNU GPL. usage: -", $urpm::VERSION) . N(" --help - print this help message. +", $urpm::VERSION, + N("Copyright (C) %s by %s", "2006-2010", "Mandriva") + ) . N(" --help - print this help message. ") . N(" --checkpoint - set repackaging start now ") . N(" --noclean - don't clean repackage directory on checkpoint ") . N(" --urpmi-root - use another root for urpmi db & rpm installation. @@ -38,12 +38,14 @@ our @src_names; sub usage() { print N("urpmq version %s -Copyright (C) 2000-2010 Mandriva. -Copyright (C) 2012 Mageia. +%s This is free software and may be redistributed under the terms of the GNU GPL. usage: -", $urpm::VERSION) . N(" --help - print this help message. +", $urpm::VERSION, + N("Copyright (C) %s by %s", '2000-2010', 'Mandriva') . + N("Copyright (C) %s by %s", '2012', 'Mandriva') + ) . N(" --help - print this help message. ") . N(" --update - use only update media. ") . N(" --media - use only the given media, separated by comma. ") . N(" --searchmedia - use only the given media to search requested (or updated) packages. |