Mercurial > hg
view contrib/packaging/docker/rhel8 @ 48851:d739cd69bb6a
revlog: return 0 for the fast_rank of nullrev
By convention, the rank of the null revision is 0. This particular revision is
never "physically" stored in the changelog, so it is a special case.
For consistency, the value `None` is still being returned for revlogs which do
not store the fast_rank property for any revision.
Differential Revision: https://phab.mercurial-scm.org/D12208
author | pacien <pacien.trangirard@pacien.net> |
---|---|
date | Mon, 21 Feb 2022 15:53:03 +0100 |
parents | 6cfa30681a1d |
children | 234aaf0184f3 |
line wrap: on
line source
FROM rockylinux/rockylinux:8 RUN groupadd -g %GID% build && \ useradd -u %UID% -g %GID% -s /bin/bash -d /build -m build RUN yum install -y \ gcc \ gettext \ make \ python3-devel \ python3-docutils \ rpm-build # For creating repo meta data RUN yum install -y createrepo # For rust extensions RUN yum install -y cargo