Gentoo Archives: gentoo-commits

From: "Anthony G. Basile" <blueness@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: dev-python/pyaes/
Date: Wed, 27 Sep 2017 08:23:15
Message-Id: 1506500562.ad1fbb7f10812c8ada3859c63a03ce779014550b.blueness@gentoo
1 commit: ad1fbb7f10812c8ada3859c63a03ce779014550b
2 Author: Anthony G. Basile <blueness <AT> gentoo <DOT> org>
3 AuthorDate: Wed Sep 27 08:22:42 2017 +0000
4 Commit: Anthony G. Basile <blueness <AT> gentoo <DOT> org>
5 CommitDate: Wed Sep 27 08:22:42 2017 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=ad1fbb7f
7
8 dev-python/pyaes: version bump to 1.6.1
9
10 Package-Manager: Portage-2.3.8, Repoman-2.3.1
11
12 dev-python/pyaes/Manifest | 1 +
13 dev-python/pyaes/pyaes-1.6.1.ebuild | 23 +++++++++++++++++++++++
14 2 files changed, 24 insertions(+)
15
16 diff --git a/dev-python/pyaes/Manifest b/dev-python/pyaes/Manifest
17 index bd982f1f516..d06be62275f 100644
18 --- a/dev-python/pyaes/Manifest
19 +++ b/dev-python/pyaes/Manifest
20 @@ -1 +1,2 @@
21 DIST pyaes-1.6.0.tar.gz 28237 SHA256 9cd5a54d914b1eebfb14fcb490315214b6a0304d9f1bb47e90d1d8e0b15ce92e SHA512 32f6bf998b7e200fc73b4852873f60067ac056d646ae87cd8ab55f3ec99c9e26fa2b418b67ba0264a8016311a5f0eb2d40c8e7f917c0715e19f5c3dbf6a8238e WHIRLPOOL 255679d20d40d7a9134465b39365bd6e077601e7882c2f17dd2d1e4198b88712782bfdb8d5d5dc7a74f5c8e5f124da0d396a3aa94dd2a858f53ec45fd8af7a61
22 +DIST pyaes-1.6.1.tar.gz 28536 SHA256 02c1b1405c38d3c370b085fb952dd8bea3fadcee6411ad99f312cc129c536d8f SHA512 00ce3babf72ea18b0de369860cd884058c7c6f3bd8b961c3ff591ef7d3dc0a69fabad5311f61c9f91d2f1a480c8512e34eeced5ec7145ed9f963bf91c5f8838a WHIRLPOOL 5dd013096329f669afc75bddf18c773d282f4b505185838cafab411ab4ba03b7dfa278e053f8c7101033bae0d3ad1c8d88548278917959116942909a2e095066
23
24 diff --git a/dev-python/pyaes/pyaes-1.6.1.ebuild b/dev-python/pyaes/pyaes-1.6.1.ebuild
25 new file mode 100644
26 index 00000000000..839a967746d
27 --- /dev/null
28 +++ b/dev-python/pyaes/pyaes-1.6.1.ebuild
29 @@ -0,0 +1,23 @@
30 +# Copyright 1999-2017 Gentoo Foundation
31 +# Distributed under the terms of the GNU General Public License v2
32 +
33 +EAPI=6
34 +
35 +PYTHON_COMPAT=( python2_7 python3_{4,5,6} )
36 +
37 +inherit distutils-r1
38 +
39 +DESCRIPTION="Pure-Python Implementation of the AES block-cipher and common modes of operation"
40 +HOMEPAGE="https://pypi.python.org/pypi/pyaes"
41 +SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
42 +
43 +LICENSE="MIT"
44 +SLOT="0"
45 +KEYWORDS="~amd64 ~x86"
46 +IUSE=""
47 +
48 +DEPEND="dev-python/setuptools[${PYTHON_USEDEP}]"
49 +
50 +python_test() {
51 + ${EPYTHON} tests/test-{aes,blockfeeder,util}.py || die
52 +}