Removed dev-vcs/lazygit-0.48.0
This commit is contained in:
parent
92b80c607a
commit
636406a3f7
@ -1,3 +0,0 @@
|
|||||||
DIST lazygit-0.48.0.tar.gz 4802588 BLAKE2B 839ba27d523843c2252b23c7f0d11dabbc2935c50320bccdc1e566374fd953441fc88e02724e615576b4977a1f5c9311b2c234bb7e38839b12085fec37e46a86 SHA512 11ccc07a82cc9fb11d36df4166001aff007e70e0af2941317bcd983acacaa89716c337aab7190415da7a49917ef62080b6cee0175cc9ac2b1624280b1635837b
|
|
||||||
EBUILD lazygit-0.48.0.ebuild 650 BLAKE2B c4f19584e2494b9ab1f6e7b34e4cf2aebfc150a2d98dac0ca9f96441d08a263ad81dfb746db8efecac53687c4f9a93e71b62267d2b8007cf2343f91c7664c3ad SHA512 b217ff218e3f37f9b247961479028f74a9d774fa1fc08f51e50f91916d7984658b9c1f715de0183397a79882d581eccc149634d1dcee45add3acd57a454117ec
|
|
||||||
MISC metadata.xml 2060 BLAKE2B c4e965a5e06c2b38323367dd2b709b61c09ba29ecf55d2f534474d1e873a09d77682c9083088e9d8d60e58a87b9f66a4b723b671b8fb73deb7e18d2715f85c63 SHA512 239fc9d87aa8ed089cd489830619e690c10dc6ff0356860749fecb60c67b9fdeaa60b796808b8e7c7d69ae0e09f96ca039e3620ec060ae03d1778de7e8123431
|
|
@ -1,32 +0,0 @@
|
|||||||
# 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 ~arm64'
|
|
||||||
|
|
||||||
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
|
|
||||||
}
|
|
@ -1,28 +0,0 @@
|
|||||||
<?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 both docker and docker-compose, written in Go with the gocui library.
|
|
||||||
Minor rant incoming: Something's not working? Maybe a service is down. docker-compose ps.
|
|
||||||
Yep, it's that microservice that's still buggy. No issue, I'll just restart it: docker-compose restart.
|
|
||||||
Okay now let's try again. Oh wait the issue is still there. Hmm. docker-compose ps.
|
|
||||||
Right so the service must have just stopped immediately after starting.
|
|
||||||
I probably would have known that if I was reading the log stream, but there is a lot of clutter in there from other services.
|
|
||||||
I could get the logs for just that one service with docker compose logs --follow myservice but that dies everytime the service dies so I'd need to run that command every time I restart the service.
|
|
||||||
I could alternatively run docker-compose up myservice and in that terminal window if the service is down I could just up it again,
|
|
||||||
but now I've got one service hogging a terminal window even after I no longer care about its logs.
|
|
||||||
I guess when I want to reclaim the terminal realestate I can do ctrl+P,Q, but... wait, that's not working for some reason.
|
|
||||||
Should I use ctrl+C instead? I can't remember if that closes the foreground process or kills the actual service.
|
|
||||||
What a headache! Memorising docker commands is hard. Memorising aliases is slightly less hard.
|
|
||||||
Keeping track of your containers across multiple terminal windows is near impossible.
|
|
||||||
What if you had all the information you needed in one terminal window with every common command living one keypress away (and the ability to add custom commands as well).
|
|
||||||
Lazydocker's goal is to make that dream a reality.
|
|
||||||
</longdescription>
|
|
||||||
<upstream>
|
|
||||||
<remote-id type="github">jesseduffield/lazydocker</remote-id>
|
|
||||||
</upstream>
|
|
||||||
</pkgmetadata>
|
|
@ -1,14 +0,0 @@
|
|||||||
BDEPEND=>=dev-lang/go-1.20:= app-arch/unzip
|
|
||||||
DEFINED_PHASES=compile install test unpack
|
|
||||||
DESCRIPTION=Simple terminal UI for git commands
|
|
||||||
EAPI=8
|
|
||||||
HOMEPAGE=https://github.com/jesseduffield/lazygit
|
|
||||||
INHERIT=go-module
|
|
||||||
KEYWORDS=~amd64 ~arm64
|
|
||||||
LICENSE=Apache-2.0 BSD ISC MIT Unlicense
|
|
||||||
RDEPEND=dev-vcs/git
|
|
||||||
RESTRICT=strip
|
|
||||||
SLOT=0
|
|
||||||
SRC_URI=https://github.com/jesseduffield/lazygit/archive/v0.48.0.tar.gz -> lazygit-0.48.0.tar.gz
|
|
||||||
_eclasses_=multiprocessing 1e32df7deee68372153dca65f4a7c21f toolchain-funcs 6afdb6107430c1832ca7e16aacbf8fa1 multilib b2a329026f2e404e9e371097dda47f96 flag-o-matic 16d3941ed2dc39f4819368ae51bc0b72 go-env 0e2babf96e7d0b045fc07ad199eb2399 go-module df32d29550d40a92da723d3b8e17b467
|
|
||||||
_md5_=96123dbfa90694e85a74f788d436158a
|
|
Loading…
x
Reference in New Issue
Block a user