nixpkgs/pkgs/applications/version-management/git/update.sh

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

20 lines
772 B
Bash
Raw Normal View History

2019-04-07 13:10:49 +00:00
#!/usr/bin/env nix-shell
#!nix-shell -i bash -p curl common-updater-scripts jq git
2019-04-07 13:10:49 +00:00
set -eu -o pipefail
oldVersion="$(nix-instantiate --eval -E "with import ./. {}; lib.getVersion git" | tr -d '"')"
latestTag="$(git ls-remote --tags --sort="v:refname" https://github.com/git/git.git | grep -v '\{\}' | grep -v '\-rc' | tail -1 | sed 's|^.*/v\(.*\)|\1|')"
targetVersion="${1:-$latestTag}"
2019-04-07 13:10:49 +00:00
if [ ! "${oldVersion}" = "${targetVersion}" ]; then
update-source-version git "${targetVersion}"
2019-04-07 13:10:49 +00:00
nixpkgs="$(git rev-parse --show-toplevel)"
default_nix="$nixpkgs/pkgs/applications/version-management/git-and-tools/git/default.nix"
nix-build -A git
git add "${default_nix}"
git commit -m "git: ${oldVersion} -> ${targetVersion}"
2019-04-07 13:10:49 +00:00
else
echo "git is already up-to-date"
fi