mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-01 07:01:54 +00:00
* Install/uninstall all RPMs in one operation. This is necessary if
the RPMs have dependencies between each other. svn path=/nixpkgs/trunk/; revision=34303
This commit is contained in:
parent
f6b2f17bc3
commit
c2fd3c184b
@ -26,24 +26,22 @@ vmTools.buildRPM (
|
||||
''; # */
|
||||
|
||||
postInstall = ''
|
||||
declare -a rpms rpmNames
|
||||
for i in $out/rpms/*/*.rpm; do
|
||||
if echo $i | grep -vq "\.src\.rpm$"; then
|
||||
echo "file rpm $i" >> $out/nix-support/hydra-build-products
|
||||
|
||||
echo "installing $i..."
|
||||
rpm -ip "$i" --excludepath /nix/store
|
||||
rpms+=($i)
|
||||
rpmNames+=("$(rpm -qp "$i")")
|
||||
fi
|
||||
done
|
||||
|
||||
echo "installing ''${rpms[*]}..."
|
||||
rpm -ip ''${rpms[*]} --excludepath /nix/store
|
||||
|
||||
eval "$postRPMInstall"
|
||||
|
||||
for i in $out/rpms/*/*.rpm; do
|
||||
if echo $i | grep -vq "\.src\.rpm$"; then
|
||||
rpmName="$(rpm -qp "$i")"
|
||||
echo "uninstalling $rpmName..."
|
||||
rpm -e "$rpmName"
|
||||
fi
|
||||
done
|
||||
echo "uninstalling ''${rpmNames[*]}..."
|
||||
rpm -e ''${rpmNames[*]}
|
||||
|
||||
for i in $out/rpms/*/*.src.rpm; do
|
||||
echo "file srpm $i" >> $out/nix-support/hydra-build-products
|
||||
|
Loading…
Reference in New Issue
Block a user