chiark / gitweb /
Added two new srclibs - UITableView and ViewPagerTabs
authorCiaran Gultnieks <ciaran@ciarang.com>
Fri, 31 Aug 2012 14:35:26 +0000 (15:35 +0100)
committerCiaran Gultnieks <ciaran@ciarang.com>
Fri, 31 Aug 2012 14:35:26 +0000 (15:35 +0100)
fdroidserver/common.py

index 781a6f39e852bd7fdbf3081b269f96125c3fa818..06f1b6485314634de1408be53de295be0e08bdf4 100644 (file)
@@ -716,6 +716,27 @@ def getsrclib(spec, extlib_dir):
             raise BuildException('Error updating ViewPagerIndicator project')
         return sdir
 
+    if name == 'UITableView':
+        sdir = os.path.join(extlib_dir, 'UITableView')
+        vcs = getvcs('git',
+            'https://github.com/thiagolocatelli/android-uitableview.git', sdir)
+        vcs.gotorevision(ref)
+        libdir = os.path.join(sdir, 'android-uitableview')
+        if subprocess.call(['android', 'update', 'project', '-p',
+            libdir]) != 0:
+            raise BuildException('Error updating UITableView project')
+        return libdir
+
+    if name == 'ViewPagerTabs':
+        sdir = os.path.join(extlib_dir, 'ViewPagerTabs')
+        vcs = getvcs('git',
+            'https://github.com/astuetz/android-viewpagertabs.git', sdir)
+        vcs.gotorevision(ref)
+        if subprocess.call(['android', 'update', 'project', '-p',
+            sdir]) != 0:
+            raise BuildException('Error updating ViewPagerTabs project')
+        return sdir
+
     if name == 'ActionBar':
         sdir = os.path.join(extlib_dir, 'ActionBar')
         vcs = getvcs('git',