app-shells/fzf: drop 0.72.0, 0.73.1, 0.74.0

Signed-off-by: Arthur Zamarin <arthurzam@gentoo.org>
This commit is contained in:
Arthur Zamarin
2026-08-25 16:35:55 +03:00
parent 973bf83e57
commit a6d1e66674
4 changed files with 0 additions and 186 deletions

View File

@@ -1,8 +1,2 @@
DIST fzf-0.72.0-vendor.tar.xz 1178792 BLAKE2B 57950c9c982095c1f91f830c53bd0817ef34d92f795b1987c936fb1c908ae4d7f0398ac5b7aa4de99146f6c3b970ad01c3c4fc9fb7034306a386f656cc7d3d71 SHA512 c459dc7e6f46ad72a6fa59116e7d7d1e8c8aed1c0e1fd65ed097934f8e965fef119cd890d32d688bfc6dbf761022213e78c3562ae887b115c3f845d87a33d935
DIST fzf-0.72.0.tar.gz 412234 BLAKE2B a84fefed845b283f0a06641a3b1b6b2f16ecae9f8b41e40a21aeed863fa5debd257125c9bba6d0acd8be3b2c24d76fb3eb0ef0d655b8ef4701044d0969568227 SHA512 e1dbfd7c471e63c17ac46ae532201d5f740dc508e92a5cd4eb117cd6e13aff6f31e641402f99f78d11eeafd1f46fb0af2f9a607843cf9a4374facc65f0916af4
DIST fzf-0.73.1-vendor.tar.xz 1179956 BLAKE2B 5535446f2db978d208013000dc1e7883c5651b792828927debcdffdc2c887159d7c5ced27fbd7f0598f54a22226aef4f285d527c7cf0da93a3de77cfb469c2bd SHA512 21363e113d0c969e30c395fbc9aa152e7dc3215ea4bdafb5a94527f8ba56e40d46c91f0190caaf70646c97bc3c12987219aa97c27d274b8277d2c736613d2478
DIST fzf-0.73.1.tar.gz 432946 BLAKE2B f36addc7b16a53b9a20cf40985a876c1cce2bdd72a79d9657202d02103b644c3aee73df777eb064e8727819e88e8dc10a4d810f4b0c3ec8a16da4c0b953b89e5 SHA512 9c75dc1be8e78ae2ec92d70b5abbc58f10756dd202a369cc0198b0345dfa4d71fb1f516b584f89b1494f2737b42b43ba3f4d7ea7c0e3f0145c4ce022acbcc11a
DIST fzf-0.74.0-vendor.tar.xz 1180144 BLAKE2B f38d6f2491b788a671579c56476029bf356d7d3eedb25f87f9de00b9f521821d26ef9adfd3ea783032bd210f66c74105fa1944def4976c2b8863ff0c62ae2fed SHA512 1843e1abf98b3dba88a6cb0231f684f464b18b287c17de8cdf9b0846ea5a129adfa03e94981677de6460b81c0d4202960a35da3d22ae83a35868acbd9de64b37
DIST fzf-0.74.0.tar.gz 446279 BLAKE2B 69890e6b990aa424ed778bf88d9d443d39b4e64a32b79dfd7e23cf38f6c9ed3ada4b907695fe9d4e8905ab42f47bb2225179eb95790377edc1be17eeb60f6aa7 SHA512 fcb92556b9350127828bebe76cda4798ac625e3fa472f03cb162b68b316f91e96a78ef6c641a8cbf0aaddb6d036574be73305cad923948ba8905a6ea837841f4
DIST fzf-0.74.1-vendor.tar.xz 1180420 BLAKE2B 61ce242f6a663be518e8dca473e6d778b7a8f885dec38d62b6df0dbbd04dca039940b16006c15f017bddad146b65ac0a086803e5e6aa23eeeeb8537a2b39a9a4 SHA512 8f328bb5979c5a3f14ab9ab7bdb2c6a069890a22571914cdf8db6ce6749e7d72cb88b2ae223be1a998492f0ecd54da22b0a723764c9552062ca5de63b55e9908
DIST fzf-0.74.1.tar.gz 451508 BLAKE2B 1a015c82540d687982de572ebd39a78ee5ff12c5fb32ecfe53053270d701d31760ffa0e16945063125bc748490a3426f70814d33b00addef2966b0efe74d963c SHA512 f9ed7469d19de45a370dd0d24640760cf2e7c73ffaa7916ebe04b02b5c639cd30d2abd7c1cf09c4b33c7d20264896e0413de5c43168b36e32f6b6bec40507a49

View File

@@ -1,60 +0,0 @@
# Copyright 2019-2026 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=8
inherit go-module readme.gentoo-r1 shell-completion
DESCRIPTION="General-purpose command-line fuzzy finder, written in Golang"
HOMEPAGE="https://github.com/junegunn/fzf"
MY_GIT_REV=2ab923f3ae04d5e915e5ff4a9cd3bd515bfd1ea5
SRC_URI="https://github.com/junegunn/${PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz"
SRC_URI+=" https://github.com/gentoo-golang-dist/${PN}/releases/download/v${PV}/${P}-vendor.tar.xz"
LICENSE="MIT BSD-with-disclosure"
# Dependent licenses
LICENSE+=" BSD MIT"
SLOT="0"
KEYWORDS="amd64 ~arm arm64 ~ppc64 ~riscv x86"
src_compile() {
local go_ldflags=(
-X main.version=${PV}
-X main.revision=${MY_GIT_REV:0:7}
)
ego build -trimpath -ldflags "${go_ldflags[*]}" -o bin/${PN} .
}
src_test() {
ego test -v github.com/junegunn/fzf/src{,/algo,/tui,/util}
}
src_install() {
dobin bin/${PN}
doman man/man1/${PN}.1
dobin bin/${PN}-tmux
doman man/man1/${PN}-tmux.1
newbashcomp shell/completion.bash ${PN}
newzshcomp shell/completion.zsh _${PN}
insinto /usr/share/vim/vimfiles/plugin
doins plugin/${PN}.vim
insinto /usr/share/nvim/runtime/plugin
doins plugin/${PN}.vim
insinto /usr/share/fzf
doins shell/key-bindings.bash
doins shell/key-bindings.fish
doins shell/key-bindings.zsh
readme.gentoo_create_doc
}
pkg_postinst() {
readme.gentoo_print_elog
}

View File

@@ -1,60 +0,0 @@
# Copyright 2019-2026 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=8
inherit go-module readme.gentoo-r1 shell-completion
DESCRIPTION="General-purpose command-line fuzzy finder, written in Golang"
HOMEPAGE="https://github.com/junegunn/fzf"
MY_GIT_REV=2ab923f3ae04d5e915e5ff4a9cd3bd515bfd1ea5
SRC_URI="https://github.com/junegunn/${PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz"
SRC_URI+=" https://github.com/gentoo-golang-dist/${PN}/releases/download/v${PV}/${P}-vendor.tar.xz"
LICENSE="MIT BSD-with-disclosure"
# Dependent licenses
LICENSE+=" BSD MIT"
SLOT="0"
KEYWORDS="amd64 ~arm arm64 ~ppc64 ~riscv x86"
src_compile() {
local go_ldflags=(
-X main.version=${PV}
-X main.revision=${MY_GIT_REV:0:7}
)
ego build -trimpath -ldflags "${go_ldflags[*]}" -o bin/${PN} .
}
src_test() {
ego test -v github.com/junegunn/fzf/src{,/algo,/tui,/util}
}
src_install() {
dobin bin/${PN}
doman man/man1/${PN}.1
dobin bin/${PN}-tmux
doman man/man1/${PN}-tmux.1
newbashcomp shell/completion.bash ${PN}
newzshcomp shell/completion.zsh _${PN}
insinto /usr/share/vim/vimfiles/plugin
doins plugin/${PN}.vim
insinto /usr/share/nvim/runtime/plugin
doins plugin/${PN}.vim
insinto /usr/share/fzf
doins shell/key-bindings.bash
doins shell/key-bindings.fish
doins shell/key-bindings.zsh
readme.gentoo_create_doc
}
pkg_postinst() {
readme.gentoo_print_elog
}

View File

@@ -1,60 +0,0 @@
# Copyright 2019-2026 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=8
inherit go-module readme.gentoo-r1 shell-completion
DESCRIPTION="General-purpose command-line fuzzy finder, written in Golang"
HOMEPAGE="https://github.com/junegunn/fzf"
MY_GIT_REV=6765f464a60e39afc20775f54f7ba40896bf1b81
SRC_URI="https://github.com/junegunn/${PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz"
SRC_URI+=" https://github.com/gentoo-golang-dist/${PN}/releases/download/v${PV}/${P}-vendor.tar.xz"
LICENSE="MIT BSD-with-disclosure"
# Dependent licenses
LICENSE+=" BSD MIT"
SLOT="0"
KEYWORDS="amd64 ~arm arm64 ~ppc64 ~riscv x86"
src_compile() {
local go_ldflags=(
-X main.version=${PV}
-X main.revision=${MY_GIT_REV:0:7}
)
ego build -trimpath -ldflags "${go_ldflags[*]}" -o bin/${PN} .
}
src_test() {
ego test -v github.com/junegunn/fzf/src{,/algo,/tui,/util}
}
src_install() {
dobin bin/${PN}
doman man/man1/${PN}.1
dobin bin/${PN}-tmux
doman man/man1/${PN}-tmux.1
newbashcomp shell/completion.bash ${PN}
newzshcomp shell/completion.zsh _${PN}
insinto /usr/share/vim/vimfiles/plugin
doins plugin/${PN}.vim
insinto /usr/share/nvim/runtime/plugin
doins plugin/${PN}.vim
insinto /usr/share/fzf
doins shell/key-bindings.bash
doins shell/key-bindings.fish
doins shell/key-bindings.zsh
readme.gentoo_create_doc
}
pkg_postinst() {
readme.gentoo_print_elog
}