Gentoo Archives: gentoo-commits

From: Leonardo Hernandez <leohdz172@×××××××.com>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/proj/guru:dev commit in: gui-apps/fnott/
Date: Sun, 07 Aug 2022 21:15:34
Message-Id: 1659906894.c752ffe58a5be7dcd74ee2e59ec08a3f65f386c2.leohdz172@gentoo
1 commit: c752ffe58a5be7dcd74ee2e59ec08a3f65f386c2
2 Author: Leonardo Hernández Hernández <leohdz172 <AT> outlook <DOT> com>
3 AuthorDate: Sun Aug 7 21:13:05 2022 +0000
4 Commit: Leonardo Hernandez <leohdz172 <AT> outlook <DOT> com>
5 CommitDate: Sun Aug 7 21:14:54 2022 +0000
6 URL: https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=c752ffe5
7
8 gui-apps/fnott: add 1.3.0
9
10 Signed-off-by: Leonardo Hernández Hernández <leohdz172 <AT> outlook.com>
11
12 gui-apps/fnott/Manifest | 1 +
13 gui-apps/fnott/fnott-1.3.0.ebuild | 46 +++++++++++++++++++++++++++++++++++++++
14 2 files changed, 47 insertions(+)
15
16 diff --git a/gui-apps/fnott/Manifest b/gui-apps/fnott/Manifest
17 index abf14c4a8..d54eeb504 100644
18 --- a/gui-apps/fnott/Manifest
19 +++ b/gui-apps/fnott/Manifest
20 @@ -1 +1,2 @@
21 DIST fnott-1.2.1.tar.gz 377573 BLAKE2B ed167a7a8d069c75acc8cf7c8ad80afb88b2ed13f590b61f70cd6b8355c77ae25bd95f7401388dbf4650311e8514a9e0c52fa13f500eb18c4f9f0de79de78884 SHA512 7818a01893dd2e8ea7a55355981f83e2d358ce68e36af81fe062c05e1a3405662fb5e221a0509b7212c57ce431e3591d6e4c5d2a1242f2b76c48a00c66e23932
22 +DIST fnott-1.3.0.tar.gz 380852 BLAKE2B ba1ef8210ec9ade6dbaa7a3f3e7ad6e283a8838b11e845e7dae481c0429e64984778a3add947b53a6c32be7c8ec630846c1fd7c2a99e56ec3126083a42787808 SHA512 701823cc50e8432b72e1b17ffb62cd3de7b7e6d08e571c2fbe301bd024820eb72dcb49d9d2e07cf62a81b27175072683dec54d9d8ac9fec0dda0cdf90a23d8c0
23
24 diff --git a/gui-apps/fnott/fnott-1.3.0.ebuild b/gui-apps/fnott/fnott-1.3.0.ebuild
25 new file mode 100644
26 index 000000000..65451529a
27 --- /dev/null
28 +++ b/gui-apps/fnott/fnott-1.3.0.ebuild
29 @@ -0,0 +1,46 @@
30 +# Copyright 2022 Gentoo Authors
31 +# Distributed under the terms of the GNU General Public License v2
32 +
33 +EAPI=8
34 +
35 +inherit meson
36 +
37 +DESCRIPTION="Keyboard driven and lightweight Wayland notification daemon."
38 +HOMEPAGE="https://codeberg.org/dnkl/fnott"
39 +
40 +if [[ "${PV}" == "9999" ]]; then
41 + inherit git-r3
42 + EGIT_REPO_URI="https://codeberg.org/dnkl/fnott.git"
43 +else
44 + SRC_URI="https://codeberg.org/dnkl/fnott/archive/${PV}.tar.gz -> ${P}.tar.gz"
45 + S="${WORKDIR}/${PN}"
46 + KEYWORDS="~amd64"
47 +fi
48 +
49 +LICENSE="MIT ZLIB"
50 +SLOT="0"
51 +
52 +DEPEND="
53 + x11-libs/pixman
54 + media-libs/libpng
55 + dev-libs/wayland
56 + sys-apps/dbus
57 + media-libs/fcft
58 + media-libs/freetype
59 + media-libs/fontconfig
60 +"
61 +RDEPEND="${DEPEND}
62 +"
63 +BDEPEND="
64 + dev-util/wayland-scanner
65 + dev-libs/wayland-protocols
66 + app-text/scdoc
67 + dev-libs/tllist
68 +"
69 +
70 +src_install() {
71 + local DOCS=( CHANGELOG.md README.md LICENSE )
72 + meson_src_install
73 +
74 + rm -r "${ED}"/usr/share/doc/"${PN}" || die
75 +}