Skip to content

Commit b18f0f7

Browse files
committed
Merge pull request kivy#404 from extra84/master
Update paramiko recipe
2 parents 8395e8a + 82e3f02 commit b18f0f7

File tree

2 files changed

+42
-2
lines changed

2 files changed

+42
-2
lines changed

recipes/ecdsa/recipe.sh

Lines changed: 40 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,40 @@
1+
#!/bin/bash
2+
3+
4+
# version of your package
5+
VERSION_ecdsa=${VERSION_ecdsa:-0.13}
6+
7+
# dependencies of this recipe
8+
DEPS_ecdsa=(python)
9+
10+
# url of the package
11+
URL_ecdsa=https://pypi.python.org/packages/source/e/ecdsa/ecdsa-$VERSION_ecdsa.tar.gz
12+
13+
# md5 of the package
14+
MD5_ecdsa=1f60eda9cb5c46722856db41a3ae6670
15+
16+
# default build path
17+
BUILD_ecdsa=$BUILD_PATH/ecdsa/$(get_directory $URL_ecdsa)
18+
19+
# default recipe path
20+
RECIPE_ecdsa=$RECIPES_PATH/ecdsa
21+
22+
# function called for preparing source code if needed
23+
# (you can apply patch etc here.)
24+
function prebuild_ecdsa() {
25+
true
26+
}
27+
28+
# function called to build the source code
29+
function build_ecdsa() {
30+
cd $BUILD_ecdsa
31+
push_arm
32+
try $HOSTPYTHON setup.py install
33+
pop_arm
34+
35+
}
36+
37+
# function called after all the compile have been done
38+
function postbuild_ecdsa() {
39+
true
40+
}

recipes/paramiko/recipe.sh

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
#!/bin/bash
22

3-
VERSION_paramiko=${VERSION_paramiko:-1.10.1}
3+
VERSION_paramiko=${VERSION_paramiko:-1.15.2}
44
DEPS_paramiko=(pycrypto python)
55
URL_paramiko=http://pypi.python.org/packages/source/p/paramiko/paramiko-$VERSION_paramiko.tar.gz
6-
MD5_paramiko=4ba105e2d8535496fd633889396b20b7
6+
MD5_paramiko=6bbfb328fe816c3d3652ba6528cc8b4c
77
BUILD_paramiko=$BUILD_PATH/paramiko/$(get_directory $URL_paramiko)
88
RECIPE_paramiko=$RECIPES_PATH/paramiko
99

0 commit comments

Comments
 (0)