diff options
Diffstat (limited to 'net-misc')
-rw-r--r-- | net-misc/Manifest.gz | bin | 54131 -> 54129 bytes | |||
-rw-r--r-- | net-misc/ytfzf/Manifest | 2 | ||||
-rw-r--r-- | net-misc/ytfzf/ytfzf-2.5.5.ebuild | 53 |
3 files changed, 0 insertions, 55 deletions
diff --git a/net-misc/Manifest.gz b/net-misc/Manifest.gz Binary files differindex b1e21a303eeb..9dd0cd954e05 100644 --- a/net-misc/Manifest.gz +++ b/net-misc/Manifest.gz diff --git a/net-misc/ytfzf/Manifest b/net-misc/ytfzf/Manifest index 27e8a4dbbdda..c3b2db72acc9 100644 --- a/net-misc/ytfzf/Manifest +++ b/net-misc/ytfzf/Manifest @@ -1,5 +1,3 @@ -DIST ytfzf-2.5.5.tar.gz 3278740 BLAKE2B e80ee83cbd80fd3d53dd4e3f9aca4fed71b6bbebc6b0f0d8c85263efa4dfd184e45998719df966279365378669624119035f069c4d2b2d5f820e5304bd36604d SHA512 811fbc1de1b23bddd988c74212f0d6b314e5a7998ebc06e0481d42a5e6afa530f10a0e749a293a76799eff1fc380ebd54210f5e152c6d8ab07fd39327544c9d7 DIST ytfzf-2.6.0.tar.gz 3277853 BLAKE2B f99de6c473ee728d42290a647df9e0404dea92854203f306401d916e920814517dee3ddde8c8ff06cb7ff29f5a9b8f438867a1d9bc02aa6e208d030ad8b786a7 SHA512 fb9a1bd161a735a9c464948d6ba3664982eadd25456d5d565c57e478574949324dbf556620fb837c00bc4946c65336ec895f7c59e1169631effadf70085773c4 -EBUILD ytfzf-2.5.5.ebuild 1317 BLAKE2B a0de447cc088afd0fcbe686fa2b378917b69854ef45bff7f858ea99b700903bdfd656bf1ea260908cedf817950598175aa185ad9b44bdc4b659415e618736aef SHA512 01a0ee642b1a8fffc57916af82017bf3fac94e4e299f1c0ebe3084dfcc1e97debe1977943694502c341948e4fcbbf3501b94c255058af382cfd52463e905b409 EBUILD ytfzf-2.6.0.ebuild 1380 BLAKE2B e9fa39dcabf24063ab3c0ef4a0e0ff5f999b14f13f06839581db6b2a9219a47b7da9f3474cacecf8d215c61fd9cb1f216f549320004d1d7d6ac59c3e1f0871ac SHA512 b80d0656aba48fe99a2075c6a42dd8a4ca92a723483fb7b74f9e80d1aff1e47b98ccccaaa2457229b0f3e44bd7895394dd162987969e90e6e662cacbbe5740eb MISC metadata.xml 650 BLAKE2B cef000d14639ebedc5583c42fc5ec8ea62307702ee1ca01272356a4aea375a464d0c0a24bedff98e38e16133161d09864e4c4875e7ecbad96b1611aebe0924e5 SHA512 61b25935bb80c572023948e49bfd3c8bf7551e94f0cc36592049f03498557c165f3c64815c41067ae85823254e578134770a235072254fd9e2e7ad06956c9b2f diff --git a/net-misc/ytfzf/ytfzf-2.5.5.ebuild b/net-misc/ytfzf/ytfzf-2.5.5.ebuild deleted file mode 100644 index 298b683ffacb..000000000000 --- a/net-misc/ytfzf/ytfzf-2.5.5.ebuild +++ /dev/null @@ -1,53 +0,0 @@ -# Copyright 2021-2023 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=8 - -inherit optfeature - -DESCRIPTION="Posix script to find and watch youtube videos from the terminal" -HOMEPAGE="https://github.com/pystardust/ytfzf/" -SRC_URI="https://github.com/pystardust/ytfzf/archive/refs/tags/v${PV}.tar.gz -> ${P}.tar.gz" - -LICENSE="GPL-3" -SLOT="0" -KEYWORDS="amd64 x86" -IUSE="X minimal" - -RDEPEND=" - app-misc/jq - net-misc/curl[ssl] - app-alternatives/awk - !minimal? ( - X? ( media-gfx/ueberzug ) - app-shells/fzf - media-video/mpv[lua] - net-misc/yt-dlp - )" - -src_compile() { :; } - -src_install() { - local emakeargs=( - DESTDIR="${D}" - PREFIX="${EPREFIX}"/usr - DOCDIR="${EPREFIX}"/usr/share/doc/${PF} - ) - - emake "${emakeargs[@]}" addons doc install - einstalldocs - - rm -r "${ED}"/usr/share/licenses || die -} - -pkg_postinst() { - optfeature "external menu support" x11-misc/dmenu - optfeature "desktop notifications" x11-libs/libnotify - - if [[ ! ${REPLACING_VERSIONS} ]]; then - elog "Note that ${PN} supports many methods to display menus/thumbnails." - elog "This ebuild primarily covers defaults and major features, additional" - elog "dependencies may be needed for others. Set USE=minimal if want full" - elog "control over optional dependencies (e.g. fzf is optional if use dmenu)." - fi -} |