comparison Makefile @ 50092:010a1e73f69e stable

setup: further improve the error path for version retrieval This is a new take at the problem that 8d390a13474d tried to tackle. There was two issues after that previous improvement: - the 0.0+ version could survive a bit too long and reaching the installer version and staying there. - multiple use case where still failing. So the new code is better at: - always succeeding when running `make local` so that we can bootstrap a local version - no using that fallback outside of `make local` to avoid distribution of version with the buggy version number. The setup.py is a gigantic pile of spaghetti code, to the point where pastafarian pilgrim started knocking at its core. However I refrained from cleaning that up since the more to a `setup.cfg` means this code should be deleted soon™.
author Pierre-Yves David <pierre-yves.david@octobus.net>
date Fri, 17 Feb 2023 16:45:36 +0100
parents d5b722ce9864
children 0f0880c8a7e5
comparison
equal deleted inserted replaced
50089:5fb2546d0df1 50092:010a1e73f69e
56 @echo ' make local && ./hg version' 56 @echo ' make local && ./hg version'
57 57
58 all: build doc 58 all: build doc
59 59
60 local: 60 local:
61 $(PYTHON) setup.py $(PURE) \ 61 MERCURIAL_SETUP_MAKE_LOCAL=1 $(PYTHON) setup.py $(PURE) \
62 build_py -c -d . \ 62 build_py -c -d . \
63 build_ext $(COMPILERFLAG) -i \ 63 build_ext $(COMPILERFLAG) -i \
64 build_hgexe $(COMPILERFLAG) -i \ 64 build_hgexe $(COMPILERFLAG) -i \
65 build_mo 65 build_mo
66 env HGRCPATH= $(PYTHON) hg version 66 env HGRCPATH= $(PYTHON) hg version