diff options
author | Xavier Claessens <xavier.claessens@collabora.com> | 2020-08-29 16:49:41 -0400 |
---|---|---|
committer | Xavier Claessens <xclaesse@gmail.com> | 2020-09-13 13:54:47 -0400 |
commit | 6ec0b535ba75955d2c82fcf6baff895782a96bb0 (patch) | |
tree | a0c18a34d455c2e977992e710c87020ed17f718b /mesonbuild/scripts/externalproject.py | |
parent | 9d338200dacdf24c50259c309380200f8a53d5b5 (diff) | |
download | meson-6ec0b535ba75955d2c82fcf6baff895782a96bb0.zip meson-6ec0b535ba75955d2c82fcf6baff895782a96bb0.tar.gz meson-6ec0b535ba75955d2c82fcf6baff895782a96bb0.tar.bz2 |
external-project: Add typing annotation
Diffstat (limited to 'mesonbuild/scripts/externalproject.py')
-rw-r--r-- | mesonbuild/scripts/externalproject.py | 9 |
1 files changed, 5 insertions, 4 deletions
diff --git a/mesonbuild/scripts/externalproject.py b/mesonbuild/scripts/externalproject.py index 6c3a89c..6ed6264 100644 --- a/mesonbuild/scripts/externalproject.py +++ b/mesonbuild/scripts/externalproject.py @@ -17,11 +17,12 @@ import argparse import multiprocessing import subprocess from pathlib import Path +import typing as T from ..mesonlib import Popen_safe class ExternalProject: - def __init__(self, options): + def __init__(self, options: argparse.Namespace): self.name = options.name self.src_dir = options.srcdir self.build_dir = options.builddir @@ -46,13 +47,13 @@ class ExternalProject: with open(self.stampfile, 'w') as f: pass - def gnu_make(self): + def gnu_make(self) -> bool: p, o, e = Popen_safe([self.make, '--version']) if p.returncode == 0 and 'GNU Make' in o: return True return False - def build(self): + def build(self) -> int: make_cmd = [self.make] if not self.verbose: make_cmd.append('--quiet') @@ -73,7 +74,7 @@ class ExternalProject: return 0 - def _run(self, command): + def _run(self, command: T.List[str]) -> int: output = None if self.verbose else subprocess.DEVNULL p, o, e = Popen_safe(command, stderr=subprocess.STDOUT, stdout=output, cwd=self.build_dir) |