aboutsummaryrefslogtreecommitdiff
path: root/mesonbuild/modules/unstable_icestorm.py
diff options
context:
space:
mode:
authorXavier Claessens <xavier.claessens@collabora.com>2021-03-03 09:02:49 -0500
committerXavier Claessens <xclaesse@gmail.com>2021-05-28 15:17:10 -0400
commit723c5227a471aff3a1a5a3bc481984c99bf592aa (patch)
tree647154c14f8a8de4f58da4b1bd272a5dfaf30efa /mesonbuild/modules/unstable_icestorm.py
parent495e76d10a65df9e19e96e5470d64644da0e8099 (diff)
downloadmeson-723c5227a471aff3a1a5a3bc481984c99bf592aa.zip
meson-723c5227a471aff3a1a5a3bc481984c99bf592aa.tar.gz
meson-723c5227a471aff3a1a5a3bc481984c99bf592aa.tar.bz2
modules: Remove snippet methods
The only advantage they have is they have the interpreter in arguments, but it's already available as self.interpreter. We should discourage usage of the interpreter API and rely on ModuleState object instead in the future. This also lift the restriction that a module method cannot add build targets, but that was not enforced for snippet methods anyway (and some modules were doing it) and it's really loose restriction as it should check for many other things if we wanted to make it consistent.
Diffstat (limited to 'mesonbuild/modules/unstable_icestorm.py')
-rw-r--r--mesonbuild/modules/unstable_icestorm.py19
1 files changed, 9 insertions, 10 deletions
diff --git a/mesonbuild/modules/unstable_icestorm.py b/mesonbuild/modules/unstable_icestorm.py
index 268c394..8746870 100644
--- a/mesonbuild/modules/unstable_icestorm.py
+++ b/mesonbuild/modules/unstable_icestorm.py
@@ -23,7 +23,6 @@ class IceStormModule(ExtensionModule):
@FeatureNew('FPGA/Icestorm Module', '0.45.0')
def __init__(self, interpreter):
super().__init__(interpreter)
- self.snippets.add('project')
self.yosys_bin = None
def detect_binaries(self, interpreter):
@@ -33,9 +32,9 @@ class IceStormModule(ExtensionModule):
self.iceprog_bin = interpreter.find_program_impl(['iceprog'])
self.icetime_bin = interpreter.find_program_impl(['icetime'])
- def project(self, interpreter, state, args, kwargs):
+ def project(self, state, args, kwargs):
if not self.yosys_bin:
- self.detect_binaries(interpreter)
+ self.detect_binaries(self.interpreter)
if not args:
raise mesonlib.MesonException('Project requires at least one argument, which is the project name.')
proj_name = args[0]
@@ -45,11 +44,11 @@ class IceStormModule(ExtensionModule):
kwarg_sources = kwargs.get('sources', [])
if not isinstance(kwarg_sources, list):
kwarg_sources = [kwarg_sources]
- all_sources = interpreter.source_strings_to_files(flatten(arg_sources + kwarg_sources))
+ all_sources = self.interpreter.source_strings_to_files(flatten(arg_sources + kwarg_sources))
if 'constraint_file' not in kwargs:
raise mesonlib.MesonException('Constraint file not specified.')
- constraint_file = interpreter.source_strings_to_files(kwargs['constraint_file'])
+ constraint_file = self.interpreter.source_strings_to_files(kwargs['constraint_file'])
if len(constraint_file) != 1:
raise mesonlib.MesonException('Constraint file must contain one and only one entry.')
blif_name = proj_name + '_blif'
@@ -61,26 +60,26 @@ class IceStormModule(ExtensionModule):
time_name = proj_name + '-time'
upload_name = proj_name + '-upload'
- blif_target = interpreter.func_custom_target(None, [blif_name], {
+ blif_target = self.interpreter.func_custom_target(None, [blif_name], {
'input': all_sources,
'output': blif_fname,
'command': [self.yosys_bin, '-q', '-p', 'synth_ice40 -blif @OUTPUT@', '@INPUT@']})
- asc_target = interpreter.func_custom_target(None, [asc_name], {
+ asc_target = self.interpreter.func_custom_target(None, [asc_name], {
'input': blif_target,
'output': asc_fname,
'command': [self.arachne_bin, '-q', '-d', '1k', '-p', constraint_file, '@INPUT@', '-o', '@OUTPUT@']})
- bin_target = interpreter.func_custom_target(None, [bin_name], {
+ bin_target = self.interpreter.func_custom_target(None, [bin_name], {
'input': asc_target,
'output': bin_fname,
'command': [self.icepack_bin, '@INPUT@', '@OUTPUT@'],
'build_by_default': True})
- interpreter.func_run_target(None, [upload_name], {
+ self.interpreter.func_run_target(None, [upload_name], {
'command': [self.iceprog_bin, bin_target]})
- interpreter.func_run_target(None, [time_name], {
+ self.interpreter.func_run_target(None, [time_name], {
'command': [self.icetime_bin, bin_target]})
def initialize(*args, **kwargs):