##// END OF EJS Templates
docker: use stable tags for fedora and centos...
Mads Kiilerich -
r22442:77da9c03 default
parent child Browse files
Show More
@@ -1,170 +1,170 b''
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 PURE=
11 11 PYFILES:=$(shell find mercurial hgext doc -name '*.py')
12 12 DOCFILES=mercurial/help/*.txt
13 13 export LANGUAGE=C
14 14 export LC_ALL=C
15 15
16 16 # Set this to e.g. "mingw32" to use a non-default compiler.
17 17 COMPILER=
18 18
19 19 help:
20 20 @echo 'Commonly used make targets:'
21 21 @echo ' all - build program and documentation'
22 22 @echo ' install - install program and man pages to $$PREFIX ($(PREFIX))'
23 23 @echo ' install-home - install with setup.py install --home=$$HOME ($(HOME))'
24 24 @echo ' local - build for inplace usage'
25 25 @echo ' tests - run all tests in the automatic test suite'
26 26 @echo ' test-foo - run only specified tests (e.g. test-merge1.t)'
27 27 @echo ' dist - run all tests and create a source tarball in dist/'
28 28 @echo ' clean - remove files created by other targets'
29 29 @echo ' (except installed files or dist source tarball)'
30 30 @echo ' update-pot - update i18n/hg.pot'
31 31 @echo
32 32 @echo 'Example for a system-wide installation under /usr/local:'
33 33 @echo ' make all && su -c "make install" && hg version'
34 34 @echo
35 35 @echo 'Example for a local installation (usable in this directory):'
36 36 @echo ' make local && ./hg version'
37 37
38 38 all: build doc
39 39
40 40 local:
41 41 $(PYTHON) setup.py $(PURE) \
42 42 build_py -c -d . \
43 43 build_ext $(COMPILER:%=-c %) -i \
44 44 build_hgexe $(COMPILER:%=-c %) -i \
45 45 build_mo
46 46 env HGRCPATH= $(PYTHON) hg version
47 47
48 48 build:
49 49 $(PYTHON) setup.py $(PURE) build $(COMPILER:%=-c %)
50 50
51 51 doc:
52 52 $(MAKE) -C doc
53 53
54 54 clean:
55 55 -$(PYTHON) setup.py clean --all # ignore errors from this command
56 56 find contrib doc hgext i18n mercurial tests \
57 57 \( -name '*.py[cdo]' -o -name '*.so' \) -exec rm -f '{}' ';'
58 58 rm -f $(addprefix mercurial/,$(notdir $(wildcard mercurial/pure/[a-z]*.py)))
59 59 rm -f MANIFEST MANIFEST.in hgext/__index__.py tests/*.err
60 60 if test -d .hg; then rm -f mercurial/__version__.py; fi
61 61 rm -rf build mercurial/locale
62 62 $(MAKE) -C doc clean
63 63
64 64 install: install-bin install-doc
65 65
66 66 install-bin: build
67 67 $(PYTHON) setup.py $(PURE) install --root="$(DESTDIR)/" --prefix="$(PREFIX)" --force
68 68
69 69 install-doc: doc
70 70 cd doc && $(MAKE) $(MFLAGS) install
71 71
72 72 install-home: install-home-bin install-home-doc
73 73
74 74 install-home-bin: build
75 75 $(PYTHON) setup.py $(PURE) install --home="$(HOME)" --prefix="" --force
76 76
77 77 install-home-doc: doc
78 78 cd doc && $(MAKE) $(MFLAGS) PREFIX="$(HOME)" install
79 79
80 80 MANIFEST-doc:
81 81 $(MAKE) -C doc MANIFEST
82 82
83 83 MANIFEST.in: MANIFEST-doc
84 84 hg manifest | sed -e 's/^/include /' > MANIFEST.in
85 85 echo include mercurial/__version__.py >> MANIFEST.in
86 86 sed -e 's/^/include /' < doc/MANIFEST >> MANIFEST.in
87 87
88 88 dist: tests dist-notests
89 89
90 90 dist-notests: doc MANIFEST.in
91 91 TAR_OPTIONS="--owner=root --group=root --mode=u+w,go-w,a+rX-s" $(PYTHON) setup.py -q sdist
92 92
93 93 check: tests
94 94
95 95 tests:
96 96 cd tests && $(PYTHON) run-tests.py $(TESTFLAGS)
97 97
98 98 test-%:
99 99 cd tests && $(PYTHON) run-tests.py $(TESTFLAGS) $@
100 100
101 101 check-code:
102 102 hg manifest | xargs python contrib/check-code.py
103 103
104 104 update-pot: i18n/hg.pot
105 105
106 106 i18n/hg.pot: $(PYFILES) $(DOCFILES) i18n/posplit i18n/hggettext
107 107 $(PYTHON) i18n/hggettext mercurial/commands.py \
108 108 hgext/*.py hgext/*/__init__.py \
109 109 mercurial/fileset.py mercurial/revset.py \
110 110 mercurial/templatefilters.py mercurial/templatekw.py \
111 111 mercurial/filemerge.py \
112 112 $(DOCFILES) > i18n/hg.pot.tmp
113 113 # All strings marked for translation in Mercurial contain
114 114 # ASCII characters only. But some files contain string
115 115 # literals like this '\037\213'. xgettext thinks it has to
116 116 # parse them even though they are not marked for translation.
117 117 # Extracting with an explicit encoding of ISO-8859-1 will make
118 118 # xgettext "parse" and ignore them.
119 119 echo $(PYFILES) | xargs \
120 120 xgettext --package-name "Mercurial" \
121 121 --msgid-bugs-address "<mercurial-devel@selenic.com>" \
122 122 --copyright-holder "Matt Mackall <mpm@selenic.com> and others" \
123 123 --from-code ISO-8859-1 --join --sort-by-file --add-comments=i18n: \
124 124 -d hg -p i18n -o hg.pot.tmp
125 125 $(PYTHON) i18n/posplit i18n/hg.pot.tmp
126 126 # The target file is not created before the last step. So it never is in
127 127 # an intermediate state.
128 128 mv -f i18n/hg.pot.tmp i18n/hg.pot
129 129
130 130 %.po: i18n/hg.pot
131 131 # work on a temporary copy for never having a half completed target
132 132 cp $@ $@.tmp
133 133 msgmerge --no-location --update $@.tmp $^
134 134 mv -f $@.tmp $@
135 135
136 136 # Packaging targets
137 137
138 138 osx:
139 139 @which bdist_mpkg >/dev/null || \
140 140 (echo "Missing bdist_mpkg (easy_install bdist_mpkg)"; false)
141 141 rm -rf dist/mercurial-*.mpkg
142 142 bdist_mpkg setup.py
143 143 mkdir -p packages/osx
144 144 N=`cd dist && echo mercurial-*.mpkg | sed 's,\.mpkg$$,,'` && hdiutil create -srcfolder dist/$$N.mpkg/ -scrub -volname "$$N" -ov packages/osx/$$N.dmg
145 145 rm -rf dist/mercurial-*.mpkg
146 146
147 fedora:
148 mkdir -p packages/fedora
147 fedora20:
148 mkdir -p packages/fedora20
149 149 contrib/buildrpm
150 cp rpmbuild/RPMS/*/* packages/fedora
151 cp rpmbuild/SRPMS/* packages/fedora
150 cp rpmbuild/RPMS/*/* packages/fedora20
151 cp rpmbuild/SRPMS/* packages/fedora20
152 152 rm -rf rpmbuild
153 153
154 docker-fedora:
155 mkdir -p packages/fedora
156 contrib/dockerrpm fedora
154 docker-fedora20:
155 mkdir -p packages/fedora20
156 contrib/dockerrpm fedora20
157 157
158 158 centos6:
159 159 mkdir -p packages/centos6
160 160 contrib/buildrpm
161 161 cp rpmbuild/RPMS/*/* packages/centos6
162 162 cp rpmbuild/SRPMS/* packages/centos6
163 163
164 164 docker-centos6:
165 165 mkdir -p packages/centos6
166 166 contrib/dockerrpm centos6
167 167
168 168 .PHONY: help all local build doc clean install install-bin install-doc \
169 169 install-home install-home-bin install-home-doc dist dist-notests tests \
170 update-pot fedora docker-fedora
170 update-pot fedora20 docker-fedora20
@@ -1,7 +1,7 b''
1 FROM centos
1 FROM centos:centos6
2 2 RUN yum install -y gcc
3 3 RUN yum install -y python-devel python-docutils
4 4 RUN yum install -y make
5 5 RUN yum install -y rpm-build
6 6 RUN yum install -y gettext
7 7 RUN yum install -y tar
@@ -1,6 +1,6 b''
1 FROM fedora
1 FROM fedora:20
2 2 RUN yum install -y gcc
3 3 RUN yum install -y python-devel python-docutils
4 4 RUN yum install -y make
5 5 RUN yum install -y rpm-build
6 6 RUN yum install -y gettext
General Comments 0
You need to be logged in to leave comments. Login now