aboutsummaryrefslogtreecommitdiff
path: root/ghwt.py
diff options
context:
space:
mode:
authorJussi Pakkanen <jpakkane@gmail.com>2016-05-05 23:18:05 +0300
committerJussi Pakkanen <jpakkane@gmail.com>2016-05-05 23:18:05 +0300
commiteb6548a816b7895a46b7203eb6be24f786371b40 (patch)
treee34ad849a66f6ab6960fbb6b01fa3d105a6d7207 /ghwt.py
parent8d73d3023aa150c60e4335280eb8684f20998725 (diff)
downloadmeson-eb6548a816b7895a46b7203eb6be24f786371b40.zip
meson-eb6548a816b7895a46b7203eb6be24f786371b40.tar.gz
meson-eb6548a816b7895a46b7203eb6be24f786371b40.tar.bz2
Created an emergency wraptool that downloads directly from Github.
Diffstat (limited to 'ghwt.py')
-rwxr-xr-xghwt.py107
1 files changed, 107 insertions, 0 deletions
diff --git a/ghwt.py b/ghwt.py
new file mode 100755
index 0000000..493b1e2
--- /dev/null
+++ b/ghwt.py
@@ -0,0 +1,107 @@
+#!/usr/bin/env python3
+
+# Copyright 2016 The Meson development team
+
+# Licensed under the Apache License, Version 2.0 (the "License");
+# you may not use this file except in compliance with the License.
+# You may obtain a copy of the License at
+
+# http://www.apache.org/licenses/LICENSE-2.0
+
+# Unless required by applicable law or agreed to in writing, software
+# distributed under the License is distributed on an "AS IS" BASIS,
+# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+# See the License for the specific language governing permissions and
+# limitations under the License.
+
+import urllib.request, json, sys, os, shutil, subprocess
+import configparser, hashlib
+
+private_repos = {'meson', 'wrapweb', 'meson-ci'}
+
+def gh_get(url):
+ r = urllib.request.urlopen(url)
+ jd = json.loads(r.read().decode('utf-8'))
+ return jd
+
+def list_projects():
+ jd = gh_get('https://api.github.com/orgs/mesonbuild/repos')
+ entries = [entry['name'] for entry in jd]
+ entries = [e for e in entries if e not in private_repos]
+ entries.sort()
+ for i in entries:
+ print(i)
+ return 0
+
+def unpack(sproj, branch, outdir):
+ subprocess.check_call(['git', 'clone', '-b', branch, 'https://github.com/mesonbuild/%s.git' % sproj, outdir])
+ usfile = os.path.join(outdir, 'upstream.wrap')
+ assert(os.path.isfile(usfile))
+ config = configparser.ConfigParser()
+ config.read(usfile)
+ us_url = config['wrap-file']['source_url']
+ us = urllib.request.urlopen(us_url).read()
+ h = hashlib.sha256()
+ h.update(us)
+ dig = h.hexdigest()
+ should = config['wrap-file']['source_hash']
+ if dig != should:
+ print('Incorrect hash on download.')
+ print(' expected:', dig)
+ print(' obtained:', should)
+ return 1
+ spdir = os.path.split(outdir)[0]
+ ofilename = os.path.join(spdir, config['wrap-file']['source_filename'])
+ ofile = open(ofilename, 'wb')
+ ofile.write(us)
+ if 'lead_directory_missing' in config['wrap-file']:
+ os.mkdir(outdir)
+ shutil.unpack_archive(ofilename, outdir)
+ else:
+ shutil.unpack_archive(ofilename, spdir)
+ extdir = os.path.join(spdir, config['wrap-file']['directory'])
+ assert(os.path.isdir(extdir))
+ shutil.move(os.path.join(outdir, '.git'), extdir)
+ subprocess.check_call(['git', 'reset', '--hard'], cwd=extdir)
+ shutil.rmtree(outdir)
+ shutil.move(extdir, outdir)
+ shutil.rmtree(os.path.join(outdir, '.git'))
+ os.unlink(ofilename)
+
+def install(sproj):
+ sproj_dir = os.path.join('subprojects', sproj)
+ if not os.path.isdir('subprojects'):
+ print('Run this in your source root and make sure there is a subprojects directory in it.')
+ return 1
+ if os.path.isdir(sproj_dir):
+ print('Subproject is already there. To update, nuke the dir and reinstall.')
+ return 1
+ blist = gh_get('https://api.github.com/repos/mesonbuild/%s/branches' % sproj)
+ blist = [b['name'] for b in blist]
+ blist = [b for b in blist if b != 'master']
+ blist.sort()
+ branch = blist[-1]
+ print('Using branch', branch)
+ return unpack(sproj, branch, sproj_dir)
+
+def run(args):
+ if len(args) == 0 or args[0] == '-h' or args[0] == '--help':
+ print(sys.argv[0], 'list/install', 'package_name')
+ return 1
+ command = args[0]
+ args = args[1:]
+ if command == 'list':
+ list_projects()
+ return 0
+ elif command == 'install':
+ if len(args) != 1:
+ print('Install requires exactly one argument.')
+ return 1
+ return install(args[0])
+ else:
+ print('Unknown command')
+ return 1
+
+if __name__ == '__main__':
+ print('This is an emergency wrap downloader. Use only when wrapdb is down.')
+ sys.exit(run(sys.argv[1:]))