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/humanize/
Date: Fri, 02 Oct 2020 20:38:01
Message-Id: 1601671064.f442be033d97243dced07193a452101db9e4f73c.sbraz@gentoo
1 commit: f442be033d97243dced07193a452101db9e4f73c
2 Author: Louis Sautier <sbraz <AT> gentoo <DOT> org>
3 AuthorDate: Fri Oct 2 20:37:10 2020 +0000
4 Commit: Louis Sautier <sbraz <AT> gentoo <DOT> org>
5 CommitDate: Fri Oct 2 20:37:44 2020 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=f442be03
7
8 dev-python/humanize: bump to 3.0.1
9
10 Package-Manager: Portage-3.0.8, Repoman-3.0.1
11 Signed-off-by: Louis Sautier <sbraz <AT> gentoo.org>
12
13 dev-python/humanize/Manifest | 1 +
14 dev-python/humanize/humanize-3.0.1.ebuild | 30 ++++++++++++++++++++++++++++++
15 2 files changed, 31 insertions(+)
16
17 diff --git a/dev-python/humanize/Manifest b/dev-python/humanize/Manifest
18 index 2645843bb49..91c9c98f6b8 100644
19 --- a/dev-python/humanize/Manifest
20 +++ b/dev-python/humanize/Manifest
21 @@ -1,2 +1,3 @@
22 DIST humanize-2.6.0.tar.gz 53753 BLAKE2B 7908100cde103846554264df887ddb54223900cdbf1e52b2a19f029084b2997ab7a02e275f437d0cc04c3c42d6f8c371fbdab23468cdeb8f98a8cd6a64c1c288 SHA512 d1e57672c80ccabc48dadb2bafe65ac0b5b23de13907d7d51a06b6a1f2f01ef254e36afa203c9393420ad3bb5aaa22616a0d5c4c71cc53cf47727436be0b1599
23 DIST humanize-3.0.0.tar.gz 53458 BLAKE2B c75ddbeed88aaef0019b50691576e6c8dd8ffdbf0ed1f1d1221c40ebfbaa502176f2db463afea3c8384f1b9acea7daaeca1e81f72919dbe2c476ff9d95db166b SHA512 8d566b4fba6b1f7f025e30d5d0402cb7ef7bf4881fb14608b011474d3e6991a0a058d444ccfdbb796205d959c2c4192e0eb98c6c15c31ba9e304f39a7cf8d025
24 +DIST humanize-3.0.1.tar.gz 53151 BLAKE2B 2f4ddb2f49b8de3ddf7d68620844f476c1ce349b6cfc01a810bb5b52a57739c615f6fd98a18faa108636fd75f2ff624c542279ae62535da2ff187964e5c21c62 SHA512 d2c0dfcc32923d70bb01b384299b3735436ff84328921b57bc436a938b4b8e65b22ce56ef07487aa3ddfc017e649c25a848129a11f1c9d7cd1e808359a1a30c3
25
26 diff --git a/dev-python/humanize/humanize-3.0.1.ebuild b/dev-python/humanize/humanize-3.0.1.ebuild
27 new file mode 100644
28 index 00000000000..94f1f6012cd
29 --- /dev/null
30 +++ b/dev-python/humanize/humanize-3.0.1.ebuild
31 @@ -0,0 +1,30 @@
32 +# Copyright 1999-2020 Gentoo Authors
33 +# Distributed under the terms of the GNU General Public License v2
34 +
35 +EAPI=7
36 +
37 +PYTHON_COMPAT=( pypy3 python3_{6,7,8,9} )
38 +DISTUTILS_USE_SETUPTOOLS=rdepend
39 +
40 +inherit distutils-r1
41 +
42 +DESCRIPTION="Common humanization utilities"
43 +HOMEPAGE="https://github.com/jmoiron/humanize/"
44 +SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
45 +
46 +LICENSE="MIT"
47 +SLOT="0"
48 +KEYWORDS="~amd64 ~x86"
49 +
50 +BDEPEND="
51 + dev-python/setuptools_scm[${PYTHON_USEDEP}]
52 + test? ( dev-python/freezegun[${PYTHON_USEDEP}] )
53 +"
54 +
55 +distutils_enable_tests pytest
56 +
57 +python_test() {
58 + # The package uses pkg_resources to determine its version
59 + distutils_install_for_testing
60 + pytest -vv || die "Tests fail with ${EPYTHON}"
61 +}