summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMichael Mair-Keimberger <mmk@levelnine.at>2023-04-02 21:15:02 +0200
committerConrad Kostecki <conikost@gentoo.org>2023-04-02 23:12:08 +0200
commit321152e0505a7a008434fc90584156ed687eadee (patch)
tree99f67e8e7a39bc9ce0b97a2c332cf0426ae88e4c /dev-vcs/mercurial/files/mercurial-5.8.1-testing-timeout.patch
parentgames-simulation/openrct2: add 0.4.4 (diff)
downloadgentoo-321152e0505a7a008434fc90584156ed687eadee.tar.gz
gentoo-321152e0505a7a008434fc90584156ed687eadee.tar.bz2
gentoo-321152e0505a7a008434fc90584156ed687eadee.zip
dev-vcs/mercurial: remove unused patches
Signed-off-by: Michael Mair-Keimberger <mmk@levelnine.at> Closes: https://github.com/gentoo/gentoo/pull/30448 Signed-off-by: Conrad Kostecki <conikost@gentoo.org>
Diffstat (limited to 'dev-vcs/mercurial/files/mercurial-5.8.1-testing-timeout.patch')
-rw-r--r--dev-vcs/mercurial/files/mercurial-5.8.1-testing-timeout.patch12
1 files changed, 0 insertions, 12 deletions
diff --git a/dev-vcs/mercurial/files/mercurial-5.8.1-testing-timeout.patch b/dev-vcs/mercurial/files/mercurial-5.8.1-testing-timeout.patch
deleted file mode 100644
index 5c68835ccf75..000000000000
--- a/dev-vcs/mercurial/files/mercurial-5.8.1-testing-timeout.patch
+++ /dev/null
@@ -1,12 +0,0 @@
-diff --git a/mercurial/testing/__init__.py b/mercurial/testing/__init__.py
---- a/mercurial/testing/__init__.py
-+++ b/mercurial/testing/__init__.py
-@@ -25,7 +25,7 @@ def wait_file(path, timeout=10):
- timeout *= _timeout_factor()
- start = time.time()
- while not os.path.exists(path):
-- if time.time() - start > timeout:
-+ if timeout and time.time() - start > timeout:
- raise RuntimeError(b"timed out waiting for file: %s" % path)
- time.sleep(0.01)
-