summaryrefslogtreecommitdiff
path: root/scripts/dpkg-distaddfile.pl
diff options
context:
space:
mode:
authorGuillem Jover <guillem@debian.org>2014-12-29 17:03:48 +0100
committerGuillem Jover <guillem@debian.org>2015-01-28 20:50:30 +0100
commit6e56dce4194d7a4de56c0a9111020e19e5963bf2 (patch)
tree1459afbc2f5e993b1069357291f622f3e0513e1f /scripts/dpkg-distaddfile.pl
parent08ce938d42f01ebe939f8a527f7b02ec017d3cc7 (diff)
downloaddpkg-6e56dce4194d7a4de56c0a9111020e19e5963bf2.tar.gz
scripts: Rename and deprecate _g function with g_
The old function name was inconsistent with the other gettext family of short aliases which has already caused some code typos, and functions starting with underscore are considered by convention private in Perl.
Diffstat (limited to 'scripts/dpkg-distaddfile.pl')
-rwxr-xr-xscripts/dpkg-distaddfile.pl18
1 files changed, 9 insertions, 9 deletions
diff --git a/scripts/dpkg-distaddfile.pl b/scripts/dpkg-distaddfile.pl
index e1e67a47b..a0694e065 100755
--- a/scripts/dpkg-distaddfile.pl
+++ b/scripts/dpkg-distaddfile.pl
@@ -34,16 +34,16 @@ my $fileslistfile = 'debian/files';
sub version {
- printf _g("Debian %s version %s.\n"), $Dpkg::PROGNAME, $Dpkg::PROGVERSION;
+ printf g_("Debian %s version %s.\n"), $Dpkg::PROGNAME, $Dpkg::PROGVERSION;
- printf _g('
+ printf g_('
This is free software; see the GNU General Public License version 2 or
later for copying conditions. There is NO warranty.
');
}
sub usage {
- printf _g(
+ printf g_(
'Usage: %s [<option>...] <filename> <section> <priority>
Options:
@@ -66,22 +66,22 @@ while (@ARGV && $ARGV[0] =~ m/^-/) {
} elsif (m/^--$/) {
last;
} else {
- usageerr(_g("unknown option \`%s'"), $_);
+ usageerr(g_("unknown option \`%s'"), $_);
}
}
-usageerr(_g('need exactly a filename, section and priority')) if @ARGV != 3;
+usageerr(g_('need exactly a filename, section and priority')) if @ARGV != 3;
my ($file, $section, $priority) = @ARGV;
($file =~ m/\s/ || $section =~ m/\s/ || $priority =~ m/\s/) &&
- error(_g('filename, section and priority may contain no whitespace'));
+ error(g_('filename, section and priority may contain no whitespace'));
# Obtain a lock on debian/control to avoid simultaneous updates
# of debian/files when parallel building is in use
my $lockfh;
my $lockfile = 'debian/control';
sysopen($lockfh, $lockfile, O_WRONLY)
- or syserr(_g('cannot write %s'), $lockfile);
+ or syserr(g_('cannot write %s'), $lockfile);
file_lock($lockfh, $lockfile);
my $dist = Dpkg::Dist::Files->new();
@@ -90,7 +90,7 @@ $dist->add_file($file, $section, $priority);
$dist->save("$fileslistfile.new");
rename("$fileslistfile.new", $fileslistfile)
- or syserr(_g('install new files list file'));
+ or syserr(g_('install new files list file'));
# Release the lock
-close($lockfh) or syserr(_g('cannot close %s'), $lockfile);
+close($lockfh) or syserr(g_('cannot close %s'), $lockfile);