Gentoo Archives: gentoo-commits

From: Patrick McLean <chutzpah@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: dev-python/retry-decorator/
Date: Thu, 07 May 2020 17:57:09
Message-Id: 1588873667.8ef416db9055a1f2aa8f1f8812936c66ba348628.chutzpah@gentoo
1 commit: 8ef416db9055a1f2aa8f1f8812936c66ba348628
2 Author: Patrick McLean <patrick.mclean <AT> sony <DOT> com>
3 AuthorDate: Thu May 7 17:47:47 2020 +0000
4 Commit: Patrick McLean <chutzpah <AT> gentoo <DOT> org>
5 CommitDate: Thu May 7 17:47:47 2020 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=8ef416db
7
8 dev-python/retry-decorator-1.1.1: bump, add py38, enable tests
9
10 Copyright: Sony Interactive Entertainment Inc.
11 Package-Manager: Portage-2.3.99, Repoman-2.3.22
12 Signed-off-by: Patrick McLean <chutzpah <AT> gentoo.org>
13
14 dev-python/retry-decorator/Manifest | 1 +
15 .../retry-decorator/retry-decorator-1.1.1.ebuild | 19 +++++++++++++++++++
16 2 files changed, 20 insertions(+)
17
18 diff --git a/dev-python/retry-decorator/Manifest b/dev-python/retry-decorator/Manifest
19 index d371f3155f6..072c511a6b6 100644
20 --- a/dev-python/retry-decorator/Manifest
21 +++ b/dev-python/retry-decorator/Manifest
22 @@ -1 +1,2 @@
23 DIST retry-decorator-1.0.0.tar.gz 2835 BLAKE2B b04d127ba3d357a61fb5e35a63867b297834acd82d0d7cdf736a69efe95fa33a263309799dcd4d8ae42e72ad5adb12b6c52557a81413ee8ebc49f5e0e728fa8b SHA512 f650740dd6d05010b7418b4d5ae7351058eb4418dabf7329390eaacceb72db60363bae8ff0bb15284301f0b5bfd9bfb731e71fdffb7231065a4db7ed6ce86da2
24 +DIST retry-decorator-1.1.1.tar.gz 4466 BLAKE2B a64836bba5620974e393a952544c82074b667a5fac80d6944069bf88e9162d03cc48cfe511f09476571c46561331576a2b06b2aefd087f905f968aa8257a596c SHA512 2241b24a02424905a2f3b7660c7ee4f6cd034c67c5019cce54d38ae250a9ac9e011fe323b25254bed051a0d3560d48ecdf4e2a1ee84cf2d7c5b1c12dea2921be
25
26 diff --git a/dev-python/retry-decorator/retry-decorator-1.1.1.ebuild b/dev-python/retry-decorator/retry-decorator-1.1.1.ebuild
27 new file mode 100644
28 index 00000000000..2903f122c5f
29 --- /dev/null
30 +++ b/dev-python/retry-decorator/retry-decorator-1.1.1.ebuild
31 @@ -0,0 +1,19 @@
32 +# Copyright 1999-2020 Gentoo Authors
33 +# Distributed under the terms of the GNU General Public License v2
34 +
35 +EAPI=7
36 +PYTHON_COMPAT=( python3_{6,7,8} )
37 +
38 +inherit distutils-r1
39 +
40 +DESCRIPTION="Decorator for retrying when exceptions occur"
41 +HOMEPAGE="https://github.com/pnpnpn/retry-decorator"
42 +SRC_URI="https://github.com/pnpnpn/${PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz"
43 +
44 +LICENSE="MIT"
45 +SLOT="0"
46 +KEYWORDS="~amd64 ~arm ~x86"
47 +
48 +DOCS=( README.rst )
49 +
50 +distutils_enable_tests pytest