Gentoo Archives: gentoo-commits

From: Sergey Torokhov <torokhov-s-a@××××××.ru>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/proj/guru:dev commit in: dev-vcs/lazygit/
Date: Fri, 15 Oct 2021 16:20:10
Message-Id: 1634314625.bde990422526b6ff4f7b44a3589d44643d5aa049.SergeyTorokhov@gentoo
1 commit: bde990422526b6ff4f7b44a3589d44643d5aa049
2 Author: Sergey Torokhov <torokhov-s-a <AT> yandex <DOT> ru>
3 AuthorDate: Fri Oct 15 16:17:05 2021 +0000
4 Commit: Sergey Torokhov <torokhov-s-a <AT> yandex <DOT> ru>
5 CommitDate: Fri Oct 15 16:17:05 2021 +0000
6 URL: https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=bde99042
7
8 dev-vcs/lazygit: drop old
9
10 Signed-off-by: Sergey Torokhov <torokhov-s-a <AT> yandex.ru>
11
12 dev-vcs/lazygit/Manifest | 1 -
13 dev-vcs/lazygit/lazygit-0.28.2.ebuild | 36 -----------------------------------
14 2 files changed, 37 deletions(-)
15
16 diff --git a/dev-vcs/lazygit/Manifest b/dev-vcs/lazygit/Manifest
17 index 28c0f10d3..5a2e5627e 100644
18 --- a/dev-vcs/lazygit/Manifest
19 +++ b/dev-vcs/lazygit/Manifest
20 @@ -1,2 +1 @@
21 -DIST lazygit-0.28.2.tar.gz 3223174 BLAKE2B 678a44f4109446e7490cc75b4bb2f0195357a8f6dc2539251de7b829b11ef0a7b8d125bb518f7d6822df62bf9922026ba2948d4d6318ca9e18dafcca7ff9792d SHA512 e7002089194c572fffe8329bd245d4db64fb71cb73c63f07b950da845ecdc85c70c8bea682d2b4aa1c9b38f8cf5270cd24d3bb41eff8a26d31be58eddcdf41ce
22 DIST lazygit-0.29.tar.gz 3385768 BLAKE2B 4968a45572d85a3af84fc8f459dbab1cfd3a70954c650f16ddd8e937a810b590c974642e94b26614f4b24166b6c4db2fc8dd2538052875d827fdecc8bf8acb18 SHA512 f24d63a01bc64e2704805a20437af7ad0304921c2b4084f64014f9a8d9d9711ef02f4cdcf09ee9955ea5f2ef4f94de58c9ecc55fa7cb05fc59a89c7d8c9237d7
23
24 diff --git a/dev-vcs/lazygit/lazygit-0.28.2.ebuild b/dev-vcs/lazygit/lazygit-0.28.2.ebuild
25 deleted file mode 100644
26 index 233a104b0..000000000
27 --- a/dev-vcs/lazygit/lazygit-0.28.2.ebuild
28 +++ /dev/null
29 @@ -1,36 +0,0 @@
30 -# Copyright 1999-2021 Gentoo Authors
31 -# Distributed under the terms of the GNU General Public License v2
32 -
33 -EAPI=7
34 -
35 -EGO_PN="github.com/jesseduffield/lazygit"
36 -
37 -inherit golang-build golang-vcs-snapshot
38 -
39 -DESCRIPTION="Lazygit, a simple terminal UI for git commands"
40 -HOMEPAGE="https://github.com/jesseduffield/lazygit"
41 -SRC_URI="https://github.com/jesseduffield/${PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz"
42 -
43 -LICENSE="MIT"
44 -SLOT="0"
45 -KEYWORDS="~amd64"
46 -IUSE="doc"
47 -
48 -DEPEND=( sys-libs/glibc )
49 -RDEPEND=(
50 - ${DEPEND}
51 - dev-vcs/git
52 -)
53 -
54 -DOCS=( src/${EGO_PN}/{CONTRIBUTING,README}.md )
55 -
56 -src_compile() {
57 - GOPATH="${S}" go build -v -o bin/lazygit src/${EGO_PN}/main.go || die
58 -}
59 -
60 -src_install() {
61 - dobin bin/lazygit
62 -
63 - use doc && dodoc -r "src/${EGO_PN}/docs/."
64 - einstalldocs
65 -}