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/decorator/
Date: Thu, 08 Apr 2021 07:42:02
Message-Id: 1617867714.6dd046b8dcc7d1819681f071c3fa78681c9244ec.mgorny@gentoo
1 commit: 6dd046b8dcc7d1819681f071c3fa78681c9244ec
2 Author: Michał Górny <mgorny <AT> gentoo <DOT> org>
3 AuthorDate: Thu Apr 8 06:23:51 2021 +0000
4 Commit: Michał Górny <mgorny <AT> gentoo <DOT> org>
5 CommitDate: Thu Apr 8 07:41:54 2021 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=6dd046b8
7
8 dev-python/decorator: Bump to 5.0.6
9
10 Signed-off-by: Michał Górny <mgorny <AT> gentoo.org>
11
12 dev-python/decorator/Manifest | 1 +
13 dev-python/decorator/decorator-5.0.6.ebuild | 21 +++++++++++++++++++++
14 2 files changed, 22 insertions(+)
15
16 diff --git a/dev-python/decorator/Manifest b/dev-python/decorator/Manifest
17 index 00b7d6bce12..494b7dc7570 100644
18 --- a/dev-python/decorator/Manifest
19 +++ b/dev-python/decorator/Manifest
20 @@ -2,3 +2,4 @@ DIST decorator-4.4.2.tar.gz 33629 BLAKE2B 5b2c6a1b6aba293d4b93444d4613e3c9af16bd
21 DIST decorator-5.0.0.tar.gz 33099 BLAKE2B c59a02c2a9c27342dcfdc96ecb89bb9d7f91add52a9e823963976d750b0197255e4c68f72b61f940f36fd09c504f7fa75a10c3cf0e17758fe707a79d332070ba SHA512 010e0ac6b8929b73afdfe57d41915cf56db3edcb2759ba6224bf589e5ff1780021ef9f65a628b530422665d3fc2f9b9b48e21db5e0f21053dbb5d0d20e8da194
22 DIST decorator-5.0.3.tar.gz 33035 BLAKE2B 5d9f071422ca7135f6a72f731a56c39e7c790f329d749cb4100c8cfc08d19ae84955e22d0fa335601982fcf896437b107f48831469002f319ecd7f354f49b3a3 SHA512 04272791c7b645341a7bcba7bf63287a9741a9e306e02ef63efea2b6c0535b1b49e5a36ad521872450635d04874bbd180fbc76bf2d6a5fbe894b309fc7bf4376
23 DIST decorator-5.0.5.tar.gz 33827 BLAKE2B c6155a2ad6eb1b0f08ea9aa5eaf165682915869a7cd9e465b792e15c8065763993fa0008e467fd3c11526d81f531107271aa795be00f7ae9b57a0a6e9b802fef SHA512 ba5269de8d7821547348902917dc503582ca4576482c149b42a8b3407d901cb14700996992dc9743a990a6bf347c80966bc82b92ffe95b7b0034736c3fbcaf83
24 +DIST decorator-5.0.6.tar.gz 33937 BLAKE2B 88784f44976f439d071c8a6bfa0df2842fec289ec9a87f51a22bdcc6324b65cce0d268d55ea66ef91f28810a00f86f120c95987489f79b11e74e9f2dd0d7f855 SHA512 686e3281724bc754fcb45a208f9d410db7d3258d639c72827c360bcc647c688ae229e333c5bd32d70a583deda41f7804cd9a09149f161a8cc60c02210950242f
25
26 diff --git a/dev-python/decorator/decorator-5.0.6.ebuild b/dev-python/decorator/decorator-5.0.6.ebuild
27 new file mode 100644
28 index 00000000000..156fd8d9b20
29 --- /dev/null
30 +++ b/dev-python/decorator/decorator-5.0.6.ebuild
31 @@ -0,0 +1,21 @@
32 +# Copyright 1999-2021 Gentoo Authors
33 +# Distributed under the terms of the GNU General Public License v2
34 +
35 +EAPI=7
36 +PYTHON_COMPAT=( pypy3 python3_{7..9} )
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 ~riscv ~s390 ~sparc ~x86 ~amd64-linux ~x86-linux ~x64-macos"
47 +
48 +DOCS=( CHANGES.md )
49 +
50 +python_test() {
51 + "${EPYTHON}" src/tests/test.py -v || die "Tests failed with ${EPYTHON}"
52 +}