Welcome to mirror list, hosted at ThFree Co, Russian Federation.

sdist.py « ci « scripts - dev.gajim.org/gajim/gajim.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 8aeda48b8c07feab40433fa8b5ebfed6cac97d1f (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
#!/usr/bin/env python3

import io
import zipfile
import subprocess
import shutil
from pathlib import Path
import requests

PLUGINS = [
    'plugin_installer',
]

PLUGINS_BASE_URL = 'https://ftp.gajim.org'
PLUGINS_FOLDER = Path('./gajim/data/plugins')


def get_plugins_url(plugin):
    return f'{PLUGINS_BASE_URL}/plugins_master_zip/{plugin}.zip'


def extraxt_zip(zip_bytes, path):
    print('Extract to', path)
    with zipfile.ZipFile(io.BytesIO(zip_bytes)) as zip_file:
        zip_file.extractall(path)


def download_plugins():
    PLUGINS_FOLDER.mkdir(parents=True)
    for plugin in PLUGINS:
        url = get_plugins_url(plugin)
        print('Download', url)
        req = requests.get(url)
        req.raise_for_status()
        extraxt_zip(req.content, PLUGINS_FOLDER)


def setup():
    print('Setup')
    subprocess.call(['python3', 'setup.py', 'sdist'])


def cleanup():
    print('Cleanup')
    shutil.rmtree(PLUGINS_FOLDER)


download_plugins()
setup()
cleanup()