Have configure.py modify internal variables depending on the --qml-plugindir configure option. diff -u PyQt-gpl-5.4.alt/configure.py PyQt-gpl-5.4/configure.py --- PyQt-gpl-5.4.alt/configure.py 2015-01-25 17:27:50.000000000 +0100 +++ PyQt-gpl-5.4/configure.py 2015-01-25 17:56:41.000000000 +0100 @@ -904,6 +904,9 @@ if opts.pyuicinterpreter is not None: self.pyuic_interpreter = opts.pyuicinterpreter + if opts.qmlplugindir is not None: + self.qml_plugin_dir = opts.qmlplugindir + if opts.qsciapidir is not None: self.qsci_api_dir = opts.qsciapidir value='1b2d43fe016848ea2ec16ff18cbc14340944fc4e'/> Wojtek's customized Guix
aboutsummaryrefslogtreecommitdiff
path: root/etc/git
AgeCommit message (Expand)Author
2023-05-18etc: gitconfig: Do not enforced signed commits....This change was more invasive than initially thought, and cannot be disabled easily, as raised by a few people. Let's revert it for now. At least the pre-push hook should be deployed automatically and catch any unsigned commits attempted to be pushed to Savannah. * etc/git/gitconfig [commit]: Remove section. Maxim Cournoyer
2023-05-01Makefile.am: Auto-configure Git on 'make'....This means we do not need to worry anymore about manually syncing the pre-push git hook or the Guix-provided git configuration. * etc/git/gitconfig: Augment configuration template with useful options to allow for auto-configuration. * Makefile.am (.git/hooks/pre-push, .git/config): New targets. (nodist_noinst_DATA): New primary variable holding the above targets. Maxim Cournoyer
2021-10-14Add git configuration templates to improve diff hunk header detection....This is a follow-up to commit 9fc8ae4171e5da4939a64fc6d684c8b9d85bbe84, which missed two hunks from <https://issues.guix.gnu.org/50363>. Reported by hackeryarn on #guix. * .gitattributes, etc/git/gitconfig: New files. Signed-off-by: Marius Bakke <marius@gnu.org> Sarah Morgensen
2020-12-14maint: Only run `make authenticate` when pushing commits....* etc/git/pre-push: Exit early when deleting a branch. Leo Famulari