mirror of
https://git.yoctoproject.org/poky
synced 2026-03-25 01:02:22 +01:00
In gentoo the file looks like this:
NAME='Gentoo'
ID='gentoo'
PRETTY_NAME='Gentoo Linux'
VERSION='2.18'
VERSION_ID='2.18'
HOME_URL='https://www.gentoo.org/'
SUPPORT_URL='https://www.gentoo.org/support/'
BUG_REPORT_URL='https://bugs.gentoo.org/'
ANSI_COLOR='1;32'
' were added with:
2f590e35c9
before that the os-release file looked like this:
NAME=Gentoo
ID=gentoo
PRETTY_NAME="Gentoo Linux"
ANSI_COLOR="1;32"
HOME_URL="https://www.gentoo.org/"
SUPPORT_URL="https://www.gentoo.org/support/"
BUG_REPORT_URL="https://bugs.gentoo.org/"
VERSION_ID="2.18"
The ' is stripped from the ID later in distro_identifier with:
# Filter out any non-alphanumerics and convert to lowercase
distro_id = re.sub(r'\W', '', distro_id).lower()
but not from version which results in a weird NATIVELSBSTRING like:
NATIVELSBSTRING = "gentoo-'2.18'"
And similarly the directory name in sstate-cache:
oe-core $ ls -d sstate-cache/gentoo-*
"sstate-cache/gentoo-'2.18'" sstate-cache/gentoo-2.18
(From OE-Core rev: 5786749670fc1fa17e32b9eed286630739ddbc16)
Signed-off-by: Martin Jansa <martin.jansa@gmail.com>
Signed-off-by: Yoann Congal <yoann.congal@smile.fr>
Signed-off-by: Paul Barker <paul@pbarker.dev>
122 lines
3.7 KiB
Python
122 lines
3.7 KiB
Python
#
|
|
# SPDX-License-Identifier: GPL-2.0-only
|
|
#
|
|
|
|
def get_os_release():
|
|
"""Get all key-value pairs from /etc/os-release as a dict"""
|
|
from collections import OrderedDict
|
|
|
|
data = OrderedDict()
|
|
if os.path.exists('/etc/os-release'):
|
|
with open('/etc/os-release') as f:
|
|
for line in f:
|
|
try:
|
|
key, val = line.rstrip().split('=', 1)
|
|
except ValueError:
|
|
continue
|
|
data[key.strip()] = val.strip('"\'')
|
|
return data
|
|
|
|
def release_dict_osr():
|
|
""" Populate a dict with pertinent values from /etc/os-release """
|
|
data = {}
|
|
os_release = get_os_release()
|
|
if 'ID' in os_release:
|
|
data['DISTRIB_ID'] = os_release['ID']
|
|
if 'VERSION_ID' in os_release:
|
|
data['DISTRIB_RELEASE'] = os_release['VERSION_ID']
|
|
|
|
return data
|
|
|
|
def release_dict_lsb():
|
|
""" Return the output of lsb_release -ir as a dictionary """
|
|
from subprocess import PIPE
|
|
|
|
try:
|
|
output, err = bb.process.run(['lsb_release', '-ir'], stderr=PIPE)
|
|
except bb.process.CmdError as exc:
|
|
return {}
|
|
|
|
lsb_map = { 'Distributor ID': 'DISTRIB_ID',
|
|
'Release': 'DISTRIB_RELEASE'}
|
|
lsb_keys = lsb_map.keys()
|
|
|
|
data = {}
|
|
for line in output.splitlines():
|
|
if line.startswith("-e"):
|
|
line = line[3:]
|
|
try:
|
|
key, value = line.split(":\t", 1)
|
|
except ValueError:
|
|
continue
|
|
if key in lsb_keys:
|
|
data[lsb_map[key]] = value
|
|
|
|
if len(data.keys()) != 2:
|
|
return None
|
|
|
|
return data
|
|
|
|
def release_dict_file():
|
|
""" Try to gather release information manually when other methods fail """
|
|
data = {}
|
|
try:
|
|
if os.path.exists('/etc/lsb-release'):
|
|
data = {}
|
|
with open('/etc/lsb-release') as f:
|
|
for line in f:
|
|
key, value = line.split("=", 1)
|
|
data[key] = value.strip()
|
|
elif os.path.exists('/etc/redhat-release'):
|
|
data = {}
|
|
with open('/etc/redhat-release') as f:
|
|
distro = f.readline().strip()
|
|
import re
|
|
match = re.match(r'(.*) release (.*) \((.*)\)', distro)
|
|
if match:
|
|
data['DISTRIB_ID'] = match.group(1)
|
|
data['DISTRIB_RELEASE'] = match.group(2)
|
|
elif os.path.exists('/etc/SuSE-release'):
|
|
data = {}
|
|
data['DISTRIB_ID'] = 'SUSE LINUX'
|
|
with open('/etc/SuSE-release') as f:
|
|
for line in f:
|
|
if line.startswith('VERSION = '):
|
|
data['DISTRIB_RELEASE'] = line[10:].rstrip()
|
|
break
|
|
|
|
except IOError:
|
|
return {}
|
|
return data
|
|
|
|
def distro_identifier(adjust_hook=None):
|
|
"""Return a distro identifier string based upon lsb_release -ri,
|
|
with optional adjustment via a hook"""
|
|
|
|
import re
|
|
|
|
# Try /etc/os-release first, then the output of `lsb_release -ir` and
|
|
# finally fall back on parsing various release files in order to determine
|
|
# host distro name and version.
|
|
distro_data = release_dict_osr()
|
|
if not distro_data:
|
|
distro_data = release_dict_lsb()
|
|
if not distro_data:
|
|
distro_data = release_dict_file()
|
|
|
|
distro_id = distro_data.get('DISTRIB_ID', '')
|
|
release = distro_data.get('DISTRIB_RELEASE', '')
|
|
|
|
if adjust_hook:
|
|
distro_id, release = adjust_hook(distro_id, release)
|
|
if not distro_id:
|
|
return "unknown"
|
|
# Filter out any non-alphanumerics and convert to lowercase
|
|
distro_id = re.sub(r'\W', '', distro_id).lower()
|
|
|
|
if release:
|
|
id_str = '{0}-{1}'.format(distro_id, release)
|
|
else:
|
|
id_str = distro_id
|
|
return id_str.replace(' ','-').replace('/','-')
|