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: Sun, 17 Nov 2019 22:41:48
Message-Id: 1574030501.e4b480a7830fd2aead8bf135fb53e2a89c0068ef.mgorny@gentoo
1 commit: e4b480a7830fd2aead8bf135fb53e2a89c0068ef
2 Author: Michał Górny <mgorny <AT> gentoo <DOT> org>
3 AuthorDate: Sun Nov 17 22:38:25 2019 +0000
4 Commit: Michał Górny <mgorny <AT> gentoo <DOT> org>
5 CommitDate: Sun Nov 17 22:41:41 2019 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=e4b480a7
7
8 app-portage/gpyutils: Bump to 0.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.3.ebuild | 22 ++++++++++++++++++++++
14 2 files changed, 23 insertions(+)
15
16 diff --git a/app-portage/gpyutils/Manifest b/app-portage/gpyutils/Manifest
17 index b1e5822808d..d25ab0be63d 100644
18 --- a/app-portage/gpyutils/Manifest
19 +++ b/app-portage/gpyutils/Manifest
20 @@ -1 +1,2 @@
21 DIST gpyutils-0.2.2.tar.gz 19646 BLAKE2B b5c24817b8a5ef3122d46330d2311a328ffa9c936878f494586ed62fd9fa9d54210c4edcbd9d07f61af7c27faf410e0abf60943188e8340ea52f06d95359c6b1 SHA512 28ca27b3688b593665037bd7a811014a11b3192bc0acc4568c3e70d13cf7a163b41ba3ffd9d8caaaaf4de2758e1cb68b7dcc255d9fb26ca8448a6bfd6416e66e
22 +DIST gpyutils-0.3.tar.gz 19322 BLAKE2B 0b761139f803e1c36d2d9bc8c8e77a8606697a5f872f8eece4bc130657918e639ff82dd275d4553c92a2f1f8a9fe66687e6dce4de40450af435d52fd1ddb91a1 SHA512 2481ccca1390cf65f7a466c7742869977156eebb5d7ab6fe8a421c53dbe1e971e59fce8b4544396fd8682bf9ce73f245d611f2527725cae7253d68ebd2d9b1a2
23
24 diff --git a/app-portage/gpyutils/gpyutils-0.3.ebuild b/app-portage/gpyutils/gpyutils-0.3.ebuild
25 new file mode 100644
26 index 00000000000..7eef1417fd8
27 --- /dev/null
28 +++ b/app-portage/gpyutils/gpyutils-0.3.ebuild
29 @@ -0,0 +1,22 @@
30 +# Copyright 1999-2019 Gentoo Authors
31 +# Distributed under the terms of the GNU General Public License v2
32 +
33 +EAPI=7
34 +PYTHON_COMPAT=( python{2_7,3_5,3_6,3_7} pypy )
35 +
36 +inherit distutils-r1
37 +
38 +DESCRIPTION="Utitilies for maintaining Python packages"
39 +HOMEPAGE="https://github.com/mgorny/gpyutils/"
40 +SRC_URI="https://github.com/mgorny/gpyutils/archive/v${PV}.tar.gz -> ${P}.tar.gz"
41 +
42 +LICENSE="BSD"
43 +SLOT="0"
44 +KEYWORDS="~amd64 ~x86"
45 +IUSE=""
46 +
47 +RDEPEND=">=app-portage/gentoopm-0.3.1[${PYTHON_USEDEP}]"
48 +
49 +python_test() {
50 + esetup.py test
51 +}