Gentoo Archives: gentoo-commits

From: Tim Harder <radhermit@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: dev-python/pycryptodome/
Date: Fri, 08 Sep 2017 01:11:56
Message-Id: 1504833096.bd57134fe6f51d3eca0ccbb34604c978bb10145b.radhermit@gentoo
1 commit: bd57134fe6f51d3eca0ccbb34604c978bb10145b
2 Author: Tim Harder <radhermit <AT> gentoo <DOT> org>
3 AuthorDate: Fri Sep 8 01:08:52 2017 +0000
4 Commit: Tim Harder <radhermit <AT> gentoo <DOT> org>
5 CommitDate: Fri Sep 8 01:11:36 2017 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=bd57134f
7
8 dev-python/pycryptodome: version bump to 3.4.7
9
10 dev-python/pycryptodome/Manifest | 1 +
11 dev-python/pycryptodome/pycryptodome-3.4.7.ebuild | 27 +++++++++++++++++++++++
12 2 files changed, 28 insertions(+)
13
14 diff --git a/dev-python/pycryptodome/Manifest b/dev-python/pycryptodome/Manifest
15 index 8d1e6415d5e..96678e44048 100644
16 --- a/dev-python/pycryptodome/Manifest
17 +++ b/dev-python/pycryptodome/Manifest
18 @@ -1,2 +1,3 @@
19 DIST pycryptodome-3.4.5.tar.gz 6968315 SHA256 356740c25bee66cf02fce496154f2b9699e5c75c1c6c7e382064d8b6c2cac2dd SHA512 666a90e0cd756b26212df29b2d88c7443bd12fcbf0db6afc6e251a4e92a8528d82495528610c834cd6c066eb384a83f075cb49d52c60c65af04c0e5ff3ce72f8 WHIRLPOOL 41f5d5f64eae7de88b8a6a86f6868a90e3b9eb73f3747cc8e95eb2f30225c3db5ec3b75c9cf92f3542069f3773a0f12a511b113d02046b22473559180d764c03
20 DIST pycryptodome-3.4.6.tar.gz 6968560 SHA256 9beefd5d4e468108b43609246274469783945a89123d2525356eb86026967c69 SHA512 40c9ea4cf7fca06bd7cd3a100e1d602e0130fbdcc75544ff1353ced2fae8925d29286200561832f2524a0f3db155a6924bb653d964408d4486aab694bf275cdc WHIRLPOOL e444e6cd45852427360ea32a04cbd2e645d0dc0866180fdcb4605ba8b59958580caee4d2fe5555754ba36e437138eed90866173b12a7869b2662a34bf933a11f
21 +DIST pycryptodome-3.4.7.tar.gz 6483140 SHA256 18d8dfe31bf0cb53d58694903e526be68f3cf48e6e3c6dfbbc1e7042b1693af7 SHA512 a328df1f3b2cfeccbb5984aca4c5cbd59e8a352c817e82411d2876b2494476027f63e61200b0cc87e9420e8b47e91fffe71865fb2c23a66da0276814641eaab0 WHIRLPOOL 421991b522e97850a5e07b38dac6ef4c76a0136feb437d319e7af901afdeb5ff2ebf40826c8c9cdc8e78429c6c2e57bc1c73fdf07e9a5de39fe3a96829f538a0
22
23 diff --git a/dev-python/pycryptodome/pycryptodome-3.4.7.ebuild b/dev-python/pycryptodome/pycryptodome-3.4.7.ebuild
24 new file mode 100644
25 index 00000000000..b77f9bf463b
26 --- /dev/null
27 +++ b/dev-python/pycryptodome/pycryptodome-3.4.7.ebuild
28 @@ -0,0 +1,27 @@
29 +# Copyright 1999-2017 Gentoo Foundation
30 +# Distributed under the terms of the GNU General Public License v2
31 +
32 +EAPI=6
33 +
34 +PYTHON_COMPAT=( python2_7 python3_{4,5,6} pypy{,3} )
35 +PYTHON_REQ_USE="threads(+)"
36 +
37 +inherit distutils-r1
38 +
39 +DESCRIPTION="A self-contained cryptographic library for Python"
40 +HOMEPAGE="https://www.pycryptodome.org https://github.com/Legrandin/pycryptodome https://pypi.python.org/pypi/pycryptodome"
41 +SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
42 +
43 +LICENSE="BSD-2 Unlicense"
44 +SLOT="0"
45 +KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~ppc ~ppc64 ~x86 ~ppc-aix ~amd64-linux ~arm-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~m68k-mint ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris"
46 +IUSE=""
47 +
48 +RDEPEND="dev-libs/gmp:0
49 + virtual/python-cffi[${PYTHON_USEDEP}]
50 + !dev-python/pycrypto"
51 +DEPEND="${RDEPEND}"
52 +
53 +python_test() {
54 + esetup.py test
55 +}