Gentoo Archives: gentoo-commits

From: Arthur Zamarin <arthurzam@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: dev-python/retry-decorator/
Date: Sun, 29 May 2022 18:38:40
Message-Id: 1653849305.e6c78ebe3a1f8a505086864cfb11ed725c83ddef.arthurzam@gentoo
1 commit: e6c78ebe3a1f8a505086864cfb11ed725c83ddef
2 Author: Arthur Zamarin <arthurzam <AT> gentoo <DOT> org>
3 AuthorDate: Sun May 29 18:35:05 2022 +0000
4 Commit: Arthur Zamarin <arthurzam <AT> gentoo <DOT> org>
5 CommitDate: Sun May 29 18:35:05 2022 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=e6c78ebe
7
8 dev-python/retry-decorator: EAPI=8, Use PEP517
9
10 Signed-off-by: Arthur Zamarin <arthurzam <AT> gentoo.org>
11
12 .../retry-decorator/retry-decorator-1.1.1-r1.ebuild | 20 ++++++++++++++++++++
13 1 file changed, 20 insertions(+)
14
15 diff --git a/dev-python/retry-decorator/retry-decorator-1.1.1-r1.ebuild b/dev-python/retry-decorator/retry-decorator-1.1.1-r1.ebuild
16 new file mode 100644
17 index 000000000000..84b6c7c59dba
18 --- /dev/null
19 +++ b/dev-python/retry-decorator/retry-decorator-1.1.1-r1.ebuild
20 @@ -0,0 +1,20 @@
21 +# Copyright 1999-2022 Gentoo Authors
22 +# Distributed under the terms of the GNU General Public License v2
23 +
24 +EAPI=8
25 +
26 +DISTUTILS_USE_PEP517=setuptools
27 +PYTHON_COMPAT=( python3_{8..10} )
28 +inherit distutils-r1
29 +
30 +DESCRIPTION="Decorator for retrying when exceptions occur"
31 +HOMEPAGE="https://github.com/pnpnpn/retry-decorator"
32 +SRC_URI="https://github.com/pnpnpn/${PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz"
33 +
34 +LICENSE="MIT"
35 +SLOT="0"
36 +KEYWORDS="~amd64 ~arm ~riscv ~x86"
37 +
38 +DOCS=( README.rst )
39 +
40 +distutils_enable_tests pytest