diff --git a/pythonforandroid/recipes/cherrypy/__init__.py b/pythonforandroid/recipes/cherrypy/__init__.py deleted file mode 100644 index 6d3844b19c..0000000000 --- a/pythonforandroid/recipes/cherrypy/__init__.py +++ /dev/null @@ -1,12 +0,0 @@ -from pythonforandroid.recipe import PythonRecipe - - -class CherryPyRecipe(PythonRecipe): - version = '5.1.0' - url = 'https://bitbucket.org/cherrypy/cherrypy/get/{version}.tar.gz' - depends = ['setuptools'] - site_packages_name = 'cherrypy' - call_hostpython_via_targetpython = False - - -recipe = CherryPyRecipe() diff --git a/pythonforandroid/recipes/enum34/__init__.py b/pythonforandroid/recipes/enum34/__init__.py deleted file mode 100644 index 9a438c5503..0000000000 --- a/pythonforandroid/recipes/enum34/__init__.py +++ /dev/null @@ -1,22 +0,0 @@ -from pythonforandroid.recipe import PythonRecipe - - -class Enum34Recipe(PythonRecipe): - version = '1.1.6' - url = 'https://pypi.python.org/packages/source/e/enum34/enum34-{version}.tar.gz' - depends = ['setuptools'] - site_packages_name = 'enum' - call_hostpython_via_targetpython = False - - def should_build(self, arch): - if 'python3' in self.ctx.python_recipe.name: - # Since python 3.6 the enum34 library is no longer compatible with - # the standard library and it will cause errors, so we disable it - # in favour of the internal module, but we still add python3 to - # attribute `depends` because otherwise we will not be able to - # build the cryptography recipe. - return False - return super(Enum34Recipe, self).should_build(arch) - - -recipe = Enum34Recipe() diff --git a/pythonforandroid/recipes/gevent-websocket/__init__.py b/pythonforandroid/recipes/gevent-websocket/__init__.py deleted file mode 100644 index 598ca130c7..0000000000 --- a/pythonforandroid/recipes/gevent-websocket/__init__.py +++ /dev/null @@ -1,12 +0,0 @@ -from pythonforandroid.recipe import PythonRecipe - - -class GeventWebsocketRecipe(PythonRecipe): - version = '0.9.5' - url = 'https://pypi.python.org/packages/source/g/gevent-websocket/gevent-websocket-{version}.tar.gz' - depends = ['setuptools'] - site_packages_name = 'geventwebsocket' - call_hostpython_via_targetpython = False - - -recipe = GeventWebsocketRecipe() diff --git a/pythonforandroid/recipes/greenlet/__init__.py b/pythonforandroid/recipes/greenlet/__init__.py deleted file mode 100644 index 3f2043d57d..0000000000 --- a/pythonforandroid/recipes/greenlet/__init__.py +++ /dev/null @@ -1,11 +0,0 @@ -from pythonforandroid.recipe import CompiledComponentsPythonRecipe - - -class GreenletRecipe(CompiledComponentsPythonRecipe): - version = '0.4.15' - url = 'https://pypi.python.org/packages/source/g/greenlet/greenlet-{version}.tar.gz' - depends = ['setuptools'] - call_hostpython_via_targetpython = False - - -recipe = GreenletRecipe() diff --git a/pythonforandroid/recipes/idna/__init__.py b/pythonforandroid/recipes/idna/__init__.py deleted file mode 100644 index 22fa41f96f..0000000000 --- a/pythonforandroid/recipes/idna/__init__.py +++ /dev/null @@ -1,14 +0,0 @@ -from pythonforandroid.recipe import PythonRecipe - - -class IdnaRecipe(PythonRecipe): - name = 'idna' - version = '2.8' - url = 'https://github.com/kjd/idna/archive/v{version}.tar.gz' - - depends = ['setuptools'] - - call_hostpython_via_targetpython = False - - -recipe = IdnaRecipe() diff --git a/pythonforandroid/recipes/ipaddress/__init__.py b/pythonforandroid/recipes/ipaddress/__init__.py deleted file mode 100644 index edc9f422b0..0000000000 --- a/pythonforandroid/recipes/ipaddress/__init__.py +++ /dev/null @@ -1,11 +0,0 @@ -from pythonforandroid.recipe import PythonRecipe - - -class IpaddressRecipe(PythonRecipe): - name = 'ipaddress' - version = '1.0.22' - url = 'https://github.com/phihag/ipaddress/archive/v{version}.tar.gz' - depends = ['setuptools'] - - -recipe = IpaddressRecipe() diff --git a/pythonforandroid/recipes/libnacl/__init__.py b/pythonforandroid/recipes/libnacl/__init__.py deleted file mode 100644 index 3fc5da82f0..0000000000 --- a/pythonforandroid/recipes/libnacl/__init__.py +++ /dev/null @@ -1,12 +0,0 @@ -from pythonforandroid.recipe import PythonRecipe - - -class LibNaClRecipe(PythonRecipe): - version = '1.4.4' - url = 'https://github.com/saltstack/libnacl/archive/v{version}.tar.gz' - depends = [('hostpython2', 'hostpython3'), 'setuptools', 'libsodium'] - site_packages_name = 'libnacl' - call_hostpython_via_targetpython = False - - -recipe = LibNaClRecipe() diff --git a/pythonforandroid/recipes/pbkdf2/__init__.py b/pythonforandroid/recipes/pbkdf2/__init__.py deleted file mode 100644 index d1d5d7b442..0000000000 --- a/pythonforandroid/recipes/pbkdf2/__init__.py +++ /dev/null @@ -1,12 +0,0 @@ -from pythonforandroid.recipe import PythonRecipe - - -class Pbkdf2Recipe(PythonRecipe): - - # TODO: version - url = 'https://github.com/dlitz/python-pbkdf2/archive/master.zip' - - depends = ['setuptools'] - - -recipe = Pbkdf2Recipe() diff --git a/pythonforandroid/recipes/pyasn1/__init__.py b/pythonforandroid/recipes/pyasn1/__init__.py deleted file mode 100644 index 9befc59718..0000000000 --- a/pythonforandroid/recipes/pyasn1/__init__.py +++ /dev/null @@ -1,11 +0,0 @@ - -from pythonforandroid.recipe import PythonRecipe - - -class PyASN1Recipe(PythonRecipe): - version = '0.4.5' - url = 'https://pypi.python.org/packages/source/p/pyasn1/pyasn1-{version}.tar.gz' - depends = [] - - -recipe = PyASN1Recipe() diff --git a/pythonforandroid/recipes/pyethereum/__init__.py b/pythonforandroid/recipes/pyethereum/__init__.py deleted file mode 100644 index d18ad8ea0f..0000000000 --- a/pythonforandroid/recipes/pyethereum/__init__.py +++ /dev/null @@ -1,15 +0,0 @@ -from pythonforandroid.recipe import PythonRecipe - - -class PyethereumRecipe(PythonRecipe): - version = 'v1.6.1' - url = 'https://github.com/ethereum/pyethereum/archive/{version}.tar.gz' - - depends = [ - 'setuptools', 'pycryptodome', 'pysha3', 'ethash', 'scrypt' - ] - - call_hostpython_via_targetpython = False - - -recipe = PyethereumRecipe() diff --git a/pythonforandroid/recipes/pysdl2/__init__.py b/pythonforandroid/recipes/pysdl2/__init__.py index 0228f88152..b1dc9cbd36 100644 --- a/pythonforandroid/recipes/pysdl2/__init__.py +++ b/pythonforandroid/recipes/pysdl2/__init__.py @@ -1,4 +1,3 @@ - from pythonforandroid.recipe import PythonRecipe diff --git a/pythonforandroid/recipes/pyyaml/__init__.py b/pythonforandroid/recipes/pyyaml/__init__.py deleted file mode 100644 index fcd15d329f..0000000000 --- a/pythonforandroid/recipes/pyyaml/__init__.py +++ /dev/null @@ -1,11 +0,0 @@ -from pythonforandroid.recipe import PythonRecipe - - -class PyYamlRecipe(PythonRecipe): - version = "3.12" - url = 'http://pyyaml.org/download/pyyaml/PyYAML-{version}.tar.gz' - depends = ["setuptools"] - site_packages_name = 'pyyaml' - - -recipe = PyYamlRecipe() diff --git a/pythonforandroid/recipes/requests/__init__.py b/pythonforandroid/recipes/requests/__init__.py deleted file mode 100644 index 22a6268c3e..0000000000 --- a/pythonforandroid/recipes/requests/__init__.py +++ /dev/null @@ -1,12 +0,0 @@ -from pythonforandroid.recipe import PythonRecipe - - -class RequestsRecipe(PythonRecipe): - version = '2.13.0' - url = 'https://github.com/kennethreitz/requests/archive/v{version}.tar.gz' - depends = ['setuptools'] - site_packages_name = 'requests' - call_hostpython_via_targetpython = False - - -recipe = RequestsRecipe() diff --git a/pythonforandroid/recipes/simple-crypt/__init__.py b/pythonforandroid/recipes/simple-crypt/__init__.py deleted file mode 100644 index 94c5f510b8..0000000000 --- a/pythonforandroid/recipes/simple-crypt/__init__.py +++ /dev/null @@ -1,11 +0,0 @@ -from pythonforandroid.recipe import PythonRecipe - - -class SimpleCryptRecipe(PythonRecipe): - version = '4.1.7' - url = 'https://pypi.python.org/packages/source/s/simple-crypt/simple-crypt-{version}.tar.gz' - depends = ['pycrypto'] - site_packages_name = 'simplecrypt' - - -recipe = SimpleCryptRecipe() diff --git a/pythonforandroid/recipes/six/__init__.py b/pythonforandroid/recipes/six/__init__.py index ca68e189f8..43f15246a0 100644 --- a/pythonforandroid/recipes/six/__init__.py +++ b/pythonforandroid/recipes/six/__init__.py @@ -1,4 +1,3 @@ - from pythonforandroid.recipe import PythonRecipe