commit: a2d20239b9a278bbf5479ad5e49fd79d6b17abc9
Author: Sam James <sam <AT> gentoo <DOT> org>
AuthorDate: Sun Feb 15 15:57:03 2026 +0000
Commit: Sam James <sam <AT> gentoo <DOT> org>
CommitDate: Sun Feb 15 16:56:50 2026 +0000
URL: https://gitweb.gentoo.org/proj/portage.git/commit/?id=a2d20239
BinRepoConfigLoader: add comment wrt PORTAGE_BINHOST
Signed-off-by: Sam James <sam <AT> gentoo.org>
lib/portage/binrepo/config.py | 3 ++-
1 file changed, 2 insertions(+), 1 deletion(-)
diff --git a/lib/portage/binrepo/config.py b/lib/portage/binrepo/config.py
index c1368c75ba..8402e78c95 100644
--- a/lib/portage/binrepo/config.py
+++ b/lib/portage/binrepo/config.py
@@ -1,4 +1,4 @@
-# Copyright 2020-2024 Gentoo Authors
+# Copyright 2020-2026 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
from collections import OrderedDict
@@ -101,6 +101,7 @@ class BinRepoConfigLoader(Mapping):
sync_uris = set(sync_uris)
current_priority = 0
+ # Convert PORTAGE_BINHOST entries into implicit binrepos.conf ones
for sync_uri in reversed(settings.get("PORTAGE_BINHOST", "").split()):
sync_uri = self._normalize_uri(sync_uri)
if sync_uri not in sync_uris: