1
0

remove the kivy gui

We now use the qml gui on Android, and haven't been maintaining
the kivy GUI for a while.
This commit is contained in:
SomberNight
2023-08-30 13:11:33 +00:00
parent e8c0767ca7
commit b45c84f24f
182 changed files with 10 additions and 12398 deletions

View File

@@ -1,18 +0,0 @@
from pythonforandroid.recipes.kivy import KivyRecipe
assert KivyRecipe.depends == ['sdl2', 'pyjnius', 'setuptools', 'python3']
assert KivyRecipe.python_depends == ['certifi']
class KivyRecipePinned(KivyRecipe):
# kivy master 2020-12-10 (2.0.0 plus a few bugfixes)
version = "2debbc3b1484b14824112986cb03b1072a60fbfc"
sha512sum = "6cabb77860e63059ab4b0663b87f6396fa9133839b42db754628fc9a55f10b8d759466110e0763fd8dac40a49a03af276cb93b05076471d12db796e679f33d1d"
# mv "python_depends" into "depends" to ensure we can control what versions get installed
depends = [*KivyRecipe.depends, *KivyRecipe.python_depends]
python_depends = []
recipe = KivyRecipePinned()

View File

@@ -1,19 +0,0 @@
import os
from pythonforandroid.recipes.sdl2 import LibSDL2Recipe
from pythonforandroid.util import load_source
util = load_source('util', os.path.join(os.path.dirname(os.path.dirname(__file__)), 'util.py'))
assert LibSDL2Recipe._version == "2.0.9"
assert LibSDL2Recipe.depends == ['sdl2_image', 'sdl2_mixer', 'sdl2_ttf']
assert LibSDL2Recipe.python_depends == []
class LibSDL2RecipePinned(util.InheritedRecipeMixin, LibSDL2Recipe):
md5sum = None
sha512sum = "a78a4708b2bb5b35a7c7b7501eb3bd60a9aa3bb95a3d84e57763df4a377185e7312a94b66321eef7ca0d17255e4b402fc950e83ef0dbbd08f14ff1194107dc10"
recipe = LibSDL2RecipePinned()

View File

@@ -1,18 +0,0 @@
import os
from pythonforandroid.recipes.sdl2_image import LibSDL2Image
from pythonforandroid.util import load_source
util = load_source('util', os.path.join(os.path.dirname(os.path.dirname(__file__)), 'util.py'))
assert LibSDL2Image._version == "2.0.4"
assert LibSDL2Image.depends == []
assert LibSDL2Image.python_depends == []
class LibSDL2ImageRecipePinned(util.InheritedRecipeMixin, LibSDL2Image):
sha512sum = "7320a5c9111908d402fbb0c12a49eb359a6db645c0c86839793ebb1a5b75eaca7c85eb96851f3a0b4a68a2f06363c8189555afd4f1048a4a41447370eddd7e6a"
recipe = LibSDL2ImageRecipePinned()

View File

@@ -1,18 +0,0 @@
import os
from pythonforandroid.recipes.sdl2_mixer import LibSDL2Mixer
from pythonforandroid.util import load_source
util = load_source('util', os.path.join(os.path.dirname(os.path.dirname(__file__)), 'util.py'))
assert LibSDL2Mixer._version == "2.0.4"
assert LibSDL2Mixer.depends == []
assert LibSDL2Mixer.python_depends == []
class LibSDL2MixerPinned(util.InheritedRecipeMixin, LibSDL2Mixer):
sha512sum = "98c56069640668aaececa63748de21fc8f243c7d06386c45c43d0ee472bbb2595ccda644d9886ce5b95c3a3dee3c0a96903cf9a89ddc18d38f041133470699a3"
recipe = LibSDL2MixerPinned()

View File

@@ -1,18 +0,0 @@
import os
from pythonforandroid.recipes.sdl2_ttf import LibSDL2TTF
from pythonforandroid.util import load_source
util = load_source('util', os.path.join(os.path.dirname(os.path.dirname(__file__)), 'util.py'))
assert LibSDL2TTF._version == "2.0.15"
assert LibSDL2TTF.depends == []
assert LibSDL2TTF.python_depends == []
class LibSDL2TTFPinned(util.InheritedRecipeMixin, LibSDL2TTF):
sha512sum = "30d685932c3dd6f2c94e2778357a5c502f0421374293d7102a64d92f9c7861229bf36bedf51c1a698b296a58c858ca442d97afb908b7df1592fc8d4f8ae8ddfd"
recipe = LibSDL2TTFPinned()