Add python3.12 compatability

* imp and find_loader got removed in py3.12

Signed-off-by: Alfred Wingate <parona@protonmail.com>
This commit is contained in:
Alfred Wingate 2023-11-14 21:28:10 +02:00
parent 50a23b71dd
commit dfa0bb7424
No known key found for this signature in database
GPG Key ID: A12750536B5E7010
2 changed files with 4 additions and 3 deletions

View File

@ -1,6 +1,6 @@
import os
import sys
import imp
import importlib
import portage
from portage.const import VDB_PATH
@ -56,7 +56,7 @@ def package_from_ebuild(ebuild):
encoding=_encodings['content'], errors='strict')
portage.close_portdbapi_caches()
imp.reload(portage)
importlib.reload(portage)
del portage.portdb.porttrees[1:]
if ebuild_portdir != portage.portdb.porttree_root:
portage.portdb.porttrees.append(ebuild_portdir)

View File

@ -10,7 +10,8 @@ handlers = {'package': [], 'url': [], 'all': {}}
# autoimport all modules in this directory and append them to handlers list
for loader, module_name, is_pkg in pkgutil.walk_packages(__path__):
module = loader.find_module(module_name).load_module(module_name)
module = loader.find_spec(module_name).loader.load_module(module_name)
if not hasattr(module, 'HANDLER_NAME'):
continue
if hasattr(module, 'scan_url'):