##// END OF EJS Templates
packaging: add make target for linux wheels...
Boris Feld -
r32080:fcddcf44 stable
parent child Browse files
Show More
@@ -0,0 +1,34
1 #!/bin/bash
2 # This file is directly inspired by
3 # https://github.com/pypa/python-manylinux-demo/blob/master/travis/build-wheels.sh
4 set -e -x
5
6 PYTHON_TARGETS=$(ls -d /opt/python/cp2*/bin)
7
8 # Create an user for the tests
9 useradd hgbuilder
10
11 # Bypass uid/gid problems
12 cp -R /src /io && chown -R hgbuilder:hgbuilder /io
13
14 # Compile wheels for Python 2.X
15 for PYBIN in $PYTHON_TARGETS; do
16 "${PYBIN}/pip" wheel /io/ -w wheelhouse/
17 done
18
19 # Bundle external shared libraries into the wheels with
20 # auditwheel (https://github.com/pypa/auditwheel) repair.
21 # It also fix the ABI tag on the wheel making it pip installable.
22 for whl in wheelhouse/*.whl; do
23 auditwheel repair "$whl" -w /src/wheelhouse/
24 done
25
26 # Install packages and run the tests for all Python versions
27 cd /io/tests/
28
29 for PYBIN in $PYTHON_TARGETS; do
30 # Install mercurial wheel as root
31 "${PYBIN}/pip" install mercurial --no-index -f /src/wheelhouse
32 # But run tests as hgbuilder user (non-root)
33 su hgbuilder -c "\"${PYBIN}/python\" /io/tests/run-tests.py --with-hg=\"${PYBIN}/hg\" --blacklist=/io/contrib/linux-wheel-centos5-blacklist"
34 done
@@ -0,0 +1,3
1 test-convert-git.t
2 test-subrepo-git.t
3 test-patchbomb-tls.t
@@ -1,71 +1,74
1 1 syntax: glob
2 2
3 3 *.elc
4 4 *.tmp
5 5 *.orig
6 6 *.rej
7 7 *~
8 8 *.mergebackup
9 9 *.o
10 10 *.so
11 11 *.dll
12 12 *.exe
13 13 *.pyd
14 14 *.pyc
15 15 *.pyo
16 16 *$py.class
17 17 *.swp
18 18 *.prof
19 19 *.zip
20 20 \#*\#
21 21 .\#*
22 22 tests/.coverage*
23 23 tests/.testtimes*
24 24 tests/.hypothesis
25 25 tests/hypothesis-generated
26 26 tests/annotated
27 27 tests/*.err
28 28 tests/htmlcov
29 29 build
30 30 contrib/chg/chg
31 31 contrib/hgsh/hgsh
32 32 contrib/vagrant/.vagrant
33 33 contrib/docker/ubuntu-*
34 34 dist
35 35 packages
36 36 doc/common.txt
37 37 doc/*.[0-9]
38 38 doc/*.[0-9].txt
39 39 doc/*.[0-9].gendoc.txt
40 40 doc/*.[0-9].{x,ht}ml
41 41 MANIFEST
42 42 MANIFEST.in
43 43 patches
44 44 mercurial/__modulepolicy__.py
45 45 mercurial/__version__.py
46 46 mercurial/hgpythonlib.h
47 47 mercurial.egg-info
48 48 .DS_Store
49 49 tags
50 50 cscope.*
51 51 .idea/*
52 52 .asv/*
53 53 i18n/hg.pot
54 54 locale/*/LC_MESSAGES/hg.mo
55 55 hgext/__index__.py
56 56
57 57 # files installed with a local --pure build
58 58 mercurial/base85.py
59 59 mercurial/bdiff.py
60 60 mercurial/diffhelpers.py
61 61 mercurial/mpatch.py
62 62 mercurial/osutil.py
63 63 mercurial/parsers.py
64 64
65 # Generated wheels
66 wheelhouse/
67
65 68 syntax: regexp
66 69 ^\.pc/
67 70 ^\.(pydev)?project
68 71
69 72 # hackable windows distribution additions
70 73 ^hg-python
71 74 ^hg.py$
@@ -1,281 +1,290
1 1 # If you want to change PREFIX, do not just edit it below. The changed
2 2 # value wont get passed on to recursive make calls. You should instead
3 3 # override the variable on the command like:
4 4 #
5 5 # % make PREFIX=/opt/ install
6 6
7 7 export PREFIX=/usr/local
8 8 PYTHON=python
9 9 $(eval HGROOT := $(shell pwd))
10 10 HGPYTHONS ?= $(HGROOT)/build/pythons
11 11 PURE=
12 12 PYFILES:=$(shell find mercurial hgext doc -name '*.py')
13 13 DOCFILES=mercurial/help/*.txt
14 14 export LANGUAGE=C
15 15 export LC_ALL=C
16 16 TESTFLAGS ?= $(shell echo $$HGTESTFLAGS)
17 17
18 18 # Set this to e.g. "mingw32" to use a non-default compiler.
19 19 COMPILER=
20 20
21 21 COMPILERFLAG_tmp_ =
22 22 COMPILERFLAG_tmp_${COMPILER} ?= -c $(COMPILER)
23 23 COMPILERFLAG=${COMPILERFLAG_tmp_${COMPILER}}
24 24
25 25 help:
26 26 @echo 'Commonly used make targets:'
27 27 @echo ' all - build program and documentation'
28 28 @echo ' install - install program and man pages to $$PREFIX ($(PREFIX))'
29 29 @echo ' install-home - install with setup.py install --home=$$HOME ($(HOME))'
30 30 @echo ' local - build for inplace usage'
31 31 @echo ' tests - run all tests in the automatic test suite'
32 32 @echo ' test-foo - run only specified tests (e.g. test-merge1.t)'
33 33 @echo ' dist - run all tests and create a source tarball in dist/'
34 34 @echo ' clean - remove files created by other targets'
35 35 @echo ' (except installed files or dist source tarball)'
36 36 @echo ' update-pot - update i18n/hg.pot'
37 37 @echo
38 38 @echo 'Example for a system-wide installation under /usr/local:'
39 39 @echo ' make all && su -c "make install" && hg version'
40 40 @echo
41 41 @echo 'Example for a local installation (usable in this directory):'
42 42 @echo ' make local && ./hg version'
43 43
44 44 all: build doc
45 45
46 46 local:
47 47 $(PYTHON) setup.py $(PURE) \
48 48 build_py -c -d . \
49 49 build_ext $(COMPILERFLAG) -i \
50 50 build_hgexe $(COMPILERFLAG) -i \
51 51 build_mo
52 52 env HGRCPATH= $(PYTHON) hg version
53 53
54 54 build:
55 55 $(PYTHON) setup.py $(PURE) build $(COMPILERFLAG)
56 56
57 57 wheel:
58 58 FORCE_SETUPTOOLS=1 $(PYTHON) setup.py $(PURE) bdist_wheel $(COMPILERFLAG)
59 59
60 60 doc:
61 61 $(MAKE) -C doc
62 62
63 63 cleanbutpackages:
64 64 -$(PYTHON) setup.py clean --all # ignore errors from this command
65 65 find contrib doc hgext hgext3rd i18n mercurial tests \
66 66 \( -name '*.py[cdo]' -o -name '*.so' \) -exec rm -f '{}' ';'
67 67 rm -f $(addprefix mercurial/,$(notdir $(wildcard mercurial/pure/[a-z]*.py)))
68 68 rm -f MANIFEST MANIFEST.in hgext/__index__.py tests/*.err
69 69 rm -f mercurial/__modulepolicy__.py
70 70 if test -d .hg; then rm -f mercurial/__version__.py; fi
71 71 rm -rf build mercurial/locale
72 72 $(MAKE) -C doc clean
73 73 $(MAKE) -C contrib/chg distclean
74 74
75 75 clean: cleanbutpackages
76 76 rm -rf packages
77 77
78 78 install: install-bin install-doc
79 79
80 80 install-bin: build
81 81 $(PYTHON) setup.py $(PURE) install --root="$(DESTDIR)/" --prefix="$(PREFIX)" --force
82 82
83 83 install-doc: doc
84 84 cd doc && $(MAKE) $(MFLAGS) install
85 85
86 86 install-home: install-home-bin install-home-doc
87 87
88 88 install-home-bin: build
89 89 $(PYTHON) setup.py $(PURE) install --home="$(HOME)" --prefix="" --force
90 90
91 91 install-home-doc: doc
92 92 cd doc && $(MAKE) $(MFLAGS) PREFIX="$(HOME)" install
93 93
94 94 MANIFEST-doc:
95 95 $(MAKE) -C doc MANIFEST
96 96
97 97 MANIFEST.in: MANIFEST-doc
98 98 hg manifest | sed -e 's/^/include /' > MANIFEST.in
99 99 echo include mercurial/__version__.py >> MANIFEST.in
100 100 sed -e 's/^/include /' < doc/MANIFEST >> MANIFEST.in
101 101
102 102 dist: tests dist-notests
103 103
104 104 dist-notests: doc MANIFEST.in
105 105 TAR_OPTIONS="--owner=root --group=root --mode=u+w,go-w,a+rX-s" $(PYTHON) setup.py -q sdist
106 106
107 107 check: tests
108 108
109 109 tests:
110 110 cd tests && $(PYTHON) run-tests.py $(TESTFLAGS)
111 111
112 112 test-%:
113 113 cd tests && $(PYTHON) run-tests.py $(TESTFLAGS) $@
114 114
115 115 testpy-%:
116 116 @echo Looking for Python $* in $(HGPYTHONS)
117 117 [ -e $(HGPYTHONS)/$*/bin/python ] || ( \
118 118 cd $$(mktemp --directory --tmpdir) && \
119 119 $(MAKE) -f $(HGROOT)/contrib/Makefile.python PYTHONVER=$* PREFIX=$(HGPYTHONS)/$* python )
120 120 cd tests && $(HGPYTHONS)/$*/bin/python run-tests.py $(TESTFLAGS)
121 121
122 122 check-code:
123 123 hg manifest | xargs python contrib/check-code.py
124 124
125 125 update-pot: i18n/hg.pot
126 126
127 127 i18n/hg.pot: $(PYFILES) $(DOCFILES) i18n/posplit i18n/hggettext
128 128 $(PYTHON) i18n/hggettext mercurial/commands.py \
129 129 hgext/*.py hgext/*/__init__.py \
130 130 mercurial/fileset.py mercurial/revset.py \
131 131 mercurial/templatefilters.py mercurial/templatekw.py \
132 132 mercurial/templater.py \
133 133 mercurial/filemerge.py \
134 134 mercurial/hgweb/webcommands.py \
135 135 $(DOCFILES) > i18n/hg.pot.tmp
136 136 # All strings marked for translation in Mercurial contain
137 137 # ASCII characters only. But some files contain string
138 138 # literals like this '\037\213'. xgettext thinks it has to
139 139 # parse them even though they are not marked for translation.
140 140 # Extracting with an explicit encoding of ISO-8859-1 will make
141 141 # xgettext "parse" and ignore them.
142 142 echo $(PYFILES) | xargs \
143 143 xgettext --package-name "Mercurial" \
144 144 --msgid-bugs-address "<mercurial-devel@mercurial-scm.org>" \
145 145 --copyright-holder "Matt Mackall <mpm@selenic.com> and others" \
146 146 --from-code ISO-8859-1 --join --sort-by-file --add-comments=i18n: \
147 147 -d hg -p i18n -o hg.pot.tmp
148 148 $(PYTHON) i18n/posplit i18n/hg.pot.tmp
149 149 # The target file is not created before the last step. So it never is in
150 150 # an intermediate state.
151 151 mv -f i18n/hg.pot.tmp i18n/hg.pot
152 152
153 153 %.po: i18n/hg.pot
154 154 # work on a temporary copy for never having a half completed target
155 155 cp $@ $@.tmp
156 156 msgmerge --no-location --update $@.tmp $^
157 157 mv -f $@.tmp $@
158 158
159 159 # Packaging targets
160 160
161 161 osx:
162 162 rm -rf build/mercurial
163 163 /usr/bin/python2.7 setup.py install --optimize=1 \
164 164 --root=build/mercurial/ --prefix=/usr/local/ \
165 165 --install-lib=/Library/Python/2.7/site-packages/
166 166 make -C doc all install DESTDIR="$(PWD)/build/mercurial/"
167 167 # install zsh completions - this location appears to be
168 168 # searched by default as of macOS Sierra.
169 169 install -d build/mercurial/usr/local/share/zsh/site-functions/
170 170 install -m 0644 contrib/zsh_completion build/mercurial/usr/local/share/zsh/site-functions/hg
171 171 # install bash completions - there doesn't appear to be a
172 172 # place that's searched by default for bash, so we'll follow
173 173 # the lead of Apple's git install and just put it in a
174 174 # location of our own.
175 175 install -d build/mercurial/usr/local/hg/contrib/
176 176 install -m 0644 contrib/bash_completion build/mercurial/usr/local/hg/contrib/hg-completion.bash
177 177 mkdir -p $${OUTPUTDIR:-dist}
178 178 HGVER=$$((cat build/mercurial/Library/Python/2.7/site-packages/mercurial/__version__.py; echo 'print(version)') | python) && \
179 179 OSXVER=$$(sw_vers -productVersion | cut -d. -f1,2) && \
180 180 pkgbuild --root build/mercurial/ \
181 181 --identifier org.mercurial-scm.mercurial \
182 182 --version "$${HGVER}" \
183 183 build/mercurial.pkg && \
184 184 productbuild --distribution contrib/macosx/distribution.xml \
185 185 --package-path build/ \
186 186 --version "$${HGVER}" \
187 187 --resources contrib/macosx/ \
188 188 "$${OUTPUTDIR:-dist/}"/Mercurial-"$${HGVER}"-macosx"$${OSXVER}".pkg
189 189
190 190 deb:
191 191 contrib/builddeb
192 192
193 193 ppa:
194 194 contrib/builddeb --source-only
195 195
196 196 docker-debian-jessie:
197 197 mkdir -p packages/debian-jessie
198 198 contrib/dockerdeb debian jessie
199 199
200 200 contrib/docker/ubuntu-%: contrib/docker/ubuntu.template
201 201 sed "s/__CODENAME__/$*/" $< > $@
202 202
203 203 docker-ubuntu-trusty: contrib/docker/ubuntu-trusty
204 204 contrib/dockerdeb ubuntu trusty
205 205
206 206 docker-ubuntu-trusty-ppa: contrib/docker/ubuntu-trusty
207 207 contrib/dockerdeb ubuntu trusty --source-only
208 208
209 209 docker-ubuntu-xenial: contrib/docker/ubuntu-xenial
210 210 contrib/dockerdeb ubuntu xenial
211 211
212 212 docker-ubuntu-xenial-ppa: contrib/docker/ubuntu-xenial
213 213 contrib/dockerdeb ubuntu xenial --source-only
214 214
215 215 docker-ubuntu-yakkety: contrib/docker/ubuntu-yakkety
216 216 contrib/dockerdeb ubuntu yakkety
217 217
218 218 docker-ubuntu-yakkety-ppa: contrib/docker/ubuntu-yakkety
219 219 contrib/dockerdeb ubuntu yakkety --source-only
220 220
221 221 fedora20:
222 222 mkdir -p packages/fedora20
223 223 contrib/buildrpm
224 224 cp rpmbuild/RPMS/*/* packages/fedora20
225 225 cp rpmbuild/SRPMS/* packages/fedora20
226 226 rm -rf rpmbuild
227 227
228 228 docker-fedora20:
229 229 mkdir -p packages/fedora20
230 230 contrib/dockerrpm fedora20
231 231
232 232 fedora21:
233 233 mkdir -p packages/fedora21
234 234 contrib/buildrpm
235 235 cp rpmbuild/RPMS/*/* packages/fedora21
236 236 cp rpmbuild/SRPMS/* packages/fedora21
237 237 rm -rf rpmbuild
238 238
239 239 docker-fedora21:
240 240 mkdir -p packages/fedora21
241 241 contrib/dockerrpm fedora21
242 242
243 243 centos5:
244 244 mkdir -p packages/centos5
245 245 contrib/buildrpm --withpython
246 246 cp rpmbuild/RPMS/*/* packages/centos5
247 247 cp rpmbuild/SRPMS/* packages/centos5
248 248
249 249 docker-centos5:
250 250 mkdir -p packages/centos5
251 251 contrib/dockerrpm centos5 --withpython
252 252
253 253 centos6:
254 254 mkdir -p packages/centos6
255 255 contrib/buildrpm
256 256 cp rpmbuild/RPMS/*/* packages/centos6
257 257 cp rpmbuild/SRPMS/* packages/centos6
258 258
259 259 docker-centos6:
260 260 mkdir -p packages/centos6
261 261 contrib/dockerrpm centos6
262 262
263 263 centos7:
264 264 mkdir -p packages/centos7
265 265 contrib/buildrpm
266 266 cp rpmbuild/RPMS/*/* packages/centos7
267 267 cp rpmbuild/SRPMS/* packages/centos7
268 268
269 269 docker-centos7:
270 270 mkdir -p packages/centos7
271 271 contrib/dockerrpm centos7
272 272
273 linux-wheels: linux-wheels-x86_64 linux-wheels-i686
274
275 linux-wheels-x86_64:
276 docker run -e "HGTEST_JOBS=$(shell nproc)" --rm -ti -v `pwd`:/src quay.io/pypa/manylinux1_x86_64 /src/contrib/build-linux-wheels.sh
277
278 linux-wheels-i686:
279 docker run -e "HGTEST_JOBS=$(shell nproc)" --rm -ti -v `pwd`:/src quay.io/pypa/manylinux1_i686 linux32 /src/contrib/build-linux-wheels.sh
280
273 281 .PHONY: help all local build doc cleanbutpackages clean install install-bin \
274 282 install-doc install-home install-home-bin install-home-doc \
275 283 dist dist-notests check tests check-code update-pot \
276 284 osx deb ppa docker-debian-jessie \
277 285 docker-ubuntu-trusty docker-ubuntu-trusty-ppa \
278 286 docker-ubuntu-xenial docker-ubuntu-xenial-ppa \
279 287 docker-ubuntu-yakkety docker-ubuntu-yakkety-ppa \
280 288 fedora20 docker-fedora20 fedora21 docker-fedora21 \
281 centos5 docker-centos5 centos6 docker-centos6 centos7 docker-centos7
289 centos5 docker-centos5 centos6 docker-centos6 centos7 docker-centos7 \
290 linux-wheels
General Comments 0
You need to be logged in to leave comments. Login now