Skip to content
Snippets Groups Projects
Commit 5e516658 authored by Piotr Ożarowski's avatar Piotr Ożarowski
Browse files

add support for DEBPYTHON_SUPPORTED and DEBPYTHON_DEFAULT env. variables

can be used to override list of supported/default Python versions in Debian
parent afcce072
No related branches found
No related tags found
No related merge requests found
...@@ -22,6 +22,7 @@ ...@@ -22,6 +22,7 @@
import logging import logging
import re import re
from ConfigParser import SafeConfigParser from ConfigParser import SafeConfigParser
from os import environ
from os.path import exists, dirname, join from os.path import exists, dirname, join
from types import GeneratorType from types import GeneratorType
...@@ -36,18 +37,24 @@ log = logging.getLogger(__name__) ...@@ -36,18 +37,24 @@ log = logging.getLogger(__name__)
# try to read debian_defaults and get a list of supported Python versions and # try to read debian_defaults and get a list of supported Python versions and
# the default one from there # the default one from there
_config = SafeConfigParser() _supported = environ.get('DEBPYTHON_SUPPORTED')
_config.read(['/usr/share/python/debian_defaults', _default = environ.get('DEBPYTHON_DEFAULT')
join(dirname(__file__), '..', 'debian', 'debian_defaults')]) if not _supported or not _default:
_config = SafeConfigParser()
_config.read(['/usr/share/python/debian_defaults',
join(dirname(__file__), '..', 'debian', 'debian_defaults')])
if not _default:
_default = _config.get('DEFAULT', 'default-version')[6:]
if not _supported:
_supported = _config.get('DEFAULT', 'supported-versions')\
.replace('python', '')
try: try:
DEFAULT = tuple(int(i) for i in _config.get('DEFAULT', DEFAULT = tuple(int(i) for i in _default.split('.'))
'default-version')[6:].split('.'))
except Exception: except Exception:
log.exception('cannot read debian_defaults') log.exception('cannot read debian_defaults')
try: try:
SUPPORTED = tuple(tuple(int(j) for j in i.strip()[6:].split('.'))\ SUPPORTED = tuple(tuple(int(j) for j in i.strip().split('.'))
for i in _config.get('DEFAULT', for i in _supported.split(','))
'supported-versions').split(','))
except Exception: except Exception:
log.exception('cannot read debian_defaults') log.exception('cannot read debian_defaults')
...@@ -83,10 +90,10 @@ def get_requested_versions(vrange=None, available=None): ...@@ -83,10 +90,10 @@ def get_requested_versions(vrange=None, available=None):
versions = set(v for v in SUPPORTED if minv <= v < maxv) versions = set(v for v in SUPPORTED if minv <= v < maxv)
if available: if available:
versions = set(v for v in versions \ versions = set(v for v in versions
if exists("/usr/bin/python%d.%d" % v)) if exists("/usr/bin/python%d.%d" % v))
elif available is False: elif available is False:
versions = set(v for v in versions \ versions = set(v for v in versions
if not exists("/usr/bin/python%d.%d" % v)) if not exists("/usr/bin/python%d.%d" % v))
return versions return versions
...@@ -190,7 +197,7 @@ def parse_pycentral_vrange(value): ...@@ -190,7 +197,7 @@ def parse_pycentral_vrange(value):
minv = sorted(hardcoded)[0] minv = sorted(hardcoded)[0]
if current: if current:
versions = sorted(get("%s-%s" % (minv if minv else '', \ versions = sorted(get("%s-%s" % (minv if minv else '',
maxv if maxv else ''))) maxv if maxv else '')))
if not versions: if not versions:
raise ValueError("version range doesn't match installed Python versions: %s" % value) raise ValueError("version range doesn't match installed Python versions: %s" % value)
......
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