From dc695b139208ad9ecf540c053803be270541ec89 Mon Sep 17 00:00:00 2001 From: Mathieu Virbel Date: Sun, 29 Sep 2019 11:58:27 +0200 Subject: [PATCH] kivy: pin kivy version to have FBO fixes --- recipes/kivy/__init__.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/recipes/kivy/__init__.py b/recipes/kivy/__init__.py index 97d2fc9..a3e7b9c 100644 --- a/recipes/kivy/__init__.py +++ b/recipes/kivy/__init__.py @@ -9,7 +9,8 @@ logger = logging.getLogger(__name__) class KivyRecipe(CythonRecipe): - version = "1.11.0" + # post kivy 1.11.1, including Fbo depthbuffer fixes for iOS + version = "18f37ed6e29620ee53c2a7699e0e0894e06a7f91" url = "https://github.com/kivy/kivy/archive/{version}.zip" library = "libkivy.a" depends = ["sdl2", "sdl2_image", "sdl2_mixer", "sdl2_ttf", "ios",