##// END OF EJS Templates
mercurial.spec: rename docutils to python-docutils in BuildRequires...
mercurial.spec: rename docutils to python-docutils in BuildRequires Even though the name of the project is Docutils, most packagers use the package name python-docutils to fit into the naming scheme of other packages written in Python. The name is used by Fedora, EPEL, DAG, Mandriva, and a few other distributions.

File last commit:

r6649:05a682c8 default
r11512:488a80c8 stable
Show More
test-mq-qrename
36 lines | 524 B | text/plain | TextLexer
#!/bin/sh
echo "[extensions]" >> $HGRCPATH
echo "mq=" >> $HGRCPATH
hg init a
cd a
echo 'base' > base
hg ci -Ambase -d '1 0'
hg qnew -mmqbase mqbase
hg qrename mqbase renamed
mkdir .hg/patches/foo
hg qrename renamed foo
hg qseries
ls .hg/patches/foo
mkdir .hg/patches/bar
hg qrename foo/renamed bar
hg qseries
ls .hg/patches/bar
hg qrename bar/renamed baz
hg qseries
ls .hg/patches/baz
cd ..
echo % test patch being renamed before committed
hg init b
cd b
hg qinit -c
hg qnew x
hg qrename y
hg qcommit -m rename
cd ..