mirror of
https://github.com/kernelkit/infix.git
synced 2026-07-29 20:23:01 +02:00
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>
12 lines
386 B
Plaintext
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/
|