2021-04-16 13:22:13 +01:00
|
|
|
|
{ lib
|
|
|
|
|
, writeShellScript
|
2020-10-19 18:57:12 +01:00
|
|
|
|
, coreutils
|
|
|
|
|
, git
|
|
|
|
|
, nix
|
|
|
|
|
, common-updater-scripts
|
|
|
|
|
}:
|
|
|
|
|
|
|
|
|
|
# This is an updater for unstable packages that should always use the latest
|
|
|
|
|
# commit.
|
|
|
|
|
{ url ? null # The git url, if empty it will be set to src.url
|
2021-04-16 13:22:13 +01:00
|
|
|
|
, branch ? null
|
2022-02-18 07:19:31 +00:00
|
|
|
|
, stableVersion ? false # Use version format according to RFC 107 (i.e. LAST_TAG+date=YYYY-MM-DD)
|
|
|
|
|
, tagPrefix ? "" # strip this prefix from a tag name when using stable version
|
2020-10-19 18:57:12 +01:00
|
|
|
|
}:
|
|
|
|
|
|
|
|
|
|
let
|
|
|
|
|
updateScript = writeShellScript "unstable-update-script.sh" ''
|
|
|
|
|
set -ex
|
|
|
|
|
|
2022-02-18 07:12:44 +00:00
|
|
|
|
url=""
|
|
|
|
|
branch=""
|
2022-02-18 07:19:31 +00:00
|
|
|
|
use_stable_version=""
|
|
|
|
|
tag_prefix=""
|
2022-02-18 07:12:44 +00:00
|
|
|
|
|
|
|
|
|
while (( $# > 0 )); do
|
|
|
|
|
flag="$1"
|
|
|
|
|
shift 1
|
|
|
|
|
case "$flag" in
|
|
|
|
|
--url=*)
|
|
|
|
|
url="''${flag#*=}"
|
|
|
|
|
;;
|
|
|
|
|
--branch=*)
|
|
|
|
|
branch="''${flag#*=}"
|
|
|
|
|
;;
|
2022-02-18 07:19:31 +00:00
|
|
|
|
--use-stable-version)
|
|
|
|
|
use_stable_version=1
|
|
|
|
|
;;
|
|
|
|
|
--tag-prefix=*)
|
|
|
|
|
tag_prefix="''${flag#*=}"
|
|
|
|
|
;;
|
2022-02-18 07:12:44 +00:00
|
|
|
|
*)
|
|
|
|
|
echo "$0: unknown option ‘''${flag}’"
|
|
|
|
|
exit 1
|
|
|
|
|
;;
|
|
|
|
|
esac
|
|
|
|
|
done
|
2020-10-19 18:57:12 +01:00
|
|
|
|
|
|
|
|
|
# By default we set url to src.url
|
|
|
|
|
if [[ -z "$url" ]]; then
|
|
|
|
|
url="$(${nix}/bin/nix-instantiate $systemArg --eval -E \
|
2022-05-24 17:03:46 +01:00
|
|
|
|
"with import ./. {}; $UPDATE_NIX_ATTR_PATH.src.gitRepoUrl" \
|
2020-10-19 18:57:12 +01:00
|
|
|
|
| tr -d '"')"
|
|
|
|
|
fi
|
|
|
|
|
|
|
|
|
|
# Get info about HEAD from a shallow git clone
|
|
|
|
|
tmpdir="$(${coreutils}/bin/mktemp -d)"
|
2022-02-18 07:12:44 +00:00
|
|
|
|
|
|
|
|
|
cloneArgs=(
|
|
|
|
|
--bare
|
|
|
|
|
--depth=1
|
|
|
|
|
)
|
|
|
|
|
|
|
|
|
|
if [[ -n "$branch" ]]; then
|
|
|
|
|
cloneArgs+=(--branch="$branch")
|
|
|
|
|
fi
|
|
|
|
|
|
|
|
|
|
${git}/bin/git clone "''${cloneArgs[@]}" "$url" "$tmpdir"
|
|
|
|
|
|
2020-10-19 18:57:12 +01:00
|
|
|
|
pushd "$tmpdir"
|
|
|
|
|
commit_date="$(${git}/bin/git show -s --pretty='format:%cs')"
|
|
|
|
|
commit_sha="$(${git}/bin/git show -s --pretty='format:%H')"
|
2022-02-18 07:19:31 +00:00
|
|
|
|
if [[ -z "$use_stable_version" ]]; then
|
|
|
|
|
new_version="unstable-$commit_date"
|
|
|
|
|
else
|
|
|
|
|
depth=100
|
|
|
|
|
while (( $depth < 10000 )); do
|
|
|
|
|
last_tag="$(${git}/bin/git describe --tags --abbrev=0 2> /dev/null || true)"
|
|
|
|
|
if [[ -n "$last_tag" ]]; then
|
|
|
|
|
break
|
|
|
|
|
fi
|
|
|
|
|
${git}/bin/git fetch --depth="$depth" --tags
|
|
|
|
|
depth=$(( $depth * 2 ))
|
|
|
|
|
done
|
|
|
|
|
if [[ -z "$last_tag" ]]; then
|
|
|
|
|
echo "Cound not found a tag within last 10000 commits" > /dev/stderr
|
|
|
|
|
exit 1
|
|
|
|
|
fi
|
|
|
|
|
if [[ -n "$tag_prefix" ]]; then
|
|
|
|
|
last_tag="''${last_tag#$tag_prefix}"
|
|
|
|
|
fi
|
|
|
|
|
new_version="$last_tag+date=$commit_date"
|
|
|
|
|
fi
|
2020-10-19 18:57:12 +01:00
|
|
|
|
popd
|
2022-02-18 07:19:31 +00:00
|
|
|
|
# ${coreutils}/bin/rm -rf "$tmpdir"
|
2020-10-19 18:57:12 +01:00
|
|
|
|
|
|
|
|
|
# update the nix expression
|
|
|
|
|
${common-updater-scripts}/bin/update-source-version \
|
|
|
|
|
"$UPDATE_NIX_ATTR_PATH" \
|
2022-02-18 07:19:31 +00:00
|
|
|
|
"$new_version" \
|
2020-10-19 18:57:12 +01:00
|
|
|
|
--rev="$commit_sha"
|
|
|
|
|
'';
|
|
|
|
|
|
2022-02-18 07:12:44 +00:00
|
|
|
|
in [
|
|
|
|
|
updateScript
|
|
|
|
|
"--url=${builtins.toString url}"
|
|
|
|
|
] ++ lib.optionals (branch != null) [
|
|
|
|
|
"--branch=${branch}"
|
2022-02-18 07:19:31 +00:00
|
|
|
|
] ++ lib.optionals stableVersion [
|
|
|
|
|
"--use-stable-version"
|
|
|
|
|
"--tag-prefix=${tagPrefix}"
|
2022-02-18 07:12:44 +00:00
|
|
|
|
]
|