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/sarge/
Date: Sun, 05 Jun 2022 18:32:43
Message-Id: 1654453940.c6dd9756801bc7ae37a25bab71b137c3a91e0f99.mgorny@gentoo
1 commit: c6dd9756801bc7ae37a25bab71b137c3a91e0f99
2 Author: Michał Górny <mgorny <AT> gentoo <DOT> org>
3 AuthorDate: Sun Jun 5 18:32:20 2022 +0000
4 Commit: Michał Górny <mgorny <AT> gentoo <DOT> org>
5 CommitDate: Sun Jun 5 18:32:20 2022 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=c6dd9756
7
8 dev-python/sarge: Bump to 0.1.7_p1
9
10 Signed-off-by: Michał Górny <mgorny <AT> gentoo.org>
11
12 dev-python/sarge/Manifest | 1 +
13 dev-python/sarge/sarge-0.1.7_p1.ebuild | 30 ++++++++++++++++++++++++++++++
14 2 files changed, 31 insertions(+)
15
16 diff --git a/dev-python/sarge/Manifest b/dev-python/sarge/Manifest
17 index 0c3af5a7d48b..68d5ebce195b 100644
18 --- a/dev-python/sarge/Manifest
19 +++ b/dev-python/sarge/Manifest
20 @@ -1 +1,2 @@
21 DIST sarge-0.1.7.gh.tar.gz 57029 BLAKE2B 4cba823073b6699d9a3152b55de63b8ea9ba7cafa0f50556d6c2115a863fd3cae44a9d8fc9e6bf14727aa312c90f69dd03ebcb73508c5a2cdb0d1f6ff190435f SHA512 f2017fdab137e1aebfcd60a125ea7ff057158c6bf6a277d3084db73ed62a07cfd3464deba883284980c9f6ea3f56810effb551e8e8523ab750a086895ad0297a
22 +DIST sarge-0.1.7.post1.gh.tar.gz 57121 BLAKE2B 4e7f9cf21e2492303fb7ae24d8f5da22fc6db4d04449e5e6063825d2c2163333456fed35af53b5107a80996ca4e036c8913c1d50ffd1d0386e4f3d3f0e46dbda SHA512 29e783287d9e2325e6183d3d56fb2247e3ec98e728dbb69c8391694b2456c1d9ce91a4a172d8ba66593d0553d016fca34b5253d7a4d4f02c1f2d6a3a19574097
23
24 diff --git a/dev-python/sarge/sarge-0.1.7_p1.ebuild b/dev-python/sarge/sarge-0.1.7_p1.ebuild
25 new file mode 100644
26 index 000000000000..017e909afcc9
27 --- /dev/null
28 +++ b/dev-python/sarge/sarge-0.1.7_p1.ebuild
29 @@ -0,0 +1,30 @@
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..11} )
37 +
38 +inherit distutils-r1
39 +
40 +MY_P=${P/_p/.post}
41 +DESCRIPTION="Wrapper for subprocess which provides command pipeline functionality"
42 +HOMEPAGE="
43 + https://docs.red-dove.com/sarge/
44 + https://pypi.org/project/sarge/
45 + https://github.com/vsajip/sarge/
46 +"
47 +SRC_URI="
48 + https://github.com/vsajip/sarge/archive/${PV/_p/.post}.tar.gz
49 + -> ${MY_P}.gh.tar.gz
50 +"
51 +S=${WORKDIR}/${MY_P}
52 +
53 +LICENSE="BSD"
54 +SLOT="0"
55 +KEYWORDS="~amd64 ~arm ~arm64 ~x86"
56 +
57 +python_test() {
58 + "${EPYTHON}" test_sarge.py -v || die "Tests failed with ${EPYTHON}"
59 +}