From bb76bcb7b10265ed2ad5e048c378529666ddcb6a Mon Sep 17 00:00:00 2001 From: Ansh Dadwal Date: Sat, 12 Apr 2025 18:11:46 +0530 Subject: [PATCH] `primp`: update to `0.14.0` --- .../recipes/{pyreqwest_impersonate => primp}/__init__.py | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) rename pythonforandroid/recipes/{pyreqwest_impersonate => primp}/__init__.py (81%) diff --git a/pythonforandroid/recipes/pyreqwest_impersonate/__init__.py b/pythonforandroid/recipes/primp/__init__.py similarity index 81% rename from pythonforandroid/recipes/pyreqwest_impersonate/__init__.py rename to pythonforandroid/recipes/primp/__init__.py index 7e8d5db9ae..b932eb3e61 100644 --- a/pythonforandroid/recipes/pyreqwest_impersonate/__init__.py +++ b/pythonforandroid/recipes/primp/__init__.py @@ -2,9 +2,9 @@ from pythonforandroid.recipe import RustCompiledComponentsRecipe -class Pyreqwest_impersonateRecipe(RustCompiledComponentsRecipe): - version = "v0.4.5" - url = "https://github.com/deedy5/pyreqwest_impersonate/archive/refs/tags/{version}.tar.gz" +class PrimpRecipe(RustCompiledComponentsRecipe): + version = "v0.14.0" + url = "https://github.com/deedy5/primp/archive/refs/tags/{version}.tar.gz" def get_recipe_env_post(self, arch, **kwargs): env = super().get_recipe_env(arch, **kwargs) @@ -30,4 +30,4 @@ def build_arch(self, arch): prebuild_(arch) -recipe = Pyreqwest_impersonateRecipe() +recipe = PrimpRecipe()