diff options
author | Gilles Dartiguelongue <eva@gentoo.org> | 2014-04-25 21:28:28 +0000 |
---|---|---|
committer | Gilles Dartiguelongue <eva@gentoo.org> | 2014-04-25 21:28:28 +0000 |
commit | 788c1b0a50f805e4255bdf2ce68571a6752d78fd (patch) | |
tree | b11a552affce56c9d3e8ad1e42dfb2e7684c4436 /net-irc | |
parent | amd64/x86 stable, remove old. (diff) | |
download | gentoo-2-788c1b0a50f805e4255bdf2ce68571a6752d78fd.tar.gz gentoo-2-788c1b0a50f805e4255bdf2ce68571a6752d78fd.tar.bz2 gentoo-2-788c1b0a50f805e4255bdf2ce68571a6752d78fd.zip |
Version bump. Recommended for >=Gnome 3.10.
(Portage version: 2.2.10/cvs/Linux x86_64, signed Manifest commit with key C6085806)
Diffstat (limited to 'net-irc')
-rw-r--r-- | net-irc/telepathy-idle/ChangeLog | 10 | ||||
-rw-r--r-- | net-irc/telepathy-idle/telepathy-idle-0.2.0.ebuild | 37 |
2 files changed, 45 insertions, 2 deletions
diff --git a/net-irc/telepathy-idle/ChangeLog b/net-irc/telepathy-idle/ChangeLog index 266b167e3da9..2c770d4e1d3d 100644 --- a/net-irc/telepathy-idle/ChangeLog +++ b/net-irc/telepathy-idle/ChangeLog @@ -1,6 +1,12 @@ # ChangeLog for net-irc/telepathy-idle -# Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/net-irc/telepathy-idle/ChangeLog,v 1.62 2013/09/05 19:44:51 mgorny Exp $ +# Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2 +# $Header: /var/cvsroot/gentoo-x86/net-irc/telepathy-idle/ChangeLog,v 1.63 2014/04/25 21:28:28 eva Exp $ + +*telepathy-idle-0.2.0 (25 Apr 2014) + + 25 Apr 2014; Gilles Dartiguelongue <eva@gentoo.org> + +telepathy-idle-0.2.0.ebuild: + Version bump. Recommended for >=Gnome 3.10. 05 Sep 2013; Michał Górny <mgorny@gentoo.org> telepathy-idle-0.1.16.ebuild: Clean up PYTHON_COMPAT from old implementations. diff --git a/net-irc/telepathy-idle/telepathy-idle-0.2.0.ebuild b/net-irc/telepathy-idle/telepathy-idle-0.2.0.ebuild new file mode 100644 index 000000000000..a7f7334825e9 --- /dev/null +++ b/net-irc/telepathy-idle/telepathy-idle-0.2.0.ebuild @@ -0,0 +1,37 @@ +# Copyright 1999-2014 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/net-irc/telepathy-idle/telepathy-idle-0.2.0.ebuild,v 1.1 2014/04/25 21:28:28 eva Exp $ + +EAPI=5 +PYTHON_COMPAT=( python2_{6,7} ) + +inherit python-single-r1 + +DESCRIPTION="Full-featured IRC connection manager for Telepathy" +HOMEPAGE="http://cgit.freedesktop.org/telepathy/telepathy-idle" +SRC_URI="http://telepathy.freedesktop.org/releases/${PN}/${P}.tar.gz" + +LICENSE="LGPL-2.1" +SLOT="0" +KEYWORDS="~alpha ~amd64 ~arm ~ia64 ~ppc ~ppc64 ~sparc ~x86 ~x86-linux" +IUSE="test" + +RDEPEND=" + >=dev-libs/dbus-glib-0.51 + >=dev-libs/glib-2.32:2 + >=net-libs/telepathy-glib-0.21[${PYTHON_USEDEP}] + sys-apps/dbus + ${PYTHON_DEPS} +" +DEPEND="${RDEPEND} + virtual/pkgconfig + test? ( dev-python/twisted-words ) +" + +src_prepare() { + # Failed in 0.1.16 and code has not moved since october + # Upstream is working on 1.0 + sed -e 's:connect/server-quit-ignore.py::' \ + -e 's:connect/server-quit-noclose.py::' \ + -i tests/twisted/Makefile.{am,in} || die +} |