Disabled hginstallscripts @LIBDIR@ replacement in setup.py.
Bug-Debian: http://bugs.debian.org/620087
Bug-Ubuntu: https://bugs.launchpad.net/bugs/745250
Forwarded: not-needed
setup.py replaces @LIBDIR@ in the hg script, with a path that differs between
Python versions.
libdir in hg doesn't need to be set if mercurial is available in the public
namespace, as it is in Debian.
hg doesn't alter sys.paths if this replacement hasn't happened.
Gbp-Pq: Name deb_specific__disable_libdir_replacement.patch
proposed_upstream__doctest.path
# HG changeset patch
# User Julien Cristau <jcristau@debian.org>
# Date
1589916203 -7200
# Tue May 19 21:23:23 2020 +0200
# Node ID
de789b6b188b62cf38c5c5cfe760cff9a48c52f5
# Parent
3b7aabd02e11fcfc015b3a90a0c52d971a7b8a83
test: make test-doctest.py work when it's not run from a mercurial repo
This assumption fails when building and running tests from a source
tarball, e.g.
Differential Revision: https://phab.mercurial-scm.org/D8571
Gbp-Pq: Name proposed_upstream__doctest.path
test-clone-stream_bigendian
# HG changeset patch
# User Julien Cristau <jcristau@debian.org>
# Date
1647351947 -3600
# Tue Mar 15 14:45:47 2022 +0100
# Branch stable
# Node ID
3e911cdaa0585276740d2c72357ca776bb62db62
# Parent
d4486810a1795fba9521449b8885ced034f3a6dd
test: update test-clone-stream.t to pass on bigendian
Fixes: a3cf460a6b1b ("stream-clone: also filter the requirement we put in the bundle 2")
Differential Revision: https://phab.mercurial-scm.org/D12377
Gbp-Pq: Name test-clone-stream_bigendian.patch
revlog_unsigned_char_fix
# HG changeset patch
# User Julien Cristau <jcristau@debian.org>
# Date
1647277023 -3600
# Mon Mar 14 17:57:03 2022 +0100
# Branch stable
# Node ID
9ce563fb2989eda394330d3a9d37a8a75995a304
# Parent
59be65b7cdfded782e992c9d2e5557a7e78be878
revlog: fix wrong type of rank_unknown variable
We treat "rank" as an int everywhere, but declare rank_unknown as a
char. On architectures where char is signed, that works out ok, but
when char is unsigned, rank_unknown is 255 instead of -1.
Differential Revision: https://phab.mercurial-scm.org/D12374
Gbp-Pq: Name revlog_unsigned_char_fix.patch