The following changes since commit 309bb874dcba2c96f8b12d20bed16cf6a1ea0133: Merge branch 'js/po-update-workflow' (2025-05-09 19:17:19 +0200) are available in the Git repository at: https://github.com/j6t/git-gui.git master for you to fetch changes up to 61f8788fe9d362efb112f69a58cf0510a7e49ee0: Merge branch 'pks-meson-support' of github.com:pks-t/git-gui (2025-05-29 10:01:14 +0200) ---------------------------------------------------------------- Johannes Sixt (1): Merge branch 'pks-meson-support' of github.com:pks-t/git-gui Patrick Steinhardt (10): git-gui: replace GIT-GUI-VARS with GIT-GUI-BUILD-OPTIONS git-gui: prepare GIT-VERSION-GEN for out-of-tree builds git-gui: make output of GIT-VERSION-GEN source'able git-gui: drop no-op GITGUI_SCRIPT replacement git-gui: extract script to generate "git-gui" git-gui: extract script to generate "tclIndex" git-gui: extract script to generate macOS wrapper git-gui: extract script to generate macOS app git-gui: stop including GIT-VERSION-FILE file git-gui: wire up support for the Meson build system .gitattributes | 1 + .gitignore | 2 +- GIT-GUI-BUILD-OPTIONS.in | 7 +++ GIT-VERSION-GEN | 44 +++++++++----- Makefile | 115 +++++++++-------------------------- generate-git-gui.sh | 29 +++++++++ generate-macos-app.sh | 30 ++++++++++ generate-macos-wrapper.sh | 35 +++++++++++ generate-tclindex.sh | 32 ++++++++++ lib/meson.build | 74 +++++++++++++++++++++++ meson.build | 148 ++++++++++++++++++++++++++++++++++++++++++++++ po/meson.build | 38 ++++++++++++ 12 files changed, 453 insertions(+), 102 deletions(-) create mode 100644 GIT-GUI-BUILD-OPTIONS.in create mode 100755 generate-git-gui.sh create mode 100755 generate-macos-app.sh create mode 100755 generate-macos-wrapper.sh create mode 100755 generate-tclindex.sh create mode 100644 lib/meson.build create mode 100644 meson.build create mode 100644 po/meson.build