Gentoo Archives: gentoo-commits

From: Florian Schmaus <flow@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: net-im/profanity/
Date: Mon, 02 May 2022 14:54:19
Message-Id: 1651503215.43cdbe6e3dbbb9ce84275d6326a89e81b142592f.flow@gentoo
1 commit: 43cdbe6e3dbbb9ce84275d6326a89e81b142592f
2 Author: マリウス <marius <AT> xn--gckvb8fzb <DOT> com>
3 AuthorDate: Sun May 1 18:52:45 2022 +0000
4 Commit: Florian Schmaus <flow <AT> gentoo <DOT> org>
5 CommitDate: Mon May 2 14:53:35 2022 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=43cdbe6e
7
8 net-im/profanity: version bump to 0.12.1
9
10 Co-authored-by: Florian Schmaus <flow <AT> gentoo.org>
11 Signed-off-by: Marius <marius <AT> xn--gckvb8fzb.com>
12 Closes: https://github.com/gentoo/gentoo/pull/25279
13 Signed-off-by: Florian Schmaus <flow <AT> gentoo.org>
14
15 net-im/profanity/Manifest | 1 +
16 net-im/profanity/profanity-0.12.1.ebuild | 58 ++++++++++++++++++++++++++++++++
17 2 files changed, 59 insertions(+)
18
19 diff --git a/net-im/profanity/Manifest b/net-im/profanity/Manifest
20 index 10964d81786e..f343d5aa16e5 100644
21 --- a/net-im/profanity/Manifest
22 +++ b/net-im/profanity/Manifest
23 @@ -1,2 +1,3 @@
24 DIST profanity-0.9.5.tar.gz 830966 BLAKE2B fc1b755b1a92dbde62aacb31cb5d9190cea951e98501a5b48495dbd31266f343cf436de1fa0f69caec34324cd1f781d0bd4f5f7ebdd984324c5d1d6edb91452a SHA512 79305ee488d3a9b87bb422d6525bfaae62c4969d466b968c86941ed5bf0c0080e349758f2e1ead144693513b5d19a635372e73aa1fe9e362836b9245e1d2b898
25 DIST profanity-0.11.0.tar.gz 887566 BLAKE2B 373b49670d00aa741e1957a8d3ca0282f6e7215c53c6c89088268d92fa6bd8f396e6c8e69f17aeb65f9183f620376613672c7f71c879ece31b97382df5d7a781 SHA512 14164921e151a9201728afc3835e08649036702d1fcdef6e37f83de6da4b9bd9c5e9ba54db69e3a9e16fb7e360369b4e92b6b771bc5e005e343a9a526738a268
26 +DIST profanity-0.12.1.tar.gz 895566 BLAKE2B 8e9a0e21ad598c5fdde293e38b9b6fb363ae06f424e7fd11d12a01ec6d5ce39a83849e56e284c15a842f01d66f3a4011f9518aef3a521459f690a7d052fe591f SHA512 ca3ea92fd439336cd0bf0be42afdda464e25be85b910aef837738b8d1787ac174ac93ccee4fb2fb385228ed7be8e9bac5e96a1f89a68df162785b17d7671463f
27
28 diff --git a/net-im/profanity/profanity-0.12.1.ebuild b/net-im/profanity/profanity-0.12.1.ebuild
29 new file mode 100644
30 index 000000000000..17175e193d4e
31 --- /dev/null
32 +++ b/net-im/profanity/profanity-0.12.1.ebuild
33 @@ -0,0 +1,58 @@
34 +# Copyright 1999-2022 Gentoo Authors
35 +# Distributed under the terms of the GNU General Public License v2
36 +
37 +EAPI=8
38 +
39 +DESCRIPTION="A console based XMPP client inspired by Irssi"
40 +HOMEPAGE="https://profanity-im.github.io"
41 +SRC_URI="https://profanity-im.github.io/tarballs/${P}.tar.gz"
42 +
43 +LICENSE="GPL-3"
44 +SLOT="0"
45 +KEYWORDS="~amd64"
46 +
47 +IUSE="libnotify omemo otr gpg test xscreensaver"
48 +RESTRICT="!test? ( test )"
49 +
50 +COMMON_DEPEND="
51 + dev-db/sqlite:3
52 + dev-libs/atk
53 + dev-libs/glib:2
54 + dev-libs/libassuan
55 + dev-libs/libgpg-error
56 + >=dev-libs/libstrophe-0.11.0
57 + net-misc/curl
58 + sys-libs/ncurses:=[unicode(+)]
59 + virtual/libcrypt:=
60 + media-libs/harfbuzz:=
61 + gpg? ( app-crypt/gpgme:= )
62 + libnotify? ( x11-libs/libnotify )
63 + omemo? (
64 + net-libs/libsignal-protocol-c
65 + dev-libs/libgcrypt:=
66 + )
67 + otr? ( net-libs/libotr )
68 + sys-libs/readline:=
69 + x11-libs/cairo
70 + x11-libs/gdk-pixbuf:2
71 + x11-libs/gtk+:3
72 + x11-libs/pango
73 + xscreensaver? (
74 + x11-libs/libXScrnSaver
75 + x11-libs/libX11
76 + )
77 +"
78 +DEPEND="
79 + ${COMMON_DEPEND}
80 + test? ( dev-util/cmocka )
81 +"
82 +RDEPEND="${COMMON_DEPEND}"
83 +
84 +src_configure() {
85 + econf \
86 + $(use_enable libnotify notifications) \
87 + $(use_enable omemo) \
88 + $(use_enable otr) \
89 + $(use_enable gpg pgp) \
90 + $(with_enable xscreensaver)
91 +}