##// END OF EJS Templates
convert: avoid wrong lfconvert defaults by moving configitems to core...
convert: avoid wrong lfconvert defaults by moving configitems to core The `hg lfconvert --to-normal` command uses the convert extension internally to work its magic, but that produced devel-warn messages if the convert extension wasn't loaded by the user. The test in fcd2f9b06629 (modified here) wasn't showing the warnings because the convert extension was loaded via $HGRCPATH. Most of the config options default to None/False, but 'hg.usebranchnames' and 'hg.tagsbranch' are supposed to default to True and 'default' respectively. The first iteration of this was to ui.setconfig() inside lfconvert, to force the convert extension to load. But there really is no precedent for doing this, and check-config complained that 'extensions.convert' isn't documented. Yuya suggested this alternative. This partially backs out 0d5a1175d0f9.

File last commit:

r34626:f1c2552c default
r35141:28121415 stable
Show More
rules
44 lines | 1.8 KiB | text/plain | TextLexer
Augie Fackler
debian: switch to using debhelper and dh_python2 to build debs...
r26148 #!/usr/bin/make -f
# Uncomment this to turn on verbose mode.
# export DH_VERBOSE=1
CPUS=$(shell cat /proc/cpuinfo | grep -E ^processor | wc -l)
%:
dh $@ --with python2
override_dh_auto_test:
http_proxy='' dh_auto_test -- TESTFLAGS="-j$(CPUS)"
override_dh_python2:
dh_python2
find debian/mercurial/usr/share -type d -empty -delete
override_dh_install:
muxator
build: "make deb" failed when the base path contained spaces...
r34626 python$(PYVERS) setup.py install --root "$(CURDIR)"/debian/mercurial --install-layout=deb
Kyle Lippincott
deb: build and install chg...
r34407 # chg
make -C contrib/chg \
muxator
build: "make deb" failed when the base path contained spaces...
r34626 DESTDIR="$(CURDIR)"/debian/mercurial \
Kyle Lippincott
deb: build and install chg...
r34407 PREFIX=/usr \
clean install
Augie Fackler
debian: switch to using debhelper and dh_python2 to build debs...
r26148 # remove arch-independent python stuff
muxator
build: "make deb" failed when the base path contained spaces...
r34626 find "$(CURDIR)"/debian/mercurial/usr/lib \
Augie Fackler
debian: switch to using debhelper and dh_python2 to build debs...
r26148 ! -name '*.so' ! -type d -delete , \
-type d -empty -delete
muxator
build: "make deb" failed when the base path contained spaces...
r34626 python$(PYVERS) setup.py install --root "$(CURDIR)/debian/mercurial-common" --install-layout=deb
make install-doc PREFIX="$(CURDIR)"/debian/mercurial-common/usr
Augie Fackler
debian: switch to using debhelper and dh_python2 to build debs...
r26148 # remove arch-dependent python stuff
muxator
build: "make deb" failed when the base path contained spaces...
r34626 find "$(CURDIR)"/debian/mercurial-common/usr/lib \
Augie Fackler
debian: switch to using debhelper and dh_python2 to build debs...
r26148 -name '*.so' ! -type d -delete , \
-type d -empty -delete
muxator
build: "make deb" failed when the base path contained spaces...
r34626 cp contrib/hg-ssh "$(CURDIR)"/debian/mercurial-common/usr/bin
mkdir -p "$(CURDIR)"/debian/mercurial-common/usr/share/mercurial
cp contrib/hgk "$(CURDIR)"/debian/mercurial-common/usr/share/mercurial
mkdir -p "$(CURDIR)"/debian/mercurial-common/etc/mercurial/hgrc.d/
cp contrib/debian/*.rc "$(CURDIR)"/debian/mercurial-common/etc/mercurial/hgrc.d/
Kyle Lippincott
deb: build and install chg...
r34407 # completions
muxator
build: "make deb" failed when the base path contained spaces...
r34626 mkdir -p "$(CURDIR)"/debian/mercurial-common/usr/share/bash-completion/completions
cp contrib/bash_completion "$(CURDIR)"/debian/mercurial-common/usr/share/bash-completion/completions/hg
mkdir -p "$(CURDIR)"/debian/mercurial-common/usr/share/zsh/vendor-completions
cp contrib/zsh_completion "$(CURDIR)"/debian/mercurial-common/usr/share/zsh/vendor-completions/_hg
rm "$(CURDIR)"/debian/mercurial-common/usr/bin/hg