##// END OF EJS Templates
revlog: extract function for getting node from known-to-exist rev...
revlog: extract function for getting node from known-to-exist rev Many of the calls to index_node() (which converts a rev to a nodeid) are done with a rev that's know to exist. If the function fails, there's something really wrong and we should just abort. This was done in only one place. This patch starts by extracting that code to a function that we can reuse in later patches. Differential Revision: https://phab.mercurial-scm.org/D3456

File last commit:

r34424:1baa0772 default
r37877:a91f31a1 default
Show More
centos6
20 lines | 295 B | text/plain | TextLexer
Mads Kiilerich
docker: use stable tags for fedora and centos...
r22442 FROM centos:centos6
muxator
docker: try to follow the best practices for writing Dockerfiles...
r34424 RUN yum install -y \
gcc \
gettext \
make \
python-devel \
python-docutils \
rpm-build \
tar
Mads Kiilerich
dockerrpm: create a yum/dnf repo from the generated rpms...
r22444 # For creating repo meta data
RUN yum install -y createrepo
muxator
docker: try to follow the best practices for writing Dockerfiles...
r34424
Mathias De Maré
makefile: build on CentOS 6 with a Python 2.7...
r33597 # For python
muxator
docker: try to follow the best practices for writing Dockerfiles...
r34424 RUN yum install -y \
bzip2-devel \
ncurses-devel \
openssl-devel \
readline-devel \
zlib-devel