From c41a17f943e9d7b3c409f85817493eb696954ece Mon Sep 17 00:00:00 2001 From: zeppi Date: Fri, 2 Dec 2022 15:05:00 -0500 Subject: [PATCH] filetype recipe --- .github/workflows/deploy.yml | 2 +- .gitignore | 1 + buildozer.spec.arm64.ci | 2 +- recipes/filetype/__init__.py | 13 +++++++++++++ 4 files changed, 16 insertions(+), 2 deletions(-) create mode 100644 recipes/filetype/__init__.py diff --git a/.github/workflows/deploy.yml b/.github/workflows/deploy.yml index 1cacf53..b963190 100644 --- a/.github/workflows/deploy.yml +++ b/.github/workflows/deploy.yml @@ -2,7 +2,7 @@ name: Publish Assets on: push: - branches: [master] + branches: [master, update-deps-incremental] jobs: build_arm64_aar: diff --git a/.gitignore b/.gitignore index b39ffe8..0713181 100644 --- a/.gitignore +++ b/.gitignore @@ -19,3 +19,4 @@ p4a/pythonforandroid/bootstraps/lbry/build/templates/google-services.json p4a/*.apk p4a/*.aar +venv \ No newline at end of file diff --git a/buildozer.spec.arm64.ci b/buildozer.spec.arm64.ci index 94797f8..cfefe2e 100644 --- a/buildozer.spec.arm64.ci +++ b/buildozer.spec.arm64.ci @@ -39,7 +39,7 @@ version.filename = %(source.dir)s/main.py # (list) Application requirements # comma seperated e.g. requirements = sqlite3,kivy -requirements = python3crystax, openssl, sqlite3, hostpython3crystax, android, distro==1.4.0, pyjnius, certifi==2021.5.30, appdirs==1.4.3, docopt==0.6.2, base58==1.0.0, colorama==0.3.7, ecdsa==0.13.3, jsonschema==2.6.0, pbkdf2==1.3, pyyaml, protobuf==3.6.1, keyring==21.0.0, defusedxml, netifaces, aioupnp==0.0.17, asn1crypto, mock, cryptography, aiohttp==3.6.0, multidict==4.5.2, idna, yarl==1.3.0, chardet==3.0.4, async_timeout==3.0.1, coincurve, msgpack==0.6.1, six, attrs==18.2.0, pylru, hachoir, prometheus_client==0.8.0, "git+https://github.com/lbryio/lbry-sdk@v0.112.0#egg=lbry" +requirements = python3crystax, openssl, sqlite3, hostpython3crystax, android, distro==1.4.0, pyjnius, certifi==2021.5.30, appdirs==1.4.3, docopt==0.6.2, base58==1.0.0, colorama==0.3.7, ecdsa==0.13.3, jsonschema==2.6.0, pbkdf2==1.3, pyyaml, protobuf==3.6.1, keyring==21.0.0, defusedxml, filetype, netifaces, aioupnp==0.0.17, asn1crypto, mock, cryptography, aiohttp==3.6.0, multidict==4.5.2, idna, yarl==1.3.0, chardet==3.0.4, async_timeout==3.0.1, coincurve, msgpack==0.6.1, six, attrs==18.2.0, pylru, hachoir, prometheus_client==0.8.0, "git+https://github.com/lbryio/lbry-sdk@v0.112.0#egg=lbry" # (str) Custom source folders for requirements # Sets custom source for any requirements with recipes diff --git a/recipes/filetype/__init__.py b/recipes/filetype/__init__.py new file mode 100644 index 0000000..5d7c104 --- /dev/null +++ b/recipes/filetype/__init__.py @@ -0,0 +1,13 @@ +from pythonforandroid.recipe import PythonRecipe + + +class FileTypeRecipe(PythonRecipe): + + # TODO: version + url = 'https://github.com/h2non/filetype.py/archive/refs/tags/v1.2.0.zip' + + depends = ['setuptools'] + + call_hostpython_via_targetpython = False + +recipe = FileTypeRecipe()