mirror of
https://github.com/f-droid/fdroidserver.git
synced 2025-11-07 16:00:28 +03:00
Merge commit 'refs/merge-requests/110' of git://gitorious.org/f-droid/fdroidserver into merge-requests/110
This commit is contained in:
commit
ffe5be7977
1 changed files with 14 additions and 0 deletions
|
|
@ -1518,6 +1518,20 @@ def getsrclib(spec, extlib_dir, sdk_path, basepath=False):
|
||||||
vcs.gotorevision(ref)
|
vcs.gotorevision(ref)
|
||||||
return sdir
|
return sdir
|
||||||
|
|
||||||
|
if name == 'AnySoftKeyboardTools':
|
||||||
|
sdir = os.path.join(extlib_dir, 'AnySoftKeyboardTools')
|
||||||
|
vcs = getvcs('git',
|
||||||
|
'https://github.com/AnySoftKeyboard/AnySoftKeyboardTools', sdir, sdk_path)
|
||||||
|
vcs.gotorevision(ref)
|
||||||
|
return sdir
|
||||||
|
|
||||||
|
if name == 'DashClock':
|
||||||
|
sdir = os.path.join(extlib_dir, 'DashClock')
|
||||||
|
vcs = getvcs('git',
|
||||||
|
'https://code.google.com/p/dashclock', sdir, sdk_path)
|
||||||
|
vcs.gotorevision(ref)
|
||||||
|
return sdir
|
||||||
|
|
||||||
raise BuildException('Unknown srclib ' + name)
|
raise BuildException('Unknown srclib ' + name)
|
||||||
|
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue