##// END OF EJS Templates
osx: install completion scripts using install(1) to avoid umask badness...
Augie Fackler -
r31609:8e516f71 default
parent child Browse files
Show More
@@ -1,280 +1,280 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 PYTHON=python
8 PYTHON=python
9 $(eval HGROOT := $(shell pwd))
9 $(eval HGROOT := $(shell pwd))
10 HGPYTHONS ?= $(HGROOT)/build/pythons
10 HGPYTHONS ?= $(HGROOT)/build/pythons
11 PURE=
11 PURE=
12 PYFILES:=$(shell find mercurial hgext doc -name '*.py')
12 PYFILES:=$(shell find mercurial hgext doc -name '*.py')
13 DOCFILES=mercurial/help/*.txt
13 DOCFILES=mercurial/help/*.txt
14 export LANGUAGE=C
14 export LANGUAGE=C
15 export LC_ALL=C
15 export LC_ALL=C
16 TESTFLAGS ?= $(shell echo $$HGTESTFLAGS)
16 TESTFLAGS ?= $(shell echo $$HGTESTFLAGS)
17
17
18 # Set this to e.g. "mingw32" to use a non-default compiler.
18 # Set this to e.g. "mingw32" to use a non-default compiler.
19 COMPILER=
19 COMPILER=
20
20
21 COMPILERFLAG_tmp_ =
21 COMPILERFLAG_tmp_ =
22 COMPILERFLAG_tmp_${COMPILER} ?= -c $(COMPILER)
22 COMPILERFLAG_tmp_${COMPILER} ?= -c $(COMPILER)
23 COMPILERFLAG=${COMPILERFLAG_tmp_${COMPILER}}
23 COMPILERFLAG=${COMPILERFLAG_tmp_${COMPILER}}
24
24
25 help:
25 help:
26 @echo 'Commonly used make targets:'
26 @echo 'Commonly used make targets:'
27 @echo ' all - build program and documentation'
27 @echo ' all - build program and documentation'
28 @echo ' install - install program and man pages to $$PREFIX ($(PREFIX))'
28 @echo ' install - install program and man pages to $$PREFIX ($(PREFIX))'
29 @echo ' install-home - install with setup.py install --home=$$HOME ($(HOME))'
29 @echo ' install-home - install with setup.py install --home=$$HOME ($(HOME))'
30 @echo ' local - build for inplace usage'
30 @echo ' local - build for inplace usage'
31 @echo ' tests - run all tests in the automatic test suite'
31 @echo ' tests - run all tests in the automatic test suite'
32 @echo ' test-foo - run only specified tests (e.g. test-merge1.t)'
32 @echo ' test-foo - run only specified tests (e.g. test-merge1.t)'
33 @echo ' dist - run all tests and create a source tarball in dist/'
33 @echo ' dist - run all tests and create a source tarball in dist/'
34 @echo ' clean - remove files created by other targets'
34 @echo ' clean - remove files created by other targets'
35 @echo ' (except installed files or dist source tarball)'
35 @echo ' (except installed files or dist source tarball)'
36 @echo ' update-pot - update i18n/hg.pot'
36 @echo ' update-pot - update i18n/hg.pot'
37 @echo
37 @echo
38 @echo 'Example for a system-wide installation under /usr/local:'
38 @echo 'Example for a system-wide installation under /usr/local:'
39 @echo ' make all && su -c "make install" && hg version'
39 @echo ' make all && su -c "make install" && hg version'
40 @echo
40 @echo
41 @echo 'Example for a local installation (usable in this directory):'
41 @echo 'Example for a local installation (usable in this directory):'
42 @echo ' make local && ./hg version'
42 @echo ' make local && ./hg version'
43
43
44 all: build doc
44 all: build doc
45
45
46 local:
46 local:
47 $(PYTHON) setup.py $(PURE) \
47 $(PYTHON) setup.py $(PURE) \
48 build_py -c -d . \
48 build_py -c -d . \
49 build_ext $(COMPILERFLAG) -i \
49 build_ext $(COMPILERFLAG) -i \
50 build_hgexe $(COMPILERFLAG) -i \
50 build_hgexe $(COMPILERFLAG) -i \
51 build_mo
51 build_mo
52 env HGRCPATH= $(PYTHON) hg version
52 env HGRCPATH= $(PYTHON) hg version
53
53
54 build:
54 build:
55 $(PYTHON) setup.py $(PURE) build $(COMPILERFLAG)
55 $(PYTHON) setup.py $(PURE) build $(COMPILERFLAG)
56
56
57 wheel:
57 wheel:
58 FORCE_SETUPTOOLS=1 $(PYTHON) setup.py $(PURE) bdist_wheel $(COMPILERFLAG)
58 FORCE_SETUPTOOLS=1 $(PYTHON) setup.py $(PURE) bdist_wheel $(COMPILERFLAG)
59
59
60 doc:
60 doc:
61 $(MAKE) -C doc
61 $(MAKE) -C doc
62
62
63 cleanbutpackages:
63 cleanbutpackages:
64 -$(PYTHON) setup.py clean --all # ignore errors from this command
64 -$(PYTHON) setup.py clean --all # ignore errors from this command
65 find contrib doc hgext hgext3rd i18n mercurial tests \
65 find contrib doc hgext hgext3rd i18n mercurial tests \
66 \( -name '*.py[cdo]' -o -name '*.so' \) -exec rm -f '{}' ';'
66 \( -name '*.py[cdo]' -o -name '*.so' \) -exec rm -f '{}' ';'
67 rm -f $(addprefix mercurial/,$(notdir $(wildcard mercurial/pure/[a-z]*.py)))
67 rm -f $(addprefix mercurial/,$(notdir $(wildcard mercurial/pure/[a-z]*.py)))
68 rm -f MANIFEST MANIFEST.in hgext/__index__.py tests/*.err
68 rm -f MANIFEST MANIFEST.in hgext/__index__.py tests/*.err
69 rm -f mercurial/__modulepolicy__.py
69 rm -f mercurial/__modulepolicy__.py
70 if test -d .hg; then rm -f mercurial/__version__.py; fi
70 if test -d .hg; then rm -f mercurial/__version__.py; fi
71 rm -rf build mercurial/locale
71 rm -rf build mercurial/locale
72 $(MAKE) -C doc clean
72 $(MAKE) -C doc clean
73 $(MAKE) -C contrib/chg distclean
73 $(MAKE) -C contrib/chg distclean
74
74
75 clean: cleanbutpackages
75 clean: cleanbutpackages
76 rm -rf packages
76 rm -rf packages
77
77
78 install: install-bin install-doc
78 install: install-bin install-doc
79
79
80 install-bin: build
80 install-bin: build
81 $(PYTHON) setup.py $(PURE) install --root="$(DESTDIR)/" --prefix="$(PREFIX)" --force
81 $(PYTHON) setup.py $(PURE) install --root="$(DESTDIR)/" --prefix="$(PREFIX)" --force
82
82
83 install-doc: doc
83 install-doc: doc
84 cd doc && $(MAKE) $(MFLAGS) install
84 cd doc && $(MAKE) $(MFLAGS) install
85
85
86 install-home: install-home-bin install-home-doc
86 install-home: install-home-bin install-home-doc
87
87
88 install-home-bin: build
88 install-home-bin: build
89 $(PYTHON) setup.py $(PURE) install --home="$(HOME)" --prefix="" --force
89 $(PYTHON) setup.py $(PURE) install --home="$(HOME)" --prefix="" --force
90
90
91 install-home-doc: doc
91 install-home-doc: doc
92 cd doc && $(MAKE) $(MFLAGS) PREFIX="$(HOME)" install
92 cd doc && $(MAKE) $(MFLAGS) PREFIX="$(HOME)" install
93
93
94 MANIFEST-doc:
94 MANIFEST-doc:
95 $(MAKE) -C doc MANIFEST
95 $(MAKE) -C doc MANIFEST
96
96
97 MANIFEST.in: MANIFEST-doc
97 MANIFEST.in: MANIFEST-doc
98 hg manifest | sed -e 's/^/include /' > MANIFEST.in
98 hg manifest | sed -e 's/^/include /' > MANIFEST.in
99 echo include mercurial/__version__.py >> MANIFEST.in
99 echo include mercurial/__version__.py >> MANIFEST.in
100 sed -e 's/^/include /' < doc/MANIFEST >> MANIFEST.in
100 sed -e 's/^/include /' < doc/MANIFEST >> MANIFEST.in
101
101
102 dist: tests dist-notests
102 dist: tests dist-notests
103
103
104 dist-notests: doc MANIFEST.in
104 dist-notests: doc MANIFEST.in
105 TAR_OPTIONS="--owner=root --group=root --mode=u+w,go-w,a+rX-s" $(PYTHON) setup.py -q sdist
105 TAR_OPTIONS="--owner=root --group=root --mode=u+w,go-w,a+rX-s" $(PYTHON) setup.py -q sdist
106
106
107 check: tests
107 check: tests
108
108
109 tests:
109 tests:
110 cd tests && $(PYTHON) run-tests.py $(TESTFLAGS)
110 cd tests && $(PYTHON) run-tests.py $(TESTFLAGS)
111
111
112 test-%:
112 test-%:
113 cd tests && $(PYTHON) run-tests.py $(TESTFLAGS) $@
113 cd tests && $(PYTHON) run-tests.py $(TESTFLAGS) $@
114
114
115 testpy-%:
115 testpy-%:
116 @echo Looking for Python $* in $(HGPYTHONS)
116 @echo Looking for Python $* in $(HGPYTHONS)
117 [ -e $(HGPYTHONS)/$*/bin/python ] || ( \
117 [ -e $(HGPYTHONS)/$*/bin/python ] || ( \
118 cd $$(mktemp --directory --tmpdir) && \
118 cd $$(mktemp --directory --tmpdir) && \
119 $(MAKE) -f $(HGROOT)/contrib/Makefile.python PYTHONVER=$* PREFIX=$(HGPYTHONS)/$* python )
119 $(MAKE) -f $(HGROOT)/contrib/Makefile.python PYTHONVER=$* PREFIX=$(HGPYTHONS)/$* python )
120 cd tests && $(HGPYTHONS)/$*/bin/python run-tests.py $(TESTFLAGS)
120 cd tests && $(HGPYTHONS)/$*/bin/python run-tests.py $(TESTFLAGS)
121
121
122 check-code:
122 check-code:
123 hg manifest | xargs python contrib/check-code.py
123 hg manifest | xargs python contrib/check-code.py
124
124
125 update-pot: i18n/hg.pot
125 update-pot: i18n/hg.pot
126
126
127 i18n/hg.pot: $(PYFILES) $(DOCFILES) i18n/posplit i18n/hggettext
127 i18n/hg.pot: $(PYFILES) $(DOCFILES) i18n/posplit i18n/hggettext
128 $(PYTHON) i18n/hggettext mercurial/commands.py \
128 $(PYTHON) i18n/hggettext mercurial/commands.py \
129 hgext/*.py hgext/*/__init__.py \
129 hgext/*.py hgext/*/__init__.py \
130 mercurial/fileset.py mercurial/revset.py \
130 mercurial/fileset.py mercurial/revset.py \
131 mercurial/templatefilters.py mercurial/templatekw.py \
131 mercurial/templatefilters.py mercurial/templatekw.py \
132 mercurial/templater.py \
132 mercurial/templater.py \
133 mercurial/filemerge.py \
133 mercurial/filemerge.py \
134 mercurial/hgweb/webcommands.py \
134 mercurial/hgweb/webcommands.py \
135 $(DOCFILES) > i18n/hg.pot.tmp
135 $(DOCFILES) > i18n/hg.pot.tmp
136 # All strings marked for translation in Mercurial contain
136 # All strings marked for translation in Mercurial contain
137 # ASCII characters only. But some files contain string
137 # ASCII characters only. But some files contain string
138 # literals like this '\037\213'. xgettext thinks it has to
138 # literals like this '\037\213'. xgettext thinks it has to
139 # parse them even though they are not marked for translation.
139 # parse them even though they are not marked for translation.
140 # Extracting with an explicit encoding of ISO-8859-1 will make
140 # Extracting with an explicit encoding of ISO-8859-1 will make
141 # xgettext "parse" and ignore them.
141 # xgettext "parse" and ignore them.
142 echo $(PYFILES) | xargs \
142 echo $(PYFILES) | xargs \
143 xgettext --package-name "Mercurial" \
143 xgettext --package-name "Mercurial" \
144 --msgid-bugs-address "<mercurial-devel@mercurial-scm.org>" \
144 --msgid-bugs-address "<mercurial-devel@mercurial-scm.org>" \
145 --copyright-holder "Matt Mackall <mpm@selenic.com> and others" \
145 --copyright-holder "Matt Mackall <mpm@selenic.com> and others" \
146 --from-code ISO-8859-1 --join --sort-by-file --add-comments=i18n: \
146 --from-code ISO-8859-1 --join --sort-by-file --add-comments=i18n: \
147 -d hg -p i18n -o hg.pot.tmp
147 -d hg -p i18n -o hg.pot.tmp
148 $(PYTHON) i18n/posplit i18n/hg.pot.tmp
148 $(PYTHON) i18n/posplit i18n/hg.pot.tmp
149 # The target file is not created before the last step. So it never is in
149 # The target file is not created before the last step. So it never is in
150 # an intermediate state.
150 # an intermediate state.
151 mv -f i18n/hg.pot.tmp i18n/hg.pot
151 mv -f i18n/hg.pot.tmp i18n/hg.pot
152
152
153 %.po: i18n/hg.pot
153 %.po: i18n/hg.pot
154 # work on a temporary copy for never having a half completed target
154 # work on a temporary copy for never having a half completed target
155 cp $@ $@.tmp
155 cp $@ $@.tmp
156 msgmerge --no-location --update $@.tmp $^
156 msgmerge --no-location --update $@.tmp $^
157 mv -f $@.tmp $@
157 mv -f $@.tmp $@
158
158
159 # Packaging targets
159 # Packaging targets
160
160
161 osx:
161 osx:
162 /usr/bin/python2.7 setup.py install --optimize=1 \
162 /usr/bin/python2.7 setup.py install --optimize=1 \
163 --root=build/mercurial/ --prefix=/usr/local/ \
163 --root=build/mercurial/ --prefix=/usr/local/ \
164 --install-lib=/Library/Python/2.7/site-packages/
164 --install-lib=/Library/Python/2.7/site-packages/
165 make -C doc all install DESTDIR="$(PWD)/build/mercurial/"
165 make -C doc all install DESTDIR="$(PWD)/build/mercurial/"
166 # install zsh completions - this location appears to be
166 # install zsh completions - this location appears to be
167 # searched by default as of macOS Sierra.
167 # searched by default as of macOS Sierra.
168 mkdir -p build/mercurial/usr/local/share/zsh/site-functions
168 install -d build/mercurial/usr/local/share/zsh/site-functions/
169 cp contrib/zsh_completion build/mercurial/usr/local/share/zsh/site-functions/hg
169 install -m 0644 contrib/zsh_completion build/mercurial/usr/local/share/zsh/site-functions/hg
170 # install bash completions - there doesn't appear to be a
170 # install bash completions - there doesn't appear to be a
171 # place that's searched by default for bash, so we'll follow
171 # place that's searched by default for bash, so we'll follow
172 # the lead of Apple's git install and just put it in a
172 # the lead of Apple's git install and just put it in a
173 # location of our own.
173 # location of our own.
174 mkdir -p build/mercurial/usr/local/hg/contrib
174 install -d build/mercurial/usr/local/hg/contrib/
175 cp contrib/bash_completion build/mercurial/usr/local/hg/contrib/hg-completion.bash
175 install -m 0644 contrib/bash_completion build/mercurial/usr/local/hg/contrib/hg-completion.bash
176 mkdir -p $${OUTPUTDIR:-dist}
176 mkdir -p $${OUTPUTDIR:-dist}
177 HGVER=$$((cat build/mercurial/Library/Python/2.7/site-packages/mercurial/__version__.py; echo 'print(version)') | python) && \
177 HGVER=$$((cat build/mercurial/Library/Python/2.7/site-packages/mercurial/__version__.py; echo 'print(version)') | python) && \
178 OSXVER=$$(sw_vers -productVersion | cut -d. -f1,2) && \
178 OSXVER=$$(sw_vers -productVersion | cut -d. -f1,2) && \
179 pkgbuild --root build/mercurial/ \
179 pkgbuild --root build/mercurial/ \
180 --identifier org.mercurial-scm.mercurial \
180 --identifier org.mercurial-scm.mercurial \
181 --version "$${HGVER}" \
181 --version "$${HGVER}" \
182 build/mercurial.pkg && \
182 build/mercurial.pkg && \
183 productbuild --distribution contrib/macosx/distribution.xml \
183 productbuild --distribution contrib/macosx/distribution.xml \
184 --package-path build/ \
184 --package-path build/ \
185 --version "$${HGVER}" \
185 --version "$${HGVER}" \
186 --resources contrib/macosx/ \
186 --resources contrib/macosx/ \
187 "$${OUTPUTDIR:-dist/}"/Mercurial-"$${HGVER}"-macosx"$${OSXVER}".pkg
187 "$${OUTPUTDIR:-dist/}"/Mercurial-"$${HGVER}"-macosx"$${OSXVER}".pkg
188
188
189 deb:
189 deb:
190 contrib/builddeb
190 contrib/builddeb
191
191
192 ppa:
192 ppa:
193 contrib/builddeb --source-only
193 contrib/builddeb --source-only
194
194
195 docker-debian-jessie:
195 docker-debian-jessie:
196 mkdir -p packages/debian-jessie
196 mkdir -p packages/debian-jessie
197 contrib/dockerdeb debian jessie
197 contrib/dockerdeb debian jessie
198
198
199 contrib/docker/ubuntu-%: contrib/docker/ubuntu.template
199 contrib/docker/ubuntu-%: contrib/docker/ubuntu.template
200 sed "s/__CODENAME__/$*/" $< > $@
200 sed "s/__CODENAME__/$*/" $< > $@
201
201
202 docker-ubuntu-trusty: contrib/docker/ubuntu-trusty
202 docker-ubuntu-trusty: contrib/docker/ubuntu-trusty
203 contrib/dockerdeb ubuntu trusty
203 contrib/dockerdeb ubuntu trusty
204
204
205 docker-ubuntu-trusty-ppa: contrib/docker/ubuntu-trusty
205 docker-ubuntu-trusty-ppa: contrib/docker/ubuntu-trusty
206 contrib/dockerdeb ubuntu trusty --source-only
206 contrib/dockerdeb ubuntu trusty --source-only
207
207
208 docker-ubuntu-xenial: contrib/docker/ubuntu-xenial
208 docker-ubuntu-xenial: contrib/docker/ubuntu-xenial
209 contrib/dockerdeb ubuntu xenial
209 contrib/dockerdeb ubuntu xenial
210
210
211 docker-ubuntu-xenial-ppa: contrib/docker/ubuntu-xenial
211 docker-ubuntu-xenial-ppa: contrib/docker/ubuntu-xenial
212 contrib/dockerdeb ubuntu xenial --source-only
212 contrib/dockerdeb ubuntu xenial --source-only
213
213
214 docker-ubuntu-yakkety: contrib/docker/ubuntu-yakkety
214 docker-ubuntu-yakkety: contrib/docker/ubuntu-yakkety
215 contrib/dockerdeb ubuntu yakkety
215 contrib/dockerdeb ubuntu yakkety
216
216
217 docker-ubuntu-yakkety-ppa: contrib/docker/ubuntu-yakkety
217 docker-ubuntu-yakkety-ppa: contrib/docker/ubuntu-yakkety
218 contrib/dockerdeb ubuntu yakkety --source-only
218 contrib/dockerdeb ubuntu yakkety --source-only
219
219
220 fedora20:
220 fedora20:
221 mkdir -p packages/fedora20
221 mkdir -p packages/fedora20
222 contrib/buildrpm
222 contrib/buildrpm
223 cp rpmbuild/RPMS/*/* packages/fedora20
223 cp rpmbuild/RPMS/*/* packages/fedora20
224 cp rpmbuild/SRPMS/* packages/fedora20
224 cp rpmbuild/SRPMS/* packages/fedora20
225 rm -rf rpmbuild
225 rm -rf rpmbuild
226
226
227 docker-fedora20:
227 docker-fedora20:
228 mkdir -p packages/fedora20
228 mkdir -p packages/fedora20
229 contrib/dockerrpm fedora20
229 contrib/dockerrpm fedora20
230
230
231 fedora21:
231 fedora21:
232 mkdir -p packages/fedora21
232 mkdir -p packages/fedora21
233 contrib/buildrpm
233 contrib/buildrpm
234 cp rpmbuild/RPMS/*/* packages/fedora21
234 cp rpmbuild/RPMS/*/* packages/fedora21
235 cp rpmbuild/SRPMS/* packages/fedora21
235 cp rpmbuild/SRPMS/* packages/fedora21
236 rm -rf rpmbuild
236 rm -rf rpmbuild
237
237
238 docker-fedora21:
238 docker-fedora21:
239 mkdir -p packages/fedora21
239 mkdir -p packages/fedora21
240 contrib/dockerrpm fedora21
240 contrib/dockerrpm fedora21
241
241
242 centos5:
242 centos5:
243 mkdir -p packages/centos5
243 mkdir -p packages/centos5
244 contrib/buildrpm --withpython
244 contrib/buildrpm --withpython
245 cp rpmbuild/RPMS/*/* packages/centos5
245 cp rpmbuild/RPMS/*/* packages/centos5
246 cp rpmbuild/SRPMS/* packages/centos5
246 cp rpmbuild/SRPMS/* packages/centos5
247
247
248 docker-centos5:
248 docker-centos5:
249 mkdir -p packages/centos5
249 mkdir -p packages/centos5
250 contrib/dockerrpm centos5 --withpython
250 contrib/dockerrpm centos5 --withpython
251
251
252 centos6:
252 centos6:
253 mkdir -p packages/centos6
253 mkdir -p packages/centos6
254 contrib/buildrpm
254 contrib/buildrpm
255 cp rpmbuild/RPMS/*/* packages/centos6
255 cp rpmbuild/RPMS/*/* packages/centos6
256 cp rpmbuild/SRPMS/* packages/centos6
256 cp rpmbuild/SRPMS/* packages/centos6
257
257
258 docker-centos6:
258 docker-centos6:
259 mkdir -p packages/centos6
259 mkdir -p packages/centos6
260 contrib/dockerrpm centos6
260 contrib/dockerrpm centos6
261
261
262 centos7:
262 centos7:
263 mkdir -p packages/centos7
263 mkdir -p packages/centos7
264 contrib/buildrpm
264 contrib/buildrpm
265 cp rpmbuild/RPMS/*/* packages/centos7
265 cp rpmbuild/RPMS/*/* packages/centos7
266 cp rpmbuild/SRPMS/* packages/centos7
266 cp rpmbuild/SRPMS/* packages/centos7
267
267
268 docker-centos7:
268 docker-centos7:
269 mkdir -p packages/centos7
269 mkdir -p packages/centos7
270 contrib/dockerrpm centos7
270 contrib/dockerrpm centos7
271
271
272 .PHONY: help all local build doc cleanbutpackages clean install install-bin \
272 .PHONY: help all local build doc cleanbutpackages clean install install-bin \
273 install-doc install-home install-home-bin install-home-doc \
273 install-doc install-home install-home-bin install-home-doc \
274 dist dist-notests check tests check-code update-pot \
274 dist dist-notests check tests check-code update-pot \
275 osx deb ppa docker-debian-jessie \
275 osx deb ppa docker-debian-jessie \
276 docker-ubuntu-trusty docker-ubuntu-trusty-ppa \
276 docker-ubuntu-trusty docker-ubuntu-trusty-ppa \
277 docker-ubuntu-xenial docker-ubuntu-xenial-ppa \
277 docker-ubuntu-xenial docker-ubuntu-xenial-ppa \
278 docker-ubuntu-yakkety docker-ubuntu-yakkety-ppa \
278 docker-ubuntu-yakkety docker-ubuntu-yakkety-ppa \
279 fedora20 docker-fedora20 fedora21 docker-fedora21 \
279 fedora20 docker-fedora20 fedora21 docker-fedora21 \
280 centos5 docker-centos5 centos6 docker-centos6 centos7 docker-centos7
280 centos5 docker-centos5 centos6 docker-centos6 centos7 docker-centos7
@@ -1,57 +1,57 b''
1 #require test-repo slow osx osxpackaging
1 #require test-repo slow osx osxpackaging
2
2
3 $ . "$TESTDIR/helpers-testrepo.sh"
3 $ . "$TESTDIR/helpers-testrepo.sh"
4
4
5 $ OUTPUTDIR=`pwd`
5 $ OUTPUTDIR=`pwd`
6 $ export OUTPUTDIR
6 $ export OUTPUTDIR
7 $ KEEPMPKG=yes
7 $ KEEPMPKG=yes
8 $ export KEEPMPKG
8 $ export KEEPMPKG
9
9
10 $ cd "$TESTDIR"/..
10 $ cd "$TESTDIR"/..
11 $ rm -rf dist
11 $ rm -rf dist
12 $ make osx > $OUTPUTDIR/build.log 2>&1
12 $ make osx > $OUTPUTDIR/build.log 2>&1
13 $ cd $OUTPUTDIR
13 $ cd $OUTPUTDIR
14 $ ls -d *.pkg
14 $ ls -d *.pkg
15 Mercurial-*-macosx10.*.pkg (glob)
15 Mercurial-*-macosx10.*.pkg (glob)
16
16
17 $ xar -xf Mercurial*.pkg
17 $ xar -xf Mercurial*.pkg
18
18
19 Gather list of all installed files:
19 Gather list of all installed files:
20 $ lsbom mercurial.pkg/Bom > boms.txt
20 $ lsbom mercurial.pkg/Bom > boms.txt
21
21
22 Spot-check some randomly selected files:
22 Spot-check some randomly selected files:
23 $ grep bdiff boms.txt | cut -d ' ' -f 1,2,3
23 $ grep bdiff boms.txt | cut -d ' ' -f 1,2,3
24 ./Library/Python/2.7/site-packages/mercurial/bdiff.so 100755 0/0
24 ./Library/Python/2.7/site-packages/mercurial/bdiff.so 100755 0/0
25 ./Library/Python/2.7/site-packages/mercurial/pure/bdiff.py 100644 0/0
25 ./Library/Python/2.7/site-packages/mercurial/pure/bdiff.py 100644 0/0
26 ./Library/Python/2.7/site-packages/mercurial/pure/bdiff.pyc 100644 0/0
26 ./Library/Python/2.7/site-packages/mercurial/pure/bdiff.pyc 100644 0/0
27 ./Library/Python/2.7/site-packages/mercurial/pure/bdiff.pyo 100644 0/0
27 ./Library/Python/2.7/site-packages/mercurial/pure/bdiff.pyo 100644 0/0
28 $ grep zsh/site-functions/hg boms.txt | cut -d ' ' -f 1,2,3
28 $ grep zsh/site-functions/hg boms.txt | cut -d ' ' -f 1,2,3
29 ./usr/local/share/zsh/site-functions/hg 100640 0/0
29 ./usr/local/share/zsh/site-functions/hg 100644 0/0
30 $ grep hg-completion.bash boms.txt | cut -d ' ' -f 1,2,3
30 $ grep hg-completion.bash boms.txt | cut -d ' ' -f 1,2,3
31 ./usr/local/hg/contrib/hg-completion.bash 100640 0/0
31 ./usr/local/hg/contrib/hg-completion.bash 100644 0/0
32 $ egrep 'man[15]' boms.txt | cut -d ' ' -f 1,2,3
32 $ egrep 'man[15]' boms.txt | cut -d ' ' -f 1,2,3
33 ./usr/local/share/man/man1 40755 0/0
33 ./usr/local/share/man/man1 40755 0/0
34 ./usr/local/share/man/man1/hg.1 100644 0/0
34 ./usr/local/share/man/man1/hg.1 100644 0/0
35 ./usr/local/share/man/man5 40755 0/0
35 ./usr/local/share/man/man5 40755 0/0
36 ./usr/local/share/man/man5/hgignore.5 100644 0/0
36 ./usr/local/share/man/man5/hgignore.5 100644 0/0
37 ./usr/local/share/man/man5/hgrc.5 100644 0/0
37 ./usr/local/share/man/man5/hgrc.5 100644 0/0
38 $ grep bser boms.txt | cut -d ' ' -f 1,2,3
38 $ grep bser boms.txt | cut -d ' ' -f 1,2,3
39 ./Library/Python/2.7/site-packages/hgext/fsmonitor/pywatchman/bser.so 100755 0/0
39 ./Library/Python/2.7/site-packages/hgext/fsmonitor/pywatchman/bser.so 100755 0/0
40 ./Library/Python/2.7/site-packages/hgext/fsmonitor/pywatchman/pybser.py 100644 0/0
40 ./Library/Python/2.7/site-packages/hgext/fsmonitor/pywatchman/pybser.py 100644 0/0
41 ./Library/Python/2.7/site-packages/hgext/fsmonitor/pywatchman/pybser.pyc 100644 0/0
41 ./Library/Python/2.7/site-packages/hgext/fsmonitor/pywatchman/pybser.pyc 100644 0/0
42 ./Library/Python/2.7/site-packages/hgext/fsmonitor/pywatchman/pybser.pyo 100644 0/0
42 ./Library/Python/2.7/site-packages/hgext/fsmonitor/pywatchman/pybser.pyo 100644 0/0
43 $ grep localrepo boms.txt | cut -d ' ' -f 1,2,3
43 $ grep localrepo boms.txt | cut -d ' ' -f 1,2,3
44 ./Library/Python/2.7/site-packages/mercurial/localrepo.py 100644 0/0
44 ./Library/Python/2.7/site-packages/mercurial/localrepo.py 100644 0/0
45 ./Library/Python/2.7/site-packages/mercurial/localrepo.pyc 100644 0/0
45 ./Library/Python/2.7/site-packages/mercurial/localrepo.pyc 100644 0/0
46 ./Library/Python/2.7/site-packages/mercurial/localrepo.pyo 100644 0/0
46 ./Library/Python/2.7/site-packages/mercurial/localrepo.pyo 100644 0/0
47 $ grep 'bin/hg ' boms.txt | cut -d ' ' -f 1,2,3
47 $ grep 'bin/hg ' boms.txt | cut -d ' ' -f 1,2,3
48 ./usr/local/bin/hg 100755 0/0
48 ./usr/local/bin/hg 100755 0/0
49
49
50 Make sure the built binary uses the system Python interpreter
50 Make sure the built binary uses the system Python interpreter
51 $ bsdtar xf mercurial.pkg/Payload usr/local/bin
51 $ bsdtar xf mercurial.pkg/Payload usr/local/bin
52 Use a glob to find this to avoid check-code whining about a fixed path.
52 Use a glob to find this to avoid check-code whining about a fixed path.
53 $ head -n 1 usr/local/b?n/hg
53 $ head -n 1 usr/local/b?n/hg
54 #!/System/Library/Frameworks/Python.framework/Versions/2.7/Resources/Python.app/Contents/MacOS/Python
54 #!/System/Library/Frameworks/Python.framework/Versions/2.7/Resources/Python.app/Contents/MacOS/Python
55
55
56 Note that we're not currently installing any /etc/mercurial stuff,
56 Note that we're not currently installing any /etc/mercurial stuff,
57 including merge-tool configurations.
57 including merge-tool configurations.
General Comments 0
You need to be logged in to leave comments. Login now