mirror of
https://github.com/Project-OSS-Revival/alien.git
synced 2026-04-24 14:00:17 +00:00
* Use --target noarch instead of --target=noarch when building rpms.
The latter used to work, but no longer does, due to some change in rpm or
popt. It also has to come after the -bb.
* Trap stderr of rpm and debian/rules building packages, and only display if
the build fails.
This commit is contained in:
@@ -422,7 +422,7 @@ sub build {
|
||||
my $this=shift;
|
||||
|
||||
chdir $this->unpacked_tree;
|
||||
my $log=`debian/rules binary`;
|
||||
my $log=`debian/rules binary 2>&1`;
|
||||
if ($?) {
|
||||
die "Package build failed. Here's the log:\n", $log;
|
||||
}
|
||||
|
||||
@@ -348,14 +348,14 @@ sub build {
|
||||
|
||||
# This is the new command line arcgument to make noarch
|
||||
# rpms. It appeared in rpm version 3.
|
||||
$opts="--target=noarch" if $rpmarch eq 'noarch';
|
||||
$opts="--target noarch" if $rpmarch eq 'noarch';
|
||||
}
|
||||
|
||||
$opts.=" $ENV{RPMBUILDOPTS}" if exists $ENV{RPMBUILDOPTS};
|
||||
my $command="cd $dir; rpm $opts -bb ".$this->name."-".$this->version."-".$this->release.".spec >/dev/null";
|
||||
my $log=`$command`;
|
||||
my $command="cd $dir; rpm -bb $opts ".$this->name."-".$this->version."-".$this->release.".spec";
|
||||
my $log=`$command 2>&1`;
|
||||
if ($?) {
|
||||
die "Package build failed. Here's the log:\n", $log;
|
||||
die "Package build failed. Here's the log of the command ($command):\n", $log;
|
||||
}
|
||||
|
||||
return $rpm;
|
||||
|
||||
1
TODO
1
TODO
@@ -1,5 +1,4 @@
|
||||
* handling postinst script when converting to/from .slp packages.
|
||||
* solaris pkgadd package support. Useful on sparc linux
|
||||
* alien needs to handle relocatable conffiles, partially relocatable
|
||||
packages, and packages that have maultiple parts that relocate
|
||||
differently.
|
||||
|
||||
10
debian/changelog
vendored
10
debian/changelog
vendored
@@ -1,3 +1,13 @@
|
||||
alien (7.31) unstable; urgency=low
|
||||
|
||||
* Use --target noarch instead of --target=noarch when building rpms.
|
||||
The latter used to work, but no longer does, due to some change in rpm or
|
||||
popt. It also has to come after the -bb.
|
||||
* Trap stderr of rpm and debian/rules building packages, and only display if
|
||||
the build fails.
|
||||
|
||||
-- Joey Hess <joeyh@debian.org> Fri, 4 Jan 2002 13:53:04 -0500
|
||||
|
||||
alien (7.30) unstable; urgency=low
|
||||
|
||||
* Thanks to the excellent work of Mark A. Hershberger <mah@everybody.org>,
|
||||
|
||||
Reference in New Issue
Block a user