diff options
author | Gustavo Zacarias <gustavo@zacarias.com.ar> | 2016-03-30 12:39:20 -0300 |
---|---|---|
committer | Thomas Petazzoni <thomas.petazzoni@free-electrons.com> | 2016-03-30 17:45:55 +0200 |
commit | 484c04878e5e76cdc0cc33c7646f98ab41698a7e (patch) | |
tree | a2f58f2b4a84b7a3df96bcc1b05fe080220a03cf /package/python-m2crypto/python-m2crypto.mk | |
parent | 41e12ab4b44614adb41dd6fb6dd5eadf3d01e107 (diff) | |
download | buildroot-484c04878e5e76cdc0cc33c7646f98ab41698a7e.tar.gz buildroot-484c04878e5e76cdc0cc33c7646f98ab41698a7e.zip |
python-m2crypto: remove
It only provided the host variant, which was only used by crda (no
longer necessary), and wasn't available as a host selection.
Signed-off-by: Gustavo Zacarias <gustavo@zacarias.com.ar>
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
Diffstat (limited to 'package/python-m2crypto/python-m2crypto.mk')
-rw-r--r-- | package/python-m2crypto/python-m2crypto.mk | 31 |
1 files changed, 0 insertions, 31 deletions
diff --git a/package/python-m2crypto/python-m2crypto.mk b/package/python-m2crypto/python-m2crypto.mk deleted file mode 100644 index 3d0e54eb4e..0000000000 --- a/package/python-m2crypto/python-m2crypto.mk +++ /dev/null @@ -1,31 +0,0 @@ -################################################################################ -# -# python-m2crypto -# -################################################################################ - -PYTHON_M2CRYPTO_VERSION = 0.24.0 -PYTHON_M2CRYPTO_SITE = http://pypi.python.org/packages/source/M/M2Crypto -PYTHON_M2CRYPTO_SOURCE = M2Crypto-$(PYTHON_M2CRYPTO_VERSION).tar.gz -PYTHON_M2CRYPTO_SETUP_TYPE = setuptools -HOST_PYTHON_M2CRYPTO_DEPENDENCIES = host-openssl host-swig - -PYTHON_M2CRYPTO_LICENSE = MIT -PYTHON_M2CRYPTO_LICENSE_FILES = LICENCE - -# We need to use python2 because m2crypto is not python3 compliant. -HOST_PYTHON_M2CRYPTO_NEEDS_HOST_PYTHON = python2 - -# The --openssl option that allows to specify a custom path to OpenSSL -# can only be used with the non-default build_ext setup.py command, -# and calling this command directly fails. To work around this, simply -# hardcode the path to OpenSSL in setup.py. -# Bug reported at https://gitlab.com/m2crypto/m2crypto/issues/89 -define HOST_PYTHON_M2CRYPTO_SET_OPENSSL_PATH - $(SED) "s%self.openssl = '/usr'%self.openssl = '$(HOST_DIR)/usr'%" \ - $(@D)/setup.py -endef - -HOST_PYTHON_M2CRYPTO_POST_PATCH_HOOKS += HOST_PYTHON_M2CRYPTO_SET_OPENSSL_PATH - -$(eval $(host-python-package)) |