Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions pythonforandroid/recipes/enum34/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -6,5 +6,6 @@ class Enum34Recipe(PythonRecipe):
version = '1.0.4'
url = 'https://pypi.python.org/packages/source/e/enum34/enum34-{version}.tar.gz'
depends = ['python2']
site_packages_name = 'enum'

recipe = Enum34Recipe()
1 change: 1 addition & 0 deletions pythonforandroid/recipes/pycrypto/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,7 @@ class PyCryptoRecipe(CompiledComponentsPythonRecipe):
version = '2.6.1'
url = 'https://pypi.python.org/packages/source/p/pycrypto/pycrypto-{version}.tar.gz'
depends = ['openssl', 'python2']
site_packages_name = 'Crypto'

patches = ['add_length.patch']

Expand Down
1 change: 1 addition & 0 deletions pythonforandroid/recipes/pyusb/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@ class PyusbRecipe(PythonRecipe):
version = '1.0.0b1'
url = 'https://pypi.python.org/packages/source/p/pyusb/pyusb-{version}.tar.gz'
depends = [('python2', 'python3')]
site_packages_name = 'usb'

patches = ['fix-android.patch']

Expand Down
8 changes: 5 additions & 3 deletions pythonforandroid/recipes/zope_interface/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,14 +4,16 @@
import sh


class ZopeRecipe(PythonRecipe):
class ZopeInterfaceRecipe(PythonRecipe):
name = 'zope_interface'
version = '4.1.2'
url = 'https://pypi.python.org/packages/source/z/zope.interface/zope.interface-{version}.tar.gz'
site_packages_name = 'zope.interface'

depends = ['python2']

def build_arch(self, arch):
super(ZopeRecipe, self).build_arch(arch)
super(ZopeInterfaceRecipe, self).build_arch(arch)
print('Should remove zope tests etc. here, but skipping for now')

recipe = ZopeRecipe()
recipe = ZopeInterfaceRecipe()