mirror of
https://github.com/f-droid/fdroidserver.git
synced 2025-09-15 15:32:30 +03:00
Add srclib
This commit is contained in:
parent
95a70d0e0e
commit
910f35e415
1 changed files with 11 additions and 0 deletions
|
@ -1582,6 +1582,17 @@ def getsrclib(spec, extlib_dir, sdk_path, basepath=False):
|
||||||
raise BuildException('Error updating HoloColorPicker project')
|
raise BuildException('Error updating HoloColorPicker project')
|
||||||
return sdir
|
return sdir
|
||||||
|
|
||||||
|
if name == 'ColorPickerPreference':
|
||||||
|
sdir = os.path.join(extlib_dir, 'ColorPickerPreference')
|
||||||
|
vcs = getvcs('git',
|
||||||
|
'https://github.com/frigus02/HoloColorPicker', 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 ColorPickerPreference project')
|
||||||
|
return sdir
|
||||||
|
|
||||||
if name == 'ChartLib':
|
if name == 'ChartLib':
|
||||||
sdir = os.path.join(extlib_dir, 'ChartLib')
|
sdir = os.path.join(extlib_dir, 'ChartLib')
|
||||||
vcs = getvcs('git',
|
vcs = getvcs('git',
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue