Skip to content

Commit 3cc0657

Browse files
strubbi77AndreMiras
authored andcommitted
Update of Recipes for python3 test (#1622)
Update of Recipes for test of broken recipes because of invalid dependency graphs, refs #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

0 commit comments

Comments
 (0)