From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id E145E1382C5 for ; Thu, 24 Jun 2021 16:52:50 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 3587CE087C; Thu, 24 Jun 2021 16:52:50 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [IPv6:2001:470:ea4a:1:5054:ff:fec7:86e4]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 1EDCFE087C for ; Thu, 24 Jun 2021 16:52:49 +0000 (UTC) Received: from oystercatcher.gentoo.org (unknown [IPv6:2a01:4f8:202:4333:225:90ff:fed9:fc84]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 82C06340B29 for ; Thu, 24 Jun 2021 16:52:48 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 1D77B7A7 for ; Thu, 24 Jun 2021 16:52:47 +0000 (UTC) From: "Quentin Retornaz" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Quentin Retornaz" Message-ID: <1624553415.92cd2f9e131a8b4c263e6385dda663a20066b548.quentin@gentoo> Subject: [gentoo-commits] repo/proj/libressl:master commit in: dev-python/m2crypto/ X-VCS-Repository: repo/proj/libressl X-VCS-Files: dev-python/m2crypto/m2crypto-0.35.2-r1.ebuild X-VCS-Directories: dev-python/m2crypto/ X-VCS-Committer: quentin X-VCS-Committer-Name: Quentin Retornaz X-VCS-Revision: 92cd2f9e131a8b4c263e6385dda663a20066b548 X-VCS-Branch: master Date: Thu, 24 Jun 2021 16:52:47 +0000 (UTC) Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-commits@lists.gentoo.org X-Auto-Response-Suppress: DR, RN, NRN, OOF, AutoReply X-Archives-Salt: 8124c974-1fa0-483f-a986-14cf4fc844c6 X-Archives-Hash: 1b0b4e57ecad0c088eab13c34879288a commit: 92cd2f9e131a8b4c263e6385dda663a20066b548 Author: Quentin Retornaz retornaz com> AuthorDate: Thu Jun 24 16:50:15 2021 +0000 Commit: Quentin Retornaz retornaz com> CommitDate: Thu Jun 24 16:50:15 2021 +0000 URL: https://gitweb.gentoo.org/repo/proj/libressl.git/commit/?id=92cd2f9e dev-python/m2crypto: remove old Signed-off-by: Quentin Retornaz retornaz.com> dev-python/m2crypto/m2crypto-0.35.2-r1.ebuild | 63 --------------------------- 1 file changed, 63 deletions(-) diff --git a/dev-python/m2crypto/m2crypto-0.35.2-r1.ebuild b/dev-python/m2crypto/m2crypto-0.35.2-r1.ebuild deleted file mode 100644 index 07e83cb..0000000 --- a/dev-python/m2crypto/m2crypto-0.35.2-r1.ebuild +++ /dev/null @@ -1,63 +0,0 @@ -# Copyright 2018-2021 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=7 - -PYTHON_COMPAT=( python3_{6,7,8}) -PYTHON_REQ_USE="threads(+)" - -inherit distutils-r1 toolchain-funcs - -MY_PN="M2Crypto" -DESCRIPTION="A Python crypto and SSL toolkit" -HOMEPAGE="https://gitlab.com/m2crypto/m2crypto https://pypi.org/project/M2Crypto/" -SRC_URI="mirror://pypi/${MY_PN:0:1}/${MY_PN}/${MY_PN}-${PV}.tar.gz" - -LICENSE="MIT" -SLOT="0" -KEYWORDS="~alpha amd64 arm arm64 ~hppa ~ia64 ~mips ppc ppc64 s390 sparc x86 ~amd64-linux ~x86-linux ~x64-macos" - -RDEPEND=" - dev-libs/openssl:0= - $(python_gen_cond_dep ' - dev-python/typing[${PYTHON_USEDEP}] - ' -2) -" -DEPEND="${RDEPEND}" -BDEPEND=" - >=dev-lang/swig-2.0.9 - dev-python/setuptools[${PYTHON_USEDEP}] -" - -S="${WORKDIR}/${MY_PN}-${PV}" - -PATCHES=( - "${FILESDIR}/${PN}-libressl-0.31.0.patch" -) - -swig_define() { - local x - for x; do - if tc-cpp-is-true "defined(${x})"; then - SWIG_FEATURES+=" -D${x}" - fi - done -} - -python_compile() { - # setup.py looks at platform.machine() to determine swig options. - # For exotic ABIs, we need to give swig a hint. - local -x SWIG_FEATURES= - - # https://bugs.gentoo.org/617946 - swig_define __ILP32__ - - # https://bugs.gentoo.org/674112 - swig_define __ARM_PCS_VFP - - distutils-r1_python_compile --openssl="${ESYSROOT}"/usr -} - -python_test() { - esetup.py test -}