Skip to content

Commit fcb5d1d

Browse files
committed
dev-vcs/lazygit: 0.44.0 version bump
Signed-off-by: Sergey Torokhov <[email protected]>
1 parent c8602c7 commit fcb5d1d

File tree

2 files changed

+33
-0
lines changed

2 files changed

+33
-0
lines changed

dev-vcs/lazygit/Manifest

+1
Original file line numberDiff line numberDiff line change
@@ -2,3 +2,4 @@ DIST lazygit-0.40.2.tar.gz 4468039 BLAKE2B efea794795af283dc286166427fe5aae4ce84
22
DIST lazygit-0.41.0.tar.gz 4685555 BLAKE2B 2df9686e279c428276c846ccbbcc77ac0037e0383062c17df9425d90dda86767e6dddd16d2efeaea85d2f1bdf4849b36d82d4ccfef4acc7c0261a8480f2174b3 SHA512 ef1d8e2394eb3230c0489e0b0c6726536649697943fa8a7cbf95e9eb600c8fe3429e72539897f04ffd3ee35905b96600c5a79174856c4e49a22fbeada668bf4e
33
DIST lazygit-0.42.0.tar.gz 4639400 BLAKE2B 2af66c2b4816e51b2f7f99b1604817ce1c7e1045beff1994ab7f23eaf2ad9c016268d0b9921a66e34eaf64dc1b0f29b9f2bc3c4aba4a84080df064ea2307d75e SHA512 4d262049b58478cafa5169488daf815b7fa899ff7608f073c2d48ec76b9b691930e8aa662d5cce5dd90b81e439d8146c5ecaba03048f64aaf776e02eca918b73
44
DIST lazygit-0.43.1.tar.gz 4694356 BLAKE2B b8a25e7a73617dae95e36b1272ceafc66bb69e7fe97e467e122720a49dcd99327b16c62cece40284c86f4c0c90b9d8638e6982cc378c8bc54e1a17fca411ba8f SHA512 ad2e05d1975a7f94a04e96e3f3187bda04f3f646e36a7c9768fef6cd86cff4dea49a4408ee6049ca85bb1a40add61fdf83997aea6a4325e15a5511b1db73604f
5+
DIST lazygit-0.44.0.tar.gz 4712697 BLAKE2B a3da1ec65f8e3ad302f3979f615b63d1628c3df7b2b4c8ca60b30d818c0ca13fa97cf8a2216ff249adb4852622fb724a7295cc404446cff96018aefeed908017 SHA512 48cc51d8ffb92d92a04e821db69b9c0058cc2e327d796c9e5367b5e11e43c4335a1e2822d31116920744b00d901e8a8cc532aa98e75a0b5ee300db4aaa351a94

dev-vcs/lazygit/lazygit-0.44.0.ebuild

+32
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,32 @@
1+
# Copyright 1999-2024 Gentoo Authors
2+
# Distributed under the terms of the GNU General Public License v2
3+
4+
EAPI=8
5+
6+
inherit go-module
7+
8+
DESCRIPTION="Simple terminal UI for git commands"
9+
HOMEPAGE="https://github.com/jesseduffield/lazygit"
10+
SRC_URI="https://github.com/jesseduffield/${PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz"
11+
12+
LICENSE="Apache-2.0 BSD ISC MIT Unlicense"
13+
SLOT="0"
14+
KEYWORDS="~amd64"
15+
16+
RDEPEND="dev-vcs/git"
17+
18+
DOCS=( {CODE-OF-CONDUCT,CONTRIBUTING,README}.md docs )
19+
20+
src_compile() {
21+
ego build -o bin/lazygit \
22+
-ldflags "-X main.version=${PV}"
23+
}
24+
25+
src_test() {
26+
ego test ./... -short
27+
}
28+
29+
src_install() {
30+
dobin bin/lazygit
31+
einstalldocs
32+
}

0 commit comments

Comments
 (0)