aboutsummaryrefslogtreecommitdiff
path: root/mesonbuild/modules/keyval.py
diff options
context:
space:
mode:
authorDylan Baker <dylan@pnwbakers.com>2022-07-14 12:59:48 -0700
committerEli Schwartz <eschwartz93@gmail.com>2022-08-17 16:25:36 -0400
commit6843f56f6b8e71e75c287de31686913eea5e4a44 (patch)
treea92e933d88d48dd2bfd4a1fc2bb652296f053332 /mesonbuild/modules/keyval.py
parent2801ead6d3a144f3cf7ae03f61bb463c7aeac0a9 (diff)
downloadmeson-6843f56f6b8e71e75c287de31686913eea5e4a44.zip
meson-6843f56f6b8e71e75c287de31686913eea5e4a44.tar.gz
meson-6843f56f6b8e71e75c287de31686913eea5e4a44.tar.bz2
modules: use module level information about new and deprecation
Instead of using FeatureNew/FeatureDeprecated in the module. The goal here is to be able to handle information about modules in a single place, instead of having to handle it separately. Each module simply defines some metadata, and then the interpreter handles the rest.
Diffstat (limited to 'mesonbuild/modules/keyval.py')
-rw-r--r--mesonbuild/modules/keyval.py7
1 files changed, 4 insertions, 3 deletions
diff --git a/mesonbuild/modules/keyval.py b/mesonbuild/modules/keyval.py
index 36daea8..94db567 100644
--- a/mesonbuild/modules/keyval.py
+++ b/mesonbuild/modules/keyval.py
@@ -15,9 +15,9 @@
import os
import typing as T
-from . import ExtensionModule
+from . import ExtensionModule, ModuleInfo
from .. import mesonlib
-from ..interpreterbase import FeatureNew, noKwargs, typed_pos_args
+from ..interpreterbase import noKwargs, typed_pos_args
if T.TYPE_CHECKING:
from ..interpreter import Interpreter
@@ -25,7 +25,8 @@ if T.TYPE_CHECKING:
class KeyvalModule(ExtensionModule):
- @FeatureNew('Keyval Module', '0.55.0')
+ INFO = ModuleInfo('keyval', '0.55.0')
+
def __init__(self, interp: 'Interpreter'):
super().__init__(interp)
self.methods.update({