mirror of https://github.com/procxx/kepka.git
Upload full source tarballs to assets.
This commit is contained in:
parent
1368d6e7db
commit
c1a241c7e7
|
@ -1,6 +1,6 @@
|
||||||
import os, sys, requests, pprint, re, json
|
import os, sys, requests, pprint, re, json
|
||||||
from uritemplate import URITemplate, expand
|
from uritemplate import URITemplate, expand
|
||||||
from subprocess import call
|
from subprocess import call, Popen, PIPE
|
||||||
from os.path import expanduser
|
from os.path import expanduser
|
||||||
|
|
||||||
changelog_file = '../../changelog.txt'
|
changelog_file = '../../changelog.txt'
|
||||||
|
@ -53,6 +53,59 @@ def checkResponseCode(result, right_code):
|
||||||
print('Wrong result code: ' + str(result.status_code) + ', should be ' + str(right_code))
|
print('Wrong result code: ' + str(result.status_code) + ', should be ' + str(right_code))
|
||||||
sys.exit(1)
|
sys.exit(1)
|
||||||
|
|
||||||
|
def getOutput(command):
|
||||||
|
p = Popen(command.split(), stdout=PIPE)
|
||||||
|
output, err = p.communicate()
|
||||||
|
if err != None or p.returncode != 0:
|
||||||
|
print('ERROR!')
|
||||||
|
print(err)
|
||||||
|
print(p.returncode)
|
||||||
|
sys.exit(1)
|
||||||
|
return output.decode('utf-8')
|
||||||
|
|
||||||
|
def prepareSources():
|
||||||
|
workpath = os.getcwd()
|
||||||
|
os.chdir('../..')
|
||||||
|
rootpath = os.getcwd()
|
||||||
|
finalpath = rootpath + '/out/Release/sources.tar'
|
||||||
|
if os.path.exists(finalpath):
|
||||||
|
os.remove(finalpath)
|
||||||
|
if os.path.exists(finalpath + '.gz'):
|
||||||
|
os.remove(finalpath + '.gz')
|
||||||
|
tmppath = rootpath + '/out/Release/tmp.tar'
|
||||||
|
print('Preparing source tarball...')
|
||||||
|
if (call(('git archive --prefix=tdesktop-' + version + '-full/ -o ' + finalpath + ' v' + version).split()) != 0):
|
||||||
|
os.remove(finalpath)
|
||||||
|
sys.exit(1)
|
||||||
|
lines = getOutput('git submodule foreach').split('\n')
|
||||||
|
for line in lines:
|
||||||
|
if len(line) == 0:
|
||||||
|
continue
|
||||||
|
match = re.match(r"^Entering '([^']+)'$", line)
|
||||||
|
if not match:
|
||||||
|
print('Bad line: ' + line)
|
||||||
|
sys.exit(1)
|
||||||
|
path = match.group(1)
|
||||||
|
revision = getOutput('git rev-parse v' + version + ':' + path).split('\n')[0]
|
||||||
|
print('Adding submodule ' + path + '...')
|
||||||
|
os.chdir(path)
|
||||||
|
if (call(('git archive --prefix=tdesktop-' + version + '-full/' + path + '/ ' + revision + ' -o ' + tmppath).split()) != 0):
|
||||||
|
os.remove(finalpath)
|
||||||
|
os.remove(tmppath)
|
||||||
|
sys.exit(1)
|
||||||
|
if (call(('gtar --concatenate --file=' + finalpath + ' ' + tmppath).split()) != 0):
|
||||||
|
os.remove(finalpath)
|
||||||
|
os.remove(tmppath)
|
||||||
|
sys.exit(1)
|
||||||
|
os.remove(tmppath)
|
||||||
|
os.chdir(rootpath)
|
||||||
|
print('Compressing...')
|
||||||
|
if (call(('gzip -9 ' + finalpath).split()) != 0):
|
||||||
|
os.remove(finalpath)
|
||||||
|
sys.exit(1)
|
||||||
|
os.chdir(workpath)
|
||||||
|
return finalpath + '.gz'
|
||||||
|
|
||||||
pp = pprint.PrettyPrinter(indent=2)
|
pp = pprint.PrettyPrinter(indent=2)
|
||||||
url = 'https://api.github.com/'
|
url = 'https://api.github.com/'
|
||||||
|
|
||||||
|
@ -152,6 +205,12 @@ files.append({
|
||||||
'mime': 'application/octet-stream',
|
'mime': 'application/octet-stream',
|
||||||
'label': 'Linux 32 bit: Binary',
|
'label': 'Linux 32 bit: Binary',
|
||||||
})
|
})
|
||||||
|
files.append({
|
||||||
|
'local': 'sources',
|
||||||
|
'remote': 'tdesktop-' + version + '-full.tar.gz',
|
||||||
|
'mime': 'application/x-gzip',
|
||||||
|
'label': 'Source code (tar.gz, full)',
|
||||||
|
})
|
||||||
|
|
||||||
r = requests.get(url + 'repos/telegramdesktop/tdesktop/releases/tags/v' + version)
|
r = requests.get(url + 'repos/telegramdesktop/tdesktop/releases/tags/v' + version)
|
||||||
if r.status_code == 404:
|
if r.status_code == 404:
|
||||||
|
@ -182,8 +241,8 @@ if r.status_code == 404:
|
||||||
sys.exit(1)
|
sys.exit(1)
|
||||||
|
|
||||||
changelog = changelog.strip()
|
changelog = changelog.strip()
|
||||||
print('Changelog: ');
|
print('Changelog: ')
|
||||||
print(changelog);
|
print(changelog)
|
||||||
|
|
||||||
r = requests.post(url + 'repos/telegramdesktop/tdesktop/releases', headers={'Authorization': 'token ' + access_token}, data=json.dumps({
|
r = requests.post(url + 'repos/telegramdesktop/tdesktop/releases', headers={'Authorization': 'token ' + access_token}, data=json.dumps({
|
||||||
'tag_name': 'v' + version,
|
'tag_name': 'v' + version,
|
||||||
|
@ -195,7 +254,7 @@ if r.status_code == 404:
|
||||||
checkResponseCode(r, 201)
|
checkResponseCode(r, 201)
|
||||||
|
|
||||||
tagname = 'v' + version
|
tagname = 'v' + version
|
||||||
call("git fetch origin".split());
|
call("git fetch origin".split())
|
||||||
if stable == 1:
|
if stable == 1:
|
||||||
call("git push launchpad {}:master".format(tagname).split())
|
call("git push launchpad {}:master".format(tagname).split())
|
||||||
else:
|
else:
|
||||||
|
@ -203,7 +262,7 @@ else:
|
||||||
call("git push --tags launchpad".split())
|
call("git push --tags launchpad".split())
|
||||||
|
|
||||||
r = requests.get(url + 'repos/telegramdesktop/tdesktop/releases/tags/v' + version)
|
r = requests.get(url + 'repos/telegramdesktop/tdesktop/releases/tags/v' + version)
|
||||||
checkResponseCode(r, 200);
|
checkResponseCode(r, 200)
|
||||||
|
|
||||||
release_data = r.json()
|
release_data = r.json()
|
||||||
#pp.pprint(release_data)
|
#pp.pprint(release_data)
|
||||||
|
@ -211,8 +270,8 @@ release_data = r.json()
|
||||||
release_id = release_data['id']
|
release_id = release_data['id']
|
||||||
print('Release ID: ' + str(release_id))
|
print('Release ID: ' + str(release_id))
|
||||||
|
|
||||||
r = requests.get(url + 'repos/telegramdesktop/tdesktop/releases/' + str(release_id) + '/assets');
|
r = requests.get(url + 'repos/telegramdesktop/tdesktop/releases/' + str(release_id) + '/assets')
|
||||||
checkResponseCode(r, 200);
|
checkResponseCode(r, 200)
|
||||||
|
|
||||||
assets = release_data['assets']
|
assets = release_data['assets']
|
||||||
for asset in assets:
|
for asset in assets:
|
||||||
|
@ -230,12 +289,15 @@ for asset in assets:
|
||||||
for file in files:
|
for file in files:
|
||||||
if 'already' in file:
|
if 'already' in file:
|
||||||
continue
|
continue
|
||||||
file_path = local_folder + file['backup_folder'] + '/' + file['local']
|
if file['local'] == 'sources':
|
||||||
|
file_path = prepareSources()
|
||||||
|
else:
|
||||||
|
file_path = local_folder + file['backup_folder'] + '/' + file['local']
|
||||||
if not os.path.isfile(file_path):
|
if not os.path.isfile(file_path):
|
||||||
print('Warning: file not found ' + file['local'])
|
print('Warning: file not found ' + file['local'])
|
||||||
continue
|
continue
|
||||||
|
|
||||||
upload_url = expand(release_data['upload_url'], {'name': file['remote'], 'label': file['label']}) + '&access_token=' + access_token;
|
upload_url = expand(release_data['upload_url'], {'name': file['remote'], 'label': file['label']}) + '&access_token=' + access_token
|
||||||
|
|
||||||
content = upload_in_chunks(file_path, 10)
|
content = upload_in_chunks(file_path, 10)
|
||||||
|
|
||||||
|
|
|
@ -22,7 +22,7 @@ Go to ***BuildPath*** and run
|
||||||
MACOSX_DEPLOYMENT_TARGET=10.12
|
MACOSX_DEPLOYMENT_TARGET=10.12
|
||||||
|
|
||||||
ruby -e "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/master/install)"
|
ruby -e "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/master/install)"
|
||||||
brew install automake cmake fdk-aac git lame libass libtool libvorbis libvpx ninja opus sdl shtool texi2html theora wget x264 xvid yasm pkg-config
|
brew install automake cmake fdk-aac git lame libass libtool libvorbis libvpx ninja opus sdl shtool texi2html theora wget x264 xvid yasm pkg-config gnu-tar
|
||||||
|
|
||||||
sudo xcode-select -s /Applications/Xcode.app/Contents/Developer
|
sudo xcode-select -s /Applications/Xcode.app/Contents/Developer
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue