Gentoo Archives: gentoo-commits

From: Sebastian Pipping <sping@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: dev-vcs/git-big-picture/
Date: Tue, 27 Sep 2022 20:22:42
Message-Id: 1664310078.f085fd48f029a9287111b687c9dc50047c0108cc.sping@gentoo
1 commit: f085fd48f029a9287111b687c9dc50047c0108cc
2 Author: Sebastian Pipping <sping <AT> gentoo <DOT> org>
3 AuthorDate: Tue Sep 27 20:21:18 2022 +0000
4 Commit: Sebastian Pipping <sping <AT> gentoo <DOT> org>
5 CommitDate: Tue Sep 27 20:21:18 2022 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=f085fd48
7
8 dev-vcs/git-big-picture: 1.2.2 + EAPI 8 + fix tests for grep 3.8
9
10 Closes: https://bugs.gentoo.org/873139
11 Signed-off-by: Sebastian Pipping <sping <AT> gentoo.org>
12
13 dev-vcs/git-big-picture/Manifest | 1 +
14 .../git-big-picture/git-big-picture-1.2.2.ebuild | 40 ++++++++++++++++++++++
15 2 files changed, 41 insertions(+)
16
17 diff --git a/dev-vcs/git-big-picture/Manifest b/dev-vcs/git-big-picture/Manifest
18 index 9b0433144b42..5430e29afb7e 100644
19 --- a/dev-vcs/git-big-picture/Manifest
20 +++ b/dev-vcs/git-big-picture/Manifest
21 @@ -1,2 +1,3 @@
22 DIST git-big-picture-1.2.0.tar.gz 2963822 BLAKE2B 2e2a5c223c212cc73f44a2f91ad1b83d46279baec77633b6253f21f0e3bc7eb2968fc9e47800976db9a720713597329ff442853b9bf151ebf112b60ebf87946e SHA512 144e098fedc8f0e9d7c2360ff8194d5100effd13b0b04598680d441b1ffa9d3307982e6404c54b859dffb3ff8d8ba1b5a7a01245b5bf7e87f36268b7e6b9d266
23 DIST git-big-picture-1.2.1.tar.gz 2964502 BLAKE2B 1213c29e01c8556f694ecd12dcb397ba20f7a899042c2a02e7c10d80acdfbcc0e9f6c7b72f82575a3bff55af16fce993ad8d31a25f19ed655e55ad5d25e89f75 SHA512 efbbd730fad8f1e913a81d66bf758cdb2be548ed083fd9a778a79ff56f891fe57bb620c8ac3f6f65736b588619189b14332ca23902d3d510e4c6c4bc9714b682
24 +DIST git-big-picture-1.2.2.tar.gz 2964564 BLAKE2B 39971b21a9c9a0a8d1bf41f37350a158b634d2eaa0add460c1c18b70f643ab226736d53a337d4ed2583903a5d6c3188ab7a1b06f48a3f354e28d57ec74441599 SHA512 62c43727bb688d6572e7caafe9c5da3b782504738dd0d83d5df675ba757e8be22a8630ec1863c07f0fd2e54549b2ccbd1250ba8f367a6f840afa7b8962c487e8
25
26 diff --git a/dev-vcs/git-big-picture/git-big-picture-1.2.2.ebuild b/dev-vcs/git-big-picture/git-big-picture-1.2.2.ebuild
27 new file mode 100644
28 index 000000000000..d1b02520c98f
29 --- /dev/null
30 +++ b/dev-vcs/git-big-picture/git-big-picture-1.2.2.ebuild
31 @@ -0,0 +1,40 @@
32 +# Copyright 1999-2022 Gentoo Authors
33 +# Distributed under the terms of the GNU General Public License v2
34 +
35 +EAPI="8"
36 +
37 +PYTHON_COMPAT=( python3_{8..10} )
38 +
39 +inherit distutils-r1
40 +
41 +DESCRIPTION="Visualization tool for Git repositories"
42 +HOMEPAGE="https://github.com/git-big-picture/git-big-picture"
43 +SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
44 +
45 +LICENSE="GPL-3+"
46 +SLOT="0"
47 +KEYWORDS="~amd64 ~x86"
48 +IUSE="test"
49 +
50 +DEPEND="
51 + test? (
52 + dev-python/parameterized[${PYTHON_USEDEP}]
53 + dev-python/pytest[${PYTHON_USEDEP}]
54 + dev-util/cram[${PYTHON_USEDEP}]
55 + )
56 +"
57 +# No need for "[python]" or "[${PYTHON_USEDEP}]" with any of these
58 +# since they are invoked using subprocess
59 +RDEPEND="
60 + dev-vcs/git
61 + media-gfx/graphviz[svg]
62 +"
63 +
64 +RESTRICT="!test? ( test )"
65 +
66 +python_test() {
67 + pytest -vv test.py || die "Tests fail with ${EPYTHON}"
68 +
69 + distutils_install_for_testing
70 + cram test.cram || die "Tests fail with ${EPYTHON}"
71 +}