mirror of
https://github.com/Project-OSS-Revival/alien.git
synced 2026-04-24 14:00:17 +00:00
releasing version 8.54
This commit is contained in:
14
alien.pl
14
alien.pl
@@ -178,6 +178,11 @@ lintian's output displayed.
|
|||||||
By default, B<alien> adds one to the minor version number of each package it
|
By default, B<alien> adds one to the minor version number of each package it
|
||||||
converts. If this option is given, B<alien> will not do this.
|
converts. If this option is given, B<alien> will not do this.
|
||||||
|
|
||||||
|
=item B<--bump=>I<number>
|
||||||
|
|
||||||
|
Instead of incrementing the version number of the converted package by 1,
|
||||||
|
increment it by the given number.
|
||||||
|
|
||||||
=item B<--fixperms>
|
=item B<--fixperms>
|
||||||
|
|
||||||
Sanitize all file owners and permissions when building a deb. This may be
|
Sanitize all file owners and permissions when building a deb. This may be
|
||||||
@@ -334,6 +339,7 @@ Usage: alien [options] file [...]
|
|||||||
-v, --verbose Display each command alien runs.
|
-v, --verbose Display each command alien runs.
|
||||||
--veryverbose Be verbose, and also display output of run commands.
|
--veryverbose Be verbose, and also display output of run commands.
|
||||||
-k, --keep-version Do not change version of generated package.
|
-k, --keep-version Do not change version of generated package.
|
||||||
|
--bump=number Increment package version by this number.
|
||||||
-h, --help Display this help message.
|
-h, --help Display this help message.
|
||||||
-V, --version Display alien's version number.
|
-V, --version Display alien's version number.
|
||||||
|
|
||||||
@@ -343,8 +349,9 @@ EOF
|
|||||||
|
|
||||||
# Start by processing the parameters.
|
# Start by processing the parameters.
|
||||||
my (%destformats, $generate, $install, $single, $scripts, $patchfile,
|
my (%destformats, $generate, $install, $single, $scripts, $patchfile,
|
||||||
$nopatch, $tgzdescription, $tgzversion, $keepversion, $fixperms, $test,
|
$nopatch, $tgzdescription, $tgzversion, $keepversion, $fixperms,
|
||||||
$anypatch);
|
$test, $anypatch);
|
||||||
|
my $versionbump=1;
|
||||||
|
|
||||||
# Bundling is nice anyway, and it is required or Getopt::Long will confuse
|
# Bundling is nice anyway, and it is required or Getopt::Long will confuse
|
||||||
# -T and -t.
|
# -T and -t.
|
||||||
@@ -371,6 +378,7 @@ GetOptions(
|
|||||||
"verbose|v" => \$Alien::Package::verbose,
|
"verbose|v" => \$Alien::Package::verbose,
|
||||||
"veryverbose" => sub { $Alien::Package::verbose=2 },
|
"veryverbose" => sub { $Alien::Package::verbose=2 },
|
||||||
"keep-version|k" => \$keepversion,
|
"keep-version|k" => \$keepversion,
|
||||||
|
"bump=s" => \$versionbump,
|
||||||
"fixperms" => \$fixperms,
|
"fixperms" => \$fixperms,
|
||||||
"help|h" => \&usage,
|
"help|h" => \&usage,
|
||||||
) || usage();
|
) || usage();
|
||||||
@@ -449,7 +457,7 @@ foreach my $file (@ARGV) {
|
|||||||
# Increment release.
|
# Increment release.
|
||||||
unless (defined $keepversion) {
|
unless (defined $keepversion) {
|
||||||
$^W=0; # Shut of possible "is not numeric" warning.
|
$^W=0; # Shut of possible "is not numeric" warning.
|
||||||
$package->release($package->release + 1);
|
$package->release($package->release + $versionbump);
|
||||||
$^W=1; # Re-enable warnings.
|
$^W=1; # Re-enable warnings.
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
6
debian/changelog
vendored
6
debian/changelog
vendored
@@ -1,3 +1,9 @@
|
|||||||
|
alien (8.54) unstable; urgency=low
|
||||||
|
|
||||||
|
* Patch from Alexander Jolk adding a --bump option. Closes: #311681
|
||||||
|
|
||||||
|
-- Joey Hess <joeyh@debian.org> Tue, 19 Jul 2005 14:20:31 -0400
|
||||||
|
|
||||||
alien (8.53) unstable; urgency=low
|
alien (8.53) unstable; urgency=low
|
||||||
|
|
||||||
* Build packages using debhelper v4 mode.
|
* Build packages using debhelper v4 mode.
|
||||||
|
|||||||
Reference in New Issue
Block a user