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/dirty-equals/
Date: Wed, 31 Aug 2022 09:21:08
Message-Id: 1661937654.ece797cda5d2515e69dcb026cc91c21da8aefd2b.mgorny@gentoo
1 commit: ece797cda5d2515e69dcb026cc91c21da8aefd2b
2 Author: Michał Górny <mgorny <AT> gentoo <DOT> org>
3 AuthorDate: Wed Aug 31 07:20:03 2022 +0000
4 Commit: Michał Górny <mgorny <AT> gentoo <DOT> org>
5 CommitDate: Wed Aug 31 09:20:54 2022 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=ece797cd
7
8 dev-python/dirty-equals: Bump to 0.5.0
9
10 Signed-off-by: Michał Górny <mgorny <AT> gentoo.org>
11
12 dev-python/dirty-equals/Manifest | 1 +
13 dev-python/dirty-equals/dirty-equals-0.5.0.ebuild | 40 +++++++++++++++++++++++
14 2 files changed, 41 insertions(+)
15
16 diff --git a/dev-python/dirty-equals/Manifest b/dev-python/dirty-equals/Manifest
17 index 1dea98855f88..49f57823e8d6 100644
18 --- a/dev-python/dirty-equals/Manifest
19 +++ b/dev-python/dirty-equals/Manifest
20 @@ -1 +1,2 @@
21 DIST dirty-equals-0.4.gh.tar.gz 41864 BLAKE2B 0b916d37b323e9f587a977b46415432bc11367a6d0c95ac49e47fe604b3ee16c26eaecbbe74464076834c6186f5f0eecc049b211699a3f515ef7fdadc492537a SHA512 f98fa8c9850f26efc44dc2c5cc0ea6d687c07b49980c3eeaa71eaae78930e418c03bb35cb88aab065905443fa354b9b05d44a588458ed37d140d376b943c9da9
22 +DIST dirty-equals-0.5.0.gh.tar.gz 44684 BLAKE2B ccd0d4e254a529e2b3d1014390d3e21a869e145fc0d9913e01e896ce103d853315d496264fdf611aa1fded8c66673bcb9e38dc41984ebfc566a9621b99240f81 SHA512 5d89105e3eb4e3dd52423aafed6c3ddf50890cfb3c03623723d0ab79f9814e892ba91cf789fa495ecc663b03c49516687fc2c1bc548816d60ade4f64df561ab9
23
24 diff --git a/dev-python/dirty-equals/dirty-equals-0.5.0.ebuild b/dev-python/dirty-equals/dirty-equals-0.5.0.ebuild
25 new file mode 100644
26 index 000000000000..ce09838079c0
27 --- /dev/null
28 +++ b/dev-python/dirty-equals/dirty-equals-0.5.0.ebuild
29 @@ -0,0 +1,40 @@
30 +# Copyright 2022 Gentoo Authors
31 +# Distributed under the terms of the GNU General Public License v2
32 +
33 +EAPI=8
34 +
35 +DISTUTILS_USE_PEP517=hatchling
36 +PYTHON_COMPAT=( python3_{8..11} pypy3 )
37 +
38 +inherit distutils-r1
39 +
40 +DESCRIPTION="Doing dirty (but extremely useful) things with equals"
41 +HOMEPAGE="
42 + https://dirty-equals.helpmanual.io/
43 + https://github.com/samuelcolvin/dirty-equals/
44 + https://pypi.org/project/dirty-equals/
45 +"
46 +SRC_URI="
47 + https://github.com/samuelcolvin/dirty-equals/archive/v${PV}.tar.gz
48 + -> ${P}.gh.tar.gz
49 +"
50 +
51 +LICENSE="MIT"
52 +SLOT="0"
53 +KEYWORDS="~amd64 ~arm ~arm64 ~ppc ~ppc64 ~riscv ~s390 ~sparc ~x86"
54 +
55 +RDEPEND="
56 + >=dev-python/pytz-2021.3[${PYTHON_USEDEP}]
57 +"
58 +BDEPEND="
59 + test? (
60 + dev-python/pytest-mock[${PYTHON_USEDEP}]
61 + )
62 +"
63 +
64 +distutils_enable_tests pytest
65 +
66 +python_test() {
67 + local -x TZ=UTC
68 + epytest
69 +}