##// END OF EJS Templates
amend: moving first assignment of newid closer to its use...
amend: moving first assignment of newid closer to its use newid was needlessly further away from where its intended to be used leading to bad readability. This commit moves it to address the same. The end goal is to remove the redundant commit in the amend code path and this commit takes care of cleaning up some unrelated code before that change. Test Plan: ran the test suite Differential Revision: https://phab.mercurial-scm.org/D597

File last commit:

r33665:aa7a3f6e stable
r34059:da13616d default
Show More
centos5
9 lines | 502 B | text/plain | TextLexer
Mads Kiilerich
docker: use official centos5 image...
r23034 FROM centos:centos5
Mathias De Maré
centos5: use vault urls...
r33665 RUN sed -i 's/^mirrorlist/#mirrorlist/' /etc/yum.repos.d/*.repo
RUN sed -i 's/^#\(baseurl=\)http:\/\/mirror.centos.org\/centos/\1http:\/\/vault.centos.org/' /etc/yum.repos.d/*.repo
RUN sed -i 's/\$releasever/5.11/' /etc/yum.repos.d/*.repo
Mads Kiilerich
docker: add CentOS 5...
r22443 RUN yum install -y gcc make rpm-build gettext tar
RUN yum install -y python-devel python-docutils
Mads Kiilerich
dockerrpm: create a yum/dnf repo from the generated rpms...
r22444 # For creating repo meta data
RUN yum install -y createrepo
Mads Kiilerich
docker: add CentOS 5...
r22443 RUN yum install -y readline-devel openssl-devel ncurses-devel zlib-devel bzip2-devel