mirror of
https://gitlab.com/fdroid/fdroidserver.git
synced 2024-11-13 02:30:11 +01:00
Merge commit 'refs/merge-requests/101' of git://gitorious.org/f-droid/fdroidserver into merge-requests/101
This commit is contained in:
commit
dc625cb472
@ -1254,6 +1254,41 @@ def getsrclib(spec, extlib_dir, sdk_path, basepath=False):
|
||||
raise BuildException('Error updating TintAddon project')
|
||||
return sdir
|
||||
|
||||
if name == 'EyesFree':
|
||||
sdir = os.path.join(extlib_dir, 'EyesFree')
|
||||
vcs = getvcs('git-svn',
|
||||
'http://eyes-free.googlecode.com/svn/trunk', sdir, sdk_path)
|
||||
vcs.gotorevision(ref)
|
||||
return sdir
|
||||
|
||||
if name == 'SL4A':
|
||||
sdir = os.path.join(extlib_dir, 'SL4A')
|
||||
vcs = getvcs('hg',
|
||||
'https://code.google.com/p/android-scripting', sdir, sdk_path)
|
||||
vcs.gotorevision(ref)
|
||||
return sdir
|
||||
|
||||
if name == 'GNUPG':
|
||||
sdir = os.path.join(extlib_dir, 'GNUPG')
|
||||
vcs = getvcs('git',
|
||||
'https://github.com/guardianproject/gnupg-for-android.git', sdir, sdk_path)
|
||||
vcs.gotorevision(ref)
|
||||
return sdir
|
||||
|
||||
if name == 'IOCipher':
|
||||
sdir = os.path.join(extlib_dir, 'IOCipher')
|
||||
vcs = getvcs('git',
|
||||
'https://github.com/guardianproject/IOCipher.git', sdir, sdk_path)
|
||||
vcs.gotorevision(ref)
|
||||
return sdir
|
||||
|
||||
if name == 'FFMPEG-Java':
|
||||
sdir = os.path.join(extlib_dir, 'FFMPEG-Java')
|
||||
vcs = getvcs('git',
|
||||
'https://github.com/guardianproject/android-ffmpeg-java.git', sdir, sdk_path)
|
||||
vcs.gotorevision(ref)
|
||||
return sdir
|
||||
|
||||
raise BuildException('Unknown srclib ' + name)
|
||||
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user