aboutsummaryrefslogtreecommitdiff
path: root/llvm/utils/release/clear-release-notes.py
blob: 3ea0298b43d4396624ed36ce2c8c392ce6cb6526 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
#!/usr/bin/env python3
# ===-- clear-release-notes.py  ---------------------------------------------===#
#
# Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
# See https://llvm.org/LICENSE.txt for license information.
# SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
#
# ===------------------------------------------------------------------------===#
#
# Clear release notes, which is needed when bumping trunk version.
#
# ===------------------------------------------------------------------------===#

import argparse
from pathlib import Path


def process_file(fpath: Path) -> None:
    # ReleaseNotes.rst/.md -> ReleaseNotesTemplate.txt
    template_path = fpath.with_name(f"{fpath.stem}Template.txt")
    fpath.write_text(template_path.read_text(), newline="\n")
    print(f"{fpath} updated.")


if __name__ == "__main__":
    parser = argparse.ArgumentParser()
    parser.add_argument(
        "-s",
        "--source-root",
        default=None,
        help="LLVM source root (/path/llvm-project). Defaults to the "
        "llvm-project the script is located in.",
    )

    args = parser.parse_args()

    # Find llvm-project root
    source_root = Path(__file__).resolve().parents[3]

    if args.source_root:
        source_root = Path(args.source_root).resolve()

    files_to_update = (
        "clang/docs/ReleaseNotes.rst",
        "clang-tools-extra/docs/ReleaseNotes.rst",
        "flang/docs/ReleaseNotes.md",
        "lld/docs/ReleaseNotes.rst",
        "llvm/docs/ReleaseNotes.md",
    )

    for f in files_to_update:
        process_file(source_root / f)