mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-25 16:33:15 +00:00
nix-prefetch-{bzr,hg,svn}: print fetched revision
This commit is contained in:
parent
be25ce8f58
commit
063efadd69
@ -52,6 +52,8 @@ if test -z "$finalPath"; then
|
|||||||
# Perform the checkout.
|
# Perform the checkout.
|
||||||
bzr -Ossl.cert_reqs=none export $revarg --format=dir "$tmpFile" "$url"
|
bzr -Ossl.cert_reqs=none export $revarg --format=dir "$tmpFile" "$url"
|
||||||
|
|
||||||
|
echo "bzr revision is $(bzr revno $revarg "$url")"
|
||||||
|
|
||||||
# Compute the hash.
|
# Compute the hash.
|
||||||
hash=$(nix-hash --type $hashType $hashFormat $tmpFile)
|
hash=$(nix-hash --type $hashType $hashFormat $tmpFile)
|
||||||
if ! test -n "$QUIET"; then echo "hash is $hash" >&2; fi
|
if ! test -n "$QUIET"; then echo "hash is $hash" >&2; fi
|
||||||
|
@ -51,6 +51,7 @@ if test -z "$finalPath"; then
|
|||||||
hg archive -q -y -r "$rev" --cwd $tmpClone $tmpArchive
|
hg archive -q -y -r "$rev" --cwd $tmpClone $tmpArchive
|
||||||
rm -f $tmpArchive/.hg_archival.txt
|
rm -f $tmpArchive/.hg_archival.txt
|
||||||
|
|
||||||
|
echo "hg revision is $(cd $tmpClone; hg id -r "$rev" -i)"
|
||||||
|
|
||||||
# Compute the hash.
|
# Compute the hash.
|
||||||
hash=$(nix-hash --type $hashType $hashFormat $tmpArchive)
|
hash=$(nix-hash --type $hashType $hashFormat $tmpArchive)
|
||||||
|
@ -56,6 +56,7 @@ if test -z "$finalPath"; then
|
|||||||
fi
|
fi
|
||||||
|
|
||||||
echo p | svn "$command" --quiet -r "$rev" "$url" "$tmpFile" >&2
|
echo p | svn "$command" --quiet -r "$rev" "$url" "$tmpFile" >&2
|
||||||
|
echo "svn revision is $(svn info -r "$rev" "$url" | grep "Revision: " | cut -d' ' -f2)"
|
||||||
|
|
||||||
# Compute the hash.
|
# Compute the hash.
|
||||||
hash=$(nix-hash --type $hashType $hashFormat $tmpFile)
|
hash=$(nix-hash --type $hashType $hashFormat $tmpFile)
|
||||||
|
Loading…
Reference in New Issue
Block a user