Gentoo Archives: gentoo-commits

From: Sam James <sam@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: net-im/profanity/
Date: Mon, 20 Sep 2021 03:58:35
Message-Id: 1632110271.138bba575b0816bfd58294e97f84febbed54b13b.sam@gentoo
1 commit: 138bba575b0816bfd58294e97f84febbed54b13b
2 Author: Jonathan Davies <jpds <AT> protonmail <DOT> com>
3 AuthorDate: Wed Jul 14 23:25:36 2021 +0000
4 Commit: Sam James <sam <AT> gentoo <DOT> org>
5 CommitDate: Mon Sep 20 03:57:51 2021 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=138bba57
7
8 net-im/profanity: Version updated to 0.11.0
9
10 * Added dep on virtual/libcrypt.
11
12 Signed-off-by: Jonathan Davies <jpds <AT> protonmail.com>
13 Bug: https://bugs.gentoo.org/802702
14 Closes: https://bugs.gentoo.org/789840
15 Closes: https://github.com/gentoo/gentoo/pull/21647
16 Signed-off-by: Sam James <sam <AT> gentoo.org>
17
18 net-im/profanity/Manifest | 1 +
19 net-im/profanity/profanity-0.11.0.ebuild | 50 ++++++++++++++++++++++++++++++++
20 2 files changed, 51 insertions(+)
21
22 diff --git a/net-im/profanity/Manifest b/net-im/profanity/Manifest
23 index 3bc881c2e23..10964d81786 100644
24 --- a/net-im/profanity/Manifest
25 +++ b/net-im/profanity/Manifest
26 @@ -1 +1,2 @@
27 DIST profanity-0.9.5.tar.gz 830966 BLAKE2B fc1b755b1a92dbde62aacb31cb5d9190cea951e98501a5b48495dbd31266f343cf436de1fa0f69caec34324cd1f781d0bd4f5f7ebdd984324c5d1d6edb91452a SHA512 79305ee488d3a9b87bb422d6525bfaae62c4969d466b968c86941ed5bf0c0080e349758f2e1ead144693513b5d19a635372e73aa1fe9e362836b9245e1d2b898
28 +DIST profanity-0.11.0.tar.gz 887566 BLAKE2B 373b49670d00aa741e1957a8d3ca0282f6e7215c53c6c89088268d92fa6bd8f396e6c8e69f17aeb65f9183f620376613672c7f71c879ece31b97382df5d7a781 SHA512 14164921e151a9201728afc3835e08649036702d1fcdef6e37f83de6da4b9bd9c5e9ba54db69e3a9e16fb7e360369b4e92b6b771bc5e005e343a9a526738a268
29
30 diff --git a/net-im/profanity/profanity-0.11.0.ebuild b/net-im/profanity/profanity-0.11.0.ebuild
31 new file mode 100644
32 index 00000000000..1625e5b0c0a
33 --- /dev/null
34 +++ b/net-im/profanity/profanity-0.11.0.ebuild
35 @@ -0,0 +1,50 @@
36 +# Copyright 1999-2021 Gentoo Authors
37 +# Distributed under the terms of the GNU General Public License v2
38 +
39 +EAPI=7
40 +
41 +DESCRIPTION="A console based XMPP client inspired by Irssi"
42 +HOMEPAGE="https://profanity-im.github.io"
43 +SRC_URI="https://profanity-im.github.io/${P}.tar.gz"
44 +
45 +LICENSE="GPL-3"
46 +SLOT="0"
47 +KEYWORDS="~amd64"
48 +
49 +IUSE="libnotify omemo otr gpg test xscreensaver"
50 +RESTRICT="!test? ( test )"
51 +
52 +COMMON_DEPEND="
53 + dev-db/sqlite
54 + dev-libs/expat
55 + dev-libs/glib
56 + dev-libs/libstrophe:=
57 + dev-libs/openssl:0=
58 + net-misc/curl
59 + sys-apps/util-linux
60 + sys-libs/ncurses:=[unicode]
61 + virtual/libcrypt:=
62 + gpg? ( app-crypt/gpgme:= )
63 + libnotify? ( x11-libs/libnotify )
64 + omemo? (
65 + net-libs/libsignal-protocol-c
66 + dev-libs/libgcrypt
67 + )
68 + otr? ( net-libs/libotr )
69 + xscreensaver? (
70 + x11-libs/libXScrnSaver
71 + x11-libs/libX11 )
72 + "
73 +DEPEND="${COMMON_DEPEND}
74 + test? ( dev-util/cmocka )
75 +"
76 +RDEPEND="${COMMON_DEPEND}"
77 +
78 +src_configure() {
79 + econf \
80 + $(use_enable libnotify notifications) \
81 + $(use_enable omemo) \
82 + $(use_enable otr) \
83 + $(use_enable gpg pgp) \
84 + $(use_with xscreensaver)
85 +}