mirror of
https://github.com/gentoo-mirror/gentoo.git
synced 2026-09-24 04:59:14 -07:00
app-shells/fzf: drop 0.64.0, 0.65.1
Signed-off-by: Arthur Zamarin <arthurzam@gentoo.org>
This commit is contained in:
@@ -1,7 +1,3 @@
|
||||
DIST fzf-0.64.0-deps.tar.xz 5919740 BLAKE2B 43bd235aef55b51f0176edd5f530ac9961d1e52f920ce5042a74c926af01561b4921f43f28cfbb62dce95698252c37bb5da883ae608ea7d93badbb067be3250a SHA512 442126580af3f5d843afdc05e694de29ed3bf083f8c37dba7540427bbb8814f0008c0941d305ad79d6dfa8673fa13d5cc9baf1a1026cba951210cc93470532aa
|
||||
DIST fzf-0.64.0.tar.gz 346041 BLAKE2B 792d0dfd83c2c94ba05f344bf76042a11e817b44eb1e32873f4f469b953ed95dbebd55c23c5311f90547d496a666943204f2808229b15539d9c51789272cad09 SHA512 69320e8b41e02f8adb4993c514edc9029c718da7bfce2240c93f98166179b922441cb078bcf5c06352754fa98e36b6f4371ff66ad6410b9024f9c3b875abac58
|
||||
DIST fzf-0.65.1-deps.tar.xz 5920392 BLAKE2B e2286a075bb5d40ec2808c7a2bc5331e4fd13806f705b033c2fe6e091ae8110a1711857e318bca0c9eea7578386917e123f9ecead33aa41b46ac281e1cf6e241 SHA512 58da6a589a9384b22d0713a8e2ecc665dbe5ba15129893f06ff7eb7beeb92685fb1ae55d45619b6f1c6f0769242c8a84adee7382e9a0fa97ebd0bae220caf999
|
||||
DIST fzf-0.65.1.tar.gz 347658 BLAKE2B fbae5fb2a49041d2ec8fbafaf49015d532e4c1dc50254933b2992ad1244d64ad01d2b7d483b13a5b305aa5e6a4b94f9ed0710be64f35ae53a38c6bfcc899ede9 SHA512 30e1a18c952a624a3b91ec66c492c6976b30b2a8c89f595fa091d26aaf066d83b61e788239c5919b3a863c51f45d0578b6a9f45ccaf0aa32ef97fe468ab0373e
|
||||
DIST fzf-0.65.2-deps.tar.xz 5911688 BLAKE2B 53dd8e6321188d565778eeb7e46a15cf147f183e31769d8158e4520d6dc2ba8a385c674d959adf5c0292a411ecf57fee68dd436370a7ff12ccc435a6c0766d3d SHA512 8788cea3f9fde02ef148bb08519535af5226d8fb6f9b81f73f22f545867092653694101c402aa08d33170e30e05eefcc0e62b530b7d306f10607aae945567d60
|
||||
DIST fzf-0.65.2.tar.gz 347841 BLAKE2B 4e148f15d48571ea27b9723797682828b8c8b2c341ed09c4d82c6ba378f5d9d2e215198afab6e93180e12a818241e88053a368a4007a18972ba3049ce00a0b90 SHA512 5d8a872ad041946f30a000361ae26dbfe66050bfba38462b816ffee54d63dfe1d99103e326193511204268dbc165ccb2efd7c5be1debbec82b5ba70e8d05365d
|
||||
DIST fzf-0.66.1-vendor.tar.xz 1180112 BLAKE2B 6b593b9e8183f8f1e089893238cd7439639bd15164ed2f2d3224d31739fb2f7691e971b1e89a8c646cbe3f7df17cf1deb6caea66332de1656bbf061d0f57ea3b SHA512 d0eec5267861ad83a629544e7320d6e15cdf9d206137985911ccaec3cc66e37a086aab8b6176b621584f7fe60847a98dafe9b74aa3662276f6b2138dacf494fe
|
||||
|
||||
@@ -1,71 +0,0 @@
|
||||
# Copyright 2019-2025 Gentoo Authors
|
||||
# Distributed under the terms of the GNU General Public License v2
|
||||
|
||||
EAPI=8
|
||||
|
||||
inherit go-module shell-completion
|
||||
|
||||
DESCRIPTION="General-purpose command-line fuzzy finder, written in Golang"
|
||||
HOMEPAGE="https://github.com/junegunn/fzf"
|
||||
|
||||
# For fancy versioning only. Bump on the next release!
|
||||
# MY_GIT_REV is the first 7 characters of release commit, we truncate it
|
||||
# after to make it easier to copy/paste.
|
||||
MY_GIT_REV=0076ec2e8d66a725555c256acbe46292019dc1a7
|
||||
MY_GIT_REV=${MY_GIT_REV:0:7}
|
||||
|
||||
SRC_URI="https://github.com/junegunn/${PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz"
|
||||
SRC_URI+=" https://dev.gentoo.org/~mattst88/distfiles/${P}-deps.tar.xz"
|
||||
|
||||
LICENSE="MIT BSD-with-disclosure"
|
||||
SLOT="0"
|
||||
KEYWORDS="amd64 ~arm arm64 ~ppc64 ~riscv x86"
|
||||
|
||||
src_prepare() {
|
||||
default
|
||||
sed -i 's/-s -w //' Makefile || die # bug #795225
|
||||
}
|
||||
|
||||
src_compile() {
|
||||
emake PREFIX="${EPREFIX}"/usr VERSION=${PV} REVISION=${MY_GIT_REV} bin/${PN}
|
||||
}
|
||||
|
||||
src_install() {
|
||||
dobin bin/${PN}
|
||||
doman man/man1/${PN}.1
|
||||
|
||||
dobin bin/${PN}-tmux
|
||||
doman man/man1/${PN}-tmux.1
|
||||
|
||||
insinto /usr/share/vim/vimfiles/plugin
|
||||
doins plugin/${PN}.vim
|
||||
|
||||
insinto /usr/share/nvim/runtime/plugin
|
||||
doins plugin/${PN}.vim
|
||||
|
||||
newbashcomp shell/completion.bash ${PN}
|
||||
|
||||
newzshcomp shell/completion.zsh _${PN}
|
||||
|
||||
insinto /usr/share/fzf
|
||||
doins shell/key-bindings.bash
|
||||
doins shell/key-bindings.fish
|
||||
doins shell/key-bindings.zsh
|
||||
}
|
||||
|
||||
pkg_postinst() {
|
||||
if [[ -z ${REPLACING_VERSIONS} ]]; then
|
||||
elog "To add fzf support to your shell, make sure to use the right file"
|
||||
elog "from ${EROOT}/usr/share/fzf."
|
||||
elog
|
||||
elog "For bash, add the following line to ~/.bashrc:"
|
||||
elog
|
||||
elog " # source ${EROOT}/usr/share/bash-completion/completions/fzf"
|
||||
elog " # source ${EROOT}/usr/share/fzf/key-bindings.bash"
|
||||
elog
|
||||
elog "Plugins for Vim and Neovim are installed to respective directories"
|
||||
elog "and will work out of the box."
|
||||
elog
|
||||
elog "For fzf support in tmux see fzf-tmux(1)."
|
||||
fi
|
||||
}
|
||||
@@ -1,71 +0,0 @@
|
||||
# Copyright 2019-2025 Gentoo Authors
|
||||
# Distributed under the terms of the GNU General Public License v2
|
||||
|
||||
EAPI=8
|
||||
|
||||
inherit go-module shell-completion
|
||||
|
||||
DESCRIPTION="General-purpose command-line fuzzy finder, written in Golang"
|
||||
HOMEPAGE="https://github.com/junegunn/fzf"
|
||||
|
||||
# For fancy versioning only. Bump on the next release!
|
||||
# MY_GIT_REV is the first 7 characters of release commit, we truncate it
|
||||
# after to make it easier to copy/paste.
|
||||
MY_GIT_REV=e5cd7f0a3a73ef598267c1e9f29b0fe9a80925ab
|
||||
MY_GIT_REV=${MY_GIT_REV:0:7}
|
||||
|
||||
SRC_URI="https://github.com/junegunn/${PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz"
|
||||
SRC_URI+=" https://dev.gentoo.org/~mattst88/distfiles/${P}-deps.tar.xz"
|
||||
|
||||
LICENSE="MIT BSD-with-disclosure"
|
||||
SLOT="0"
|
||||
KEYWORDS="~amd64 ~arm ~arm64 ~ppc64 ~riscv ~x86"
|
||||
|
||||
src_prepare() {
|
||||
default
|
||||
sed -i 's/-s -w //' Makefile || die # bug #795225
|
||||
}
|
||||
|
||||
src_compile() {
|
||||
emake PREFIX="${EPREFIX}"/usr VERSION=${PV} REVISION=${MY_GIT_REV} bin/${PN}
|
||||
}
|
||||
|
||||
src_install() {
|
||||
dobin bin/${PN}
|
||||
doman man/man1/${PN}.1
|
||||
|
||||
dobin bin/${PN}-tmux
|
||||
doman man/man1/${PN}-tmux.1
|
||||
|
||||
insinto /usr/share/vim/vimfiles/plugin
|
||||
doins plugin/${PN}.vim
|
||||
|
||||
insinto /usr/share/nvim/runtime/plugin
|
||||
doins plugin/${PN}.vim
|
||||
|
||||
newbashcomp shell/completion.bash ${PN}
|
||||
|
||||
newzshcomp shell/completion.zsh _${PN}
|
||||
|
||||
insinto /usr/share/fzf
|
||||
doins shell/key-bindings.bash
|
||||
doins shell/key-bindings.fish
|
||||
doins shell/key-bindings.zsh
|
||||
}
|
||||
|
||||
pkg_postinst() {
|
||||
if [[ -z ${REPLACING_VERSIONS} ]]; then
|
||||
elog "To add fzf support to your shell, make sure to use the right file"
|
||||
elog "from ${EROOT}/usr/share/fzf."
|
||||
elog
|
||||
elog "For bash, add the following line to ~/.bashrc:"
|
||||
elog
|
||||
elog " # source ${EROOT}/usr/share/bash-completion/completions/fzf"
|
||||
elog " # source ${EROOT}/usr/share/fzf/key-bindings.bash"
|
||||
elog
|
||||
elog "Plugins for Vim and Neovim are installed to respective directories"
|
||||
elog "and will work out of the box."
|
||||
elog
|
||||
elog "For fzf support in tmux see fzf-tmux(1)."
|
||||
fi
|
||||
}
|
||||
Reference in New Issue
Block a user