Skip to content

Commit 3cc0657

Browse files
strubbi77AndreMiras
authored andcommitted
Update of Recipes for python3 test (kivy#1622)
Update of Recipes for test of broken recipes because of invalid dependency graphs, refs kivy#1514
1 parent 230fb66 commit 3cc0657

File tree

59 files changed

+55
-62
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

59 files changed

+55
-62
lines changed

pythonforandroid/recipes/atom/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ class AtomRecipe(CppCompiledComponentsPythonRecipe):
55
site_packages_name = 'atom'
66
version = '0.3.10'
77
url = 'https://github.com/nucleic/atom/archive/master.zip'
8-
depends = ['python2', 'setuptools']
8+
depends = ['setuptools']
99

1010

1111
recipe = AtomRecipe()

pythonforandroid/recipes/babel/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ class BabelRecipe(PythonRecipe):
66
version = '2.2.0'
77
url = 'https://pypi.python.org/packages/source/B/Babel/Babel-{version}.tar.gz'
88

9-
depends = [('python2', 'python3crystax'), 'setuptools', 'pytz']
9+
depends = ['setuptools', 'pytz']
1010

1111
call_hostpython_via_targetpython = False
1212
install_in_hostpython = True

pythonforandroid/recipes/cdecimal/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ class CdecimalRecipe(CompiledComponentsPythonRecipe):
77
version = '2.3'
88
url = 'http://www.bytereef.org/software/mpdecimal/releases/cdecimal-{version}.tar.gz'
99

10-
depends = ['python2']
10+
depends = []
1111

1212
patches = ['locale.patch',
1313
'cross-compile.patch']

pythonforandroid/recipes/coverage/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ class CoverageRecipe(PythonRecipe):
77

88
url = 'https://pypi.python.org/packages/2d/10/6136c8e10644c16906edf4d9f7c782c0f2e7ed47ff2f41f067384e432088/coverage-{version}.tar.gz'
99

10-
depends = ['hostpython2', 'setuptools']
10+
depends = [('hostpython2', 'hostpython3'), 'setuptools']
1111

1212
patches = ['fallback-utf8.patch']
1313

pythonforandroid/recipes/dateutil/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ class DateutilRecipe(PythonRecipe):
66
version = '2.6.0'
77
url = 'https://pypi.python.org/packages/51/fc/39a3fbde6864942e8bb24c93663734b74e281b984d1b8c4f95d64b0c21f6/python-dateutil-2.6.0.tar.gz'
88

9-
depends = ['python2', "setuptools"]
9+
depends = ["setuptools"]
1010
call_hostpython_via_targetpython = False
1111
install_in_hostpython = True
1212

pythonforandroid/recipes/decorator/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ class DecoratorPyRecipe(PythonRecipe):
55
version = '4.2.1'
66
url = 'https://pypi.python.org/packages/source/d/decorator/decorator-{version}.tar.gz'
77
url = 'https://github.com/micheles/decorator/archive/{version}.tar.gz'
8-
depends = [('python2', 'python3crystax'), 'setuptools']
8+
depends = ['setuptools']
99
site_packages_name = 'decorator'
1010
call_hostpython_via_targetpython = False
1111

pythonforandroid/recipes/doubleratchet/__init__.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,6 @@ class DoubleRatchetRecipe(PythonRecipe):
66
version = '0.4.0'
77
url = 'https://pypi.python.org/packages/source/D/DoubleRatchet/DoubleRatchet-{version}.tar.gz'
88
depends = [
9-
('python2', 'python3crystax'),
109
'setuptools',
1110
'cryptography',
1211
]

pythonforandroid/recipes/enaml/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ class EnamlRecipe(CppCompiledComponentsPythonRecipe):
66
version = '0.9.8'
77
url = 'https://github.com/nucleic/enaml/archive/master.zip'
88
patches = ['0001-Update-setup.py.patch'] # Remove PyQt dependency
9-
depends = ['python2', 'setuptools', 'atom', 'kiwisolver']
9+
depends = ['setuptools', 'atom', 'kiwisolver']
1010

1111

1212
recipe = EnamlRecipe()

pythonforandroid/recipes/ethash/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ class EthashRecipe(PythonRecipe):
55

66
url = 'https://github.com/ethereum/ethash/archive/master.zip'
77

8-
depends = ['python2', 'setuptools']
8+
depends = ['setuptools']
99

1010

1111
recipe = EthashRecipe()

pythonforandroid/recipes/evdev/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ class EvdevRecipe(CompiledComponentsPythonRecipe):
66
version = 'v0.4.7'
77
url = 'https://github.com/gvalkov/python-evdev/archive/{version}.zip'
88

9-
depends = [('python2', 'python3crystax')]
9+
depends = []
1010

1111
build_cmd = 'build'
1212

pythonforandroid/recipes/gevent-websocket/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
class GeventWebsocketRecipe(PythonRecipe):
55
version = '0.9.5'
66
url = 'https://pypi.python.org/packages/source/g/gevent-websocket/gevent-websocket-{version}.tar.gz'
7-
depends = [('python2', 'python3crystax'), 'setuptools']
7+
depends = ['setuptools']
88
site_packages_name = 'geventwebsocket'
99
call_hostpython_via_targetpython = False
1010

pythonforandroid/recipes/groestlcoin_hash/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
class GroestlcoinHashRecipe(CythonRecipe):
55
version = '1.0.1'
66
url = 'https://github.com/Groestlcoin/groestlcoin-hash-python/archive/{version}.tar.gz'
7-
depends = ['python3crystax']
7+
depends = []
88
call_hostpython_via_targetpython = True
99
cythonize = False
1010

pythonforandroid/recipes/icu/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ class ICURecipe(NDKRecipe):
1111
version = '57.1'
1212
url = 'http://download.icu-project.org/files/icu4c/57.1/icu4c-57_1-src.tgz'
1313

14-
depends = [('python2', 'python3crystax'), 'hostpython2'] # installs in python
14+
depends = [('hostpython2', 'hostpython3')] # installs in python
1515
generated_libraries = [
1616
'libicui18n.so', 'libicuuc.so', 'libicudata.so', 'libicule.so']
1717

pythonforandroid/recipes/ifaddrs/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
class IFAddrRecipe(CompiledComponentsPythonRecipe):
1111
version = 'master'
1212
url = 'git+https://github.com/morristech/android-ifaddrs.git'
13-
depends = [('hostpython2', 'hostpython3'), ('python2', 'python3crystax')]
13+
depends = [('hostpython2', 'hostpython3')]
1414

1515
call_hostpython_via_targetpython = False
1616
site_packages_name = 'ifaddrs'

pythonforandroid/recipes/libgeos/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ class LibgeosRecipe(Recipe):
88
version = '3.5'
99
# url = 'http://download.osgeo.org/geos/geos-{version}.tar.bz2'
1010
url = 'https://github.com/libgeos/libgeos/archive/svn-{version}.zip'
11-
depends = ['python2']
11+
depends = []
1212

1313
def should_build(self, arch):
1414
super(LibgeosRecipe, self).should_build(arch)

pythonforandroid/recipes/libglob/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ class LibGlobRecipe(CompiledComponentsPythonRecipe):
2121
# and pushed in via patch
2222
name = 'libglob'
2323

24-
depends = [('hostpython2', 'hostpython3'), ('python2', 'python3crystax')]
24+
depends = [('hostpython2', 'hostpython3')]
2525
patches = ['glob.patch']
2626

2727
def should_build(self, arch):

pythonforandroid/recipes/libnacl/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
class LibNaClRecipe(PythonRecipe):
55
version = '1.4.4'
66
url = 'https://github.com/saltstack/libnacl/archive/v{version}.tar.gz'
7-
depends = ['hostpython2', 'setuptools', 'libsodium']
7+
depends = [('hostpython2', 'hostpython3'), 'setuptools', 'libsodium']
88
site_packages_name = 'libnacl'
99
call_hostpython_via_targetpython = False
1010

pythonforandroid/recipes/libpq/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
class LibpqRecipe(Recipe):
77
version = '9.5.3'
88
url = 'http://ftp.postgresql.org/pub/source/v{version}/postgresql-{version}.tar.bz2'
9-
depends = [('python2', 'python3crystax')]
9+
depends = []
1010

1111
def should_build(self, arch):
1212
return not os.path.isfile('{}/libpq.a'.format(self.ctx.get_libs_dir(arch.arch)))

pythonforandroid/recipes/libsodium/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
class LibsodiumRecipe(Recipe):
77
version = '1.0.16'
88
url = 'https://github.com/jedisct1/libsodium/releases/download/{version}/libsodium-{version}.tar.gz'
9-
depends = ['python2']
9+
depends = []
1010
patches = ['size_max_fix.patch']
1111

1212
def should_build(self, arch):

pythonforandroid/recipes/libtorrent/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ class LibtorrentRecipe(Recipe):
1111
version = '1.0.9'
1212
# Don't forget to change the URL when changing the version
1313
url = 'https://github.com/arvidn/libtorrent/archive/libtorrent-1_0_9.tar.gz'
14-
depends = ['boost', 'python2']
14+
depends = ['boost']
1515
opt_depends = ['openssl']
1616
patches = ['disable-so-version.patch', 'use-soname-python.patch', 'setup-lib-name.patch']
1717

pythonforandroid/recipes/libtribler/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ class LibTriblerRecipe(PythonRecipe):
1414
url = 'git+https://github.com/Tribler/tribler.git'
1515

1616
depends = ['apsw', 'cryptography', 'ffmpeg', 'libsodium', 'libtorrent', 'm2crypto',
17-
'netifaces', 'openssl', 'pil', 'pycrypto', 'pyleveldb', 'python2', 'twisted',
17+
'netifaces', 'openssl', 'pil', 'pycrypto', 'pyleveldb', 'twisted',
1818
]
1919

2020
python_depends = ['chardet', 'cherrypy', 'configobj', 'decorator', 'feedparser',

pythonforandroid/recipes/libzmq/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
class LibZMQRecipe(Recipe):
88
version = '4.1.4'
99
url = 'http://download.zeromq.org/zeromq-{version}.tar.gz'
10-
depends = ['python2']
10+
depends = []
1111

1212
def should_build(self, arch):
1313
super(LibZMQRecipe, self).should_build(arch)

pythonforandroid/recipes/m2crypto/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
class M2CryptoRecipe(CompiledComponentsPythonRecipe):
99
version = '0.30.1'
1010
url = 'https://pypi.python.org/packages/source/M/M2Crypto/M2Crypto-{version}.tar.gz'
11-
depends = [('python2', 'python3'), 'openssl', 'setuptools']
11+
depends = ['openssl', 'setuptools']
1212
site_packages_name = 'M2Crypto'
1313
call_hostpython_via_targetpython = False
1414

pythonforandroid/recipes/msgpack-python/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
class MsgPackRecipe(CythonRecipe):
55
version = '0.4.7'
66
url = 'https://pypi.python.org/packages/source/m/msgpack-python/msgpack-python-{version}.tar.gz'
7-
depends = [('python2', 'python3crystax'), "setuptools"]
7+
depends = ["setuptools"]
88
call_hostpython_via_targetpython = False
99

1010

pythonforandroid/recipes/mysqldb/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ class MysqldbRecipe(CompiledComponentsPythonRecipe):
88
url = 'https://pypi.python.org/packages/source/M/MySQL-python/MySQL-python-{version}.zip'
99
site_packages_name = 'MySQLdb'
1010

11-
depends = ['python2', 'setuptools', 'libmysqlclient']
11+
depends = ['setuptools', 'libmysqlclient']
1212

1313
patches = ['override-mysql-config.patch',
1414
'disable-zip.patch']

pythonforandroid/recipes/omemo-backend-signal/__init__.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,6 @@ class OmemoBackendSignalRecipe(PythonRecipe):
77
url = 'https://pypi.python.org/packages/source/o/omemo-backend-signal/omemo-backend-signal-{version}.tar.gz'
88
site_packages_name = 'omemo-backend-signal'
99
depends = [
10-
('python2', 'python3crystax'),
1110
'setuptools',
1211
'protobuf_cpp',
1312
'x3dh',

pythonforandroid/recipes/omemo/__init__.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,6 @@ class OmemoRecipe(PythonRecipe):
77
url = 'https://pypi.python.org/packages/source/O/OMEMO/OMEMO-{version}.tar.gz'
88
site_packages_name = 'omemo'
99
depends = [
10-
('python2', 'python3crystax'),
1110
'setuptools',
1211
'x3dh',
1312
'cryptography',

pythonforandroid/recipes/pil/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ class PILRecipe(CompiledComponentsPythonRecipe):
88
name = 'pil'
99
version = '1.1.7'
1010
url = 'http://effbot.org/downloads/Imaging-{version}.tar.gz'
11-
depends = [('python2', 'python2legacy'), 'png', 'jpeg', 'setuptools']
11+
depends = ['png', 'jpeg', 'setuptools']
1212
opt_depends = ['freetype']
1313
site_packages_name = 'PIL'
1414

pythonforandroid/recipes/preppy/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
class PreppyRecipe(PythonRecipe):
55
version = '27b7085'
66
url = 'https://bitbucket.org/rptlab/preppy/get/{version}.tar.gz'
7-
depends = [('python2', 'python3crystax')]
7+
depends = []
88
patches = ['fix-setup.patch']
99
call_hostpython_via_targetpython = False
1010

pythonforandroid/recipes/psycopg2/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
class Psycopg2Recipe(PythonRecipe):
77
version = 'latest'
88
url = 'http://initd.org/psycopg/tarballs/psycopg2-{version}.tar.gz'
9-
depends = [('python2', 'python3crystax'), 'libpq']
9+
depends = ['libpq']
1010
site_packages_name = 'psycopg2'
1111

1212
def prebuild_arch(self, arch):

pythonforandroid/recipes/pyaml/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
class PyamlRecipe(PythonRecipe):
55
version = "15.8.2"
66
url = 'https://pypi.python.org/packages/source/p/pyaml/pyaml-{version}.tar.gz'
7-
depends = [('python2', 'python3crystax'), "setuptools"]
7+
depends = ["setuptools"]
88
site_packages_name = 'yaml'
99
call_hostpython_via_targetpython = False
1010

pythonforandroid/recipes/pyasn1/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
class PyASN1Recipe(PythonRecipe):
66
version = '0.1.8'
77
url = 'https://pypi.python.org/packages/source/p/pyasn1/pyasn1-{version}.tar.gz'
8-
depends = [('python2', 'python3crystax')]
8+
depends = []
99

1010

1111
recipe = PyASN1Recipe()

pythonforandroid/recipes/pyethereum/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ class PyethereumRecipe(PythonRecipe):
66
url = 'https://github.com/ethereum/pyethereum/archive/{version}.tar.gz'
77

88
depends = [
9-
'python2', 'setuptools', 'pycryptodome', 'pysha3', 'ethash', 'scrypt'
9+
'setuptools', 'pycryptodome', 'pysha3', 'ethash', 'scrypt'
1010
]
1111

1212
call_hostpython_via_targetpython = False

pythonforandroid/recipes/pyicu/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
class PyICURecipe(CompiledComponentsPythonRecipe):
99
version = '1.9.2'
1010
url = 'https://pypi.python.org/packages/source/P/PyICU/PyICU-{version}.tar.gz'
11-
depends = [('python2', 'python3crystax'), "icu"]
11+
depends = ["icu"]
1212
patches = ['locale.patch', 'icu.patch']
1313

1414
def get_recipe_env(self, arch):

pythonforandroid/recipes/pyleveldb/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
class PyLevelDBRecipe(CompiledComponentsPythonRecipe):
77
version = '0.193'
88
url = 'https://pypi.python.org/packages/source/l/leveldb/leveldb-{version}.tar.gz'
9-
depends = ['snappy', 'leveldb', 'hostpython2', 'python2', 'setuptools']
9+
depends = ['snappy', 'leveldb', ('hostpython2', 'hostpython3'), 'setuptools']
1010
patches = ['bindings-only.patch']
1111
call_hostpython_via_targetpython = False # Due to setuptools
1212
site_packages_name = 'leveldb'

pythonforandroid/recipes/pynacl/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ class PyNaCLRecipe(CompiledComponentsPythonRecipe):
77
version = '1.3.0'
88
url = 'https://pypi.python.org/packages/source/P/PyNaCl/PyNaCl-{version}.tar.gz'
99

10-
depends = ['hostpython2', 'python2', 'six', 'setuptools', 'cffi', 'libsodium']
10+
depends = [('hostpython2', 'hostpython3'), 'six', 'setuptools', 'cffi', 'libsodium']
1111
call_hostpython_via_targetpython = False
1212

1313
def get_recipe_env(self, arch):

pythonforandroid/recipes/pyogg/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
class PyOggRecipe(PythonRecipe):
66
version = '0.6.4a1'
77
url = 'https://files.pythonhosted.org/packages/source/p/pyogg/PyOgg-{version}.tar.gz'
8-
depends = [('python2', 'python3crystax'), 'libogg', 'libvorbis', 'setuptools']
8+
depends = ['libogg', 'libvorbis', 'setuptools']
99
patches = [join('patches', 'fix-find-lib.patch')]
1010

1111
call_hostpython_via_targetpython = False

pythonforandroid/recipes/pyopenal/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
class PyOpenALRecipe(PythonRecipe):
66
version = '0.7.3a1'
77
url = 'https://files.pythonhosted.org/packages/source/p/pyopenal/PyOpenAL-{version}.tar.gz'
8-
depends = [('python2', 'python3crystax'), 'openal', 'numpy', 'setuptools']
8+
depends = ['openal', 'numpy', 'setuptools']
99
patches = [join('patches', 'fix-find-lib.patch')]
1010

1111
call_hostpython_via_targetpython = False

pythonforandroid/recipes/pyopenssl/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
class PyOpenSSLRecipe(PythonRecipe):
66
version = '16.0.0'
77
url = 'https://pypi.python.org/packages/source/p/pyOpenSSL/pyOpenSSL-{version}.tar.gz'
8-
depends = [('python2', 'python3crystax'), 'openssl', 'setuptools']
8+
depends = ['openssl', 'setuptools']
99
site_packages_name = 'OpenSSL'
1010

1111
call_hostpython_via_targetpython = False

pythonforandroid/recipes/pyproj/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
class PyProjRecipe(CythonRecipe):
55
version = '1.9.5.1'
66
url = 'https://github.com/jswhit/pyproj/archive/master.zip'
7-
depends = ['python2', 'setuptools']
7+
depends = ['setuptools']
88
call_hostpython_via_targetpython = False
99

1010

pythonforandroid/recipes/pyrxp/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
class PyRXPURecipe(CompiledComponentsPythonRecipe):
55
version = '2a02cecc87b9'
66
url = 'https://bitbucket.org/rptlab/pyrxp/get/{version}.tar.gz'
7-
depends = [('python2', 'python3crystax')]
7+
depends = []
88
patches = []
99

1010

pythonforandroid/recipes/pytz/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ class PytzRecipe(PythonRecipe):
66
version = '2015.7'
77
url = 'https://pypi.python.org/packages/source/p/pytz/pytz-{version}.tar.bz2'
88

9-
depends = [('python2', 'python3crystax')]
9+
depends = []
1010

1111
call_hostpython_via_targetpython = False
1212
install_in_hostpython = True

pythonforandroid/recipes/pyusb/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ class PyusbRecipe(PythonRecipe):
55
name = 'pyusb'
66
version = '1.0.0b1'
77
url = 'https://pypi.python.org/packages/source/p/pyusb/pyusb-{version}.tar.gz'
8-
depends = [('python2', 'python3crystax')]
8+
depends = []
99
site_packages_name = 'usb'
1010

1111
patches = ['fix-android.patch']

pythonforandroid/recipes/pyyaml/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
class PyYamlRecipe(PythonRecipe):
55
version = "3.12"
66
url = 'http://pyyaml.org/download/pyyaml/PyYAML-{version}.tar.gz'
7-
depends = [('python2', 'python3crystax'), "setuptools"]
7+
depends = ["setuptools"]
88
site_packages_name = 'pyyaml'
99

1010

0 commit comments

Comments
 (0)