mirror of
https://github.com/Relintai/broken_seals_2d.git
synced 2024-11-11 20:35:10 +01:00
86 lines
2.8 KiB
Python
86 lines
2.8 KiB
Python
#!/usr/bin/env python
|
|
# -*- coding: utf-8 -*-
|
|
|
|
# Copyright (c) 2019-2021 Péter Magyar
|
|
#
|
|
# Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
# of this software and associated documentation files (the "Software"), to deal
|
|
# in the Software without restriction, including without limitation the rights
|
|
# to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
# copies of the Software, and to permit persons to whom the Software is
|
|
# furnished to do so, subject to the following conditions:
|
|
#
|
|
# The above copyright notice and this permission notice shall be included in all
|
|
# copies or substantial portions of the Software.
|
|
#
|
|
# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
# AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
# LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
# OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
|
# SOFTWARE.
|
|
|
|
import os
|
|
import subprocess
|
|
import json
|
|
import sys
|
|
|
|
import module_config
|
|
|
|
repository_index = 0
|
|
clone_command = 'git clone {0} {1}'
|
|
target_commits = {}
|
|
|
|
def setup_repository(data, clone_path, branch = 'master'):
|
|
cwd = os.getcwd()
|
|
|
|
full_path = cwd + clone_path + data[1] + '/'
|
|
|
|
if not os.path.isdir(full_path):
|
|
os.chdir(cwd + clone_path)
|
|
|
|
subprocess.call(clone_command.format(data[0][repository_index], data[1]), shell=True)
|
|
|
|
os.chdir(full_path)
|
|
|
|
subprocess.call('git reset', shell=True)
|
|
subprocess.call('git reset --hard', shell=True)
|
|
subprocess.call('git clean -f -d', shell=True)
|
|
subprocess.call('git checkout -B ' + branch + ' origin/' + branch, shell=True)
|
|
subprocess.call('git pull origin ' + branch, shell=True)
|
|
subprocess.call('git reset', shell=True)
|
|
subprocess.call('git reset --hard', shell=True)
|
|
|
|
target = ""
|
|
|
|
if data[1] in target_commits:
|
|
target = target_commits[data[1]][branch]
|
|
|
|
subprocess.call('git checkout -B ' + branch + ' ' + target, shell=True)
|
|
subprocess.call('git clean -f -d', shell=True)
|
|
subprocess.call('git reset', shell=True)
|
|
subprocess.call('git reset --hard', shell=True)
|
|
|
|
os.chdir(cwd)
|
|
|
|
engine_abspath = os.path.abspath(module_config.engine_repository[1])
|
|
|
|
if not os.path.isdir(engine_abspath):
|
|
if not os.path.isfile('./HEADS'):
|
|
print("Error! HEADS file doesn't exists! Exiting.")
|
|
exit()
|
|
|
|
with open('./HEADS', 'r') as infile:
|
|
target_commits = json.load(infile)
|
|
|
|
if 'repository_type=ssh' in sys.argv:
|
|
repository_index = 1
|
|
|
|
setup_repository(module_config.engine_repository, '/', module_config.pandemonium_branch)
|
|
|
|
|
|
SConscript("pandemonium_engine/misc/scripts_app/SConstruct")
|
|
|
|
|