proj/portage:master commit in: lib/portage/dbapi/
"Matt Turner" <[email protected]>
| Newsgroups | gmane.linux.gentoo.cvs |
|---|---|
| Message-ID | <1786672956.6b57ffaf65c2857cdea8a1eb2d64a0060e57f279.mattst88@gentoo> |
commit: 6b57ffaf65c2857cdea8a1eb2d64a0060e57f279
Author: Matt Turner <mattst88 <AT> gentoo <DOT> org>
AuthorDate: Wed Jul 1 03:15:01 2026 +0000
Commit: Matt Turner <mattst88 <AT> gentoo <DOT> org>
CommitDate: Fri Aug 14 02:02:36 2026 +0000
URL: https://gitweb.gentoo.org/proj/portage.git/commit/?id=6b57ffaf
vartree: remove dead _owners_cache_version class variable
Signed-off-by: Matt Turner <mattst88 <AT> gentoo.org>
lib/portage/dbapi/vartree.py | 4 +---
1 file changed, 1 insertion(+), 3 deletions(-)
diff --git a/lib/portage/dbapi/vartree.py b/lib/portage/dbapi/vartree.py
index 39c5582fc..3c7951648 100644
--- a/lib/portage/dbapi/vartree.py
+++ b/lib/portage/dbapi/vartree.py
@@ -292,8 +292,6 @@ class vardbapi(dbapi):
r"^(\..*|" + MERGING_IDENTIFIER + ".*|" + "|".join(_excluded_dirs) + r")$"
)
- _owners_cache_version = "1"
-
_aux_cache_keys_re = re.compile(r"^NEEDED\..*$")
_aux_multi_line_re = re.compile(r"^(CONTENTS|NEEDED\..*)$")
_pkg_str_aux_keys = dbapi._pkg_str_aux_keys + ("BUILD_ID", "BUILD_TIME", "_mtime_")
@@ -820,7 +818,7 @@ class vardbapi(dbapi):
def _aux_cache_init(self):
self._aux_cache_obj = {
"packages": {},
- "owners": {"base_names": {}, "version": self._owners_cache_version},
+ "owners": {"base_names": {}},
}
def aux_get(self, mycpv, wants, myrepo=None):