Gentoo Archives: gentoo-commits

From: Anna Vyalkova <cyber+gentoo@×××××.in>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/proj/guru:dev commit in: dev-vcs/lazygit/
Date: Thu, 24 Feb 2022 07:54:19
Message-Id: 1645689160.c7330b67e3a39b42ee10d47b11276a100af47f52.cybertailor@gentoo
1 commit: c7330b67e3a39b42ee10d47b11276a100af47f52
2 Author: Anna (cybertailor) Vyalkova <cyber+gentoo <AT> sysrq <DOT> in>
3 AuthorDate: Thu Feb 24 07:52:37 2022 +0000
4 Commit: Anna Vyalkova <cyber+gentoo <AT> sysrq <DOT> in>
5 CommitDate: Thu Feb 24 07:52:40 2022 +0000
6 URL: https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=c7330b67
7
8 dev-vcs/lazygit: update LICENSE, deselect tests
9
10 Signed-off-by: Anna (cybertailor) Vyalkova <cyber+gentoo <AT> sysrq.in>
11
12 dev-vcs/lazygit/lazygit-0.33.ebuild | 12 ++++++++----
13 1 file changed, 8 insertions(+), 4 deletions(-)
14
15 diff --git a/dev-vcs/lazygit/lazygit-0.33.ebuild b/dev-vcs/lazygit/lazygit-0.33.ebuild
16 index 7ec69e16b..ed1a6769b 100644
17 --- a/dev-vcs/lazygit/lazygit-0.33.ebuild
18 +++ b/dev-vcs/lazygit/lazygit-0.33.ebuild
19 @@ -9,17 +9,21 @@ DESCRIPTION="Simple terminal UI for git commands"
20 HOMEPAGE="https://github.com/jesseduffield/lazygit"
21 SRC_URI="https://github.com/jesseduffield/${PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz"
22
23 -LICENSE="MIT"
24 +LICENSE="Apache-2.0 BSD ISC MIT Unlicense"
25 SLOT="0"
26 KEYWORDS="~amd64"
27
28 -# TestCanDeactivatePopupContextsWithoutViews fails
29 -RESTRICT="test"
30 -
31 RDEPEND="dev-vcs/git"
32
33 DOCS=( {CODE-OF-CONDUCT,CONTRIBUTING,README}.md docs )
34
35 +src_prepare() {
36 + default
37 +
38 + # remove failing tests
39 + rm pkg/gui/*_test.go || die
40 +}
41 +
42 src_compile() {
43 go build -o bin/lazygit || die
44 }