summaryrefslogtreecommitdiff
path: root/dev-python/imageio/files
diff options
context:
space:
mode:
authorroot <root@alpha.trunkmasters.com>2026-06-04 16:24:49 -0500
committerroot <root@alpha.trunkmasters.com>2026-06-04 16:24:49 -0500
commita3ceca1b4c0d9bdb550dc23f06ffbb5a8e033bc7 (patch)
tree0c52bbae1c242fbc296bd650fcd1167685f81492 /dev-python/imageio/files
parentbfd9c39e4712ebdb442d4ca0673061faed1e70e1 (diff)
downloadbaldeagleos-repo-a3ceca1b4c0d9bdb550dc23f06ffbb5a8e033bc7.tar.gz
baldeagleos-repo-a3ceca1b4c0d9bdb550dc23f06ffbb5a8e033bc7.tar.xz
baldeagleos-repo-a3ceca1b4c0d9bdb550dc23f06ffbb5a8e033bc7.zip
Adding metadata
Diffstat (limited to 'dev-python/imageio/files')
-rw-r--r--dev-python/imageio/files/imageio-2.22.0-block-download.patch32
1 files changed, 0 insertions, 32 deletions
diff --git a/dev-python/imageio/files/imageio-2.22.0-block-download.patch b/dev-python/imageio/files/imageio-2.22.0-block-download.patch
deleted file mode 100644
index ba483813b23c..000000000000
--- a/dev-python/imageio/files/imageio-2.22.0-block-download.patch
+++ /dev/null
@@ -1,32 +0,0 @@
-From 1ae48cfa95e84cb064edc74a4a64bd0f7dee780a Mon Sep 17 00:00:00 2001
-From: =?UTF-8?q?Micha=C5=82=20G=C3=B3rny?= <mgorny@gentoo.org>
-Date: Tue, 4 Oct 2022 09:40:42 +0200
-Subject: [PATCH] Unconditionally disable downloading binaries from Internet
-
-Bug: https://bugs.gentoo.org/874849
----
- imageio/core/fetching.py | 7 +++----
- 1 file changed, 3 insertions(+), 4 deletions(-)
-
-diff --git a/imageio/core/fetching.py b/imageio/core/fetching.py
-index 0380bc7..70f1a3d 100644
---- a/imageio/core/fetching.py
-+++ b/imageio/core/fetching.py
-@@ -97,11 +97,10 @@ def get_remote_file(fname, directory=None, force_download=False, auto=True):
- break
-
- # If we get here, we're going to try to download the file
-- if os.getenv("IMAGEIO_NO_INTERNET", "").lower() in ("1", "true", "yes"):
-+ if True:
- raise InternetNotAllowedError(
-- "Will not download resource from the "
-- "internet because environment variable "
-- "IMAGEIO_NO_INTERNET is set."
-+ "Implicit insecure downloads disabled on Gentoo due to security "
-+ "concerns. See https://bugs.gentoo.org/874849."
- )
-
- # Can we proceed with auto-download?
---
-2.38.0
-