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: app-portage/gpyutils/
Date: Mon, 16 May 2022 16:12:49
Message-Id: 1652717474.130b9cca5299f1635e5802c16dca604aef545c79.mgorny@gentoo
1 commit: 130b9cca5299f1635e5802c16dca604aef545c79
2 Author: Michał Górny <mgorny <AT> gentoo <DOT> org>
3 AuthorDate: Mon May 16 16:09:58 2022 +0000
4 Commit: Michał Górny <mgorny <AT> gentoo <DOT> org>
5 CommitDate: Mon May 16 16:11:14 2022 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=130b9cca
7
8 app-portage/gpyutils: Bump to 0.6.2
9
10 Signed-off-by: Michał Górny <mgorny <AT> gentoo.org>
11
12 app-portage/gpyutils/Manifest | 1 +
13 app-portage/gpyutils/gpyutils-0.6.2.ebuild | 31 ++++++++++++++++++++++++++++++
14 2 files changed, 32 insertions(+)
15
16 diff --git a/app-portage/gpyutils/Manifest b/app-portage/gpyutils/Manifest
17 index c22e9d08ffbe..e7218fed78d9 100644
18 --- a/app-portage/gpyutils/Manifest
19 +++ b/app-portage/gpyutils/Manifest
20 @@ -1 +1,2 @@
21 DIST gpyutils-0.6.1.tar.gz 23914 BLAKE2B 1e799ce33a949037b68262cb7a6ca5fd99b4ca4ec74c3044bfb31ea08b59906a21f6c96cdf99330f6af16d68be6ee7ab49c3cf05979691899abaacc9d62032eb SHA512 74d984e496ccfa7124cfefd9f8f79d5fab4bb4dbf5e61f4400b39367dd54e23b871f286eef28007a5c255b862533a34948449bbf7aed55cf8fe315e76ac876ea
22 +DIST gpyutils-0.6.2.tar.gz 23585 BLAKE2B 6458569d42b8095e6b355ca4e3ce7173ccddef6c3e01a103d997d3e395515ad145c562171bc73711d994e4503b9fef99534ec608985c5f8f4482a1bbe3172e47 SHA512 fcd8312b7752c1a4de46cd9655300097962270c2ca07572eda4e9240c9a32d4a58d200659d2a26c38fb1389ec57cac6beb1b40a7d0520d6505db42e6fbe593dc
23
24 diff --git a/app-portage/gpyutils/gpyutils-0.6.2.ebuild b/app-portage/gpyutils/gpyutils-0.6.2.ebuild
25 new file mode 100644
26 index 000000000000..8b95aeb92dbf
27 --- /dev/null
28 +++ b/app-portage/gpyutils/gpyutils-0.6.2.ebuild
29 @@ -0,0 +1,31 @@
30 +# Copyright 1999-2022 Gentoo Authors
31 +# Distributed under the terms of the GNU General Public License v2
32 +
33 +EAPI=8
34 +
35 +DISTUTILS_USE_PEP517=setuptools
36 +PYTHON_COMPAT=( python3_{8..10} )
37 +
38 +inherit distutils-r1
39 +
40 +DESCRIPTION="Utitilies for maintaining Python packages"
41 +HOMEPAGE="https://github.com/mgorny/gpyutils/"
42 +SRC_URI="
43 + https://github.com/mgorny/gpyutils/archive/v${PV}.tar.gz
44 + -> ${P}.tar.gz
45 +"
46 +
47 +LICENSE="BSD"
48 +SLOT="0"
49 +KEYWORDS="~amd64 ~x86"
50 +IUSE=""
51 +
52 +RDEPEND="
53 + >=app-portage/gentoopm-0.3.2[${PYTHON_USEDEP}]
54 +"
55 +
56 +distutils_enable_tests pytest
57 +
58 +python_test() {
59 + epytest --doctest-modules
60 +}