Show More
@@ -1,307 +1,308 b'' | |||||
1 | # If you want to change PREFIX, do not just edit it below. The changed |
|
1 | # If you want to change PREFIX, do not just edit it below. The changed | |
2 | # value wont get passed on to recursive make calls. You should instead |
|
2 | # value wont get passed on to recursive make calls. You should instead | |
3 | # override the variable on the command like: |
|
3 | # override the variable on the command like: | |
4 | # |
|
4 | # | |
5 | # % make PREFIX=/opt/ install |
|
5 | # % make PREFIX=/opt/ install | |
6 |
|
6 | |||
7 | export PREFIX=/usr/local |
|
7 | export PREFIX=/usr/local | |
8 |
|
8 | |||
9 | # Default to Python 3. |
|
9 | # Default to Python 3. | |
10 | # |
|
10 | # | |
11 | # Windows ships Python 3 as `python.exe`, which may not be on PATH. py.exe is. |
|
11 | # Windows ships Python 3 as `python.exe`, which may not be on PATH. py.exe is. | |
12 | ifeq ($(OS),Windows_NT) |
|
12 | ifeq ($(OS),Windows_NT) | |
13 | PYTHON?=py -3 |
|
13 | PYTHON?=py -3 | |
14 | else |
|
14 | else | |
15 | PYTHON?=python3 |
|
15 | PYTHON?=python3 | |
16 | endif |
|
16 | endif | |
17 |
|
17 | |||
18 | PYOXIDIZER?=pyoxidizer |
|
18 | PYOXIDIZER?=pyoxidizer | |
19 |
|
19 | |||
20 | $(eval HGROOT := $(shell pwd)) |
|
20 | $(eval HGROOT := $(shell pwd)) | |
21 | HGPYTHONS ?= $(HGROOT)/build/pythons |
|
21 | HGPYTHONS ?= $(HGROOT)/build/pythons | |
22 | PURE= |
|
22 | PURE= | |
23 | PYFILESCMD=find mercurial hgext doc -name '*.py' |
|
23 | PYFILESCMD=find mercurial hgext doc -name '*.py' | |
24 | PYFILES:=$(shell $(PYFILESCMD)) |
|
24 | PYFILES:=$(shell $(PYFILESCMD)) | |
25 | DOCFILES=mercurial/helptext/*.txt |
|
25 | DOCFILES=mercurial/helptext/*.txt | |
26 | export LANGUAGE=C |
|
26 | export LANGUAGE=C | |
27 | export LC_ALL=C |
|
27 | export LC_ALL=C | |
28 | TESTFLAGS ?= $(shell echo $$HGTESTFLAGS) |
|
28 | TESTFLAGS ?= $(shell echo $$HGTESTFLAGS) | |
29 | OSXVERSIONFLAGS ?= $(shell echo $$OSXVERSIONFLAGS) |
|
29 | OSXVERSIONFLAGS ?= $(shell echo $$OSXVERSIONFLAGS) | |
30 | CARGO = cargo |
|
30 | CARGO = cargo | |
31 |
|
31 | |||
32 | # Set this to e.g. "mingw32" to use a non-default compiler. |
|
32 | # Set this to e.g. "mingw32" to use a non-default compiler. | |
33 | COMPILER= |
|
33 | COMPILER= | |
34 |
|
34 | |||
35 | COMPILERFLAG_tmp_ = |
|
35 | COMPILERFLAG_tmp_ = | |
36 | COMPILERFLAG_tmp_${COMPILER} ?= -c $(COMPILER) |
|
36 | COMPILERFLAG_tmp_${COMPILER} ?= -c $(COMPILER) | |
37 | COMPILERFLAG=${COMPILERFLAG_tmp_${COMPILER}} |
|
37 | COMPILERFLAG=${COMPILERFLAG_tmp_${COMPILER}} | |
38 |
|
38 | |||
39 | help: |
|
39 | help: | |
40 | @echo 'Commonly used make targets:' |
|
40 | @echo 'Commonly used make targets:' | |
41 | @echo ' all - build program and documentation' |
|
41 | @echo ' all - build program and documentation' | |
42 | @echo ' install - install program and man pages to $$PREFIX ($(PREFIX))' |
|
42 | @echo ' install - install program and man pages to $$PREFIX ($(PREFIX))' | |
43 | @echo ' install-home - install with setup.py install --home=$$HOME ($(HOME))' |
|
43 | @echo ' install-home - install with setup.py install --home=$$HOME ($(HOME))' | |
44 | @echo ' local - build for inplace usage' |
|
44 | @echo ' local - build for inplace usage' | |
45 | @echo ' tests - run all tests in the automatic test suite' |
|
45 | @echo ' tests - run all tests in the automatic test suite' | |
46 | @echo ' test-foo - run only specified tests (e.g. test-merge1.t)' |
|
46 | @echo ' test-foo - run only specified tests (e.g. test-merge1.t)' | |
47 | @echo ' dist - run all tests and create a source tarball in dist/' |
|
47 | @echo ' dist - run all tests and create a source tarball in dist/' | |
48 | @echo ' clean - remove files created by other targets' |
|
48 | @echo ' clean - remove files created by other targets' | |
49 | @echo ' (except installed files or dist source tarball)' |
|
49 | @echo ' (except installed files or dist source tarball)' | |
50 | @echo ' update-pot - update i18n/hg.pot' |
|
50 | @echo ' update-pot - update i18n/hg.pot' | |
51 | @echo |
|
51 | @echo | |
52 | @echo 'Example for a system-wide installation under /usr/local:' |
|
52 | @echo 'Example for a system-wide installation under /usr/local:' | |
53 | @echo ' make all && su -c "make install" && hg version' |
|
53 | @echo ' make all && su -c "make install" && hg version' | |
54 | @echo |
|
54 | @echo | |
55 | @echo 'Example for a local installation (usable in this directory):' |
|
55 | @echo 'Example for a local installation (usable in this directory):' | |
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 | MERCURIAL_SETUP_MAKE_LOCAL=1 $(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 | |
67 |
|
67 | |||
68 | build: |
|
68 | build: | |
69 | $(PYTHON) setup.py $(PURE) build $(COMPILERFLAG) |
|
69 | $(PYTHON) setup.py $(PURE) build $(COMPILERFLAG) | |
70 |
|
70 | |||
71 | build-chg: |
|
71 | build-chg: | |
72 | make -C contrib/chg |
|
72 | make -C contrib/chg | |
73 |
|
73 | |||
74 | build-rhg: |
|
74 | build-rhg: | |
75 | (cd rust/rhg; cargo build --release) |
|
75 | (cd rust/rhg; cargo build --release) | |
76 |
|
76 | |||
77 | wheel: |
|
77 | wheel: | |
78 | FORCE_SETUPTOOLS=1 $(PYTHON) setup.py $(PURE) bdist_wheel $(COMPILERFLAG) |
|
78 | FORCE_SETUPTOOLS=1 $(PYTHON) setup.py $(PURE) bdist_wheel $(COMPILERFLAG) | |
79 |
|
79 | |||
80 | doc: |
|
80 | doc: | |
81 | $(MAKE) -C doc |
|
81 | $(MAKE) -C doc | |
82 |
|
82 | |||
83 | cleanbutpackages: |
|
83 | cleanbutpackages: | |
84 | rm -f hg.exe |
|
84 | rm -f hg.exe | |
85 | -$(PYTHON) setup.py clean --all # ignore errors from this command |
|
85 | -$(PYTHON) setup.py clean --all # ignore errors from this command | |
86 | find contrib doc hgext hgext3rd i18n mercurial tests hgdemandimport \ |
|
86 | find contrib doc hgext hgext3rd i18n mercurial tests hgdemandimport \ | |
87 | \( -name '*.py[cdo]' -o -name '*.so' \) -exec rm -f '{}' ';' |
|
87 | \( -name '*.py[cdo]' -o -name '*.so' \) -exec rm -f '{}' ';' | |
88 | rm -f MANIFEST MANIFEST.in hgext/__index__.py tests/*.err |
|
88 | rm -f MANIFEST MANIFEST.in hgext/__index__.py tests/*.err | |
89 | rm -f mercurial/__modulepolicy__.py |
|
89 | rm -f mercurial/__modulepolicy__.py | |
90 | if test -d .hg; then rm -f mercurial/__version__.py; fi |
|
90 | if test -d .hg; then rm -f mercurial/__version__.py; fi | |
91 | rm -rf build mercurial/locale |
|
91 | rm -rf build mercurial/locale | |
92 | $(MAKE) -C doc clean |
|
92 | $(MAKE) -C doc clean | |
93 | $(MAKE) -C contrib/chg distclean |
|
93 | $(MAKE) -C contrib/chg distclean | |
94 | rm -rf rust/target |
|
94 | rm -rf rust/target | |
95 | rm -f mercurial/rustext.so |
|
95 | rm -f mercurial/rustext.so | |
96 |
|
96 | |||
97 | clean: cleanbutpackages |
|
97 | clean: cleanbutpackages | |
98 | rm -rf packages |
|
98 | rm -rf packages | |
99 |
|
99 | |||
100 | install: install-bin install-doc |
|
100 | install: install-bin install-doc | |
101 |
|
101 | |||
102 | install-bin: build |
|
102 | install-bin: build | |
103 | $(PYTHON) setup.py $(PURE) install --root="$(DESTDIR)/" --prefix="$(PREFIX)" --force |
|
103 | $(PYTHON) setup.py $(PURE) install --root="$(DESTDIR)/" --prefix="$(PREFIX)" --force | |
104 |
|
104 | |||
105 | install-chg: build-chg |
|
105 | install-chg: build-chg | |
106 | make -C contrib/chg install PREFIX="$(PREFIX)" |
|
106 | make -C contrib/chg install PREFIX="$(PREFIX)" | |
107 |
|
107 | |||
108 | install-doc: doc |
|
108 | install-doc: doc | |
109 | cd doc && $(MAKE) $(MFLAGS) install |
|
109 | cd doc && $(MAKE) $(MFLAGS) install | |
110 |
|
110 | |||
111 | install-home: install-home-bin install-home-doc |
|
111 | install-home: install-home-bin install-home-doc | |
112 |
|
112 | |||
113 | install-home-bin: build |
|
113 | install-home-bin: build | |
114 | $(PYTHON) setup.py $(PURE) install --home="$(HOME)" --prefix="" --force |
|
114 | $(PYTHON) setup.py $(PURE) install --home="$(HOME)" --prefix="" --force | |
115 |
|
115 | |||
116 | install-home-doc: doc |
|
116 | install-home-doc: doc | |
117 | cd doc && $(MAKE) $(MFLAGS) PREFIX="$(HOME)" install |
|
117 | cd doc && $(MAKE) $(MFLAGS) PREFIX="$(HOME)" install | |
118 |
|
118 | |||
119 | install-rhg: build-rhg |
|
119 | install-rhg: build-rhg | |
120 | install -m 755 rust/target/release/rhg "$(PREFIX)"/bin/ |
|
120 | install -m 755 rust/target/release/rhg "$(PREFIX)"/bin/ | |
121 |
|
121 | |||
122 | MANIFEST-doc: |
|
122 | MANIFEST-doc: | |
123 | $(MAKE) -C doc MANIFEST |
|
123 | $(MAKE) -C doc MANIFEST | |
124 |
|
124 | |||
125 | MANIFEST.in: MANIFEST-doc |
|
125 | MANIFEST.in: MANIFEST-doc | |
126 | hg manifest | sed -e 's/^/include /' > MANIFEST.in |
|
126 | hg manifest | sed -e 's/^/include /' > MANIFEST.in | |
127 | echo include mercurial/__version__.py >> MANIFEST.in |
|
127 | echo include mercurial/__version__.py >> MANIFEST.in | |
128 | sed -e 's/^/include /' < doc/MANIFEST >> MANIFEST.in |
|
128 | sed -e 's/^/include /' < doc/MANIFEST >> MANIFEST.in | |
129 |
|
129 | |||
130 | dist: tests dist-notests |
|
130 | dist: tests dist-notests | |
131 |
|
131 | |||
132 | dist-notests: doc MANIFEST.in |
|
132 | dist-notests: doc MANIFEST.in | |
133 | TAR_OPTIONS="--owner=root --group=root --mode=u+w,go-w,a+rX-s" $(PYTHON) setup.py -q sdist |
|
133 | TAR_OPTIONS="--owner=root --group=root --mode=u+w,go-w,a+rX-s" $(PYTHON) setup.py -q sdist | |
134 |
|
134 | |||
135 | check: tests |
|
135 | check: tests | |
136 |
|
136 | |||
137 | tests: |
|
137 | tests: | |
138 | # Run Rust tests if cargo is installed |
|
138 | # Run Rust tests if cargo is installed | |
139 | if command -v $(CARGO) >/dev/null 2>&1; then \ |
|
139 | if command -v $(CARGO) >/dev/null 2>&1; then \ | |
140 | $(MAKE) rust-tests; \ |
|
140 | $(MAKE) rust-tests; \ | |
141 | $(MAKE) cargo-clippy; \ |
|
141 | $(MAKE) cargo-clippy; \ | |
142 | fi |
|
142 | fi | |
143 | cd tests && $(PYTHON) run-tests.py $(TESTFLAGS) |
|
143 | cd tests && $(PYTHON) run-tests.py $(TESTFLAGS) | |
144 |
|
144 | |||
145 | test-%: |
|
145 | test-%: | |
146 | cd tests && $(PYTHON) run-tests.py $(TESTFLAGS) $@ |
|
146 | cd tests && $(PYTHON) run-tests.py $(TESTFLAGS) $@ | |
147 |
|
147 | |||
148 | testpy-%: |
|
148 | testpy-%: | |
149 | @echo Looking for Python $* in $(HGPYTHONS) |
|
149 | @echo Looking for Python $* in $(HGPYTHONS) | |
150 | [ -e $(HGPYTHONS)/$*/bin/python ] || ( \ |
|
150 | [ -e $(HGPYTHONS)/$*/bin/python ] || ( \ | |
151 | cd $$(mktemp --directory --tmpdir) && \ |
|
151 | cd $$(mktemp --directory --tmpdir) && \ | |
152 | $(MAKE) -f $(HGROOT)/contrib/Makefile.python PYTHONVER=$* PREFIX=$(HGPYTHONS)/$* python ) |
|
152 | $(MAKE) -f $(HGROOT)/contrib/Makefile.python PYTHONVER=$* PREFIX=$(HGPYTHONS)/$* python ) | |
153 | cd tests && $(HGPYTHONS)/$*/bin/python run-tests.py $(TESTFLAGS) |
|
153 | cd tests && $(HGPYTHONS)/$*/bin/python run-tests.py $(TESTFLAGS) | |
154 |
|
154 | |||
155 | rust-tests: |
|
155 | rust-tests: | |
156 | cd $(HGROOT)/rust \ |
|
156 | cd $(HGROOT)/rust \ | |
157 | && $(CARGO) test --quiet --all --features "$(HG_RUST_FEATURES)" |
|
157 | && $(CARGO) test --quiet --all --features "$(HG_RUST_FEATURES)" | |
158 |
|
158 | |||
159 | cargo-clippy: |
|
159 | cargo-clippy: | |
160 | cd $(HGROOT)/rust \ |
|
160 | cd $(HGROOT)/rust \ | |
161 | && $(CARGO) clippy --all --features "$(HG_RUST_FEATURES)" -- -D warnings |
|
161 | && $(CARGO) clippy --all --features "$(HG_RUST_FEATURES)" -- -D warnings | |
162 |
|
162 | |||
163 | check-code: |
|
163 | check-code: | |
164 | hg manifest | xargs python contrib/check-code.py |
|
164 | hg manifest | xargs python contrib/check-code.py | |
165 |
|
165 | |||
166 | format-c: |
|
166 | format-c: | |
167 | clang-format --style file -i \ |
|
167 | clang-format --style file -i \ | |
168 | `hg files 'set:(**.c or **.cc or **.h) and not "listfile:contrib/clang-format-ignorelist"'` |
|
168 | `hg files 'set:(**.c or **.cc or **.h) and not "listfile:contrib/clang-format-ignorelist"'` | |
169 |
|
169 | |||
170 | update-pot: i18n/hg.pot |
|
170 | update-pot: i18n/hg.pot | |
171 |
|
171 | |||
172 | i18n/hg.pot: $(PYFILES) $(DOCFILES) i18n/posplit i18n/hggettext |
|
172 | i18n/hg.pot: $(PYFILES) $(DOCFILES) i18n/posplit i18n/hggettext | |
173 | $(PYTHON) i18n/hggettext mercurial/commands.py \ |
|
173 | $(PYTHON) i18n/hggettext mercurial/commands.py \ | |
174 | hgext/*.py hgext/*/__init__.py \ |
|
174 | hgext/*.py hgext/*/__init__.py \ | |
175 | mercurial/fileset.py mercurial/revset.py \ |
|
175 | mercurial/fileset.py mercurial/revset.py \ | |
176 | mercurial/templatefilters.py \ |
|
176 | mercurial/templatefilters.py \ | |
177 | mercurial/templatefuncs.py \ |
|
177 | mercurial/templatefuncs.py \ | |
178 | mercurial/templatekw.py \ |
|
178 | mercurial/templatekw.py \ | |
179 | mercurial/filemerge.py \ |
|
179 | mercurial/filemerge.py \ | |
180 | mercurial/hgweb/webcommands.py \ |
|
180 | mercurial/hgweb/webcommands.py \ | |
181 | mercurial/util.py \ |
|
181 | mercurial/util.py \ | |
182 | $(DOCFILES) > i18n/hg.pot.tmp |
|
182 | $(DOCFILES) > i18n/hg.pot.tmp | |
183 | # All strings marked for translation in Mercurial contain |
|
183 | # All strings marked for translation in Mercurial contain | |
184 | # ASCII characters only. But some files contain string |
|
184 | # ASCII characters only. But some files contain string | |
185 | # literals like this '\037\213'. xgettext thinks it has to |
|
185 | # literals like this '\037\213'. xgettext thinks it has to | |
186 | # parse them even though they are not marked for translation. |
|
186 | # parse them even though they are not marked for translation. | |
187 | # Extracting with an explicit encoding of ISO-8859-1 will make |
|
187 | # Extracting with an explicit encoding of ISO-8859-1 will make | |
188 | # xgettext "parse" and ignore them. |
|
188 | # xgettext "parse" and ignore them. | |
189 | $(PYFILESCMD) | xargs \ |
|
189 | $(PYFILESCMD) | xargs \ | |
190 | xgettext --package-name "Mercurial" \ |
|
190 | xgettext --package-name "Mercurial" \ | |
191 | --msgid-bugs-address "<mercurial-devel@mercurial-scm.org>" \ |
|
191 | --msgid-bugs-address "<mercurial-devel@mercurial-scm.org>" \ | |
192 | --copyright-holder "Olivia Mackall <olivia@selenic.com> and others" \ |
|
192 | --copyright-holder "Olivia Mackall <olivia@selenic.com> and others" \ | |
193 | --from-code ISO-8859-1 --join --sort-by-file --add-comments=i18n: \ |
|
193 | --from-code ISO-8859-1 --join --sort-by-file --add-comments=i18n: \ | |
194 | -d hg -p i18n -o hg.pot.tmp |
|
194 | -d hg -p i18n -o hg.pot.tmp | |
195 | $(PYTHON) i18n/posplit i18n/hg.pot.tmp |
|
195 | $(PYTHON) i18n/posplit i18n/hg.pot.tmp | |
196 | # The target file is not created before the last step. So it never is in |
|
196 | # The target file is not created before the last step. So it never is in | |
197 | # an intermediate state. |
|
197 | # an intermediate state. | |
198 | mv -f i18n/hg.pot.tmp i18n/hg.pot |
|
198 | mv -f i18n/hg.pot.tmp i18n/hg.pot | |
199 |
|
199 | |||
200 | %.po: i18n/hg.pot |
|
200 | %.po: i18n/hg.pot | |
201 | # work on a temporary copy for never having a half completed target |
|
201 | # work on a temporary copy for never having a half completed target | |
202 | cp $@ $@.tmp |
|
202 | cp $@ $@.tmp | |
203 | msgmerge --no-location --update $@.tmp $^ |
|
203 | msgmerge --no-location --update $@.tmp $^ | |
204 | mv -f $@.tmp $@ |
|
204 | mv -f $@.tmp $@ | |
205 |
|
205 | |||
206 | # Packaging targets |
|
206 | # Packaging targets | |
207 |
|
207 | |||
208 | packaging_targets := \ |
|
208 | packaging_targets := \ | |
209 | rhel7 \ |
|
209 | rhel7 \ | |
210 | rhel8 \ |
|
210 | rhel8 \ | |
211 | rhel9 \ |
|
211 | rhel9 \ | |
212 | deb \ |
|
212 | deb \ | |
213 | docker-rhel7 \ |
|
213 | docker-rhel7 \ | |
214 | docker-rhel8 \ |
|
214 | docker-rhel8 \ | |
215 | docker-rhel9 \ |
|
215 | docker-rhel9 \ | |
216 | docker-debian-bullseye \ |
|
216 | docker-debian-bullseye \ | |
217 | docker-debian-buster \ |
|
217 | docker-debian-buster \ | |
218 | docker-debian-stretch \ |
|
218 | docker-debian-stretch \ | |
219 | docker-fedora \ |
|
219 | docker-fedora \ | |
220 | docker-ubuntu-xenial \ |
|
220 | docker-ubuntu-xenial \ | |
221 | docker-ubuntu-xenial-ppa \ |
|
221 | docker-ubuntu-xenial-ppa \ | |
222 | docker-ubuntu-bionic \ |
|
222 | docker-ubuntu-bionic \ | |
223 | docker-ubuntu-bionic-ppa \ |
|
223 | docker-ubuntu-bionic-ppa \ | |
224 | docker-ubuntu-focal \ |
|
224 | docker-ubuntu-focal \ | |
225 | docker-ubuntu-focal-ppa \ |
|
225 | docker-ubuntu-focal-ppa \ | |
226 | fedora \ |
|
226 | fedora \ | |
227 | linux-wheels \ |
|
227 | linux-wheels \ | |
228 | linux-wheels-x86_64 \ |
|
228 | linux-wheels-x86_64 \ | |
|
229 | linux-wheels-x86_64-musl \ | |||
229 | linux-wheels-i686 \ |
|
230 | linux-wheels-i686 \ | |
230 | ppa |
|
231 | ppa | |
231 |
|
232 | |||
232 | # Forward packaging targets for convenience. |
|
233 | # Forward packaging targets for convenience. | |
233 | $(packaging_targets): |
|
234 | $(packaging_targets): | |
234 | $(MAKE) -C contrib/packaging $(MAKEFLAGS) $@ |
|
235 | $(MAKE) -C contrib/packaging $(MAKEFLAGS) $@ | |
235 |
|
236 | |||
236 | osx: |
|
237 | osx: | |
237 | rm -rf build/mercurial |
|
238 | rm -rf build/mercurial | |
238 | /usr/bin/python2.7 setup.py install --optimize=1 \ |
|
239 | /usr/bin/python2.7 setup.py install --optimize=1 \ | |
239 | --root=build/mercurial/ --prefix=/usr/local/ \ |
|
240 | --root=build/mercurial/ --prefix=/usr/local/ \ | |
240 | --install-lib=/Library/Python/2.7/site-packages/ |
|
241 | --install-lib=/Library/Python/2.7/site-packages/ | |
241 | make -C doc all install DESTDIR="$(PWD)/build/mercurial/" |
|
242 | make -C doc all install DESTDIR="$(PWD)/build/mercurial/" | |
242 | # Place a bogon .DS_Store file in the target dir so we can be |
|
243 | # Place a bogon .DS_Store file in the target dir so we can be | |
243 | # sure it doesn't get included in the final package. |
|
244 | # sure it doesn't get included in the final package. | |
244 | touch build/mercurial/.DS_Store |
|
245 | touch build/mercurial/.DS_Store | |
245 | make -C contrib/chg \ |
|
246 | make -C contrib/chg \ | |
246 | HGPATH=/usr/local/bin/hg \ |
|
247 | HGPATH=/usr/local/bin/hg \ | |
247 | PYTHON=/usr/bin/python2.7 \ |
|
248 | PYTHON=/usr/bin/python2.7 \ | |
248 | DESTDIR=../../build/mercurial \ |
|
249 | DESTDIR=../../build/mercurial \ | |
249 | PREFIX=/usr/local \ |
|
250 | PREFIX=/usr/local \ | |
250 | clean install |
|
251 | clean install | |
251 | mkdir -p $${OUTPUTDIR:-dist} |
|
252 | mkdir -p $${OUTPUTDIR:-dist} | |
252 | HGVER=$$(python contrib/genosxversion.py $(OSXVERSIONFLAGS) build/mercurial/Library/Python/2.7/site-packages/mercurial/__version__.py) && \ |
|
253 | HGVER=$$(python contrib/genosxversion.py $(OSXVERSIONFLAGS) build/mercurial/Library/Python/2.7/site-packages/mercurial/__version__.py) && \ | |
253 | OSXVER=$$(sw_vers -productVersion | cut -d. -f1,2) && \ |
|
254 | OSXVER=$$(sw_vers -productVersion | cut -d. -f1,2) && \ | |
254 | pkgbuild --filter \\.DS_Store --root build/mercurial/ \ |
|
255 | pkgbuild --filter \\.DS_Store --root build/mercurial/ \ | |
255 | --identifier org.mercurial-scm.mercurial \ |
|
256 | --identifier org.mercurial-scm.mercurial \ | |
256 | --version "$${HGVER}" \ |
|
257 | --version "$${HGVER}" \ | |
257 | build/mercurial.pkg && \ |
|
258 | build/mercurial.pkg && \ | |
258 | productbuild --distribution contrib/packaging/macosx/distribution.xml \ |
|
259 | productbuild --distribution contrib/packaging/macosx/distribution.xml \ | |
259 | --package-path build/ \ |
|
260 | --package-path build/ \ | |
260 | --version "$${HGVER}" \ |
|
261 | --version "$${HGVER}" \ | |
261 | --resources contrib/packaging/macosx/ \ |
|
262 | --resources contrib/packaging/macosx/ \ | |
262 | "$${OUTPUTDIR:-dist/}"/Mercurial-"$${HGVER}"-macosx"$${OSXVER}".pkg |
|
263 | "$${OUTPUTDIR:-dist/}"/Mercurial-"$${HGVER}"-macosx"$${OSXVER}".pkg | |
263 |
|
264 | |||
264 | pyoxidizer: |
|
265 | pyoxidizer: | |
265 | $(PYOXIDIZER) build --path ./rust/hgcli --release |
|
266 | $(PYOXIDIZER) build --path ./rust/hgcli --release | |
266 |
|
267 | |||
267 |
|
268 | |||
268 | # a temporary target to setup all we need for run-tests.py --pyoxidizer |
|
269 | # a temporary target to setup all we need for run-tests.py --pyoxidizer | |
269 | # (should go away as the run-tests implementation improves |
|
270 | # (should go away as the run-tests implementation improves | |
270 | pyoxidizer-windows-tests: PYOX_DIR=build/pyoxidizer/x86_64-pc-windows-msvc/release/app |
|
271 | pyoxidizer-windows-tests: PYOX_DIR=build/pyoxidizer/x86_64-pc-windows-msvc/release/app | |
271 | pyoxidizer-windows-tests: pyoxidizer |
|
272 | pyoxidizer-windows-tests: pyoxidizer | |
272 | rm -rf $(PYOX_DIR)/templates |
|
273 | rm -rf $(PYOX_DIR)/templates | |
273 | cp -ar $(PYOX_DIR)/lib/mercurial/templates $(PYOX_DIR)/templates |
|
274 | cp -ar $(PYOX_DIR)/lib/mercurial/templates $(PYOX_DIR)/templates | |
274 | rm -rf $(PYOX_DIR)/helptext |
|
275 | rm -rf $(PYOX_DIR)/helptext | |
275 | cp -ar $(PYOX_DIR)/lib/mercurial/helptext $(PYOX_DIR)/helptext |
|
276 | cp -ar $(PYOX_DIR)/lib/mercurial/helptext $(PYOX_DIR)/helptext | |
276 | rm -rf $(PYOX_DIR)/defaultrc |
|
277 | rm -rf $(PYOX_DIR)/defaultrc | |
277 | cp -ar $(PYOX_DIR)/lib/mercurial/defaultrc $(PYOX_DIR)/defaultrc |
|
278 | cp -ar $(PYOX_DIR)/lib/mercurial/defaultrc $(PYOX_DIR)/defaultrc | |
278 | rm -rf $(PYOX_DIR)/contrib |
|
279 | rm -rf $(PYOX_DIR)/contrib | |
279 | cp -ar contrib $(PYOX_DIR)/contrib |
|
280 | cp -ar contrib $(PYOX_DIR)/contrib | |
280 | rm -rf $(PYOX_DIR)/doc |
|
281 | rm -rf $(PYOX_DIR)/doc | |
281 | cp -ar doc $(PYOX_DIR)/doc |
|
282 | cp -ar doc $(PYOX_DIR)/doc | |
282 |
|
283 | |||
283 |
|
284 | |||
284 | # a temporary target to setup all we need for run-tests.py --pyoxidizer |
|
285 | # a temporary target to setup all we need for run-tests.py --pyoxidizer | |
285 | # (should go away as the run-tests implementation improves |
|
286 | # (should go away as the run-tests implementation improves | |
286 | pyoxidizer-macos-tests: PYOX_DIR=build/pyoxidizer/x86_64-apple-darwin/release/app |
|
287 | pyoxidizer-macos-tests: PYOX_DIR=build/pyoxidizer/x86_64-apple-darwin/release/app | |
287 | pyoxidizer-macos-tests: pyoxidizer |
|
288 | pyoxidizer-macos-tests: pyoxidizer | |
288 | rm -rf $(PYOX_DIR)/templates |
|
289 | rm -rf $(PYOX_DIR)/templates | |
289 | cp -a mercurial/templates $(PYOX_DIR)/templates |
|
290 | cp -a mercurial/templates $(PYOX_DIR)/templates | |
290 | rm -rf $(PYOX_DIR)/helptext |
|
291 | rm -rf $(PYOX_DIR)/helptext | |
291 | cp -a mercurial/helptext $(PYOX_DIR)/helptext |
|
292 | cp -a mercurial/helptext $(PYOX_DIR)/helptext | |
292 | rm -rf $(PYOX_DIR)/defaultrc |
|
293 | rm -rf $(PYOX_DIR)/defaultrc | |
293 | cp -a mercurial/defaultrc $(PYOX_DIR)/defaultrc |
|
294 | cp -a mercurial/defaultrc $(PYOX_DIR)/defaultrc | |
294 | rm -rf $(PYOX_DIR)/contrib |
|
295 | rm -rf $(PYOX_DIR)/contrib | |
295 | cp -a contrib $(PYOX_DIR)/contrib |
|
296 | cp -a contrib $(PYOX_DIR)/contrib | |
296 | rm -rf $(PYOX_DIR)/doc |
|
297 | rm -rf $(PYOX_DIR)/doc | |
297 | cp -a doc $(PYOX_DIR)/doc |
|
298 | cp -a doc $(PYOX_DIR)/doc | |
298 |
|
299 | |||
299 | pytype-docker: |
|
300 | pytype-docker: | |
300 | contrib/docker/pytype/recipe.sh |
|
301 | contrib/docker/pytype/recipe.sh | |
301 |
|
302 | |||
302 | .PHONY: help all local build doc cleanbutpackages clean install install-bin \ |
|
303 | .PHONY: help all local build doc cleanbutpackages clean install install-bin \ | |
303 | install-doc install-home install-home-bin install-home-doc \ |
|
304 | install-doc install-home install-home-bin install-home-doc \ | |
304 | dist dist-notests check tests rust-tests check-code format-c \ |
|
305 | dist dist-notests check tests rust-tests check-code format-c \ | |
305 | update-pot pyoxidizer pyoxidizer-windows-tests pyoxidizer-macos-tests \ |
|
306 | update-pot pyoxidizer pyoxidizer-windows-tests pyoxidizer-macos-tests \ | |
306 | $(packaging_targets) \ |
|
307 | $(packaging_targets) \ | |
307 | osx pytype-docker |
|
308 | osx pytype-docker |
@@ -1,141 +1,146 b'' | |||||
1 | $(eval HGROOT := $(shell cd ../..; pwd)) |
|
1 | $(eval HGROOT := $(shell cd ../..; pwd)) | |
2 |
|
2 | |||
3 | DEBIAN_CODENAMES := \ |
|
3 | DEBIAN_CODENAMES := \ | |
4 | stretch \ |
|
4 | stretch \ | |
5 | buster \ |
|
5 | buster \ | |
6 | bullseye |
|
6 | bullseye | |
7 |
|
7 | |||
8 | UBUNTU_CODENAMES := \ |
|
8 | UBUNTU_CODENAMES := \ | |
9 | xenial \ |
|
9 | xenial \ | |
10 | bionic \ |
|
10 | bionic \ | |
11 | cosmic \ |
|
11 | cosmic \ | |
12 | focal |
|
12 | focal | |
13 |
|
13 | |||
14 | FEDORA_RELEASE := 31 |
|
14 | FEDORA_RELEASE := 31 | |
15 |
|
15 | |||
16 | RHEL_RELEASES := \ |
|
16 | RHEL_RELEASES := \ | |
17 | 7 \ |
|
17 | 7 \ | |
18 | 8 \ |
|
18 | 8 \ | |
19 | 9 |
|
19 | 9 | |
20 |
|
20 | |||
21 | # Build a Python for these RHEL (and derivatives) releases. |
|
21 | # Build a Python for these RHEL (and derivatives) releases. | |
22 | RHEL_WITH_PYTHON_RELEASES := |
|
22 | RHEL_WITH_PYTHON_RELEASES := | |
23 | RHEL_WITH_NONVERSIONED_PYTHON := |
|
23 | RHEL_WITH_NONVERSIONED_PYTHON := | |
24 | RHEL_WITH_36_DOCUTILS := 7 |
|
24 | RHEL_WITH_36_DOCUTILS := 7 | |
25 |
|
25 | |||
26 | help: |
|
26 | help: | |
27 | @echo 'Packaging Make Targets' |
|
27 | @echo 'Packaging Make Targets' | |
28 | @echo '' |
|
28 | @echo '' | |
29 | @echo 'docker-rhel{$(strip $(RHEL_RELEASES))}' |
|
29 | @echo 'docker-rhel{$(strip $(RHEL_RELEASES))}' | |
30 | @echo ' Build an RPM for a specific RHEL/derivative version using Docker.' |
|
30 | @echo ' Build an RPM for a specific RHEL/derivative version using Docker.' | |
31 | @echo '' |
|
31 | @echo '' | |
32 | @echo 'docker-debian-{$(strip $(DEBIAN_CODENAMES))}' |
|
32 | @echo 'docker-debian-{$(strip $(DEBIAN_CODENAMES))}' | |
33 | @echo ' Build Debian packages specific to a Debian distro using Docker.' |
|
33 | @echo ' Build Debian packages specific to a Debian distro using Docker.' | |
34 | @echo '' |
|
34 | @echo '' | |
35 | @echo 'docker-fedora' |
|
35 | @echo 'docker-fedora' | |
36 | @echo ' Build an RPM for a Fedora $(FEDORA_RELEASE) using Docker.' |
|
36 | @echo ' Build an RPM for a Fedora $(FEDORA_RELEASE) using Docker.' | |
37 | @echo '' |
|
37 | @echo '' | |
38 | @echo 'docker-ubuntu-{$(strip $(UBUNTU_CODENAMES))}' |
|
38 | @echo 'docker-ubuntu-{$(strip $(UBUNTU_CODENAMES))}' | |
39 | @echo ' Build Debian package specific to an Ubuntu distro using Docker.' |
|
39 | @echo ' Build Debian package specific to an Ubuntu distro using Docker.' | |
40 | @echo '' |
|
40 | @echo '' | |
41 | @echo 'docker-ubuntu-{$(strip $(UBUNTU_CODENAMES))}-ppa' |
|
41 | @echo 'docker-ubuntu-{$(strip $(UBUNTU_CODENAMES))}-ppa' | |
42 | @echo ' Build a source-only Debian package specific to an Ubuntu distro' |
|
42 | @echo ' Build a source-only Debian package specific to an Ubuntu distro' | |
43 | @echo ' using Docker.' |
|
43 | @echo ' using Docker.' | |
44 | @echo '' |
|
44 | @echo '' | |
45 | @echo 'linux-wheels' |
|
45 | @echo 'linux-wheels' | |
46 | @echo ' Build Linux manylinux wheels using Docker.' |
|
46 | @echo ' Build Linux manylinux wheels using Docker.' | |
47 | @echo '' |
|
47 | @echo '' | |
48 | @echo 'linux-wheels-{x86_64, i686}' |
|
48 | @echo 'linux-wheels-{x86_64, i686}{,-musl}' | |
49 | @echo ' Build Linux manylinux wheels for a specific architecture using Docker' |
|
49 | @echo ' Build Linux manylinux wheels for a specific architecture using Docker' | |
|
50 | @echo ' The -musl variants is suitable for system using "musl" instead of "glibc", | |||
|
51 | @echo ' for example: Alpine linux.' | |||
50 | @echo '' |
|
52 | @echo '' | |
51 | @echo 'deb' |
|
53 | @echo 'deb' | |
52 |
@echo |
|
54 | @echo ' Build a Debian package locally targeting the current system' | |
53 | @echo '' |
|
55 | @echo '' | |
54 | @echo 'ppa' |
|
56 | @echo 'ppa' | |
55 |
@echo |
|
57 | @echo ' Build a Debian source package locally targeting the current system' | |
56 | @echo '' |
|
58 | @echo '' | |
57 |
@echo |
|
59 | @echo 'rhel{$(strip $(RHEL_RELEASES))}' | |
58 |
@echo |
|
60 | @echo ' Build an RPM for a specific RHEL/derivative version locally' | |
59 | @echo '' |
|
61 | @echo '' | |
60 | @echo 'fedora' |
|
62 | @echo 'fedora' | |
61 |
@echo |
|
63 | @echo ' Build an RPM for Fedora $(FEDORA_RELEASE) locally' | |
62 |
|
64 | |||
63 | .PHONY: help |
|
65 | .PHONY: help | |
64 |
|
66 | |||
65 | .PHONY: deb |
|
67 | .PHONY: deb | |
66 | deb: |
|
68 | deb: | |
67 | ./builddeb |
|
69 | ./builddeb | |
68 |
|
70 | |||
69 | .PHONY: ppa |
|
71 | .PHONY: ppa | |
70 | ppa: |
|
72 | ppa: | |
71 | ./builddeb --source-only |
|
73 | ./builddeb --source-only | |
72 |
|
74 | |||
73 | # Debian targets. |
|
75 | # Debian targets. | |
74 | define debian_targets = |
|
76 | define debian_targets = | |
75 | .PHONY: docker-debian-$(1) |
|
77 | .PHONY: docker-debian-$(1) | |
76 | docker-debian-$(1): |
|
78 | docker-debian-$(1): | |
77 | ./dockerdeb debian $(1) |
|
79 | ./dockerdeb debian $(1) | |
78 |
|
80 | |||
79 | endef |
|
81 | endef | |
80 |
|
82 | |||
81 | $(foreach codename,$(DEBIAN_CODENAMES),$(eval $(call debian_targets,$(codename)))) |
|
83 | $(foreach codename,$(DEBIAN_CODENAMES),$(eval $(call debian_targets,$(codename)))) | |
82 |
|
84 | |||
83 | # Ubuntu targets. |
|
85 | # Ubuntu targets. | |
84 | define ubuntu_targets = |
|
86 | define ubuntu_targets = | |
85 | .PHONY: docker-ubuntu-$(1) |
|
87 | .PHONY: docker-ubuntu-$(1) | |
86 | docker-ubuntu-$(1): |
|
88 | docker-ubuntu-$(1): | |
87 | ./dockerdeb ubuntu $(1) |
|
89 | ./dockerdeb ubuntu $(1) | |
88 |
|
90 | |||
89 | .PHONY: docker-ubuntu-$(1)-ppa |
|
91 | .PHONY: docker-ubuntu-$(1)-ppa | |
90 | docker-ubuntu-$(1)-ppa: |
|
92 | docker-ubuntu-$(1)-ppa: | |
91 | ./dockerdeb ubuntu $(1) --source-only |
|
93 | ./dockerdeb ubuntu $(1) --source-only | |
92 |
|
94 | |||
93 | endef |
|
95 | endef | |
94 |
|
96 | |||
95 | $(foreach codename,$(UBUNTU_CODENAMES),$(eval $(call ubuntu_targets,$(codename)))) |
|
97 | $(foreach codename,$(UBUNTU_CODENAMES),$(eval $(call ubuntu_targets,$(codename)))) | |
96 |
|
98 | |||
97 | # Fedora targets. |
|
99 | # Fedora targets. | |
98 | .PHONY: fedora |
|
100 | .PHONY: fedora | |
99 | fedora: |
|
101 | fedora: | |
100 | mkdir -p $(HGROOT)/packages/fedora$(FEDORA_RELEASE) |
|
102 | mkdir -p $(HGROOT)/packages/fedora$(FEDORA_RELEASE) | |
101 | ./buildrpm |
|
103 | ./buildrpm | |
102 | cp $(HGROOT)/contrib/packaging/rpmbuild/RPMS/*/* $(HGROOT)/packages/fedora$(FEDORA_RELEASE) |
|
104 | cp $(HGROOT)/contrib/packaging/rpmbuild/RPMS/*/* $(HGROOT)/packages/fedora$(FEDORA_RELEASE) | |
103 | cp $(HGROOT)/contrib/packaging/rpmbuild/SRPMS/* $(HGROOT)/packages/fedora$(FEDORA_RELEASE) |
|
105 | cp $(HGROOT)/contrib/packaging/rpmbuild/SRPMS/* $(HGROOT)/packages/fedora$(FEDORA_RELEASE) | |
104 | rm -rf $(HGROOT)/rpmbuild |
|
106 | rm -rf $(HGROOT)/rpmbuild | |
105 |
|
107 | |||
106 | .PHONY: docker-fedora |
|
108 | .PHONY: docker-fedora | |
107 | docker-fedora: |
|
109 | docker-fedora: | |
108 | ./dockerrpm fedora$(FEDORA_RELEASE) |
|
110 | ./dockerrpm fedora$(FEDORA_RELEASE) | |
109 |
|
111 | |||
110 | # RHEL targets. |
|
112 | # RHEL targets. | |
111 | define rhel_targets |
|
113 | define rhel_targets | |
112 | .PHONY: rhel$(1) |
|
114 | .PHONY: rhel$(1) | |
113 | rhel$(1): |
|
115 | rhel$(1): | |
114 | mkdir -p $$(HGROOT)/packages/rhel$(1) |
|
116 | mkdir -p $$(HGROOT)/packages/rhel$(1) | |
115 | ./buildrpm $$(if $$(filter $(1),$$(RHEL_WITH_PYTHON_RELEASES)),--withpython,$$(if $$(filter $(1),$$(RHEL_WITH_NONVERSIONED_PYTHON)),--python python,))$$(if $$(filter $(1),$$(RHEL_WITH_36_DOCUTILS)), --docutilspackage python36-docutils,) |
|
117 | ./buildrpm $$(if $$(filter $(1),$$(RHEL_WITH_PYTHON_RELEASES)),--withpython,$$(if $$(filter $(1),$$(RHEL_WITH_NONVERSIONED_PYTHON)),--python python,))$$(if $$(filter $(1),$$(RHEL_WITH_36_DOCUTILS)), --docutilspackage python36-docutils,) | |
116 | cp $$(HGROOT)/contrib/packaging/rpmbuild/RPMS/*/* $$(HGROOT)/packages/rhel$(1) |
|
118 | cp $$(HGROOT)/contrib/packaging/rpmbuild/RPMS/*/* $$(HGROOT)/packages/rhel$(1) | |
117 | cp $$(HGROOT)/contrib/packaging/rpmbuild/SRPMS/* $$(HGROOT)/packages/rhel$(1) |
|
119 | cp $$(HGROOT)/contrib/packaging/rpmbuild/SRPMS/* $$(HGROOT)/packages/rhel$(1) | |
118 |
|
120 | |||
119 | .PHONY: docker-rhel$(1) |
|
121 | .PHONY: docker-rhel$(1) | |
120 | docker-rhel$(1): |
|
122 | docker-rhel$(1): | |
121 | ./dockerrpm rhel$(1) $$(if $$(filter $(1),$$(RHEL_WITH_PYTHON_RELEASES)),--withpython,$$(if $$(filter $(1),$$(RHEL_WITH_NONVERSIONED_PYTHON)),--python python,))$$(if $$(filter $(1),$$(RHEL_WITH_36_DOCUTILS)), --docutilspackage python36-docutils,) |
|
123 | ./dockerrpm rhel$(1) $$(if $$(filter $(1),$$(RHEL_WITH_PYTHON_RELEASES)),--withpython,$$(if $$(filter $(1),$$(RHEL_WITH_NONVERSIONED_PYTHON)),--python python,))$$(if $$(filter $(1),$$(RHEL_WITH_36_DOCUTILS)), --docutilspackage python36-docutils,) | |
122 |
|
124 | |||
123 | endef |
|
125 | endef | |
124 |
|
126 | |||
125 | $(foreach release,$(RHEL_RELEASES),$(eval $(call rhel_targets,$(release)))) |
|
127 | $(foreach release,$(RHEL_RELEASES),$(eval $(call rhel_targets,$(release)))) | |
126 |
|
128 | |||
127 | .PHONY: linux-wheels |
|
129 | .PHONY: linux-wheels | |
128 | linux-wheels: linux-wheels-x86_64 |
|
130 | linux-wheels: linux-wheels-x86_64 linux-wheels-x86_64-musl | |
129 |
|
||||
130 |
|
131 | |||
131 | img_reg="registry.heptapod.net/mercurial/ci-images" |
|
132 | img_reg="registry.heptapod.net/mercurial/ci-images" | |
132 | img_tag="v3.0" |
|
133 | img_tag="v3.0" | |
133 | whl_sh="/src/contrib/packaging/build-linux-wheels.sh" |
|
134 | whl_sh="/src/contrib/packaging/build-linux-wheels.sh" | |
134 |
|
135 | |||
135 | .PHONY: linux-wheels-x86_64 |
|
136 | .PHONY: linux-wheels-x86_64 | |
136 | linux-wheels-x86_64: |
|
137 | linux-wheels-x86_64: | |
137 | docker run --rm -ti -v `pwd`/../..:/src $(img_reg)/core-wheel-x86_64-c:$(img_tag) $(whl_sh) |
|
138 | docker run --rm -ti -v `pwd`/../..:/src $(img_reg)/core-wheel-x86_64-c:$(img_tag) $(whl_sh) | |
138 |
|
139 | |||
|
140 | .PHONY: linux-wheels-x86_64-musl | |||
|
141 | linux-wheels-x86_64-musl: | |||
|
142 | docker run --rm -ti -v `pwd`/../..:/src $(img_reg)/core-wheel-x86_64-musl-c:$(img_tag) $(whl_sh) | |||
|
143 | ||||
139 | .PHONY: linux-wheels-i686 |
|
144 | .PHONY: linux-wheels-i686 | |
140 | linux-wheels-i686: |
|
145 | linux-wheels-i686: | |
141 | docker run -e "HGTEST_JOBS=$(shell nproc)" --rm -ti -v `pwd`/../..:/src quay.io/pypa/manylinux1_i686 linux32 /src/contrib/packaging/build-linux-wheels.sh |
|
146 | docker run -e "HGTEST_JOBS=$(shell nproc)" --rm -ti -v `pwd`/../..:/src quay.io/pypa/manylinux1_i686 linux32 /src/contrib/packaging/build-linux-wheels.sh |
General Comments 0
You need to be logged in to leave comments.
Login now