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.

15 lines
376 B

from calculate.variables.datavars import (
Variable,
Namespace,
StringType,
Calculate
)
from .func import get_arch_machine, get_arch_gentoo
with Namespace("arch"):
Variable("machine", type=StringType,
source=Calculate(get_arch_machine))
Variable("gentoo", type=StringType,
source=Calculate(get_arch_gentoo, ".machine"))