Gentoo Archives: gentoo-commits

From: Mart Raudsepp <leio@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: net-irc/telepathy-idle/
Date: Sat, 12 Oct 2019 13:28:33
Message-Id: 1570886895.2d00f826908dbc1a3c7b29db09a5d7a63652da41.leio@gentoo
1 commit: 2d00f826908dbc1a3c7b29db09a5d7a63652da41
2 Author: Andreas Sturmlechner <asturm <AT> gentoo <DOT> org>
3 AuthorDate: Sat Oct 12 12:16:44 2019 +0000
4 Commit: Mart Raudsepp <leio <AT> gentoo <DOT> org>
5 CommitDate: Sat Oct 12 13:28:15 2019 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=2d00f826
7
8 net-irc/telepathy-idle: EAPI-7 bump, drop bogus PYTHON_USEDEP
9
10 ...on net-libs/telepathy-glib.
11
12 Package-Manager: Portage-2.3.76, Repoman-2.3.17
13 Signed-off-by: Andreas Sturmlechner <asturm <AT> gentoo.org>
14 Signed-off-by: Mart Raudsepp <leio <AT> gentoo.org>
15
16 .../telepathy-idle/telepathy-idle-0.2.0-r1.ebuild | 39 ++++++++++++++++++++++
17 1 file changed, 39 insertions(+)
18
19 diff --git a/net-irc/telepathy-idle/telepathy-idle-0.2.0-r1.ebuild b/net-irc/telepathy-idle/telepathy-idle-0.2.0-r1.ebuild
20 new file mode 100644
21 index 00000000000..f8fc3c2d33b
22 --- /dev/null
23 +++ b/net-irc/telepathy-idle/telepathy-idle-0.2.0-r1.ebuild
24 @@ -0,0 +1,39 @@
25 +# Copyright 1999-2019 Gentoo Authors
26 +# Distributed under the terms of the GNU General Public License v2
27 +
28 +EAPI=7
29 +
30 +PYTHON_COMPAT=( python2_7 )
31 +inherit python-single-r1
32 +
33 +DESCRIPTION="Full-featured IRC connection manager for Telepathy"
34 +HOMEPAGE="https://cgit.freedesktop.org/telepathy/telepathy-idle"
35 +SRC_URI="https://telepathy.freedesktop.org/releases/${PN}/${P}.tar.gz"
36 +
37 +LICENSE="LGPL-2.1"
38 +SLOT="0"
39 +KEYWORDS="~alpha amd64 ~arm arm64 ~ia64 ~ppc ~ppc64 ~sparc x86 ~x86-linux"
40 +IUSE="test"
41 +REQUIRED_USE="${PYTHON_REQUIRED_USE}"
42 +
43 +BDEPEND="
44 + virtual/pkgconfig
45 + test? ( dev-python/twisted-words )
46 +"
47 +RDEPEND="
48 + >=dev-libs/dbus-glib-0.51
49 + >=dev-libs/glib-2.32:2
50 + >=net-libs/telepathy-glib-0.21
51 + sys-apps/dbus
52 + ${PYTHON_DEPS}
53 +"
54 +DEPEND="${RDEPEND}"
55 +
56 +src_prepare() {
57 + default
58 + # Failed in 0.1.16 and code has not moved since october
59 + # Upstream is working on 1.0
60 + sed -e 's:connect/server-quit-ignore.py::' \
61 + -e 's:connect/server-quit-noclose.py::' \
62 + -i tests/twisted/Makefile.{am,in} || die
63 +}