Added dev-vcs/lazygit-0.53.0

This commit is contained in:
saundersp
2025-07-09 20:48:43 +02:00
parent d24b002577
commit 9c8fdb6291
4 changed files with 67 additions and 0 deletions

3
dev-vcs/lazygit/Manifest Normal file
View File

@ -0,0 +1,3 @@
DIST lazygit-0.53.0.tar.gz 5360932 BLAKE2B c1484fe9ac7a39463ddb766d62ce91c9576b681928eca52fd5ab6d65316970416d7fbe4f9c14783b7bd0c1d5eb2cca81602a3522b36814d199895b86908cb0b3 SHA512 98cb4bf8df07133c677cd977d80b8e3a3f6e53c15505dd2a0241903752188f634ce7cc70a3030a33d9676bafc3c5838e7fd5768a2152b25bb2e74444ae194173
EBUILD lazygit-0.53.0.ebuild 643 BLAKE2B 732aa7f4dc97683facc2e2b9bab9b3c86cf420c42857100313cceca7a441f3c724c0f590aa540e9f34d7a46d448346830a77936218e54ff9c21a39254840eb42 SHA512 42817a8ef0af9a7e94dfbbb8036ae7db06e2901b67d7376fbafc760d742eb8acdf07afed02957be3ea921e899977f374383ed18bf50f870c5428a9584b76ef7f
MISC metadata.xml 1352 BLAKE2B db8f0755033ec20415e2c636fc1ecc2d4ab716cfa8bf31380eb2029029e963fdb9f5783d38e48a5120b22939a7b3404b25d0046d9faf309966d21e966d723d06 SHA512 8b08d9c32705e1691d44af8f4963fbaa1728faed53d4fcc6336546cfc8a03610e921a505f9950d6612e1e307fc87fc66a4efb97f3cb624f34d9d9adc5afe1c0a

View File

@ -0,0 +1,32 @@
# Copyright 1999-2025 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=8
inherit go-module
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="Apache-2.0 BSD ISC MIT Unlicense"
SLOT="0"
KEYWORDS="~amd64"
RDEPEND="dev-vcs/git"
DOCS=( {CODE-OF-CONDUCT,CONTRIBUTING,README}.md docs )
src_compile() {
ego build -o bin/lazygit \
-ldflags "-X main.version=${PV}"
}
src_test() {
ego test ./... -short
}
src_install() {
dobin bin/lazygit
einstalldocs
}

View File

@ -0,0 +1,18 @@
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE pkgmetadata SYSTEM "https://www.gentoo.org/dtd/metadata.dtd">
<pkgmetadata>
<maintainer type="person">
<email>torokhov-s-a@yandex.ru</email>
<name>Sergey Torokhov</name>
</maintainer>
<longdescription lang="en">
A simple terminal UI for git commands, written in Go with the gocui library.
Rant time: You've heard it before, git is powerful, but what good is that power when everything is so damn hard to do? Interactive rebasing requires you to edit a goddamn TODO file in your editor? Are you kidding me? To stage part of a file you need to use a command line program to step through each hunk and if a hunk can't be split down any further but contains code you don't want to stage, you have to edit an arcane patch file by hand? Are you KIDDING me?! Sometimes you get asked to stash your changes when switching branches only to realise that after you switch and unstash that there weren't even any conflicts and it would have been fine to just checkout the branch directly? YOU HAVE GOT TO BE KIDDING ME!
If you're a mere mortal like me and you're tired of hearing how powerful git is when in your daily life it's a powerful pain in your ass, lazygit might be for you.
</longdescription>
<upstream>
<remote-id type="github">jesseduffield/lazygit</remote-id>
</upstream>
</pkgmetadata>