You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
40 lines
1.3 KiB
Python
40 lines
1.3 KiB
Python
import git
|
|
import tempfile
|
|
import argparse
|
|
import os
|
|
import shutil
|
|
import re
|
|
|
|
|
|
VERSION_BRANCH = re.compile("(master|\d+\.\d+)")
|
|
|
|
|
|
def main(upstream, dest, dev=True):
|
|
shutil.rmtree(dest, ignore_errors=True)
|
|
os.makedirs(dest, exist_ok=True)
|
|
with tempfile.TemporaryDirectory() as clone_path:
|
|
repo = git.Repo.clone_from(upstream, clone_path)
|
|
for branch in repo.refs:
|
|
if not branch.name.startswith("origin/"):
|
|
continue
|
|
name = branch.name[len("origin/"):]
|
|
if not VERSION_BRANCH.match(name):
|
|
continue
|
|
branch.checkout()
|
|
config_path = os.path.join(clone_path, "setup")
|
|
if os.path.exists(config_path):
|
|
shutil.copytree(config_path, os.path.join(dest, name))
|
|
print("Imported branch {}".format(name))
|
|
if dev:
|
|
shutil.copytree(".", os.path.join(dest, "dev"))
|
|
print("Imported dev")
|
|
|
|
|
|
if __name__ == "__main__":
|
|
parser = argparse.ArgumentParser()
|
|
parser.add_argument("--dev", action="store_true", help="Copy the local dir in /dev")
|
|
parser.add_argument("upstream", help="Path to Mailu git repository")
|
|
parser.add_argument("dest", help="Destination directory for data files")
|
|
args = parser.parse_args()
|
|
main(**vars(args))
|