Files
infix/package/ifupdown2/Config.in
T
Joachim Wiberg 6a5ce15fc0 package/ifupdown2: use older version of python-mako for now
This is a workaround for the following code in ifupdown/template.py:37
that throw the exception with python-mako >= 1.2.0:

    try:
        self.logger.debug('setting template lookuppath to %s'
                template_lookuppath)
        lc = utils.importName('mako.lookup', 'TemplateLookup')
        self.tclassargs['lookup'] = lc(
                    directories=template_lookuppath.split(':'))
    except Exception as e:
        self.logger.warning('unable to set template lookup path'
                            ' %s (%s): are you sure \'python3-mako\''
                            'is installed?'
                            % (template_lookuppath, str(e)))

Signed-off-by: Joachim Wiberg <troglobit@gmail.com>
2022-12-14 22:21:16 +01:00

12 lines
386 B
Plaintext

config BR2_PACKAGE_IFUPDOWN2
bool "ifupdown2"
select BR2_PACKAGE_IPROUTE2
select BR2_PACKAGE_PYTHON3 # need, e.g., xml
select BR2_PACKAGE_PYTHON_TEMPLATING # runtime
select BR2_PACKAGE_PYTHON_SIX # runtime
select BR2_PACKAGE_PYTHON_SETUPTOOLS # runtime
help
Second generation high level tools to configure network interfaces.
https://github.com/CumulusNetworks/ifupdown2/