Gentoo Archives: gentoo-commits

From: Louis Sautier <sbraz@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: dev-python/decorator/
Date: Sat, 14 Jul 2018 23:41:36
Message-Id: 1531611626.8cd2d5010b65ee86e1c8920f0f763fd68084016d.sbraz@gentoo
1 commit: 8cd2d5010b65ee86e1c8920f0f763fd68084016d
2 Author: Louis Sautier <sbraz <AT> gentoo <DOT> org>
3 AuthorDate: Sat Jul 14 23:40:26 2018 +0000
4 Commit: Louis Sautier <sbraz <AT> gentoo <DOT> org>
5 CommitDate: Sat Jul 14 23:40:26 2018 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=8cd2d501
7
8 dev-python/decorator: bump to 4.3.0
9
10 Package-Manager: Portage-2.3.42, Repoman-2.3.9
11
12 dev-python/decorator/Manifest | 1 +
13 dev-python/decorator/decorator-4.3.0.ebuild | 25 +++++++++++++++++++++++++
14 2 files changed, 26 insertions(+)
15
16 diff --git a/dev-python/decorator/Manifest b/dev-python/decorator/Manifest
17 index c3683cd8a91..09743d13457 100644
18 --- a/dev-python/decorator/Manifest
19 +++ b/dev-python/decorator/Manifest
20 @@ -1,2 +1,3 @@
21 DIST decorator-4.1.2.tar.gz 32325 BLAKE2B 19754506bf18f03748d61fe3cf85e13e91f5a7b4b3550cf087b1c9506fa2d10a4fb6c32914f7c2078a74ac34f5ffaf0edf8b15aa1f46d2eafa91926c40430dba SHA512 4a4b9dc39de9b3f00eae9b6829136f5d836355d3d719371440f69c33fdddf73636e9faaa8fc35829c64d5c5a61d968ea427267da944c524c22ad08b69fb6f0ff
22 DIST decorator-4.2.1.tar.gz 33376 BLAKE2B 29a03fb4af1de8c60c5ba4a4b30f59f8b1aa8bbde107b9d5719cc0a084c45b58f7e14ff2046d7247c43d57717db57aea0db52dc068d73a73188a0e022c058cbb SHA512 8a6fc53f830470fe15d4bf9dfe8cea434019aa2e1734e55f873dc617138a6ba75d63ddf50a3fcd21a8f67d9d1b19c35c75149d8cee157e909aff4873093c4e0e
23 +DIST decorator-4.3.0.tar.gz 33758 BLAKE2B c967440ba18205233e5b032f22553cdc33dbec8a3c285407317d47910ce7dbc884c9802d1591f36a08b3f2adc5532145c92965946af81ad167735a5d0a65f047 SHA512 63894b12af62ad357638b99290c34c2207ba33813b6cd8ed554236ef45a091f337b6eeee829b2af82f2e71699902e49aff49acfa22d5449a7833ba382cda2751
24
25 diff --git a/dev-python/decorator/decorator-4.3.0.ebuild b/dev-python/decorator/decorator-4.3.0.ebuild
26 new file mode 100644
27 index 00000000000..81c7464d33f
28 --- /dev/null
29 +++ b/dev-python/decorator/decorator-4.3.0.ebuild
30 @@ -0,0 +1,25 @@
31 +# Copyright 1999-2018 Gentoo Foundation
32 +# Distributed under the terms of the GNU General Public License v2
33 +
34 +EAPI=7
35 +
36 +PYTHON_COMPAT=( pypy{,3} python{2_7,3_{4,5,6}} )
37 +
38 +inherit distutils-r1
39 +
40 +DESCRIPTION="Simplifies the usage of decorators for the average programmer"
41 +HOMEPAGE="https://github.com/micheles/decorator https://pypi.org/project/decorator/"
42 +SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
43 +
44 +LICENSE="BSD"
45 +SLOT="0"
46 +KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86 ~amd64-fbsd ~amd64-linux ~x86-linux ~x64-macos"
47 +IUSE="doc"
48 +
49 +DEPEND="dev-python/setuptools[${PYTHON_USEDEP}]"
50 +
51 +DOCS=( docs/README.rst )
52 +
53 +python_test() {
54 + "${PYTHON}" src/tests/test.py || die "Tests fail with ${EPYTHON}"
55 +}