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, 29 Jun 2022 04:18:09
Message-Id: 1656476254.be9c8c4c00da764de64327121b6049204cf28c02.ionen@gentoo
1 commit: be9c8c4c00da764de64327121b6049204cf28c02
2 Author: Ionen Wolkens <ionen <AT> gentoo <DOT> org>
3 AuthorDate: Wed Jun 29 04:15:30 2022 +0000
4 Commit: Ionen Wolkens <ionen <AT> gentoo <DOT> org>
5 CommitDate: Wed Jun 29 04:17:34 2022 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=be9c8c4c
7
8 net-misc/ytfzf: add 2.4.0
9
10 Signed-off-by: Ionen Wolkens <ionen <AT> gentoo.org>
11
12 net-misc/ytfzf/Manifest | 1 +
13 net-misc/ytfzf/ytfzf-2.4.0.ebuild | 60 +++++++++++++++++++++++++++++++++++++++
14 2 files changed, 61 insertions(+)
15
16 diff --git a/net-misc/ytfzf/Manifest b/net-misc/ytfzf/Manifest
17 index d9e72e31f0f4..0dd7c8619a4c 100644
18 --- a/net-misc/ytfzf/Manifest
19 +++ b/net-misc/ytfzf/Manifest
20 @@ -1 +1,2 @@
21 DIST ytfzf-2.3.tar.gz 3249215 BLAKE2B 963442379ea324aa6f7b4077df417815ec1e1822d1598029efd397e2a29996ae92aa2f18e67ec6f7fea16a5804d3a7875cec625be1f5f49eb35c85dc84f3a894 SHA512 a282f578459ec53e725d1089a5b5efb78dcc66684ce572d0318f6bfd6e222b706418c77eeeca34d4015ed2bae1cb54de10edaab36522d6012c2ac421796ef34b
22 +DIST ytfzf-2.4.0.tar.gz 3253168 BLAKE2B e25bd13c01f5b035378dd6657358bc2ec67ff29f1db42fc8c07f0f820252efa4e6da6342265ea4107ec3179d317ac9742646a641a1c9e4e2a84360b39df6bf3d SHA512 9b66d8b56bb8a35baf04a5d34614882f8302e2f543d12182188438c50a76cca1182d7ac3a4a7a3d80d7c924478fd3af7968701e5d5ab8531a9d6f4ed5b731ece
23
24 diff --git a/net-misc/ytfzf/ytfzf-2.4.0.ebuild b/net-misc/ytfzf/ytfzf-2.4.0.ebuild
25 new file mode 100644
26 index 000000000000..aabfab731b1b
27 --- /dev/null
28 +++ b/net-misc/ytfzf/ytfzf-2.4.0.ebuild
29 @@ -0,0 +1,60 @@
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_prepare() {
59 + default
60 +
61 + sed -i "/^: ...YTFZF_SYSTEM_ADDON_DIR/s|/usr/local|${EPREFIX}/usr|" ytfzf || die
62 +}
63 +
64 +src_compile() { :; }
65 +
66 +src_install() {
67 + local emakeargs=(
68 + DESTDIR="${D}"
69 + PREFIX="${EPREFIX}"/usr
70 + DOCDIR="${EPREFIX}"/usr/share/doc/${PF}
71 + )
72 +
73 + emake "${emakeargs[@]}" addons doc install
74 + einstalldocs
75 +
76 + rm -r "${ED}"/usr/share/licenses || die
77 +}
78 +
79 +pkg_postinst() {
80 + optfeature "external menu support" x11-misc/dmenu
81 + optfeature "in-terminal thumbnails on X11" media-gfx/ueberzug
82 + optfeature "desktop notifications" x11-libs/libnotify
83 +
84 + if [[ ! ${REPLACING_VERSIONS} ]]; then
85 + elog "Note that ${PN} supports many methods to display menus/thumbnails."
86 + elog "This ebuild primarily covers defaults and major features, additional"
87 + elog "dependencies may be needed for others."
88 + fi
89 +}