Skip to content
Snippets Groups Projects
Verified Commit e62306e1 authored by Mattia Rizzolo's avatar Mattia Rizzolo
Browse files

tools: add a get_package_provider() function, returning the package name that...

tools: add a get_package_provider() function, returning the package name that best matches the system

This function uses distro.like() to obtain a list of distributions
similar to the one we are running on.
It means that we will, for example, be able to suggest Debian packages
when running under Ubuntu.

Gbp-Dch: Short
Signed-off-by: Mattia Rizzolo's avatarMattia Rizzolo <mattia@debian.org>
parent c8927db9
No related branches found
No related tags found
No related merge requests found
......@@ -29,6 +29,7 @@ except ImportError:
from distutils.spawn import find_executable
from .profiling import profile
from .external_tools import EXTERNAL_TOOLS
# Memoize calls to ``distutils.spawn.find_executable`` to avoid excessive stat
# calls
......@@ -81,3 +82,27 @@ def get_current_os():
if distro:
return distro.id()
return system # noqa
def get_current_distro_like():
if distro:
return distro.like().split()
else:
return []
def get_package_provider(tool, os=None):
try:
providers = EXTERNAL_TOOLS[tool]
except KeyError: # noqa
return None
try:
return providers[get_current_os()]
except KeyError:
# lookup failed, try to look for a package for a similar distro
for d in get_current_distro_like():
try:
return providers[d]
except KeyError:
pass
return None
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment