From: Stefano Rivera Date: Sun, 16 Aug 2020 09:03:07 +0000 (+0200) Subject: Disabled hginstallscripts @LIBDIR@ replacement in setup.py. X-Git-Tag: archive/raspbian/6.3.1-2+rpi1^2~5 X-Git-Url: https://dgit.raspbian.org/?a=commitdiff_plain;h=7f21d9beced4e6ad0f2028f0182b296bc8a7f1db;p=mercurial.git 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 --- diff --git a/setup.py b/setup.py index eed41b4..4606f8c 100644 --- a/setup.py +++ b/setup.py @@ -1239,7 +1239,6 @@ cmdclass = { 'install': hginstall, 'install_completion': hginstallcompletion, 'install_lib': hginstalllib, - 'install_scripts': hginstallscripts, 'build_hgexe': buildhgexe, }