forked from Mirror/pmbootstrap
51 lines
1.7 KiB
Python
51 lines
1.7 KiB
Python
# Copyright 2023 Clayton Craft
|
|
# SPDX-License-Identifier: GPL-3.0-or-later
|
|
import os
|
|
from pmb.core.arch import Arch
|
|
from pmb.core.pkgrepo import pkgrepo_iglob
|
|
from pmb.types import WithExtraRepos
|
|
import pmb.helpers.pmaports
|
|
import pmb.helpers.package
|
|
import pmb.parse
|
|
|
|
|
|
def list_ui(arch: Arch) -> list[tuple[str, str]]:
|
|
"""Get all UIs, for which aports are available with their description.
|
|
|
|
:param arch: device architecture, for which the UIs must be available
|
|
:returns: [("none", "No graphical..."), ("weston", "Wayland reference...")]
|
|
"""
|
|
ret = [
|
|
(
|
|
"none",
|
|
"Bare minimum OS image for testing and manual"
|
|
' customization. The "console" UI should be selected if'
|
|
" a graphical UI is not desired.",
|
|
)
|
|
]
|
|
for path in sorted(pkgrepo_iglob("main/postmarketos-ui-*")):
|
|
apkbuild = pmb.parse.apkbuild(path)
|
|
ui = os.path.basename(path).split("-", 2)[2]
|
|
if pmb.helpers.package.check_arch(apkbuild["pkgname"], arch):
|
|
ret.append((ui, apkbuild["pkgdesc"]))
|
|
return ret
|
|
|
|
|
|
def check_option(
|
|
ui: str, option: str, must_exist: bool = True, with_extra_repos: WithExtraRepos = "default"
|
|
) -> bool:
|
|
"""
|
|
Check if an option, such as pmb:systemd, is inside an UI's APKBUILD.
|
|
|
|
If must_exist is set to False, False will be returned if the UI doesn't exist.
|
|
"""
|
|
if ui == "none":
|
|
# Users can select "none" as UI in "pmbootstrap init", which does not
|
|
# have a UI package.
|
|
return False
|
|
|
|
pkgname = f"postmarketos-ui-{ui}"
|
|
apkbuild = pmb.helpers.pmaports.get(
|
|
pkgname, must_exist, subpackages=False, with_extra_repos=with_extra_repos
|
|
)
|
|
return option in apkbuild["options"] if apkbuild is not None else False
|