diff --git a/fdroidserver/common.py b/fdroidserver/common.py index 7b60cb59..3dfb5976 100644 --- a/fdroidserver/common.py +++ b/fdroidserver/common.py @@ -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)