Gentoo Archives: gentoo-commits

From: Ionen Wolkens <ionen@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: net-misc/ytfzf/
Date: Wed, 02 Mar 2022 10:07:35
Message-Id: 1646214827.17a3fe2e1416e557d29b17d08f1f99c27075492f.ionen@gentoo
1 commit: 17a3fe2e1416e557d29b17d08f1f99c27075492f
2 Author: Ionen Wolkens <ionen <AT> gentoo <DOT> org>
3 AuthorDate: Wed Mar 2 09:39:25 2022 +0000
4 Commit: Ionen Wolkens <ionen <AT> gentoo <DOT> org>
5 CommitDate: Wed Mar 2 09:53:47 2022 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=17a3fe2e
7
8 net-misc/ytfzf: drop 2.1
9
10 Signed-off-by: Ionen Wolkens <ionen <AT> gentoo.org>
11
12 net-misc/ytfzf/Manifest | 1 -
13 net-misc/ytfzf/ytfzf-2.1.ebuild | 54 -----------------------------------------
14 2 files changed, 55 deletions(-)
15
16 diff --git a/net-misc/ytfzf/Manifest b/net-misc/ytfzf/Manifest
17 index d71a13eb252b..76d90ffa86df 100644
18 --- a/net-misc/ytfzf/Manifest
19 +++ b/net-misc/ytfzf/Manifest
20 @@ -1,2 +1 @@
21 -DIST ytfzf-2.1.tar.gz 3230643 BLAKE2B b296048c976c260b3192f770bdf2dec99f5ad45066deeac23429808254552ea125ea8a8d129c47a5110916c4194f7b7742dd01f095809f4913077600a8205d4b SHA512 a86203bc1dffd05ff3543c44d5612bc8b0ffc675ce0484499cb89aa88c2618c88e832dd95ff2cd6f1803698c1c3264709a1e280ddbb9fb0985c0178f3adc16ea
22 DIST ytfzf-2.2.tar.gz 3242266 BLAKE2B 7bc6317ea2ee67ca1d93acc5262d5ebc7f6c9828531f1b97d1fd8e4cfb9e9328cf9955da993d59dcfe05a1a983106cf98f3c93ab4b2c007458154f860e333b55 SHA512 9f47da0e56d096d248b14387c3e34f11cc101fa958945e17bdee83d81c2da57faf384fe87d46132e4cc78a5f4f6057462e28c1a64ea647a98120c37ed4e7f50d
23
24 diff --git a/net-misc/ytfzf/ytfzf-2.1.ebuild b/net-misc/ytfzf/ytfzf-2.1.ebuild
25 deleted file mode 100644
26 index c11320bd52ab..000000000000
27 --- a/net-misc/ytfzf/ytfzf-2.1.ebuild
28 +++ /dev/null
29 @@ -1,54 +0,0 @@
30 -# Copyright 2021-2022 Gentoo Authors
31 -# Distributed under the terms of the GNU General Public License v2
32 -
33 -EAPI=8
34 -
35 -inherit optfeature
36 -
37 -DESCRIPTION="Posix script to find and watch youtube videos from the terminal"
38 -HOMEPAGE="https://github.com/pystardust/ytfzf/"
39 -SRC_URI="https://github.com/pystardust/ytfzf/archive/refs/tags/v${PV}.tar.gz -> ${P}.tar.gz"
40 -
41 -LICENSE="GPL-3"
42 -SLOT="0"
43 -KEYWORDS="~amd64 ~x86"
44 -IUSE="minimal"
45 -
46 -# fzf/mpv/yt-dlp "can" be optfeatures depending on configuration, but depend
47 -# on them so it works as expected out-of-the-box while allowing to disable.
48 -RDEPEND="
49 - app-misc/jq
50 - net-misc/curl[ssl]
51 - virtual/awk
52 - !minimal? (
53 - app-shells/fzf
54 - media-video/mpv[lua]
55 - net-misc/yt-dlp
56 - )"
57 -
58 -src_compile() { :; }
59 -
60 -src_install() {
61 - local emakeargs=(
62 - DESTDIR="${D}"
63 - PREFIX="${EPREFIX}"/usr
64 - DOCDIR="${EPREFIX}"/usr/share/doc/${PF}
65 - )
66 -
67 - emake "${emakeargs[@]}" doc install
68 - einstalldocs
69 -
70 - rm -r "${ED}"/usr/share/licenses || die
71 -}
72 -
73 -pkg_postinst() {
74 - optfeature "external menu support" x11-misc/dmenu
75 - optfeature "in-terminal thumbnails on X11" media-gfx/ueberzug
76 - optfeature "desktop notifications" x11-libs/libnotify
77 -
78 - if [[ ${REPLACING_VERSIONS} ]] && ver_test ${REPLACING_VERSIONS} -lt 2.0; then
79 - elog "Note that >=${PN}-2.0 is a major rewrite and is not compatible with"
80 - elog "configuration and some command arguments of older versions, see the"
81 - elog "newly added ${PN}(1) and ${PN}(5) man pages for more information."
82 - fi
83 -}