mirror of
https://github.com/hyprwm/Hyprland
synced 2024-11-02 20:06:00 +01:00
a8ab1b1679
* scripts: allow using existing variable values in generateVersion.sh * nix: populate versioning variables * nix: remove unused meson input * nix: remove unnecessary hyprland-protocols dependency * Nix: remove nixConfig from flake It's more annoying than helpful. * CI/Nix: fix PR build failure --------- Co-authored-by: Mihai Fufezan <mihai@fufexan.net>
18 lines
766 B
Bash
Executable file
18 lines
766 B
Bash
Executable file
#!/bin/sh
|
|
cp -fr ./src/version.h.in ./src/version.h
|
|
|
|
HASH=${HASH-$(git rev-parse HEAD)}
|
|
BRANCH=${BRANCH-$(git branch --show-current)}
|
|
MESSAGE=${MESSAGE-$(git show | head -n 5 | tail -n 1 | sed -e 's/#//g' -e 's/\"//g')}
|
|
DATE=${DATE-$(git show --no-patch --format=%cd --date=local)}
|
|
DIRTY=${DIRTY-$(git diff-index --quiet HEAD -- || echo dirty)}
|
|
TAG=${TAG-$(git describe --tags)}
|
|
COMMITS=${COMMITS-$(git rev-list --count HEAD)}
|
|
|
|
sed -i -e "s#@HASH@#${HASH}#" ./src/version.h
|
|
sed -i -e "s#@BRANCH@#${BRANCH}#" ./src/version.h
|
|
sed -i -e "s#@MESSAGE@#${MESSAGE}#" ./src/version.h
|
|
sed -i -e "s#@DATE@#${DATE}#" ./src/version.h
|
|
sed -i -e "s#@DIRTY@#${DIRTY}#" ./src/version.h
|
|
sed -i -e "s#@TAG@#${TAG}#" ./src/version.h
|
|
sed -i -e "s#@COMMITS@#${COMMITS}#" ./src/version.h
|