Skip to content

Commit da46607

Browse files
committed
use https download for boost & zope
1 parent 7bf458f commit da46607

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

pythonforandroid/recipes/boost/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ class BoostRecipe(Recipe):
3636
'''
3737
version = '1.69.0'
3838
url = (
39-
'http://downloads.sourceforge.net/project/boost/'
39+
'https://downloads.sourceforge.net/project/boost/'
4040
'boost/{version}/boost_{version_underscore}.tar.bz2'
4141
)
4242
depends = ['python3']

pythonforandroid/recipes/zope/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
class ZopeRecipe(PythonRecipe):
77
name = 'zope'
88
version = '4.1.3'
9-
url = 'http://pypi.python.org/packages/source/z/zope.interface/zope.interface-{version}.tar.gz'
9+
url = 'https://pypi.python.org/packages/source/z/zope.interface/zope.interface-{version}.tar.gz'
1010

1111
depends = []
1212

0 commit comments

Comments
 (0)