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.

10 lines
372 B

from calculate.variables.datavars import Variable, Namespace, Dependence, \
StringType, BooleanType, HashType, Calculate
from calculate.vars.main.os.func import *
with Namespace("arch"):
Variable("machine", type=StringType,
source=Calculate(get_arch_machine))
Variable("gentoo", type=StringType,
source=Calculate(get_arch_gentoo, ".machine"))