summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorIonen Wolkens <ionen@gentoo.org>2022-04-29 06:39:00 -0400
committerIonen Wolkens <ionen@gentoo.org>2022-04-29 07:22:50 -0400
commita2c152f2e650ca925145523237bd6daf8e967508 (patch)
treedfed9b3ad88007b4bda088789078023fa9350880 /net-misc/ytfzf
parentwww-client/qutebrowser: drop 2.4.0 (diff)
downloadgentoo-a2c152f2e650ca925145523237bd6daf8e967508.tar.gz
gentoo-a2c152f2e650ca925145523237bd6daf8e967508.tar.bz2
gentoo-a2c152f2e650ca925145523237bd6daf8e967508.zip
net-misc/ytfzf: drop 2.2
Signed-off-by: Ionen Wolkens <ionen@gentoo.org>
Diffstat (limited to 'net-misc/ytfzf')
-rw-r--r--net-misc/ytfzf/Manifest1
-rw-r--r--net-misc/ytfzf/ytfzf-2.2.ebuild60
2 files changed, 0 insertions, 61 deletions
diff --git a/net-misc/ytfzf/Manifest b/net-misc/ytfzf/Manifest
index 356440f2ad54..d9e72e31f0f4 100644
--- a/net-misc/ytfzf/Manifest
+++ b/net-misc/ytfzf/Manifest
@@ -1,2 +1 @@
-DIST ytfzf-2.2.tar.gz 3242266 BLAKE2B 7bc6317ea2ee67ca1d93acc5262d5ebc7f6c9828531f1b97d1fd8e4cfb9e9328cf9955da993d59dcfe05a1a983106cf98f3c93ab4b2c007458154f860e333b55 SHA512 9f47da0e56d096d248b14387c3e34f11cc101fa958945e17bdee83d81c2da57faf384fe87d46132e4cc78a5f4f6057462e28c1a64ea647a98120c37ed4e7f50d
DIST ytfzf-2.3.tar.gz 3249215 BLAKE2B 963442379ea324aa6f7b4077df417815ec1e1822d1598029efd397e2a29996ae92aa2f18e67ec6f7fea16a5804d3a7875cec625be1f5f49eb35c85dc84f3a894 SHA512 a282f578459ec53e725d1089a5b5efb78dcc66684ce572d0318f6bfd6e222b706418c77eeeca34d4015ed2bae1cb54de10edaab36522d6012c2ac421796ef34b
diff --git a/net-misc/ytfzf/ytfzf-2.2.ebuild b/net-misc/ytfzf/ytfzf-2.2.ebuild
deleted file mode 100644
index 1a6d408ced73..000000000000
--- a/net-misc/ytfzf/ytfzf-2.2.ebuild
+++ /dev/null
@@ -1,60 +0,0 @@
-# Copyright 2021-2022 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="minimal"
-
-# fzf/mpv/yt-dlp "can" be optfeatures depending on configuration, but depend
-# on them so it works as expected out-of-the-box while allowing to disable.
-RDEPEND="
- app-misc/jq
- net-misc/curl[ssl]
- virtual/awk
- !minimal? (
- app-shells/fzf
- media-video/mpv[lua]
- net-misc/yt-dlp
- )"
-
-src_prepare() {
- default
-
- sed -i "/^: ...YTFZF_SYSTEM_ADDON_DIR/s|/usr/local|${EPREFIX}/usr|" ytfzf || die
-}
-
-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 "in-terminal thumbnails on X11" media-gfx/ueberzug
- optfeature "desktop notifications" x11-libs/libnotify
-
- if [[ ${REPLACING_VERSIONS} ]] && ver_test ${REPLACING_VERSIONS} -lt 2.0; then
- elog "Note that >=${PN}-2.0 is a major rewrite and is not compatible with"
- elog "configuration and some command arguments of older versions, see the"
- elog "newly added ${PN}(1) and ${PN}(5) man pages for more information."
- fi
-}