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: Wed, 05 Aug 2020 15:10:40
Message-Id: 1596640162.6e3e47b2ed8dfca43182be7187ae637e37ee63b4.mgorny@gentoo
1 commit: 6e3e47b2ed8dfca43182be7187ae637e37ee63b4
2 Author: Michał Górny <mgorny <AT> gentoo <DOT> org>
3 AuthorDate: Wed Aug 5 15:09:22 2020 +0000
4 Commit: Michał Górny <mgorny <AT> gentoo <DOT> org>
5 CommitDate: Wed Aug 5 15:09:22 2020 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=6e3e47b2
7
8 dev-python/pycryptodome: Remove old
9
10 Signed-off-by: Michał Górny <mgorny <AT> gentoo.org>
11
12 dev-python/pycryptodome/Manifest | 1 -
13 dev-python/pycryptodome/pycryptodome-3.9.7.ebuild | 41 -----------------------
14 2 files changed, 42 deletions(-)
15
16 diff --git a/dev-python/pycryptodome/Manifest b/dev-python/pycryptodome/Manifest
17 index bc49c635b42..ddeadc268fc 100644
18 --- a/dev-python/pycryptodome/Manifest
19 +++ b/dev-python/pycryptodome/Manifest
20 @@ -1,2 +1 @@
21 -DIST pycryptodome-3.9.7.tar.gz 15451558 BLAKE2B dca2cf3500d4011b8c37937c3f844db3e8e4afbec2c421552bcdc08df32ae46d8a2dadfaa2d48aac2356374f30154d439cb9e988e1035c570b0adebc58b259e1 SHA512 2ee8ec1094ca2b3813c25b96c71988db479b23ea2e76937275d0fd6421653efd1ce7a1e279c7a20a9de7edcb59e0927121a42112b85afc052edcd6ab2db74c26
22 DIST pycryptodome-3.9.8.tar.gz 15633268 BLAKE2B 8c4f8d4839be0fb09556677514ee6c7f832684f20eb4e355cee87eb5b52a5c09e12712c1865ff89fb5dd6c628ca027374c7cab8a2287aafa4eecedf1095f1a12 SHA512 894e763720df284804fd686d5805980853b86773bb3097bf03d929818b9944e5a257e47414275f302966864751e50ae34dea19ad749910f1ceac31833a53ef7c
23
24 diff --git a/dev-python/pycryptodome/pycryptodome-3.9.7.ebuild b/dev-python/pycryptodome/pycryptodome-3.9.7.ebuild
25 deleted file mode 100644
26 index fc32975c8f9..00000000000
27 --- a/dev-python/pycryptodome/pycryptodome-3.9.7.ebuild
28 +++ /dev/null
29 @@ -1,41 +0,0 @@
30 -# Copyright 1999-2020 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_{6,7,8,9} pypy3 )
36 -PYTHON_REQ_USE="threads(+)"
37 -
38 -inherit distutils-r1
39 -
40 -DESCRIPTION="A self-contained cryptographic library for Python"
41 -HOMEPAGE="https://www.pycryptodome.org https://github.com/Legrandin/pycryptodome https://pypi.org/project/pycryptodome/"
42 -SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
43 -
44 -LICENSE="BSD-2 Unlicense"
45 -SLOT="0"
46 -KEYWORDS="~alpha amd64 arm arm64 hppa ~ia64 ~mips ppc ppc64 s390 sparc x86 ~ppc-aix ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~m68k-mint ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris"
47 -IUSE=""
48 -
49 -RDEPEND="dev-libs/gmp:0
50 - virtual/python-cffi[${PYTHON_USEDEP}]
51 - !dev-python/pycrypto"
52 -BDEPEND="${RDEPEND}"
53 -
54 -PATCHES=(
55 - "${FILESDIR}/pycryptodome-3.9.4-parallel-make.patch"
56 -)
57 -
58 -distutils_enable_tests setup.py
59 -
60 -python_prepare_all() {
61 - # parallel make fixes
62 - # Multiple targets were compiling the same file, setuptools doesn't
63 - # understand this and you get race conditions where a file gets
64 - # overwritten while it's linking. This makes the files look like separate
65 - # files so this race won't happen
66 - ln src/blowfish.c src/blowfish_eks.c || die
67 - ln src/mont.c src/mont_math.c || die
68 -
69 - distutils-r1_python_prepare_all
70 -}