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/pycryptodome/
Date: Tue, 02 Feb 2021 21:22:38
Message-Id: 1612300951.8370d0c2feb157ce3142c2ebdbfe7e1593621864.mgorny@gentoo
1 commit: 8370d0c2feb157ce3142c2ebdbfe7e1593621864
2 Author: Michał Górny <mgorny <AT> gentoo <DOT> org>
3 AuthorDate: Tue Feb 2 21:06:55 2021 +0000
4 Commit: Michał Górny <mgorny <AT> gentoo <DOT> org>
5 CommitDate: Tue Feb 2 21:22:31 2021 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=8370d0c2
7
8 dev-python/pycryptodome: Remove old
9
10 Signed-off-by: Michał Górny <mgorny <AT> gentoo.org>
11
12 dev-python/pycryptodome/pycryptodome-3.9.9.ebuild | 49 -----------------------
13 1 file changed, 49 deletions(-)
14
15 diff --git a/dev-python/pycryptodome/pycryptodome-3.9.9.ebuild b/dev-python/pycryptodome/pycryptodome-3.9.9.ebuild
16 deleted file mode 100644
17 index 856c0d07745..00000000000
18 --- a/dev-python/pycryptodome/pycryptodome-3.9.9.ebuild
19 +++ /dev/null
20 @@ -1,49 +0,0 @@
21 -# Copyright 1999-2021 Gentoo Authors
22 -# Distributed under the terms of the GNU General Public License v2
23 -
24 -EAPI=7
25 -
26 -PYTHON_COMPAT=( python3_{7..9} pypy3 )
27 -PYTHON_REQ_USE="threads(+)"
28 -
29 -inherit distutils-r1
30 -
31 -DESCRIPTION="A self-contained cryptographic library for Python"
32 -HOMEPAGE="https://www.pycryptodome.org
33 - https://github.com/Legrandin/pycryptodome/
34 - https://pypi.org/project/pycryptodome/"
35 -SRC_URI="
36 - https://github.com/Legrandin/pycryptodome/archive/v${PV}.tar.gz
37 - -> ${P}.tar.gz"
38 -
39 -LICENSE="BSD-2 Unlicense"
40 -SLOT="0"
41 -KEYWORDS="~alpha amd64 arm arm64 ~hppa ~ia64 ~mips ppc ppc64 s390 sparc x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris"
42 -IUSE=""
43 -
44 -DEPEND="
45 - dev-libs/gmp:0"
46 -BDEPEND="
47 - virtual/python-cffi[${PYTHON_USEDEP}]"
48 -RDEPEND="
49 - ${DEPEND}
50 - ${BDEPEND}
51 - !dev-python/pycrypto"
52 -
53 -PATCHES=(
54 - "${FILESDIR}/pycryptodome-3.9.4-parallel-make.patch"
55 -)
56 -
57 -distutils_enable_tests setup.py
58 -
59 -python_prepare_all() {
60 - # parallel make fixes
61 - # Multiple targets were compiling the same file, setuptools doesn't
62 - # understand this and you get race conditions where a file gets
63 - # overwritten while it's linking. This makes the files look like separate
64 - # files so this race won't happen
65 - ln src/blowfish.c src/blowfish_eks.c || die
66 - ln src/mont.c src/mont_math.c || die
67 -
68 - distutils-r1_python_prepare_all
69 -}