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/python-utils/
Date: Thu, 04 Feb 2021 08:17:37
Message-Id: 1612426650.c26b7adb1f8176cae0c338292d9232d59b6c4e6b.mgorny@gentoo
1 commit: c26b7adb1f8176cae0c338292d9232d59b6c4e6b
2 Author: Michał Górny <mgorny <AT> gentoo <DOT> org>
3 AuthorDate: Thu Feb 4 08:15:31 2021 +0000
4 Commit: Michał Górny <mgorny <AT> gentoo <DOT> org>
5 CommitDate: Thu Feb 4 08:17:30 2021 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=c26b7adb
7
8 dev-python/python-utils: Bump to 2.5.6
9
10 Signed-off-by: Michał Górny <mgorny <AT> gentoo.org>
11
12 dev-python/python-utils/Manifest | 1 +
13 dev-python/python-utils/python-utils-2.5.6.ebuild | 24 +++++++++++++++++++++++
14 2 files changed, 25 insertions(+)
15
16 diff --git a/dev-python/python-utils/Manifest b/dev-python/python-utils/Manifest
17 index ec8a078019e..b1b30c9f1eb 100644
18 --- a/dev-python/python-utils/Manifest
19 +++ b/dev-python/python-utils/Manifest
20 @@ -4,3 +4,4 @@ DIST python-utils-2.5.1.tar.gz 115307 BLAKE2B 2938b9f188c92d407baf09147338ea2c54
21 DIST python-utils-2.5.2.tar.gz 14034 BLAKE2B 1d9ec9ba84ee1ebff2c4ef915bb0e57c34185c0577252f8b4cc9678f2e5b6e5a815f7c049c2f512d2f79aa8be855870ff21ec2291b1305bf8a369614220bc582 SHA512 5bcf4f33eac88b83e0cccf6b50162a5c913d9e72c4395b2265017cda566c91fa36c24eb5c3d23269b71330df65ac14226834d7b339b5b767afad3177734b9934
22 DIST python-utils-2.5.3.tar.gz 49110 BLAKE2B 13b6a20278c73acc1e52c12dff3833b1dc6ebe6c1373ab5b972300d778bb4f110af79333dddc805b29a7d34265973ebf0136a607b82880b5c43c4c4d0c9f391c SHA512 7e0a584a80ce5eca654eca5335080b98b21bed11bcef7d238639d07e386f58d44a00765133b487dc5492cb35a221bc9e8042513099ee3b49177c77334129c8bd
23 DIST python-utils-2.5.5.tar.gz 14069 BLAKE2B 44874a8d8089f18ff79eccf94f0b436c234dfc7d691e5b9e8e1d41e4cd3cc1005bfca44822f0b3558496ff80dc12443dcd2f29ece6c65956e17ace09c1c5663e SHA512 448ff86a7f05b764f260398496fc722c2bde335aec6402c686e8fc063faa8999088f5a6b7a960b415fb9a3b4d35bc9f26aa74fe4dfe02c61926c6cfd31a3876c
24 +DIST python-utils-2.5.6.tar.gz 14057 BLAKE2B 2f66ab26cd6cda25f73c9f40081048404cde819e3e3c2fd11d134244ab2b80a05ab2b943e56a45bd8656bf3ba231853e3bfa9efbab9cb70515daaec70f6e0715 SHA512 35299880afdecd4a44144b95e6b2073e51680dfd2b00f31fb333d578cfa2c2f8bf5f58128cab88a7b81e658e6d5dca303f1c9f5be3870160679e1defbf94859e
25
26 diff --git a/dev-python/python-utils/python-utils-2.5.6.ebuild b/dev-python/python-utils/python-utils-2.5.6.ebuild
27 new file mode 100644
28 index 00000000000..b83efbe8075
29 --- /dev/null
30 +++ b/dev-python/python-utils/python-utils-2.5.6.ebuild
31 @@ -0,0 +1,24 @@
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=( python3_{7..9} pypy3)
37 +
38 +inherit distutils-r1
39 +
40 +DESCRIPTION="Collection of small Python functions & classes"
41 +HOMEPAGE="https://pypi.org/project/python-utils/"
42 +SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
43 +
44 +LICENSE="BSD"
45 +SLOT="0"
46 +KEYWORDS="~amd64"
47 +
48 +RDEPEND="dev-python/six[${PYTHON_USEDEP}]"
49 +
50 +distutils_enable_tests pytest
51 +
52 +python_prepare_all() {
53 + sed -i -e '/--cov/d' -e '/--flake8/d' pytest.ini || die
54 + distutils-r1_python_prepare_all
55 +}