Skip to content

Commit 9b408fe

Browse files
committed
simplify deps of few recipes (dont depends upon hostpython directly, python is enough)
1 parent cb0f7b2 commit 9b408fe

File tree

4 files changed

+4
-4
lines changed

4 files changed

+4
-4
lines changed

recipes/mysql_connector/recipe.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
VERSION_mysql_connector=1.0.8
44
URL_mysql_connector=http://cdn.mysql.com/Downloads/Connector-Python/mysql-connector-python-$VERSION_mysql_connector.tar.gz
5-
DEPS_mysql_connector=()
5+
DEPS_mysql_connector=(python)
66
MD5_mysql_connector=1f2dd335c72684d51ee5d34f127d7ca9
77
BUILD_mysql_connector=$BUILD_PATH/mysql_connector/$(get_directory $URL_mysql_connector)
88
RECIPE_mysql_connector=$RECIPES_PATH/mysql_connector

recipes/paramiko/recipe.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
#!/bin/bash
22
VERSION_paramiko=1.10.1
3-
DEPS_paramiko=(pycrypto hostpython python)
3+
DEPS_paramiko=(pycrypto python)
44
URL_paramiko=http://pypi.python.org/packages/source/p/paramiko/paramiko-$VERSION_paramiko.tar.gz
55
MD5_paramiko=4ba105e2d8535496fd633889396b20b7
66
BUILD_paramiko=$BUILD_PATH/paramiko/$(get_directory $URL_paramiko)

recipes/pycrypto/recipe.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
VERSION_pycrypto=2.5
44
URL_pycrypto=http://pypi.python.org/packages/source/p/pycrypto/pycrypto-$VERSION_pycrypto.tar.gz
5-
DEPS_pycrypto=(openssl hostpython python)
5+
DEPS_pycrypto=(openssl python)
66
MD5_pycrypto=783e45d4a1a309e03ab378b00f97b291
77
BUILD_pycrypto=$BUILD_PATH/pycrypto/$(get_directory $URL_pycrypto)
88
RECIPE_pycrypto=$RECIPES_PATH/pycrypto

recipes/pyopenssl/recipe.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
VERSION_pyopenssl=0.13
44
URL_pyopenssl=http://pypi.python.org/packages/source/p/pyOpenSSL/pyOpenSSL-$VERSION_pyopenssl.tar.gz
5-
DEPS_pyopenssl=(openssl hostpython python)
5+
DEPS_pyopenssl=(openssl python)
66
MD5_pyopenssl= 767bca18a71178ca353dff9e10941929
77
BUILD_pyopenssl=$BUILD_PATH/pyopenssl/$(get_directory $URL_pyopenssl)
88
RECIPE_pyopenssl=$RECIPES_PATH/pyopenssl

0 commit comments

Comments
 (0)