Gentoo Archives: gentoo-commits

From: "Michał Górny" <mgorny@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: dev-python/m2crypto/
Date: Sat, 10 Aug 2019 19:09:39
Message-Id: 1565464172.f333ea9d1f0fd732e193e444fb9cb2b8a8cd3b65.mgorny@gentoo
1 commit: f333ea9d1f0fd732e193e444fb9cb2b8a8cd3b65
2 Author: Michał Górny <mgorny <AT> gentoo <DOT> org>
3 AuthorDate: Sat Aug 10 18:20:06 2019 +0000
4 Commit: Michał Górny <mgorny <AT> gentoo <DOT> org>
5 CommitDate: Sat Aug 10 19:09:32 2019 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=f333ea9d
7
8 dev-python/m2crypto: Bump to 0.35.2
9
10 Signed-off-by: Michał Górny <mgorny <AT> gentoo.org>
11
12 dev-python/m2crypto/Manifest | 1 +
13 dev-python/m2crypto/m2crypto-0.35.2.ebuild | 51 ++++++++++++++++++++++++++++++
14 2 files changed, 52 insertions(+)
15
16 diff --git a/dev-python/m2crypto/Manifest b/dev-python/m2crypto/Manifest
17 index 7e9058b257c..7522684b833 100644
18 --- a/dev-python/m2crypto/Manifest
19 +++ b/dev-python/m2crypto/Manifest
20 @@ -1 +1,2 @@
21 DIST M2Crypto-0.31.0.tar.gz 1292016 BLAKE2B 3f1e0e8f686719ff87fa3a51cdc287be989fa1554866582deb1968fd04605270e14cbfd280f64211c043c5d8cb77a09e6a8cec6824ab15416ab94366aa73d2a3 SHA512 9f3e2afda4b8ac14aa64a1534e446eb6895ec7182ce5b7ded8008178e01139d383561a87f8c9fb5fe4b9c257ba5c6b93339955eb9e2f7417cd3f4832c35c4598
22 +DIST M2Crypto-0.35.2.tar.gz 1117706 BLAKE2B efa15e023be7755b94c642bb23eade912edcbbb76bcdfed3414d27937cd705ec4c83069ca620fe20e58e126549ba7f98e84f6f8330b78133a8a8b953d18f467b SHA512 3608b29a8e7d0732a2359e35fcaae191447aa7c0211ca3d057eed6cee7f0819f5c1121e7d41caca8cdea3c7911f8c447ee475b1b3d125e8dc3adde2718a59f36
23
24 diff --git a/dev-python/m2crypto/m2crypto-0.35.2.ebuild b/dev-python/m2crypto/m2crypto-0.35.2.ebuild
25 new file mode 100644
26 index 00000000000..986af95f307
27 --- /dev/null
28 +++ b/dev-python/m2crypto/m2crypto-0.35.2.ebuild
29 @@ -0,0 +1,51 @@
30 +# Copyright 2018-2019 Gentoo Authors
31 +# Distributed under the terms of the GNU General Public License v2
32 +
33 +EAPI=7
34 +
35 +PYTHON_COMPAT=( python2_7 python3_{5..7})
36 +PYTHON_REQ_USE="threads(+)"
37 +
38 +inherit distutils-r1
39 +
40 +MY_PN="M2Crypto"
41 +DESCRIPTION="A Python crypto and SSL toolkit"
42 +HOMEPAGE="https://gitlab.com/m2crypto/m2crypto https://pypi.org/project/M2Crypto/"
43 +SRC_URI="mirror://pypi/${MY_PN:0:1}/${MY_PN}/${MY_PN}-${PV}.tar.gz"
44 +
45 +LICENSE="MIT"
46 +SLOT="0"
47 +KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sparc ~x86 ~amd64-linux ~x86-linux ~x64-macos ~x86-macos"
48 +IUSE="libressl"
49 +
50 +RDEPEND="
51 + !libressl? ( dev-libs/openssl:0= )
52 + libressl? ( dev-libs/libressl:0= )
53 + virtual/python-typing[${PYTHON_USEDEP}]
54 +"
55 +DEPEND="${RDEPEND}"
56 +BDEPEND="
57 + >=dev-lang/swig-2.0.9
58 + dev-python/setuptools[${PYTHON_USEDEP}]
59 +"
60 +
61 +S="${WORKDIR}/${MY_PN}-${PV}"
62 +
63 +PATCHES=(
64 + "${FILESDIR}/${PN}-libressl-0.31.0.patch"
65 +)
66 +
67 +python_compile() {
68 + # setup.py looks at platform.machine() to determine swig options.
69 + # For exotic ABIs, we need to give swig a hint.
70 + # https://bugs.gentoo.org/617946
71 + local -x SWIG_FEATURES=
72 + case ${ABI} in
73 + x32) SWIG_FEATURES="-D__ILP32__" ;;
74 + esac
75 + distutils-r1_python_compile --openssl="${ESYSROOT}"/usr
76 +}
77 +
78 +python_test() {
79 + esetup.py test
80 +}