From 6095133025047130be56488ef893d2e94b7f6c05 Mon Sep 17 00:00:00 2001 From: Robert Pfeiffer Date: Thu, 15 Jun 2023 20:02:46 +0200 Subject: [PATCH] change pygame URL to maintained repo, new version --- pythonforandroid/recipes/pygame/__init__.py | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/pythonforandroid/recipes/pygame/__init__.py b/pythonforandroid/recipes/pygame/__init__.py index 99124deff7..d9c1b44ec2 100644 --- a/pythonforandroid/recipes/pygame/__init__.py +++ b/pythonforandroid/recipes/pygame/__init__.py @@ -13,8 +13,8 @@ class Pygame2Recipe(CompiledComponentsPythonRecipe): not part of the build. It's usable, but not complete. """ - version = '2.1.0' - url = 'https://github.com/pygame/pygame/archive/{version}.tar.gz' + version = '2.3.0' + url = 'https://github.com/pygame-community/pygame-ce/archive/{version}.tar.gz' site_packages_name = 'pygame' name = 'pygame' @@ -58,7 +58,6 @@ def prebuild_arch(self, arch): def get_recipe_env(self, arch): env = super().get_recipe_env(arch) - env['USE_SDL2'] = '1' env["PYGAME_CROSS_COMPILE"] = "TRUE" env["PYGAME_ANDROID"] = "TRUE" return env