##// END OF EJS Templates
urlutil: introduce a new `list_paths` function...
urlutil: introduce a new `list_paths` function This function will be useful for command and template that wants to display path related information. Differential Revision: https://phab.mercurial-scm.org/D10440

File last commit:

r46547:eccbfa7e default
r47794:83902c57 default
Show More
centos7
20 lines | 361 B | text/plain | TextLexer
Gregory Szorc
packaging: move most of contrib/docker to contrib/packaging/docker...
r38023 FROM centos:centos7
Gregory Szorc
packaging: consistently create build user in Dockerfiles...
r38475
Mathias De Mare
packaging: allow running packaging with custom uid+gid for CentOS...
r41270 RUN groupadd -g %GID% build && \
useradd -u %UID% -g %GID% -s /bin/bash -d /build -m build
Gregory Szorc
packaging: consistently create build user in Dockerfiles...
r38475
Mathias De Mare
packaging: switch centos 7 packaging to python 3...
r46440 RUN yum install -y epel-release
Gregory Szorc
packaging: move most of contrib/docker to contrib/packaging/docker...
r38023 RUN yum install -y \
gcc \
gettext \
make \
Mathias De Mare
packaging: switch centos 7 packaging to python 3...
r46440 python3-devel \
python36-docutils \
Gregory Szorc
packaging: move most of contrib/docker to contrib/packaging/docker...
r38023 rpm-build \
tar
# For creating repo meta data
RUN yum install -y createrepo
Mathias De Mare
packaging: enable rust extensions on centos...
r46547
# For rust extensions
RUN yum install -y cargo