diff options
author | Pacho Ramos <pacho@gentoo.org> | 2011-04-02 17:01:59 +0000 |
---|---|---|
committer | Pacho Ramos <pacho@gentoo.org> | 2011-04-02 17:01:59 +0000 |
commit | 1cacea12d67d0471e2008ab6bbb531a1bcac20bd (patch) | |
tree | 9fd16a22c509d365dd95c2a4842d389b2f976015 /net-irc | |
parent | Version bump, remove old. (diff) | |
download | gentoo-2-1cacea12d67d0471e2008ab6bbb531a1bcac20bd.tar.gz gentoo-2-1cacea12d67d0471e2008ab6bbb531a1bcac20bd.tar.bz2 gentoo-2-1cacea12d67d0471e2008ab6bbb531a1bcac20bd.zip |
Version bump: Implements SASL channel, properly advertise that text channels implement Messages. Remove old.
(Portage version: 2.1.9.45/cvs/Linux x86_64)
Diffstat (limited to 'net-irc')
-rw-r--r-- | net-irc/telepathy-idle/ChangeLog | 9 | ||||
-rw-r--r-- | net-irc/telepathy-idle/telepathy-idle-0.1.5.ebuild | 29 | ||||
-rw-r--r-- | net-irc/telepathy-idle/telepathy-idle-0.1.8.ebuild (renamed from net-irc/telepathy-idle/telepathy-idle-0.1.6.ebuild) | 22 |
3 files changed, 24 insertions, 36 deletions
diff --git a/net-irc/telepathy-idle/ChangeLog b/net-irc/telepathy-idle/ChangeLog index 1b7256082af2..84b7d50bd44c 100644 --- a/net-irc/telepathy-idle/ChangeLog +++ b/net-irc/telepathy-idle/ChangeLog @@ -1,6 +1,13 @@ # ChangeLog for net-irc/telepathy-idle # Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/net-irc/telepathy-idle/ChangeLog,v 1.25 2011/03/22 20:08:32 ranger Exp $ +# $Header: /var/cvsroot/gentoo-x86/net-irc/telepathy-idle/ChangeLog,v 1.26 2011/04/02 17:01:59 pacho Exp $ + +*telepathy-idle-0.1.8 (02 Apr 2011) + + 02 Apr 2011; Pacho Ramos <pacho@gentoo.org> -telepathy-idle-0.1.5.ebuild, + -telepathy-idle-0.1.6.ebuild, +telepathy-idle-0.1.8.ebuild: + Version bump: Implements SASL channel, properly advertise that text channels + implement Messages. Remove old. 22 Mar 2011; Brent Baude <ranger@gentoo.org> telepathy-idle-0.1.7.ebuild: Marking telepathy-idle-0.1.7 ppc stable for bug 353436 diff --git a/net-irc/telepathy-idle/telepathy-idle-0.1.5.ebuild b/net-irc/telepathy-idle/telepathy-idle-0.1.5.ebuild deleted file mode 100644 index 8bf30ae86837..000000000000 --- a/net-irc/telepathy-idle/telepathy-idle-0.1.5.ebuild +++ /dev/null @@ -1,29 +0,0 @@ -# Copyright 1999-2010 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.1.5.ebuild,v 1.8 2010/09/11 09:04:28 nixnut Exp $ - -EAPI=2 -inherit eutils - -DESCRIPTION="Full-featured IRC connection manager for Telepathy." -HOMEPAGE="http://telepathy.freedesktop.org/wiki/Components" -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" -IUSE="test" - -RDEPEND="dev-libs/dbus-glib - >=dev-libs/glib-2.8.6:2 - >=dev-libs/openssl-0.9.7 - >=net-libs/telepathy-glib-0.7.15 - sys-apps/dbus" -DEPEND="${RDEPEND} - dev-util/pkgconfig - test? ( dev-python/twisted-words )" - -src_install() { - emake DESTDIR="${D}" install || die "emake install failed" - dodoc AUTHORS || die -} diff --git a/net-irc/telepathy-idle/telepathy-idle-0.1.6.ebuild b/net-irc/telepathy-idle/telepathy-idle-0.1.8.ebuild index 9ee72e5c7f17..9de385d77717 100644 --- a/net-irc/telepathy-idle/telepathy-idle-0.1.6.ebuild +++ b/net-irc/telepathy-idle/telepathy-idle-0.1.8.ebuild @@ -1,9 +1,11 @@ -# Copyright 1999-2010 Gentoo Foundation +# Copyright 1999-2011 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.1.6.ebuild,v 1.1 2010/09/29 17:38:53 pacho Exp $ +# $Header: /var/cvsroot/gentoo-x86/net-irc/telepathy-idle/telepathy-idle-0.1.8.ebuild,v 1.1 2011/04/02 17:01:59 pacho Exp $ -EAPI=2 -inherit eutils +EAPI="3" +PYTHON_DEPEND="2" + +inherit python DESCRIPTION="Full-featured IRC connection manager for Telepathy." HOMEPAGE="http://telepathy.freedesktop.org/wiki/Components" @@ -17,13 +19,21 @@ IUSE="test" RDEPEND="dev-libs/dbus-glib >=dev-libs/glib-2.8.6:2 >=dev-libs/openssl-0.9.7 - >=net-libs/telepathy-glib-0.8 + >=net-libs/telepathy-glib-0.13.9 sys-apps/dbus" DEPEND="${RDEPEND} dev-util/pkgconfig test? ( dev-python/twisted-words )" +pkg_setup() { + python_set_active_version 2 +} + +src_prepare() { + python_convert_shebangs -r 2 . +} + src_install() { emake DESTDIR="${D}" install || die "emake install failed" - dodoc AUTHORS || die + dodoc AUTHORS NEWS || die } |