diff --git a/recipes/ecdsa/recipe.sh b/recipes/ecdsa/recipe.sh new file mode 100755 index 0000000000..bd97ad5947 --- /dev/null +++ b/recipes/ecdsa/recipe.sh @@ -0,0 +1,40 @@ +#!/bin/bash + + +# version of your package +VERSION_ecdsa=${VERSION_ecdsa:-0.13} + +# dependencies of this recipe +DEPS_ecdsa=(python) + +# url of the package +URL_ecdsa=https://pypi.python.org/packages/source/e/ecdsa/ecdsa-$VERSION_ecdsa.tar.gz + +# md5 of the package +MD5_ecdsa=1f60eda9cb5c46722856db41a3ae6670 + +# default build path +BUILD_ecdsa=$BUILD_PATH/ecdsa/$(get_directory $URL_ecdsa) + +# default recipe path +RECIPE_ecdsa=$RECIPES_PATH/ecdsa + +# function called for preparing source code if needed +# (you can apply patch etc here.) +function prebuild_ecdsa() { + true +} + +# function called to build the source code +function build_ecdsa() { + cd $BUILD_ecdsa + push_arm + try $HOSTPYTHON setup.py install + pop_arm + +} + +# function called after all the compile have been done +function postbuild_ecdsa() { + true +} diff --git a/recipes/paramiko/recipe.sh b/recipes/paramiko/recipe.sh index c1bf4d05ec..276bb42dc3 100644 --- a/recipes/paramiko/recipe.sh +++ b/recipes/paramiko/recipe.sh @@ -1,9 +1,9 @@ #!/bin/bash -VERSION_paramiko=${VERSION_paramiko:-1.10.1} +VERSION_paramiko=${VERSION_paramiko:-1.15.2} DEPS_paramiko=(pycrypto python) URL_paramiko=http://pypi.python.org/packages/source/p/paramiko/paramiko-$VERSION_paramiko.tar.gz -MD5_paramiko=4ba105e2d8535496fd633889396b20b7 +MD5_paramiko=6bbfb328fe816c3d3652ba6528cc8b4c BUILD_paramiko=$BUILD_PATH/paramiko/$(get_directory $URL_paramiko) RECIPE_paramiko=$RECIPES_PATH/paramiko