You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

17 lines
731 B

from calculate.variables.datavars import Variable, Namespace, Dependence, \
StringType, BooleanType, HashType, ListType, Calculate, Copy
from calculate.vars.main.os.func import get_arch_gentoo
3 years ago
from calculate.vars.install.os.func import *
with Namespace("arch"):
Variable("machine", type=StringType,
source=Calculate(lambda x: x.value, "main.os.arch.machine"))
Variable("gentoo", type=StringType,
source=Calculate(get_arch_gentoo, ".machine"))
with Namespace("audio"):
Variable("available", type=ListType,
source=Calculate(get_available_audio_system))
Variable("selected", type=StringType,
source=Calculate(get_audio_selected, ".available", "main.cl.cmdline.calculate.audio"))