Show More
@@ -0,0 +1,11 | |||
|
1 | FROM debian:jessie | |
|
2 | RUN apt-get update && apt-get install -y \ | |
|
3 | build-essential \ | |
|
4 | debhelper \ | |
|
5 | dh-python \ | |
|
6 | devscripts \ | |
|
7 | python \ | |
|
8 | python-all-dev \ | |
|
9 | python-docutils \ | |
|
10 | zip \ | |
|
11 | unzip |
@@ -0,0 +1,39 | |||
|
1 | #!/bin/bash -eu | |
|
2 | ||
|
3 | . $(dirname $0)/dockerlib.sh | |
|
4 | . $(dirname $0)/packagelib.sh | |
|
5 | ||
|
6 | BUILDDIR=$(dirname $0) | |
|
7 | export ROOTDIR=$(cd $BUILDDIR/..; pwd) | |
|
8 | ||
|
9 | checkdocker | |
|
10 | ||
|
11 | PLATFORM="debian-$1" | |
|
12 | shift # extra params are passed to build process | |
|
13 | ||
|
14 | initcontainer $PLATFORM | |
|
15 | ||
|
16 | DEBBUILDDIR=$ROOTDIR/packages/$PLATFORM | |
|
17 | contrib/builddeb --debbuilddir $DEBBUILDDIR/staged --prepare | |
|
18 | ||
|
19 | DSHARED=/mnt/shared/ | |
|
20 | if [ $(uname) = "Darwin" ] ; then | |
|
21 | $DOCKER run -u $DBUILDUSER --rm -v $DEBBUILDDIR:$DSHARED -v $PWD:/mnt/hg $CONTAINER \ | |
|
22 | sh -c "cd /mnt/hg && make clean && make local" | |
|
23 | fi | |
|
24 | $DOCKER run -u $DBUILDUSER --rm -v $DEBBUILDDIR:$DSHARED -v $PWD:/mnt/hg $CONTAINER \ | |
|
25 | sh -c "cd /mnt/hg && make PREFIX=$DSHARED/staged/usr install" | |
|
26 | $DOCKER run -u $DBUILDUSER --rm -v $DEBBUILDDIR:$DSHARED $CONTAINER \ | |
|
27 | dpkg-deb --build $DSHARED/staged | |
|
28 | if [ $(uname) = "Darwin" ] ; then | |
|
29 | $DOCKER run -u $DBUILDUSER --rm -v $DEBBUILDDIR:$DSHARED -v $PWD:/mnt/hg $CONTAINER \ | |
|
30 | sh -c "cd /mnt/hg && make clean" | |
|
31 | fi | |
|
32 | ||
|
33 | gethgversion | |
|
34 | ||
|
35 | rm -r $DEBBUILDDIR/staged | |
|
36 | mv $DEBBUILDDIR/staged.deb $DEBBUILDDIR/mercurial-$version-$release.deb | |
|
37 | ||
|
38 | echo | |
|
39 | echo "Build complete - results can be found in $DEBBUILDDIR" |
@@ -1,222 +1,226 | |||
|
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 | PREFIX=/usr/local |
|
8 | 8 | export PREFIX |
|
9 | 9 | PYTHON=python |
|
10 | 10 | $(eval HGROOT := $(shell pwd)) |
|
11 | 11 | HGPYTHONS ?= $(HGROOT)/build/pythons |
|
12 | 12 | PURE= |
|
13 | 13 | PYFILES:=$(shell find mercurial hgext doc -name '*.py') |
|
14 | 14 | DOCFILES=mercurial/help/*.txt |
|
15 | 15 | export LANGUAGE=C |
|
16 | 16 | export LC_ALL=C |
|
17 | 17 | TESTFLAGS ?= $(shell echo $$HGTESTFLAGS) |
|
18 | 18 | |
|
19 | 19 | # Set this to e.g. "mingw32" to use a non-default compiler. |
|
20 | 20 | COMPILER= |
|
21 | 21 | |
|
22 | 22 | help: |
|
23 | 23 | @echo 'Commonly used make targets:' |
|
24 | 24 | @echo ' all - build program and documentation' |
|
25 | 25 | @echo ' install - install program and man pages to $$PREFIX ($(PREFIX))' |
|
26 | 26 | @echo ' install-home - install with setup.py install --home=$$HOME ($(HOME))' |
|
27 | 27 | @echo ' local - build for inplace usage' |
|
28 | 28 | @echo ' tests - run all tests in the automatic test suite' |
|
29 | 29 | @echo ' test-foo - run only specified tests (e.g. test-merge1.t)' |
|
30 | 30 | @echo ' dist - run all tests and create a source tarball in dist/' |
|
31 | 31 | @echo ' clean - remove files created by other targets' |
|
32 | 32 | @echo ' (except installed files or dist source tarball)' |
|
33 | 33 | @echo ' update-pot - update i18n/hg.pot' |
|
34 | 34 | @echo |
|
35 | 35 | @echo 'Example for a system-wide installation under /usr/local:' |
|
36 | 36 | @echo ' make all && su -c "make install" && hg version' |
|
37 | 37 | @echo |
|
38 | 38 | @echo 'Example for a local installation (usable in this directory):' |
|
39 | 39 | @echo ' make local && ./hg version' |
|
40 | 40 | |
|
41 | 41 | all: build doc |
|
42 | 42 | |
|
43 | 43 | local: |
|
44 | 44 | $(PYTHON) setup.py $(PURE) \ |
|
45 | 45 | build_py -c -d . \ |
|
46 | 46 | build_ext $(COMPILER:%=-c %) -i \ |
|
47 | 47 | build_hgexe $(COMPILER:%=-c %) -i \ |
|
48 | 48 | build_mo |
|
49 | 49 | env HGRCPATH= $(PYTHON) hg version |
|
50 | 50 | |
|
51 | 51 | build: |
|
52 | 52 | $(PYTHON) setup.py $(PURE) build $(COMPILER:%=-c %) |
|
53 | 53 | |
|
54 | 54 | doc: |
|
55 | 55 | $(MAKE) -C doc |
|
56 | 56 | |
|
57 | 57 | clean: |
|
58 | 58 | -$(PYTHON) setup.py clean --all # ignore errors from this command |
|
59 | 59 | find contrib doc hgext i18n mercurial tests \ |
|
60 | 60 | \( -name '*.py[cdo]' -o -name '*.so' \) -exec rm -f '{}' ';' |
|
61 | 61 | rm -f $(addprefix mercurial/,$(notdir $(wildcard mercurial/pure/[a-z]*.py))) |
|
62 | 62 | rm -f MANIFEST MANIFEST.in hgext/__index__.py tests/*.err |
|
63 | 63 | if test -d .hg; then rm -f mercurial/__version__.py; fi |
|
64 | 64 | rm -rf build mercurial/locale |
|
65 | 65 | $(MAKE) -C doc clean |
|
66 | 66 | |
|
67 | 67 | install: install-bin install-doc |
|
68 | 68 | |
|
69 | 69 | install-bin: build |
|
70 | 70 | $(PYTHON) setup.py $(PURE) install --root="$(DESTDIR)/" --prefix="$(PREFIX)" --force |
|
71 | 71 | |
|
72 | 72 | install-doc: doc |
|
73 | 73 | cd doc && $(MAKE) $(MFLAGS) install |
|
74 | 74 | |
|
75 | 75 | install-home: install-home-bin install-home-doc |
|
76 | 76 | |
|
77 | 77 | install-home-bin: build |
|
78 | 78 | $(PYTHON) setup.py $(PURE) install --home="$(HOME)" --prefix="" --force |
|
79 | 79 | |
|
80 | 80 | install-home-doc: doc |
|
81 | 81 | cd doc && $(MAKE) $(MFLAGS) PREFIX="$(HOME)" install |
|
82 | 82 | |
|
83 | 83 | MANIFEST-doc: |
|
84 | 84 | $(MAKE) -C doc MANIFEST |
|
85 | 85 | |
|
86 | 86 | MANIFEST.in: MANIFEST-doc |
|
87 | 87 | hg manifest | sed -e 's/^/include /' > MANIFEST.in |
|
88 | 88 | echo include mercurial/__version__.py >> MANIFEST.in |
|
89 | 89 | sed -e 's/^/include /' < doc/MANIFEST >> MANIFEST.in |
|
90 | 90 | |
|
91 | 91 | dist: tests dist-notests |
|
92 | 92 | |
|
93 | 93 | dist-notests: doc MANIFEST.in |
|
94 | 94 | TAR_OPTIONS="--owner=root --group=root --mode=u+w,go-w,a+rX-s" $(PYTHON) setup.py -q sdist |
|
95 | 95 | |
|
96 | 96 | check: tests |
|
97 | 97 | |
|
98 | 98 | tests: |
|
99 | 99 | cd tests && $(PYTHON) run-tests.py $(TESTFLAGS) |
|
100 | 100 | |
|
101 | 101 | test-%: |
|
102 | 102 | cd tests && $(PYTHON) run-tests.py $(TESTFLAGS) $@ |
|
103 | 103 | |
|
104 | 104 | testpy-%: |
|
105 | 105 | @echo Looking for Python $* in $(HGPYTHONS) |
|
106 | 106 | [ -e $(HGPYTHONS)/$*/bin/python ] || ( \ |
|
107 | 107 | cd $$(mktemp --directory --tmpdir) && \ |
|
108 | 108 | $(MAKE) -f $(HGROOT)/contrib/Makefile.python PYTHONVER=$* PREFIX=$(HGPYTHONS)/$* python ) |
|
109 | 109 | cd tests && $(HGPYTHONS)/$*/bin/python run-tests.py $(TESTFLAGS) |
|
110 | 110 | |
|
111 | 111 | check-code: |
|
112 | 112 | hg manifest | xargs python contrib/check-code.py |
|
113 | 113 | |
|
114 | 114 | update-pot: i18n/hg.pot |
|
115 | 115 | |
|
116 | 116 | i18n/hg.pot: $(PYFILES) $(DOCFILES) i18n/posplit i18n/hggettext |
|
117 | 117 | $(PYTHON) i18n/hggettext mercurial/commands.py \ |
|
118 | 118 | hgext/*.py hgext/*/__init__.py \ |
|
119 | 119 | mercurial/fileset.py mercurial/revset.py \ |
|
120 | 120 | mercurial/templatefilters.py mercurial/templatekw.py \ |
|
121 | 121 | mercurial/templater.py \ |
|
122 | 122 | mercurial/filemerge.py \ |
|
123 | 123 | mercurial/hgweb/webcommands.py \ |
|
124 | 124 | $(DOCFILES) > i18n/hg.pot.tmp |
|
125 | 125 | # All strings marked for translation in Mercurial contain |
|
126 | 126 | # ASCII characters only. But some files contain string |
|
127 | 127 | # literals like this '\037\213'. xgettext thinks it has to |
|
128 | 128 | # parse them even though they are not marked for translation. |
|
129 | 129 | # Extracting with an explicit encoding of ISO-8859-1 will make |
|
130 | 130 | # xgettext "parse" and ignore them. |
|
131 | 131 | echo $(PYFILES) | xargs \ |
|
132 | 132 | xgettext --package-name "Mercurial" \ |
|
133 | 133 | --msgid-bugs-address "<mercurial-devel@selenic.com>" \ |
|
134 | 134 | --copyright-holder "Matt Mackall <mpm@selenic.com> and others" \ |
|
135 | 135 | --from-code ISO-8859-1 --join --sort-by-file --add-comments=i18n: \ |
|
136 | 136 | -d hg -p i18n -o hg.pot.tmp |
|
137 | 137 | $(PYTHON) i18n/posplit i18n/hg.pot.tmp |
|
138 | 138 | # The target file is not created before the last step. So it never is in |
|
139 | 139 | # an intermediate state. |
|
140 | 140 | mv -f i18n/hg.pot.tmp i18n/hg.pot |
|
141 | 141 | |
|
142 | 142 | %.po: i18n/hg.pot |
|
143 | 143 | # work on a temporary copy for never having a half completed target |
|
144 | 144 | cp $@ $@.tmp |
|
145 | 145 | msgmerge --no-location --update $@.tmp $^ |
|
146 | 146 | mv -f $@.tmp $@ |
|
147 | 147 | |
|
148 | 148 | # Packaging targets |
|
149 | 149 | |
|
150 | 150 | osx: |
|
151 | 151 | python -c 'import bdist_mpkg.script_bdist_mpkg' || \ |
|
152 | 152 | (echo "Missing bdist_mpkg (easy_install bdist_mpkg)"; false) |
|
153 | 153 | rm -rf dist/mercurial-*.mpkg |
|
154 | 154 | python -m bdist_mpkg.script_bdist_mpkg setup.py -- |
|
155 | 155 | python contrib/fixpax.py dist/mercurial-*.mpkg/Contents/Packages/*.pkg/Contents/Archive.pax.gz |
|
156 | 156 | mkdir -p packages/osx |
|
157 | 157 | N=`cd dist && echo mercurial-*.mpkg | sed 's,\.mpkg$$,,'` && hdiutil create -srcfolder dist/$$N.mpkg/ -scrub -volname "$$N" -ov packages/osx/$$N.dmg |
|
158 | 158 | rm -rf dist/mercurial-*.mpkg |
|
159 | 159 | |
|
160 | 160 | debian-jessie: |
|
161 | 161 | mkdir -p packages/debian-jessie |
|
162 | 162 | contrib/builddeb |
|
163 | 163 | mv debbuild/*.deb packages/debian-jessie |
|
164 | 164 | rm -rf debbuild |
|
165 | 165 | |
|
166 | docker-debian-jessie: | |
|
167 | mkdir -p packages/debian/jessie | |
|
168 | contrib/dockerdeb jessie | |
|
169 | ||
|
166 | 170 | fedora20: |
|
167 | 171 | mkdir -p packages/fedora20 |
|
168 | 172 | contrib/buildrpm |
|
169 | 173 | cp rpmbuild/RPMS/*/* packages/fedora20 |
|
170 | 174 | cp rpmbuild/SRPMS/* packages/fedora20 |
|
171 | 175 | rm -rf rpmbuild |
|
172 | 176 | |
|
173 | 177 | docker-fedora20: |
|
174 | 178 | mkdir -p packages/fedora20 |
|
175 | 179 | contrib/dockerrpm fedora20 |
|
176 | 180 | |
|
177 | 181 | fedora21: |
|
178 | 182 | mkdir -p packages/fedora21 |
|
179 | 183 | contrib/buildrpm |
|
180 | 184 | cp rpmbuild/RPMS/*/* packages/fedora21 |
|
181 | 185 | cp rpmbuild/SRPMS/* packages/fedora21 |
|
182 | 186 | rm -rf rpmbuild |
|
183 | 187 | |
|
184 | 188 | docker-fedora21: |
|
185 | 189 | mkdir -p packages/fedora21 |
|
186 | 190 | contrib/dockerrpm fedora21 |
|
187 | 191 | |
|
188 | 192 | centos5: |
|
189 | 193 | mkdir -p packages/centos5 |
|
190 | 194 | contrib/buildrpm --withpython |
|
191 | 195 | cp rpmbuild/RPMS/*/* packages/centos5 |
|
192 | 196 | cp rpmbuild/SRPMS/* packages/centos5 |
|
193 | 197 | |
|
194 | 198 | docker-centos5: |
|
195 | 199 | mkdir -p packages/centos5 |
|
196 | 200 | contrib/dockerrpm centos5 --withpython |
|
197 | 201 | |
|
198 | 202 | centos6: |
|
199 | 203 | mkdir -p packages/centos6 |
|
200 | 204 | contrib/buildrpm |
|
201 | 205 | cp rpmbuild/RPMS/*/* packages/centos6 |
|
202 | 206 | cp rpmbuild/SRPMS/* packages/centos6 |
|
203 | 207 | |
|
204 | 208 | docker-centos6: |
|
205 | 209 | mkdir -p packages/centos6 |
|
206 | 210 | contrib/dockerrpm centos6 |
|
207 | 211 | |
|
208 | 212 | centos7: |
|
209 | 213 | mkdir -p packages/centos7 |
|
210 | 214 | contrib/buildrpm |
|
211 | 215 | cp rpmbuild/RPMS/*/* packages/centos7 |
|
212 | 216 | cp rpmbuild/SRPMS/* packages/centos7 |
|
213 | 217 | |
|
214 | 218 | docker-centos7: |
|
215 | 219 | mkdir -p packages/centos7 |
|
216 | 220 | contrib/dockerrpm centos7 |
|
217 | 221 | |
|
218 | 222 | .PHONY: help all local build doc clean install install-bin install-doc \ |
|
219 | 223 | install-home install-home-bin install-home-doc \ |
|
220 | 224 | dist dist-notests check tests check-code update-pot \ |
|
221 | 225 | osx fedora20 docker-fedora20 fedora21 docker-fedora21 \ |
|
222 | 226 | centos5 docker-centos5 centos6 docker-centos6 centos7 docker-centos7 |
General Comments 0
You need to be logged in to leave comments.
Login now