From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (2048 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id 6BB6515808C for ; Thu, 24 Feb 2022 07:54:19 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id A9F21E085B; Thu, 24 Feb 2022 07:54:18 +0000 (UTC) Received: from smtp.gentoo.org (woodpecker.gentoo.org [140.211.166.183]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 90ABCE085B for ; Thu, 24 Feb 2022 07:54:18 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id A93DE342D9B for ; Thu, 24 Feb 2022 07:54:17 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 6B2FC2FA for ; Thu, 24 Feb 2022 07:54:14 +0000 (UTC) From: "Anna Vyalkova" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Anna Vyalkova" Message-ID: <1645689160.c7330b67e3a39b42ee10d47b11276a100af47f52.cybertailor@gentoo> Subject: [gentoo-commits] repo/proj/guru:dev commit in: dev-vcs/lazygit/ X-VCS-Repository: repo/proj/guru X-VCS-Files: dev-vcs/lazygit/lazygit-0.33.ebuild X-VCS-Directories: dev-vcs/lazygit/ X-VCS-Committer: cybertailor X-VCS-Committer-Name: Anna Vyalkova X-VCS-Revision: c7330b67e3a39b42ee10d47b11276a100af47f52 X-VCS-Branch: dev Date: Thu, 24 Feb 2022 07:54:14 +0000 (UTC) Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-commits@lists.gentoo.org X-Auto-Response-Suppress: DR, RN, NRN, OOF, AutoReply X-Archives-Salt: 0cf57853-d76f-4ccd-942a-3d8a9ba2b98a X-Archives-Hash: 5fb0d09e7d90e0d7f1842c88347f42ae commit: c7330b67e3a39b42ee10d47b11276a100af47f52 Author: Anna (cybertailor) Vyalkova sysrq in> AuthorDate: Thu Feb 24 07:52:37 2022 +0000 Commit: Anna Vyalkova sysrq in> CommitDate: Thu Feb 24 07:52:40 2022 +0000 URL: https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=c7330b67 dev-vcs/lazygit: update LICENSE, deselect tests Signed-off-by: Anna (cybertailor) Vyalkova sysrq.in> dev-vcs/lazygit/lazygit-0.33.ebuild | 12 ++++++++---- 1 file changed, 8 insertions(+), 4 deletions(-) diff --git a/dev-vcs/lazygit/lazygit-0.33.ebuild b/dev-vcs/lazygit/lazygit-0.33.ebuild index 7ec69e16b..ed1a6769b 100644 --- a/dev-vcs/lazygit/lazygit-0.33.ebuild +++ b/dev-vcs/lazygit/lazygit-0.33.ebuild @@ -9,17 +9,21 @@ DESCRIPTION="Simple terminal UI for git commands" HOMEPAGE="https://github.com/jesseduffield/lazygit" SRC_URI="https://github.com/jesseduffield/${PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz" -LICENSE="MIT" +LICENSE="Apache-2.0 BSD ISC MIT Unlicense" SLOT="0" KEYWORDS="~amd64" -# TestCanDeactivatePopupContextsWithoutViews fails -RESTRICT="test" - RDEPEND="dev-vcs/git" DOCS=( {CODE-OF-CONDUCT,CONTRIBUTING,README}.md docs ) +src_prepare() { + default + + # remove failing tests + rm pkg/gui/*_test.go || die +} + src_compile() { go build -o bin/lazygit || die }