public inbox for gentoo-commits@lists.gentoo.org
 help / color / mirror / Atom feed
* [gentoo-commits] gentoo-x86 commit in net-voip/telepathy-gabble: telepathy-gabble-0.16.6.ebuild ChangeLog
@ 2013-05-30 19:08 Pacho Ramos (pacho)
  0 siblings, 0 replies; 7+ messages in thread
From: Pacho Ramos (pacho) @ 2013-05-30 19:08 UTC (permalink / raw
  To: gentoo-commits

pacho       13/05/30 19:08:15

  Modified:             ChangeLog
  Added:                telepathy-gabble-0.16.6.ebuild
  Log:
  Version bump, drop shebangs conversion because functions starting by _ are meant to be internal and python-any-r1.eclass users shouldn't need it (and looks to not be needed in this case), if needs to be readded and _ function is used, please add a comment explaining the issue.
  
  (Portage version: 2.1.12.2/cvs/Linux x86_64, signed Manifest commit with key A188FBD4)

Revision  Changes    Path
1.116                net-voip/telepathy-gabble/ChangeLog

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-voip/telepathy-gabble/ChangeLog?rev=1.116&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-voip/telepathy-gabble/ChangeLog?rev=1.116&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-voip/telepathy-gabble/ChangeLog?r1=1.115&r2=1.116

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/net-voip/telepathy-gabble/ChangeLog,v
retrieving revision 1.115
retrieving revision 1.116
diff -u -r1.115 -r1.116
--- ChangeLog	10 May 2013 22:07:47 -0000	1.115
+++ ChangeLog	30 May 2013 19:08:15 -0000	1.116
@@ -1,6 +1,14 @@
 # ChangeLog for net-voip/telepathy-gabble
 # Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/net-voip/telepathy-gabble/ChangeLog,v 1.115 2013/05/10 22:07:47 eva Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-voip/telepathy-gabble/ChangeLog,v 1.116 2013/05/30 19:08:15 pacho Exp $
+
+*telepathy-gabble-0.16.6 (30 May 2013)
+
+  30 May 2013; Pacho Ramos <pacho@gentoo.org> +telepathy-gabble-0.16.6.ebuild:
+  Version bump, drop shebangs conversion because functions starting by _ are
+  meant to be internal and python-any-r1.eclass users shouldn't need it (and
+  looks to not be needed in this case), if needs to be readded and _ function is
+  used, please add a comment explaining the issue.
 
   10 May 2013; Gilles Dartiguelongue <eva@gentoo.org>
   -telepathy-gabble-0.16.1.ebuild, telepathy-gabble-0.16.4.ebuild:



1.1                  net-voip/telepathy-gabble/telepathy-gabble-0.16.6.ebuild

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-voip/telepathy-gabble/telepathy-gabble-0.16.6.ebuild?rev=1.1&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-voip/telepathy-gabble/telepathy-gabble-0.16.6.ebuild?rev=1.1&content-type=text/plain

Index: telepathy-gabble-0.16.6.ebuild
===================================================================
# Copyright 1999-2013 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/net-voip/telepathy-gabble/telepathy-gabble-0.16.6.ebuild,v 1.1 2013/05/30 19:08:15 pacho Exp $

EAPI="5"
PYTHON_COMPAT=( python2_{5,6,7} )

inherit eutils python-any-r1

DESCRIPTION="A Jabber/XMPP connection manager, with handling of single and multi user chats and voice calls"
HOMEPAGE="http://telepathy.freedesktop.org"
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="gnutls +jingle test"

# FIXME: missing sasl-2 for tests ? (automagic)
# missing libiphb for wocky ?
RDEPEND="
	>=dev-libs/glib-2.30:2
	>=sys-apps/dbus-1.1.0
	>=dev-libs/dbus-glib-0.82
	>=net-libs/telepathy-glib-0.18

	dev-db/sqlite:3
	dev-libs/libxml2

	gnutls? ( >=net-libs/gnutls-2.10.2 )
	!gnutls? ( >=dev-libs/openssl-0.9.8g[-bindist] )
	jingle? ( || ( net-libs/libsoup:2.4[ssl]
		>=net-libs/libsoup-2.33.1 )
		>=net-libs/libnice-0.0.11 )

	!<net-im/telepathy-mission-control-5.5.0
"
DEPEND="${RDEPEND}
	${PYTHON_DEPS}
	>=dev-util/gtk-doc-am-1.17
	dev-libs/libxslt
	test? ( >=dev-python/twisted-0.8.2
		>=dev-python/twisted-words-0.8.2
		>=dev-python/dbus-python-0.83 )
"

pkg_setup() {
	python-any-r1_pkg_setup
}

src_configure() {
	econf \
		--disable-coding-style-checks \
		--disable-static \
		--disable-Werror \
		--docdir="${EPREFIX}/usr/share/doc/${PF}" \
		--enable-file-transfer \
		$(use_enable jingle voip) \
		$(use_enable jingle google-relay) \
		--with-tls=$(usex gnutls gnutls openssl)
}

src_test() {
	# Twisted tests fail, upstream bug #30565
	emake -C tests check-TESTS
}

src_install() {
	default
	prune_libtool_files
}





^ permalink raw reply	[flat|nested] 7+ messages in thread

* [gentoo-commits] gentoo-x86 commit in net-voip/telepathy-gabble: telepathy-gabble-0.16.6.ebuild ChangeLog
@ 2013-07-03 10:30 Agostino Sarubbo (ago)
  0 siblings, 0 replies; 7+ messages in thread
From: Agostino Sarubbo (ago) @ 2013-07-03 10:30 UTC (permalink / raw
  To: gentoo-commits

ago         13/07/03 10:30:53

  Modified:             telepathy-gabble-0.16.6.ebuild ChangeLog
  Log:
  Stable for amd64, wrt bug #471838
  
  (Portage version: 2.1.12.9/cvs/Linux x86_64, RepoMan options: --include-arches="amd64", signed Manifest commit with key 7194459F)

Revision  Changes    Path
1.2                  net-voip/telepathy-gabble/telepathy-gabble-0.16.6.ebuild

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-voip/telepathy-gabble/telepathy-gabble-0.16.6.ebuild?rev=1.2&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-voip/telepathy-gabble/telepathy-gabble-0.16.6.ebuild?rev=1.2&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-voip/telepathy-gabble/telepathy-gabble-0.16.6.ebuild?r1=1.1&r2=1.2

Index: telepathy-gabble-0.16.6.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/net-voip/telepathy-gabble/telepathy-gabble-0.16.6.ebuild,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -r1.1 -r1.2
--- telepathy-gabble-0.16.6.ebuild	30 May 2013 19:08:15 -0000	1.1
+++ telepathy-gabble-0.16.6.ebuild	3 Jul 2013 10:30:53 -0000	1.2
@@ -1,6 +1,6 @@
 # Copyright 1999-2013 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/net-voip/telepathy-gabble/telepathy-gabble-0.16.6.ebuild,v 1.1 2013/05/30 19:08:15 pacho Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-voip/telepathy-gabble/telepathy-gabble-0.16.6.ebuild,v 1.2 2013/07/03 10:30:53 ago Exp $
 
 EAPI="5"
 PYTHON_COMPAT=( python2_{5,6,7} )
@@ -13,7 +13,7 @@
 
 LICENSE="LGPL-2.1"
 SLOT="0"
-KEYWORDS="~alpha ~amd64 ~arm ~ia64 ~ppc ~ppc64 ~sparc ~x86 ~x86-linux"
+KEYWORDS="~alpha amd64 ~arm ~ia64 ~ppc ~ppc64 ~sparc ~x86 ~x86-linux"
 IUSE="gnutls +jingle test"
 
 # FIXME: missing sasl-2 for tests ? (automagic)



1.118                net-voip/telepathy-gabble/ChangeLog

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-voip/telepathy-gabble/ChangeLog?rev=1.118&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-voip/telepathy-gabble/ChangeLog?rev=1.118&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-voip/telepathy-gabble/ChangeLog?r1=1.117&r2=1.118

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/net-voip/telepathy-gabble/ChangeLog,v
retrieving revision 1.117
retrieving revision 1.118
diff -u -r1.117 -r1.118
--- ChangeLog	1 Jun 2013 11:12:14 -0000	1.117
+++ ChangeLog	3 Jul 2013 10:30:53 -0000	1.118
@@ -1,6 +1,9 @@
 # ChangeLog for net-voip/telepathy-gabble
 # Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/net-voip/telepathy-gabble/ChangeLog,v 1.117 2013/06/01 11:12:14 pacho Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-voip/telepathy-gabble/ChangeLog,v 1.118 2013/07/03 10:30:53 ago Exp $
+
+  03 Jul 2013; Agostino Sarubbo <ago@gentoo.org> telepathy-gabble-0.16.6.ebuild:
+  Stable for amd64, wrt bug #471838
 
   01 Jun 2013; Pacho Ramos <pacho@gentoo.org> metadata.xml:
   Cleanup due bug #137506





^ permalink raw reply	[flat|nested] 7+ messages in thread

* [gentoo-commits] gentoo-x86 commit in net-voip/telepathy-gabble: telepathy-gabble-0.16.6.ebuild ChangeLog
@ 2013-07-03 10:31 Agostino Sarubbo (ago)
  0 siblings, 0 replies; 7+ messages in thread
From: Agostino Sarubbo (ago) @ 2013-07-03 10:31 UTC (permalink / raw
  To: gentoo-commits

ago         13/07/03 10:31:24

  Modified:             telepathy-gabble-0.16.6.ebuild ChangeLog
  Log:
  Stable for x86, wrt bug #471838
  
  (Portage version: 2.1.12.9/cvs/Linux x86_64, RepoMan options: --include-arches="x86", signed Manifest commit with key 7194459F)

Revision  Changes    Path
1.3                  net-voip/telepathy-gabble/telepathy-gabble-0.16.6.ebuild

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-voip/telepathy-gabble/telepathy-gabble-0.16.6.ebuild?rev=1.3&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-voip/telepathy-gabble/telepathy-gabble-0.16.6.ebuild?rev=1.3&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-voip/telepathy-gabble/telepathy-gabble-0.16.6.ebuild?r1=1.2&r2=1.3

Index: telepathy-gabble-0.16.6.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/net-voip/telepathy-gabble/telepathy-gabble-0.16.6.ebuild,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -r1.2 -r1.3
--- telepathy-gabble-0.16.6.ebuild	3 Jul 2013 10:30:53 -0000	1.2
+++ telepathy-gabble-0.16.6.ebuild	3 Jul 2013 10:31:24 -0000	1.3
@@ -1,6 +1,6 @@
 # Copyright 1999-2013 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/net-voip/telepathy-gabble/telepathy-gabble-0.16.6.ebuild,v 1.2 2013/07/03 10:30:53 ago Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-voip/telepathy-gabble/telepathy-gabble-0.16.6.ebuild,v 1.3 2013/07/03 10:31:24 ago Exp $
 
 EAPI="5"
 PYTHON_COMPAT=( python2_{5,6,7} )
@@ -13,7 +13,7 @@
 
 LICENSE="LGPL-2.1"
 SLOT="0"
-KEYWORDS="~alpha amd64 ~arm ~ia64 ~ppc ~ppc64 ~sparc ~x86 ~x86-linux"
+KEYWORDS="~alpha amd64 ~arm ~ia64 ~ppc ~ppc64 ~sparc x86 ~x86-linux"
 IUSE="gnutls +jingle test"
 
 # FIXME: missing sasl-2 for tests ? (automagic)



1.119                net-voip/telepathy-gabble/ChangeLog

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-voip/telepathy-gabble/ChangeLog?rev=1.119&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-voip/telepathy-gabble/ChangeLog?rev=1.119&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-voip/telepathy-gabble/ChangeLog?r1=1.118&r2=1.119

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/net-voip/telepathy-gabble/ChangeLog,v
retrieving revision 1.118
retrieving revision 1.119
diff -u -r1.118 -r1.119
--- ChangeLog	3 Jul 2013 10:30:53 -0000	1.118
+++ ChangeLog	3 Jul 2013 10:31:24 -0000	1.119
@@ -1,6 +1,9 @@
 # ChangeLog for net-voip/telepathy-gabble
 # Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/net-voip/telepathy-gabble/ChangeLog,v 1.118 2013/07/03 10:30:53 ago Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-voip/telepathy-gabble/ChangeLog,v 1.119 2013/07/03 10:31:24 ago Exp $
+
+  03 Jul 2013; Agostino Sarubbo <ago@gentoo.org> telepathy-gabble-0.16.6.ebuild:
+  Stable for x86, wrt bug #471838
 
   03 Jul 2013; Agostino Sarubbo <ago@gentoo.org> telepathy-gabble-0.16.6.ebuild:
   Stable for amd64, wrt bug #471838





^ permalink raw reply	[flat|nested] 7+ messages in thread

* [gentoo-commits] gentoo-x86 commit in net-voip/telepathy-gabble: telepathy-gabble-0.16.6.ebuild ChangeLog
@ 2013-07-04 13:07 Agostino Sarubbo (ago)
  0 siblings, 0 replies; 7+ messages in thread
From: Agostino Sarubbo (ago) @ 2013-07-04 13:07 UTC (permalink / raw
  To: gentoo-commits

ago         13/07/04 13:07:18

  Modified:             telepathy-gabble-0.16.6.ebuild ChangeLog
  Log:
  Stable for ppc, wrt bug #471838
  
  (Portage version: 2.1.12.2/cvs/Linux ppc64, RepoMan options: --include-arches="ppc", signed Manifest commit with key 7194459F)

Revision  Changes    Path
1.4                  net-voip/telepathy-gabble/telepathy-gabble-0.16.6.ebuild

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-voip/telepathy-gabble/telepathy-gabble-0.16.6.ebuild?rev=1.4&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-voip/telepathy-gabble/telepathy-gabble-0.16.6.ebuild?rev=1.4&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-voip/telepathy-gabble/telepathy-gabble-0.16.6.ebuild?r1=1.3&r2=1.4

Index: telepathy-gabble-0.16.6.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/net-voip/telepathy-gabble/telepathy-gabble-0.16.6.ebuild,v
retrieving revision 1.3
retrieving revision 1.4
diff -u -r1.3 -r1.4
--- telepathy-gabble-0.16.6.ebuild	3 Jul 2013 10:31:24 -0000	1.3
+++ telepathy-gabble-0.16.6.ebuild	4 Jul 2013 13:07:18 -0000	1.4
@@ -1,6 +1,6 @@
 # Copyright 1999-2013 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/net-voip/telepathy-gabble/telepathy-gabble-0.16.6.ebuild,v 1.3 2013/07/03 10:31:24 ago Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-voip/telepathy-gabble/telepathy-gabble-0.16.6.ebuild,v 1.4 2013/07/04 13:07:18 ago Exp $
 
 EAPI="5"
 PYTHON_COMPAT=( python2_{5,6,7} )
@@ -13,7 +13,7 @@
 
 LICENSE="LGPL-2.1"
 SLOT="0"
-KEYWORDS="~alpha amd64 ~arm ~ia64 ~ppc ~ppc64 ~sparc x86 ~x86-linux"
+KEYWORDS="~alpha amd64 ~arm ~ia64 ppc ~ppc64 ~sparc x86 ~x86-linux"
 IUSE="gnutls +jingle test"
 
 # FIXME: missing sasl-2 for tests ? (automagic)



1.120                net-voip/telepathy-gabble/ChangeLog

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-voip/telepathy-gabble/ChangeLog?rev=1.120&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-voip/telepathy-gabble/ChangeLog?rev=1.120&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-voip/telepathy-gabble/ChangeLog?r1=1.119&r2=1.120

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/net-voip/telepathy-gabble/ChangeLog,v
retrieving revision 1.119
retrieving revision 1.120
diff -u -r1.119 -r1.120
--- ChangeLog	3 Jul 2013 10:31:24 -0000	1.119
+++ ChangeLog	4 Jul 2013 13:07:18 -0000	1.120
@@ -1,6 +1,9 @@
 # ChangeLog for net-voip/telepathy-gabble
 # Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/net-voip/telepathy-gabble/ChangeLog,v 1.119 2013/07/03 10:31:24 ago Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-voip/telepathy-gabble/ChangeLog,v 1.120 2013/07/04 13:07:18 ago Exp $
+
+  04 Jul 2013; Agostino Sarubbo <ago@gentoo.org> telepathy-gabble-0.16.6.ebuild:
+  Stable for ppc, wrt bug #471838
 
   03 Jul 2013; Agostino Sarubbo <ago@gentoo.org> telepathy-gabble-0.16.6.ebuild:
   Stable for x86, wrt bug #471838





^ permalink raw reply	[flat|nested] 7+ messages in thread

* [gentoo-commits] gentoo-x86 commit in net-voip/telepathy-gabble: telepathy-gabble-0.16.6.ebuild ChangeLog
@ 2013-07-06 17:04 Agostino Sarubbo (ago)
  0 siblings, 0 replies; 7+ messages in thread
From: Agostino Sarubbo (ago) @ 2013-07-06 17:04 UTC (permalink / raw
  To: gentoo-commits

ago         13/07/06 17:04:38

  Modified:             telepathy-gabble-0.16.6.ebuild ChangeLog
  Log:
  Stable for alpha, wrt bug #471838
  
  (Portage version: 2.1.12.2/cvs/Linux ppc64, RepoMan options: --include-arches="alpha", signed Manifest commit with key 7194459F)

Revision  Changes    Path
1.5                  net-voip/telepathy-gabble/telepathy-gabble-0.16.6.ebuild

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-voip/telepathy-gabble/telepathy-gabble-0.16.6.ebuild?rev=1.5&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-voip/telepathy-gabble/telepathy-gabble-0.16.6.ebuild?rev=1.5&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-voip/telepathy-gabble/telepathy-gabble-0.16.6.ebuild?r1=1.4&r2=1.5

Index: telepathy-gabble-0.16.6.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/net-voip/telepathy-gabble/telepathy-gabble-0.16.6.ebuild,v
retrieving revision 1.4
retrieving revision 1.5
diff -u -r1.4 -r1.5
--- telepathy-gabble-0.16.6.ebuild	4 Jul 2013 13:07:18 -0000	1.4
+++ telepathy-gabble-0.16.6.ebuild	6 Jul 2013 17:04:38 -0000	1.5
@@ -1,6 +1,6 @@
 # Copyright 1999-2013 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/net-voip/telepathy-gabble/telepathy-gabble-0.16.6.ebuild,v 1.4 2013/07/04 13:07:18 ago Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-voip/telepathy-gabble/telepathy-gabble-0.16.6.ebuild,v 1.5 2013/07/06 17:04:38 ago Exp $
 
 EAPI="5"
 PYTHON_COMPAT=( python2_{5,6,7} )
@@ -13,7 +13,7 @@
 
 LICENSE="LGPL-2.1"
 SLOT="0"
-KEYWORDS="~alpha amd64 ~arm ~ia64 ppc ~ppc64 ~sparc x86 ~x86-linux"
+KEYWORDS="alpha amd64 ~arm ~ia64 ppc ~ppc64 ~sparc x86 ~x86-linux"
 IUSE="gnutls +jingle test"
 
 # FIXME: missing sasl-2 for tests ? (automagic)



1.121                net-voip/telepathy-gabble/ChangeLog

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-voip/telepathy-gabble/ChangeLog?rev=1.121&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-voip/telepathy-gabble/ChangeLog?rev=1.121&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-voip/telepathy-gabble/ChangeLog?r1=1.120&r2=1.121

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/net-voip/telepathy-gabble/ChangeLog,v
retrieving revision 1.120
retrieving revision 1.121
diff -u -r1.120 -r1.121
--- ChangeLog	4 Jul 2013 13:07:18 -0000	1.120
+++ ChangeLog	6 Jul 2013 17:04:38 -0000	1.121
@@ -1,6 +1,9 @@
 # ChangeLog for net-voip/telepathy-gabble
 # Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/net-voip/telepathy-gabble/ChangeLog,v 1.120 2013/07/04 13:07:18 ago Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-voip/telepathy-gabble/ChangeLog,v 1.121 2013/07/06 17:04:38 ago Exp $
+
+  06 Jul 2013; Agostino Sarubbo <ago@gentoo.org> telepathy-gabble-0.16.6.ebuild:
+  Stable for alpha, wrt bug #471838
 
   04 Jul 2013; Agostino Sarubbo <ago@gentoo.org> telepathy-gabble-0.16.6.ebuild:
   Stable for ppc, wrt bug #471838





^ permalink raw reply	[flat|nested] 7+ messages in thread

* [gentoo-commits] gentoo-x86 commit in net-voip/telepathy-gabble: telepathy-gabble-0.16.6.ebuild ChangeLog
@ 2013-07-07 15:15 Agostino Sarubbo (ago)
  0 siblings, 0 replies; 7+ messages in thread
From: Agostino Sarubbo (ago) @ 2013-07-07 15:15 UTC (permalink / raw
  To: gentoo-commits

ago         13/07/07 15:15:38

  Modified:             telepathy-gabble-0.16.6.ebuild ChangeLog
  Log:
  Stable for ia64, wrt bug #471838
  
  (Portage version: 2.1.12.2/cvs/Linux ppc64, RepoMan options: --include-arches="ia64", signed Manifest commit with key 7194459F)

Revision  Changes    Path
1.6                  net-voip/telepathy-gabble/telepathy-gabble-0.16.6.ebuild

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-voip/telepathy-gabble/telepathy-gabble-0.16.6.ebuild?rev=1.6&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-voip/telepathy-gabble/telepathy-gabble-0.16.6.ebuild?rev=1.6&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-voip/telepathy-gabble/telepathy-gabble-0.16.6.ebuild?r1=1.5&r2=1.6

Index: telepathy-gabble-0.16.6.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/net-voip/telepathy-gabble/telepathy-gabble-0.16.6.ebuild,v
retrieving revision 1.5
retrieving revision 1.6
diff -u -r1.5 -r1.6
--- telepathy-gabble-0.16.6.ebuild	6 Jul 2013 17:04:38 -0000	1.5
+++ telepathy-gabble-0.16.6.ebuild	7 Jul 2013 15:15:38 -0000	1.6
@@ -1,6 +1,6 @@
 # Copyright 1999-2013 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/net-voip/telepathy-gabble/telepathy-gabble-0.16.6.ebuild,v 1.5 2013/07/06 17:04:38 ago Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-voip/telepathy-gabble/telepathy-gabble-0.16.6.ebuild,v 1.6 2013/07/07 15:15:38 ago Exp $
 
 EAPI="5"
 PYTHON_COMPAT=( python2_{5,6,7} )
@@ -13,7 +13,7 @@
 
 LICENSE="LGPL-2.1"
 SLOT="0"
-KEYWORDS="alpha amd64 ~arm ~ia64 ppc ~ppc64 ~sparc x86 ~x86-linux"
+KEYWORDS="alpha amd64 ~arm ia64 ppc ~ppc64 ~sparc x86 ~x86-linux"
 IUSE="gnutls +jingle test"
 
 # FIXME: missing sasl-2 for tests ? (automagic)



1.122                net-voip/telepathy-gabble/ChangeLog

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-voip/telepathy-gabble/ChangeLog?rev=1.122&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-voip/telepathy-gabble/ChangeLog?rev=1.122&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-voip/telepathy-gabble/ChangeLog?r1=1.121&r2=1.122

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/net-voip/telepathy-gabble/ChangeLog,v
retrieving revision 1.121
retrieving revision 1.122
diff -u -r1.121 -r1.122
--- ChangeLog	6 Jul 2013 17:04:38 -0000	1.121
+++ ChangeLog	7 Jul 2013 15:15:38 -0000	1.122
@@ -1,6 +1,9 @@
 # ChangeLog for net-voip/telepathy-gabble
 # Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/net-voip/telepathy-gabble/ChangeLog,v 1.121 2013/07/06 17:04:38 ago Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-voip/telepathy-gabble/ChangeLog,v 1.122 2013/07/07 15:15:38 ago Exp $
+
+  07 Jul 2013; Agostino Sarubbo <ago@gentoo.org> telepathy-gabble-0.16.6.ebuild:
+  Stable for ia64, wrt bug #471838
 
   06 Jul 2013; Agostino Sarubbo <ago@gentoo.org> telepathy-gabble-0.16.6.ebuild:
   Stable for alpha, wrt bug #471838





^ permalink raw reply	[flat|nested] 7+ messages in thread

* [gentoo-commits] gentoo-x86 commit in net-voip/telepathy-gabble: telepathy-gabble-0.16.6.ebuild ChangeLog
@ 2013-07-21 17:55 Agostino Sarubbo (ago)
  0 siblings, 0 replies; 7+ messages in thread
From: Agostino Sarubbo (ago) @ 2013-07-21 17:55 UTC (permalink / raw
  To: gentoo-commits

ago         13/07/21 17:55:40

  Modified:             telepathy-gabble-0.16.6.ebuild ChangeLog
  Log:
  Stable for sparc, wrt bug #471838
  
  (Portage version: 2.1.12.13/cvs/Linux x86_64, RepoMan options: --include-arches="sparc", signed Manifest commit with key 7194459F)

Revision  Changes    Path
1.7                  net-voip/telepathy-gabble/telepathy-gabble-0.16.6.ebuild

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-voip/telepathy-gabble/telepathy-gabble-0.16.6.ebuild?rev=1.7&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-voip/telepathy-gabble/telepathy-gabble-0.16.6.ebuild?rev=1.7&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-voip/telepathy-gabble/telepathy-gabble-0.16.6.ebuild?r1=1.6&r2=1.7

Index: telepathy-gabble-0.16.6.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/net-voip/telepathy-gabble/telepathy-gabble-0.16.6.ebuild,v
retrieving revision 1.6
retrieving revision 1.7
diff -u -r1.6 -r1.7
--- telepathy-gabble-0.16.6.ebuild	7 Jul 2013 15:15:38 -0000	1.6
+++ telepathy-gabble-0.16.6.ebuild	21 Jul 2013 17:55:40 -0000	1.7
@@ -1,6 +1,6 @@
 # Copyright 1999-2013 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/net-voip/telepathy-gabble/telepathy-gabble-0.16.6.ebuild,v 1.6 2013/07/07 15:15:38 ago Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-voip/telepathy-gabble/telepathy-gabble-0.16.6.ebuild,v 1.7 2013/07/21 17:55:40 ago Exp $
 
 EAPI="5"
 PYTHON_COMPAT=( python2_{5,6,7} )
@@ -13,7 +13,7 @@
 
 LICENSE="LGPL-2.1"
 SLOT="0"
-KEYWORDS="alpha amd64 ~arm ia64 ppc ~ppc64 ~sparc x86 ~x86-linux"
+KEYWORDS="alpha amd64 ~arm ia64 ppc ~ppc64 sparc x86 ~x86-linux"
 IUSE="gnutls +jingle test"
 
 # FIXME: missing sasl-2 for tests ? (automagic)



1.123                net-voip/telepathy-gabble/ChangeLog

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-voip/telepathy-gabble/ChangeLog?rev=1.123&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-voip/telepathy-gabble/ChangeLog?rev=1.123&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-voip/telepathy-gabble/ChangeLog?r1=1.122&r2=1.123

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/net-voip/telepathy-gabble/ChangeLog,v
retrieving revision 1.122
retrieving revision 1.123
diff -u -r1.122 -r1.123
--- ChangeLog	7 Jul 2013 15:15:38 -0000	1.122
+++ ChangeLog	21 Jul 2013 17:55:40 -0000	1.123
@@ -1,6 +1,9 @@
 # ChangeLog for net-voip/telepathy-gabble
 # Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/net-voip/telepathy-gabble/ChangeLog,v 1.122 2013/07/07 15:15:38 ago Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-voip/telepathy-gabble/ChangeLog,v 1.123 2013/07/21 17:55:40 ago Exp $
+
+  21 Jul 2013; Agostino Sarubbo <ago@gentoo.org> telepathy-gabble-0.16.6.ebuild:
+  Stable for sparc, wrt bug #471838
 
   07 Jul 2013; Agostino Sarubbo <ago@gentoo.org> telepathy-gabble-0.16.6.ebuild:
   Stable for ia64, wrt bug #471838





^ permalink raw reply	[flat|nested] 7+ messages in thread

end of thread, other threads:[~2013-07-21 17:55 UTC | newest]

Thread overview: 7+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2013-07-03 10:31 [gentoo-commits] gentoo-x86 commit in net-voip/telepathy-gabble: telepathy-gabble-0.16.6.ebuild ChangeLog Agostino Sarubbo (ago)
  -- strict thread matches above, loose matches on Subject: below --
2013-07-21 17:55 Agostino Sarubbo (ago)
2013-07-07 15:15 Agostino Sarubbo (ago)
2013-07-06 17:04 Agostino Sarubbo (ago)
2013-07-04 13:07 Agostino Sarubbo (ago)
2013-07-03 10:30 Agostino Sarubbo (ago)
2013-05-30 19:08 Pacho Ramos (pacho)

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox