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: Tue, 01 Sep 2020 13:21:43
Message-Id: 1598966497.2121a2631af6eb614fe5fdafd4e7ce620706df14.mgorny@gentoo
1 commit: 2121a2631af6eb614fe5fdafd4e7ce620706df14
2 Author: Michał Górny <mgorny <AT> gentoo <DOT> org>
3 AuthorDate: Tue Sep 1 13:21:28 2020 +0000
4 Commit: Michał Górny <mgorny <AT> gentoo <DOT> org>
5 CommitDate: Tue Sep 1 13:21:37 2020 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=2121a263
7
8 app-portage/gpyutils: Bump to 0.4.3
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.4.3.ebuild | 24 ++++++++++++++++++++++++
14 2 files changed, 25 insertions(+)
15
16 diff --git a/app-portage/gpyutils/Manifest b/app-portage/gpyutils/Manifest
17 index 966730a61c4..40de1dd492b 100644
18 --- a/app-portage/gpyutils/Manifest
19 +++ b/app-portage/gpyutils/Manifest
20 @@ -1 +1,2 @@
21 DIST gpyutils-0.4.2.tar.gz 19771 BLAKE2B a5b58efcaad803a3eeb4a04b51811c2832f5a61154ac60b67c31e1962efd5f1a801e06fd3245c2336e6440b03fae2c30642e99c7588af89b7a3d0173b93f0c87 SHA512 699132833ddbaffe26bec8b3cb8914a609cc98ee2d8b852b59162265ee3daf6a0a0bd8ccc4d693e319d4e413c441ca94bd6837f07f1a132bda383350593792c4
22 +DIST gpyutils-0.4.3.tar.gz 19951 BLAKE2B 2d15c6c714a7f75be4a5398b7287d6281a201f1b5806c6cac34093cd74ae3449fcd103d023edc54ab088807e8a7b24e08bb223ae9f40d156ade97706cf4b9355 SHA512 02067d6d075afc6670eea75a0e9ed12bf02eecb623accd010701c45d4176bb23b1dd0fb9eda3a4e899d3fb90581c5f3fc46b5fc8760b491c31fddf592aa7a291
23
24 diff --git a/app-portage/gpyutils/gpyutils-0.4.3.ebuild b/app-portage/gpyutils/gpyutils-0.4.3.ebuild
25 new file mode 100644
26 index 00000000000..a519e2a5c0f
27 --- /dev/null
28 +++ b/app-portage/gpyutils/gpyutils-0.4.3.ebuild
29 @@ -0,0 +1,24 @@
30 +# Copyright 1999-2020 Gentoo Authors
31 +# Distributed under the terms of the GNU General Public License v2
32 +
33 +EAPI=7
34 +
35 +DISTUTILS_USE_SETUPTOOLS=no
36 +PYTHON_COMPAT=( python3_{6..9} )
37 +
38 +inherit distutils-r1
39 +
40 +DESCRIPTION="Utitilies for maintaining Python packages"
41 +HOMEPAGE="https://github.com/mgorny/gpyutils/"
42 +SRC_URI="https://github.com/mgorny/gpyutils/archive/v${PV}.tar.gz -> ${P}.tar.gz"
43 +
44 +LICENSE="BSD"
45 +SLOT="0"
46 +KEYWORDS="~amd64 ~x86"
47 +IUSE=""
48 +
49 +RDEPEND=">=app-portage/gentoopm-0.3.1[${PYTHON_USEDEP}]"
50 +
51 +python_test() {
52 + esetup.py test
53 +}