1
0
mirror of https://gitlab.com/fdroid/fdroidserver.git synced 2024-09-17 10:40:12 +02:00

LockPattern srclib

This commit is contained in:
David Black 2013-03-15 15:41:47 +00:00
parent 2ec7334048
commit cbfa2d35a4

View File

@ -1593,6 +1593,20 @@ def getsrclib(spec, extlib_dir, sdk_path, basepath=False):
vcs.gotorevision(ref)
return sdir
if name == 'LockPattern':
sdir = os.path.join(extlib_dir, 'LockPattern')
vcs = getvcs('hg',
'https://code.google.com/p/android-lockpattern', sdir, sdk_path)
vcs.gotorevision(ref)
libdir = os.path.join(sdir, 'code')
if subprocess.call([os.path.join(sdk_path, 'tools', 'android'),
'update', 'project', '-p',
libdir]) != 0:
raise BuildException('Error updating LockPattern project')
if basepath:
return sdir
return libdir
raise BuildException('Unknown srclib ' + name)