diff options
| author | Crucible <crucible@localhost> | 2026-09-22 18:47:35 -0500 |
|---|---|---|
| committer | Crucible <crucible@localhost> | 2026-09-22 18:47:35 -0500 |
| commit | cde96c5ea0c81397fd3214d455a374f76179a7aa (patch) | |
| tree | 12c86d59eb88887c244b1145411db084ae5a6c1f /app-shells | |
| parent | 47516b9667518dacb1efd6d257f7b3e6a481ec93 (diff) | |
| download | baldeagleos-repo-cde96c5ea0c81397fd3214d455a374f76179a7aa.tar.gz baldeagleos-repo-cde96c5ea0c81397fd3214d455a374f76179a7aa.tar.xz baldeagleos-repo-cde96c5ea0c81397fd3214d455a374f76179a7aa.zip | |
Publish baldeagleos-repo candidate 0000000325-20260922-184323
Diffstat (limited to 'app-shells')
| -rw-r--r-- | app-shells/fzf/Manifest | 2 | ||||
| -rw-r--r-- | app-shells/fzf/fzf-0.74.4.ebuild | 60 |
2 files changed, 62 insertions, 0 deletions
diff --git a/app-shells/fzf/Manifest b/app-shells/fzf/Manifest index 9b5cf9ae3e8a..e844574eb642 100644 --- a/app-shells/fzf/Manifest +++ b/app-shells/fzf/Manifest @@ -2,3 +2,5 @@ DIST fzf-0.74.1-vendor.tar.xz 1180420 BLAKE2B 61ce242f6a663be518e8dca473e6d778b7 DIST fzf-0.74.1.tar.gz 451508 BLAKE2B 1a015c82540d687982de572ebd39a78ee5ff12c5fb32ecfe53053270d701d31760ffa0e16945063125bc748490a3426f70814d33b00addef2966b0efe74d963c SHA512 f9ed7469d19de45a370dd0d24640760cf2e7c73ffaa7916ebe04b02b5c639cd30d2abd7c1cf09c4b33c7d20264896e0413de5c43168b36e32f6b6bec40507a49 DIST fzf-0.74.3-vendor.tar.xz 1181232 BLAKE2B 2546ec58220a7b08846cbde5d3cacd5fad03ac9efc13c5c36471cd87e6e290ae1e782512165e1742071dc9ddb771cb64fc72f288397b2f04f300d98f09f08de3 SHA512 9c2958fa2656676831534bc6902274010514c900e15af4250b8c355f6b57548cf0dfdee4e56e32eba080d6414e1ca754b4a03db475b6f86e9d1e8c90029a3969 DIST fzf-0.74.3.tar.gz 476701 BLAKE2B 549c3a6941ea10bfc5e48742888ea4ae5d3b8dc3de46ab99eccf7af6acfd1e9c5dfb4a4440471bd170d6d057cfddc52a8a89271ccc2d27539cb48fbccf0aece4 SHA512 4bd8f0f202ebcc9bf69df729c87a2349637c326479939e424d957ae1633f1bd1526c1e08b207533bdb684eb2e77bedc47bb5ae262532d1c3d16f2e160e276f2c +DIST fzf-0.74.4-vendor.tar.xz 1179928 BLAKE2B ec7b949948affa3bcdee4c7ce222a6a05493e337104143d4b867a27433a4f866458b729e28c6a0ee7b53a8b31a047936114577f740952dad3bcd27ba3dcd0810 SHA512 2aae90e67ff5ec4272100727f93c3bcd00970754feb397da64852a2a14c0aabb71e18d8f651a171026325a3f8ecfe187ed4b2a6b52028a1e0b5b82fd3c897651 +DIST fzf-0.74.4.tar.gz 484612 BLAKE2B adc46be40e904de764405dc96f6f6ee64d69a50af99c0e551a7536a900cea9fade335d2af6fd1d3c13870be7180832249a97a7d7ec3839a991bec890a503d95a SHA512 fe3028fd0e645d98d957560d239e32e4d8d41524eab68e59ff749b416e7598fbc12ebf12752549765ac039feb23b76e6f8d16c8a4056369092598f69686d1743 diff --git a/app-shells/fzf/fzf-0.74.4.ebuild b/app-shells/fzf/fzf-0.74.4.ebuild new file mode 100644 index 000000000000..a12cc8b16881 --- /dev/null +++ b/app-shells/fzf/fzf-0.74.4.ebuild @@ -0,0 +1,60 @@ +# 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=a140afeb4d733cad3c96a56bf6db7e26853b6757 + +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 +} |
