vim update.py: allow different in and out files (#71798)
vim update.py: allow different in and out files
This commit is contained in:
commit
f82832e2f4
1 changed files with 42 additions and 11 deletions
|
@ -8,6 +8,7 @@
|
||||||
# linted:
|
# linted:
|
||||||
# $ nix run nixpkgs.python3Packages.flake8 -c flake8 --ignore E501,E265 update.py
|
# $ nix run nixpkgs.python3Packages.flake8 -c flake8 --ignore E501,E265 update.py
|
||||||
|
|
||||||
|
import argparse
|
||||||
import functools
|
import functools
|
||||||
import json
|
import json
|
||||||
import os
|
import os
|
||||||
|
@ -29,6 +30,8 @@ ATOM_LINK = "{http://www.w3.org/2005/Atom}link"
|
||||||
ATOM_UPDATED = "{http://www.w3.org/2005/Atom}updated"
|
ATOM_UPDATED = "{http://www.w3.org/2005/Atom}updated"
|
||||||
|
|
||||||
ROOT = Path(__file__).parent
|
ROOT = Path(__file__).parent
|
||||||
|
DEFAULT_IN = ROOT.joinpath("vim-plugin-names")
|
||||||
|
DEFAULT_OUT = ROOT.joinpath("generated.nix")
|
||||||
|
|
||||||
|
|
||||||
class Repo:
|
class Repo:
|
||||||
|
@ -209,9 +212,9 @@ def check_results(
|
||||||
|
|
||||||
def parse_plugin_line(line: str) -> Tuple[str, str, str]:
|
def parse_plugin_line(line: str) -> Tuple[str, str, str]:
|
||||||
try:
|
try:
|
||||||
name, repo = line.split('/')
|
name, repo = line.split("/")
|
||||||
try:
|
try:
|
||||||
repo, alias = repo.split(' as ')
|
repo, alias = repo.split(" as ")
|
||||||
return (name, repo, alias.strip())
|
return (name, repo, alias.strip())
|
||||||
except ValueError:
|
except ValueError:
|
||||||
# no alias defined
|
# no alias defined
|
||||||
|
@ -220,8 +223,7 @@ def parse_plugin_line(line: str) -> Tuple[str, str, str]:
|
||||||
return (None, None, None)
|
return (None, None, None)
|
||||||
|
|
||||||
|
|
||||||
def load_plugin_spec() -> List[Tuple[str, str]]:
|
def load_plugin_spec(plugin_file: str) -> List[Tuple[str, str]]:
|
||||||
plugin_file = ROOT.joinpath("vim-plugin-names")
|
|
||||||
plugins = []
|
plugins = []
|
||||||
with open(plugin_file) as f:
|
with open(plugin_file) as f:
|
||||||
for line in f:
|
for line in f:
|
||||||
|
@ -305,10 +307,10 @@ header = (
|
||||||
)
|
)
|
||||||
|
|
||||||
|
|
||||||
def generate_nix(plugins: List[Tuple[str, str, Plugin]]):
|
def generate_nix(plugins: List[Tuple[str, str, Plugin]], outfile: str):
|
||||||
sorted_plugins = sorted(plugins, key=lambda v: v[2].name.lower())
|
sorted_plugins = sorted(plugins, key=lambda v: v[2].name.lower())
|
||||||
|
|
||||||
with open(ROOT.joinpath("generated.nix"), "w+") as f:
|
with open(outfile, "w+") as f:
|
||||||
f.write(header)
|
f.write(header)
|
||||||
f.write(
|
f.write(
|
||||||
"""
|
"""
|
||||||
|
@ -338,15 +340,44 @@ let
|
||||||
}};
|
}};
|
||||||
"""
|
"""
|
||||||
)
|
)
|
||||||
f.write("""
|
f.write(
|
||||||
|
"""
|
||||||
});
|
});
|
||||||
in lib.fix' (lib.extends overrides packages)
|
in lib.fix' (lib.extends overrides packages)
|
||||||
""")
|
"""
|
||||||
print("updated generated.nix")
|
)
|
||||||
|
print(f"updated {outfile}")
|
||||||
|
|
||||||
|
|
||||||
|
def parse_args():
|
||||||
|
parser = argparse.ArgumentParser(
|
||||||
|
description=(
|
||||||
|
"Updates nix derivations for vim plugins"
|
||||||
|
f"By default from {DEFAULT_IN} to {DEFAULT_OUT}"
|
||||||
|
)
|
||||||
|
)
|
||||||
|
parser.add_argument(
|
||||||
|
"--input-names",
|
||||||
|
"-i",
|
||||||
|
dest="input_file",
|
||||||
|
default=DEFAULT_IN,
|
||||||
|
help="A list of plugins in the form owner/repo",
|
||||||
|
)
|
||||||
|
parser.add_argument(
|
||||||
|
"--out",
|
||||||
|
"-o",
|
||||||
|
dest="outfile",
|
||||||
|
default=DEFAULT_OUT,
|
||||||
|
help="Filename to save generated nix code",
|
||||||
|
)
|
||||||
|
|
||||||
|
return parser.parse_args()
|
||||||
|
|
||||||
|
|
||||||
def main() -> None:
|
def main() -> None:
|
||||||
plugin_names = load_plugin_spec()
|
|
||||||
|
args = parse_args()
|
||||||
|
plugin_names = load_plugin_spec(args.input_file)
|
||||||
current_plugins = get_current_plugins()
|
current_plugins = get_current_plugins()
|
||||||
cache = Cache(current_plugins)
|
cache = Cache(current_plugins)
|
||||||
|
|
||||||
|
@ -362,7 +393,7 @@ def main() -> None:
|
||||||
|
|
||||||
plugins = check_results(results)
|
plugins = check_results(results)
|
||||||
|
|
||||||
generate_nix(plugins)
|
generate_nix(plugins, args.outfile)
|
||||||
|
|
||||||
|
|
||||||
if __name__ == "__main__":
|
if __name__ == "__main__":
|
||||||
|
|
Loading…
Reference in a new issue