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/sh/
Date: Sat, 15 May 2021 06:52:15
Message-Id: 1621061528.ba770a0bfd7ecf5070899ac7933ce65f3dceb1cb.mgorny@gentoo
1 commit: ba770a0bfd7ecf5070899ac7933ce65f3dceb1cb
2 Author: Michał Górny <mgorny <AT> gentoo <DOT> org>
3 AuthorDate: Sat May 15 06:37:25 2021 +0000
4 Commit: Michał Górny <mgorny <AT> gentoo <DOT> org>
5 CommitDate: Sat May 15 06:52:08 2021 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=ba770a0b
7
8 dev-python/sh: Bump to 1.14.2
9
10 Signed-off-by: Michał Górny <mgorny <AT> gentoo.org>
11
12 dev-python/sh/Manifest | 1 +
13 dev-python/sh/sh-1.14.2.ebuild | 25 +++++++++++++++++++++++++
14 2 files changed, 26 insertions(+)
15
16 diff --git a/dev-python/sh/Manifest b/dev-python/sh/Manifest
17 index 1d4acecd50c..d161642fcd2 100644
18 --- a/dev-python/sh/Manifest
19 +++ b/dev-python/sh/Manifest
20 @@ -1 +1,2 @@
21 DIST sh-1.14.1.tar.gz 63317 BLAKE2B e4439a54d4bf2c106ae5217b55d6fa19f2bc369fb63e8515954a017fd2e98eca88fce07ea3efa70b3c427826bec657aa75c057a09c88de76c1595ef89465ee32 SHA512 9a4d9b841e81ae465b036f3fbf5e8ca277b090ffada660b17e9c2c457e09f7dbb0038b687fc0c0f4a6d575a55deb451c572a60f92f8c8d18ea65d6d902abb9b4
22 +DIST sh-1.14.2.tar.gz 63779 BLAKE2B adc9004334a53f3704e22c318df6b4f60fd9ca2d31f5a9601f84abfaf0fe2ded06938b165e10b1a977ed38fcad7d0fa08799f2f552fc2c6b9b4c2a6476477115 SHA512 b7917504ae85606e1986b681274077777ad3011639bfe933d4133c3ed16f930842e03b572caa396ca4d58f41fd5594bef776cc16c4b0fbd1242e57c6aad19e62
23
24 diff --git a/dev-python/sh/sh-1.14.2.ebuild b/dev-python/sh/sh-1.14.2.ebuild
25 new file mode 100644
26 index 00000000000..a8a1c5f8050
27 --- /dev/null
28 +++ b/dev-python/sh/sh-1.14.2.ebuild
29 @@ -0,0 +1,25 @@
30 +# Copyright 1999-2021 Gentoo Authors
31 +# Distributed under the terms of the GNU General Public License v2
32 +
33 +EAPI=7
34 +
35 +PYTHON_COMPAT=( pypy3 python3_{7..10} )
36 +
37 +inherit distutils-r1
38 +
39 +DESCRIPTION="Python subprocess interface"
40 +HOMEPAGE="https://github.com/amoffat/sh"
41 +SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
42 +
43 +LICENSE="MIT"
44 +SLOT="0"
45 +KEYWORDS="~amd64 ~arm64 ~x86 ~amd64-linux ~x86-linux"
46 +
47 +PATCHES=(
48 + "${FILESDIR}/sh-1.12.14-skip-unreliable-test.patch"
49 + "${FILESDIR}/sh-1.14.0-skip-unreliable-test.patch"
50 +)
51 +
52 +python_test() {
53 + "${EPYTHON}" test.py || die "Tests fail with ${EPYTHON}"
54 +}