Skip to content

Update paramiko recipe #404

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
Jun 30, 2015
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
40 changes: 40 additions & 0 deletions recipes/ecdsa/recipe.sh
Original file line number Diff line number Diff line change
@@ -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
}
4 changes: 2 additions & 2 deletions recipes/paramiko/recipe.sh
Original file line number Diff line number Diff line change
@@ -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

Expand Down