python-for-android icon indicating copy to clipboard operation
python-for-android copied to clipboard

Reportlab recipe

Open WojciechGdansk opened this issue 1 year ago • 2 comments

Please update reportlab recipe, the one already used is 8 years old. It might be the reason why I'm having following error image

WojciechGdansk avatar Mar 26 '24 17:03 WojciechGdansk

Well, i've got working the code below for your_app_dir/p4a-recipes/reportlab/__init__.py Don't forget to set p4a.local_recipes = ./p4a-recipes in your buildozer.spec file.

from pythonforandroid.recipe import PythonRecipe


class ReportLabRecipe(PythonRecipe):
    version = '90fe292c9df7'  # version 4.1.0
    url = 'https://hg.reportlab.com/hg-public/reportlab/archive/{version}.tar.gz'
    depends = ['freetype', 'setuptools']
    call_hostpython_via_targetpython = False


recipe = ReportLabRecipe()

unton83 avatar Apr 06 '24 12:04 unton83

Thanks, it didnt solve issue im facing but at least i know its not version problem:P There is some problem apparently with patch fix and buildozer crashes at this point

WojciechGdansk avatar Apr 11 '24 21:04 WojciechGdansk