chiark / gitweb /
Some more kivy wip
authorCiaran Gultnieks <ciaran@ciarang.com>
Tue, 26 Nov 2013 22:06:45 +0000 (22:06 +0000)
committerCiaran Gultnieks <ciaran@ciarang.com>
Tue, 26 Nov 2013 22:06:45 +0000 (22:06 +0000)
buildserver/cookbooks/kivy/recipes/default.rb
fdroidserver/build.py

index d4cadc8bcaddf2adf640acfbb45dd51930eaea20..916c5bce1917680a5321ffc9a39fa8ad6f831bcb 100644 (file)
@@ -1,7 +1,7 @@
 
 user = node[:settings][:user]
 
-%w{cython python-pygame python-opengl python-gst0.10 python-enchant libgl1-mesa-dev libgles2-mesa-dev}.each do |pkg|
+%w{cython python-pygame python-pip python-opengl python-gst0.10 python-enchant libgl1-mesa-dev libgles2-mesa-dev}.each do |pkg|
   package pkg do
     action :install
   end
@@ -13,7 +13,7 @@ script "install-kivy" do
   code "
     tar xf /vagrant/cache/Kivy-1.7.2.tar.gz
     cd Kivy-1.7.2
-    sudo python setup.py install
+    python setup.py install
     cd ..
     rm -rf Kivy*
   "
@@ -25,6 +25,7 @@ script "install-p4a" do
   interpreter "bash"
   code "
     git clone git://github.com/kivy/python-for-android
+    chown -R vagrant:vagrant python-for-android
     cd python-for-android
     git checkout ca369d774e2
   "
index 6650106c77d559d9ec5b053472d7b6e461d8ebb9..5ab4488d4d642b82de6b88a4f08ed6950902da30 100644 (file)
@@ -539,13 +539,19 @@ def build_local(app, thisbuild, vcs, build_dir, output_dir, srclib_dir, extlib_d
         bconfig = ConfigParser(defaults, allow_no_value=True)
         bconfig.read(spec)
 
+        distdir = 'python-for-android/dist/fdroid'
+        if os.path.exists(distdir):
+            shutil.rmtree(distdir)
+
+        modules = bconfig.get('app', 'requirements').split(',')
 
         cmd = 'ANDROIDSDK=' + config['sdk_path']
         cmd += ' ANDROIDNDK=' + config['ndk_path']
         cmd += ' ANDROIDNDKVER=r9'
         cmd += ' ANDROIDAPI=' + str(bconfig.get('app', 'android.api'))
         cmd += ' ./distribute.sh'
-        cmd += ' -m ' + bconfig.get('app', 'requirements')
+        cmd += ' -m ' + "'" + ' '.join(modules) + "'" 
+        cmd += ' -d fdroid'
         if subprocess.call(cmd, cwd='python-for-android', shell=True) != 0:
             raise BuildException("Distribute build failed")
 
@@ -577,7 +583,7 @@ def build_local(app, thisbuild, vcs, build_dir, output_dir, srclib_dir, extlib_d
             cmd.extend(['--icon', os.path.join(root_dir, icon)])
 
         cmd.append('release')
-        p = FDroidPopen(cmd, cwd='python-for-android/dist/default')
+        p = FDroidPopen(cmd, cwd=distdir)
 
     elif thisbuild.get('gradle', 'no') != 'no':
         print "Building Gradle project..."