summaryrefslogtreecommitdiffstats
path: root/meta-python/recipes-devtools/python/python3-m2crypto_0.37.1.bb
diff options
context:
space:
mode:
authorzangrc <zangrc.fnst@fujitsu.com>2021-07-05 09:55:53 +0800
committerKhem Raj <raj.khem@gmail.com>2021-07-06 09:40:42 -0700
commiteb7030939983dc4fc5dfb29e4f0ef4e4b4d3f505 (patch)
treed91b9654b588215602e241f068311df28682bedb /meta-python/recipes-devtools/python/python3-m2crypto_0.37.1.bb
parentf7f1c9fb2d63ae4f5e06e91355295a17016b7502 (diff)
downloadmeta-openembedded-eb7030939983dc4fc5dfb29e4f0ef4e4b4d3f505.tar.gz
python3-m2crypto: upgrade 0.37.1 -> 0.38.0
0.38.0 - 2021-06-14 ------------------- - Remove the last use of setup.py test idiom. - Use m2_PyObject_AsReadBuffer instead of PyObject_AsReadBuffer. - Add support for arm64 big endian <Steev Klimaszewski> - Make support of RSA_SSLV23_PADDING optional (it has been deprecated). - Move project to src/ layout - Allow verify_cb_* to be called with ok=True <Casey Deccio> - Be prepared if any of constants in x509_vfy.h is not available. - But we do support 3.8 - We DO NOT support Python 2.6. Refresh the following patch: cross-compile-platform.patch 0001-Allow-verify_cb_-to-be-called-with-ok-True.patch 0001-Use-of-RSA_SSLV23_PADDING-has-been-deprecated.patch Removed since these are included in 0.38.0 Signed-off-by: Zang Ruochen <zangrc.fnst@fujitsu.com> Signed-off-by: Khem Raj <raj.khem@gmail.com> Signed-off-by: Trevor Gamblin <trevor.gamblin@windriver.com>
Diffstat (limited to 'meta-python/recipes-devtools/python/python3-m2crypto_0.37.1.bb')
-rw-r--r--meta-python/recipes-devtools/python/python3-m2crypto_0.37.1.bb48
1 files changed, 0 insertions, 48 deletions
diff --git a/meta-python/recipes-devtools/python/python3-m2crypto_0.37.1.bb b/meta-python/recipes-devtools/python/python3-m2crypto_0.37.1.bb
deleted file mode 100644
index b3da87fb7e..0000000000
--- a/meta-python/recipes-devtools/python/python3-m2crypto_0.37.1.bb
+++ /dev/null
@@ -1,48 +0,0 @@
1SUMMARY = "A Python crypto and SSL toolkit"
2HOMEPAGE = "https://gitlab.com/m2crypto/m2crypto"
3
4LICENSE = "MIT"
5LIC_FILES_CHKSUM = "file://LICENCE;md5=b0e1f0b7d0ce8a62c18b1287b991800e"
6
7FILESEXTRAPATHS_prepend := "${THISDIR}/python-m2crypto:"
8
9SRC_URI += "file://0001-setup.py-link-in-sysroot-not-in-host-directories.patch \
10 file://cross-compile-platform.patch \
11 file://0001-Allow-verify_cb_-to-be-called-with-ok-True.patch \
12 file://0001-Use-of-RSA_SSLV23_PADDING-has-been-deprecated.patch \
13 file://avoid-host-contamination.patch \
14 "
15SRC_URI[sha256sum] = "e4e42f068b78ccbf113e5d0a72ae5f480f6c3ace4940b91e4fff5598cfff6fb3"
16
17PYPI_PACKAGE = "M2Crypto"
18inherit pypi siteinfo setuptools3
19
20DEPENDS += "openssl swig-native"
21RDEPENDS_${PN} += "\
22 ${PYTHON_PN}-datetime \
23 ${PYTHON_PN}-distutils \
24 ${PYTHON_PN}-logging \
25 ${PYTHON_PN}-netclient \
26 ${PYTHON_PN}-netserver \
27 ${PYTHON_PN}-numbers \
28 ${PYTHON_PN}-smtpd \
29 ${PYTHON_PN}-xmlrpc \
30"
31
32DISTUTILS_BUILD_ARGS += "build_ext --openssl=${STAGING_EXECPREFIXDIR} -I${STAGING_INCDIR}"
33DISTUTILS_INSTALL_ARGS += "build_ext --openssl=${STAGING_EXECPREFIXDIR}"
34
35SWIG_FEATURES_x86 = "-D__i386__"
36SWIG_FEATURES_x32 = "-D__ILP32__"
37
38SWIG_FEATURES ?= "-D__${HOST_ARCH}__ ${@['-D__ILP32__','-D__LP64__'][d.getVar('SITEINFO_BITS') != '32']}"
39
40SWIG_FEATURES_append_riscv64 = " -D__SIZEOF_POINTER__=${SITEINFO_BITS}/8 -D__riscv_xlen=${SITEINFO_BITS}"
41SWIG_FEATURES_append_riscv32 = " -D__SIZEOF_POINTER__=${SITEINFO_BITS}/8 -D__riscv_xlen=${SITEINFO_BITS}"
42SWIG_FEATURES_append_mipsarch = " -D_MIPS_SZPTR=${SITEINFO_BITS}"
43SWIG_FEATURES_append_powerpc64le = " -D__powerpc64__"
44export SWIG_FEATURES
45
46export STAGING_DIR
47
48BBCLASSEXTEND = "native"