mirror of
https://github.com/mesonbuild/meson.git
synced 2026-06-24 08:48:03 +00:00
This replaces all of the Apache blurbs at the start of each file with an `# SPDX-License-Identifier: Apache-2.0` string. It also fixes existing uses to be consistent in capitalization, and to be placed above any copyright notices. This removes nearly 3000 lines of boilerplate from the project (only python files), which no developer cares to look at. SPDX is in common use, particularly in the Linux kernel, and is the recommended format for Meson's own `project(license: )` field
34 lines
908 B
Python
34 lines
908 B
Python
# SPDX-License-Identifier: Apache-2.0
|
|
# Copyright 2015 The Meson development team
|
|
|
|
from __future__ import annotations
|
|
import typing as T
|
|
|
|
from . import NewExtensionModule, ModuleInfo
|
|
from ..interpreterbase import noKwargs, noPosargs
|
|
|
|
if T.TYPE_CHECKING:
|
|
from . import ModuleState
|
|
from ..interpreter.interpreter import Interpreter
|
|
from ..interpreterbase.baseobjects import TYPE_kwargs, TYPE_var
|
|
|
|
|
|
class TestModule(NewExtensionModule):
|
|
|
|
INFO = ModuleInfo('modtest')
|
|
|
|
def __init__(self, interpreter: Interpreter) -> None:
|
|
super().__init__()
|
|
self.methods.update({
|
|
'print_hello': self.print_hello,
|
|
})
|
|
|
|
@noKwargs
|
|
@noPosargs
|
|
def print_hello(self, state: ModuleState, args: T.List[TYPE_var], kwargs: TYPE_kwargs) -> None:
|
|
print('Hello from a Meson module')
|
|
|
|
|
|
def initialize(interp: Interpreter) -> TestModule:
|
|
return TestModule(interp)
|