Gentoo Archives: gentoo-commits

From: Haelwenn Monnier <contact@×××××××××.me>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/proj/guru:master commit in: net-misc/tooth/
Date: Thu, 01 Dec 2022 03:59:21
Message-Id: 1669646831.f6cc6985e68a96a0f37d9398eb9cabaa48283680.lanodan@gentoo
1 commit: f6cc6985e68a96a0f37d9398eb9cabaa48283680
2 Author: Laurent Morretton <laurent <AT> morretton <DOT> fr>
3 AuthorDate: Mon Nov 28 14:30:53 2022 +0000
4 Commit: Haelwenn Monnier <contact <AT> hacktivis <DOT> me>
5 CommitDate: Mon Nov 28 14:47:11 2022 +0000
6 URL: https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=f6cc6985
7
8 net-misc/tooth: new package, add 9999
9
10 Signed-off-by: Laurent Morretton <laurent <AT> morretton.fr>
11
12 net-misc/tooth/Manifest | 1 +
13 net-misc/tooth/tooth-9999.ebuild | 49 ++++++++++++++++++++++++++++++++++++++++
14 2 files changed, 50 insertions(+)
15
16 diff --git a/net-misc/tooth/Manifest b/net-misc/tooth/Manifest
17 new file mode 100644
18 index 000000000..59fec71f6
19 --- /dev/null
20 +++ b/net-misc/tooth/Manifest
21 @@ -0,0 +1 @@
22 +DIST Tooth 216473 BLAKE2B 6247280fb34db9709bb52faa5032b766487ea516d6d3069dc72f0dcab1415dd68bcbb47532c45083b4debc41d7f108b1637e793955307a21f144432d391bcdf7 SHA512 27ec83fea519dc0e58b703e3b0ae8d4a15ed8d2cef5daa22bc1e294aa402bac62536838b7884cb846db85e0055b605d63edc3342a44fe62b4fe93e91e5ac8f15
23
24 diff --git a/net-misc/tooth/tooth-9999.ebuild b/net-misc/tooth/tooth-9999.ebuild
25 new file mode 100644
26 index 000000000..4d9008886
27 --- /dev/null
28 +++ b/net-misc/tooth/tooth-9999.ebuild
29 @@ -0,0 +1,49 @@
30 +# Copyright 2022 Gentoo Authors
31 +# Distributed under the terms of the GNU General Public License v2
32 +
33 +EAPI=8
34 +
35 +inherit git-r3 vala meson gnome2-utils
36 +
37 +DESCRIPTION="Tooth is a fork of the now archived Tootle, a gtk Mastodon client."
38 +HOMEPAGE="https://github.com/GeopJr/Tooth"
39 +SRC_URI="${HOMEPAGE}"
40 +
41 +LICENSE="GPL-3"
42 +SLOT="0"
43 +KEYWORDS="~amd64"
44 +
45 +RDEPEND=">=dev-util/meson-0.50
46 +>=dev-lang/vala-0.48
47 +>=dev-libs/glib-2.0
48 +>=dev-libs/json-glib-1.4.4
49 +>=dev-libs/libxml2-2.9.10
50 +>=dev-libs/libgee-0.8
51 +gui-libs/gtk:4
52 +>=gui-libs/libadwaita-1.2.0
53 +>=app-crypt/libsecret-0.20"
54 +DEPEND="${RDEPEND}"
55 +BDEPEND="
56 + $(vala_depend)
57 + virtual/pkgconfig
58 +"
59 +
60 +EGIT_REPO_URI="${SRC_URI}"
61 +VALA_MIN_API_VERSION=0.48
62 +
63 +src_prepare() {
64 + default
65 + vala_setup
66 +}
67 +
68 +src_configure() {
69 + meson_src_configure
70 +}
71 +
72 +pkg_postinst() {
73 + gnome2_schemas_update
74 +}
75 +
76 +pkg_postrm() {
77 + gnome2_schemas_update
78 +}