mirror of
https://github.com/gentoo-mirror/guru.git
synced 2026-07-17 19:13:13 -04:00
Merge updates from master
This commit is contained in:
@@ -1,3 +1 @@
|
||||
DIST fzf-fish-10.0.tar.gz 19038 BLAKE2B 72b87f468e885ae9dcc28e223f2ed283c63cb66d5ddf58d4fe9147c2c46b3d0fc8ec532e191e833912404a941b6f9dd745813b69aa5c1b02aee5c77fae3b5cf8 SHA512 a451d822915cb58df5c0f9851174800c82b3776a190e73be454cc4ab93525718c14b8790868f19fa7c7fb9c68bc5b6d450a72baa28b133775320cb98fdc846c9
|
||||
DIST fzf-fish-8.3.tar.gz 16448 BLAKE2B 913eb6ac2154905ee87356dfe26443ab2151221760e23587433736dc9b7f160a61f52b8e2c052fc2524cb079a87dd46563042c6759c937eaef6a4200d63d0c7d SHA512 eb79f4a458ca4daa4fdf56ff91f1609661a1f7f736709569ae1120addc4fb3f87134b2fbcedf760bab1e275e934bc40b975f9cedad15dac9a422ddd6c29b5b9b
|
||||
DIST fzf-fish-9.0.gh.tar.gz 16863 BLAKE2B 1ea0c289668c50235baaec643a018dca67d20ce7fa2bd2f1524e066fec62485507aec58caac3a652c48c572285a3f36b49dad943e51853afef0e2d97e55d4e25 SHA512 e6d4c7ea8307dd67defdf1c208a8b8662cae987585c980e2b26789cd82f4e1fe64941a43f92408710572f191e226386267490d102f80a4aa139af1619d04afd7
|
||||
DIST fzf-fish-10.2.tar.gz 19375 BLAKE2B 44a4023bf39b71b92f31ece5fc07f5baaf2963882e76a90a6ce5b144d5b4e58799046bb39d86badd86fefa416a713a8ea1bbfbc9ecdf06bfcc9b8e29f47476ef SHA512 26254030317a4dbb318444ed2278fb6870f5facf09dbe48e2891f2b2cd057ea02a17bdd04a37ac0d36f376fdd26651b5d0d8f55d04ed7c6f678721458c7d527a
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
# Copyright 1999-2023 Gentoo Authors
|
||||
# Copyright 1999-2024 Gentoo Authors
|
||||
# Distributed under the terms of the GNU General Public License v2
|
||||
|
||||
EAPI=8
|
||||
@@ -20,8 +20,6 @@ RDEPEND="
|
||||
>=sys-apps/bat-0.16.0
|
||||
>=sys-apps/fd-8.5.0
|
||||
"
|
||||
DEPEND="${RDEPEND}"
|
||||
BDEPEND=""
|
||||
|
||||
src_install() {
|
||||
dofishcomp completions/*
|
||||
@@ -29,5 +27,4 @@ src_install() {
|
||||
doins conf.d/*
|
||||
insinto "/usr/share/fish/vendor_functions.d"
|
||||
doins functions/*
|
||||
einstalldocs
|
||||
}
|
||||
@@ -1,55 +0,0 @@
|
||||
# Copyright 1999-2022 Gentoo Authors
|
||||
# Distributed under the terms of the GNU General Public License v2
|
||||
|
||||
EAPI=8
|
||||
|
||||
DESCRIPTION="Augment your fish command line with fzf key bindings"
|
||||
HOMEPAGE="https://github.com/PatrickF1/fzf.fish"
|
||||
SRC_URI="https://github.com/PatrickF1/fzf.fish/archive/refs/tags/v${PV}.tar.gz -> ${P}.tar.gz"
|
||||
S="${WORKDIR}/${PN/-/.}-${PV}"
|
||||
|
||||
LICENSE="MIT"
|
||||
SLOT="0"
|
||||
KEYWORDS="~amd64"
|
||||
IUSE="test"
|
||||
|
||||
RDEPEND="
|
||||
>=app-shells/fish-3.2.0
|
||||
>=app-shells/fzf-0.27.2
|
||||
>=sys-apps/bat-0.16.0
|
||||
>=sys-apps/fd-8.3.0
|
||||
"
|
||||
DEPEND="
|
||||
${RDEPEND}
|
||||
test? (
|
||||
app-shells/clownfish
|
||||
app-shells/fishtape
|
||||
app-shells/fzf-fish
|
||||
dev-vcs/git
|
||||
)
|
||||
"
|
||||
|
||||
DOCS=( README.md )
|
||||
#RESTRICT="!test? ( test )"
|
||||
RESTRICT="test" # how to run tests?
|
||||
|
||||
src_install() {
|
||||
insinto "/usr/share/fish/vendor_completions.d"
|
||||
doins completions/*
|
||||
insinto "/usr/share/fish/vendor_conf.d"
|
||||
doins conf.d/*
|
||||
insinto "/usr/share/fish/vendor_functions.d"
|
||||
doins functions/*
|
||||
einstalldocs
|
||||
}
|
||||
|
||||
src_test() {
|
||||
# it want a git repo
|
||||
git init || die
|
||||
git config --global user.email "you@example.com" || die
|
||||
git config --global user.name "Your Name" || die
|
||||
git add . || die
|
||||
git commit -m 'init' || die
|
||||
|
||||
fish -c 'fishtape tests/*/*.fish' || die
|
||||
}
|
||||
@@ -1,56 +0,0 @@
|
||||
# Copyright 1999-2022 Gentoo Authors
|
||||
# Distributed under the terms of the GNU General Public License v2
|
||||
|
||||
EAPI=8
|
||||
|
||||
inherit shell-completion
|
||||
|
||||
DESCRIPTION="Augment your fish command line with fzf key bindings"
|
||||
HOMEPAGE="https://github.com/PatrickF1/fzf.fish"
|
||||
SRC_URI="https://github.com/PatrickF1/fzf.fish/archive/refs/tags/v${PV}.tar.gz -> ${P}.gh.tar.gz"
|
||||
S="${WORKDIR}/${PN/-/.}-${PV}"
|
||||
|
||||
LICENSE="MIT"
|
||||
SLOT="0"
|
||||
KEYWORDS="~amd64"
|
||||
IUSE="test"
|
||||
|
||||
RDEPEND="
|
||||
>=app-shells/fish-3.2.0
|
||||
>=app-shells/fzf-0.27.2
|
||||
>=sys-apps/bat-0.16.0
|
||||
>=sys-apps/fd-8.3.0
|
||||
"
|
||||
DEPEND="${RDEPEND}"
|
||||
BDEPEND="
|
||||
test? (
|
||||
app-shells/clownfish
|
||||
app-shells/fishtape
|
||||
app-shells/fzf-fish
|
||||
dev-vcs/git
|
||||
)
|
||||
"
|
||||
|
||||
DOCS=( README.md )
|
||||
#RESTRICT="!test? ( test )"
|
||||
RESTRICT="test" # how to run tests?
|
||||
|
||||
src_install() {
|
||||
dofishcomp completions/*
|
||||
insinto "/usr/share/fish/vendor_conf.d"
|
||||
doins conf.d/*
|
||||
insinto "/usr/share/fish/vendor_functions.d"
|
||||
doins functions/*
|
||||
einstalldocs
|
||||
}
|
||||
|
||||
src_test() {
|
||||
# it want a git repo
|
||||
git init || die
|
||||
git config --global user.email "you@example.com" || die
|
||||
git config --global user.name "Your Name" || die
|
||||
git add . || die
|
||||
git commit -m 'init' || die
|
||||
|
||||
fish -c 'fishtape tests/*/*.fish' || die
|
||||
}
|
||||
@@ -1,2 +1,2 @@
|
||||
DIST megasync-4.12.0.0.tar.gz 25266988 BLAKE2B 0c126feb273d6d11e05a3ec3a5e7925f27bfd86e2ef23306fce4c9b2564b178dc5918b7bef9dcea33a8a5d0462e9c1e8d771c299de6e0f8ed5d4bed616ed58f9 SHA512 fd3ea7b624e66e3d4576c436d983a027e711783d41c585eedf540ba6bbf25ab9128ab4a3c0d2e6806705d54cea5e470d7339d49cc72a635385861f9efd64faf9
|
||||
DIST megasync-sdk-4.12.0.0.tar.gz 3580874 BLAKE2B 7fe63ccd998ac0fe4f6d31d4fb38041d01180044b6a36658da28b0793c2c0c9a95984a937ffa74b11449818ca63a55d7d1faef65e69ea29309d42c4d7646b2c3 SHA512 e97d5901e5445bd677b2d7c50d684dbd6975efcba43ed6618b76d9452b33f5c42eaa8279e920987cf5af63da6ad951589e644bf01814b69739e4260c651aa68b
|
||||
DIST megasync-4.12.2.0.tar.gz 25267623 BLAKE2B e1a7e6f7e3509f8a8cdb402f228ffaf1809a16c134428ff3d0de59684b3440882ae9c0f5e4be38325044305589c988bbb83953cf6c06408b7d319dee9712cc5b SHA512 c99e29e1999eb257bec8d97dea92094c3c429e8b12380ac9097abe5092a8005ad67e09b9d893a69c2bccc061705ffb78ceeedbf5a7923849f4b2cff9e2f98333
|
||||
DIST megasync-sdk-4.12.2.0.tar.gz 3580874 BLAKE2B 7fe63ccd998ac0fe4f6d31d4fb38041d01180044b6a36658da28b0793c2c0c9a95984a937ffa74b11449818ca63a55d7d1faef65e69ea29309d42c4d7646b2c3 SHA512 e97d5901e5445bd677b2d7c50d684dbd6975efcba43ed6618b76d9452b33f5c42eaa8279e920987cf5af63da6ad951589e644bf01814b69739e4260c651aa68b
|
||||
|
||||
Reference in New Issue
Block a user