mirror of
https://github.com/f-droid/fdroidserver.git
synced 2025-09-15 23:42:37 +03:00
Merge commit 'refs/merge-requests/77' of git://gitorious.org/f-droid/fdroidserver into merge-requests/77
This commit is contained in:
commit
897e29c28f
1 changed files with 23 additions and 1 deletions
|
@ -979,7 +979,7 @@ def getsrclib(spec, extlib_dir, sdk_path):
|
||||||
raise BuildException("Maven build failed for BitcoinJWallet srclib")
|
raise BuildException("Maven build failed for BitcoinJWallet srclib")
|
||||||
return sdir
|
return sdir
|
||||||
|
|
||||||
if name == 'Android-Color-Picker':
|
if name == 'Color-Picker':
|
||||||
sdir = os.path.join(extlib_dir, 'Color-Picker')
|
sdir = os.path.join(extlib_dir, 'Color-Picker')
|
||||||
vcs = getvcs('git',
|
vcs = getvcs('git',
|
||||||
'https://github.com/brk3/android-color-picker.git', sdir, sdk_path)
|
'https://github.com/brk3/android-color-picker.git', sdir, sdk_path)
|
||||||
|
@ -990,6 +990,28 @@ def getsrclib(spec, extlib_dir, sdk_path):
|
||||||
raise BuildException('Error updating Color-Picker project')
|
raise BuildException('Error updating Color-Picker project')
|
||||||
return sdir
|
return sdir
|
||||||
|
|
||||||
|
if name == 'Processing-Multitouch':
|
||||||
|
sdir = os.path.join(extlib_dir, 'Processing-Multitouch')
|
||||||
|
vcs = getvcs('git',
|
||||||
|
'https://github.com/rjmarsan/AndroidProcessingMultitouch.git', sdir, sdk_path)
|
||||||
|
vcs.gotorevision(ref)
|
||||||
|
if subprocess.call([os.path.join(sdk_path, 'tools', 'android'),
|
||||||
|
'update', 'project', '-p',
|
||||||
|
sdir]) != 0:
|
||||||
|
raise BuildException('Error updating Multitouch project')
|
||||||
|
return sdir
|
||||||
|
|
||||||
|
if name == 'NewQuickAction3D':
|
||||||
|
sdir = os.path.join(extlib_dir, 'NewQuickAction3D')
|
||||||
|
vcs = getvcs('git',
|
||||||
|
'https://github.com/alt236/NewQuickAction3D.git', sdir, sdk_path)
|
||||||
|
vcs.gotorevision(ref)
|
||||||
|
if subprocess.call([os.path.join(sdk_path, 'tools', 'android'),
|
||||||
|
'update', 'project', '-p',
|
||||||
|
sdir]) != 0:
|
||||||
|
raise BuildException('Error updating NewQuickAction3D project')
|
||||||
|
return sdir
|
||||||
|
|
||||||
raise BuildException('Unknown srclib ' + name)
|
raise BuildException('Unknown srclib ' + name)
|
||||||
|
|
||||||
|
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue