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: Sat, 26 Mar 2022 15:59:36
Message-Id: 1648310271.a89f8a0cd2049a94b0044bf21f5351df6da616a6.sping@gentoo
1 commit: a89f8a0cd2049a94b0044bf21f5351df6da616a6
2 Author: Sebastian Pipping <sping <AT> gentoo <DOT> org>
3 AuthorDate: Sat Mar 26 15:57:51 2022 +0000
4 Commit: Sebastian Pipping <sping <AT> gentoo <DOT> org>
5 CommitDate: Sat Mar 26 15:57:51 2022 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=a89f8a0c
7
8 dev-vcs/git-big-picture: 1.2.1
9
10 Signed-off-by: Sebastian Pipping <sping <AT> gentoo.org>
11 Package-Manager: Portage-3.0.30, Repoman-3.0.3
12
13 dev-vcs/git-big-picture/Manifest | 1 +
14 .../git-big-picture/git-big-picture-1.2.1.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 27de9c06759b..9b0433144b42 100644
19 --- a/dev-vcs/git-big-picture/Manifest
20 +++ b/dev-vcs/git-big-picture/Manifest
21 @@ -1 +1,2 @@
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
25 diff --git a/dev-vcs/git-big-picture/git-big-picture-1.2.1.ebuild b/dev-vcs/git-big-picture/git-big-picture-1.2.1.ebuild
26 new file mode 100644
27 index 000000000000..8d0b7a15fdd2
28 --- /dev/null
29 +++ b/dev-vcs/git-big-picture/git-big-picture-1.2.1.ebuild
30 @@ -0,0 +1,40 @@
31 +# Copyright 1999-2022 Gentoo Authors
32 +# Distributed under the terms of the GNU General Public License v2
33 +
34 +EAPI="7"
35 +
36 +PYTHON_COMPAT=( python3_{8..10} )
37 +
38 +inherit distutils-r1
39 +
40 +DESCRIPTION="Visualization tool for Git repositories"
41 +HOMEPAGE="https://github.com/git-big-picture/git-big-picture"
42 +SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
43 +
44 +LICENSE="GPL-3+"
45 +SLOT="0"
46 +KEYWORDS="~amd64 ~x86"
47 +IUSE="test"
48 +
49 +DEPEND="
50 + test? (
51 + dev-python/parameterized[${PYTHON_USEDEP}]
52 + dev-python/pytest[${PYTHON_USEDEP}]
53 + dev-util/cram[${PYTHON_USEDEP}]
54 + )
55 +"
56 +# No need for "[python]" or "[${PYTHON_USEDEP}]" with any of these
57 +# since they are invoked using subprocess
58 +RDEPEND="
59 + dev-vcs/git
60 + media-gfx/graphviz[svg]
61 +"
62 +
63 +RESTRICT="!test? ( test )"
64 +
65 +python_test() {
66 + pytest -vv test.py || die "Tests fail with ${EPYTHON}"
67 +
68 + distutils_install_for_testing
69 + cram test.cram || die "Tests fail with ${EPYTHON}"
70 +}