public inbox for gentoo-commits@lists.gentoo.org
 help / color / mirror / Atom feed
* [gentoo-commits] gentoo-x86 commit in net-libs/telepathy-qt: telepathy-qt-0.9.5.ebuild ChangeLog
@ 2014-09-15 16:42 Johannes Huber (johu)
  0 siblings, 0 replies; 8+ messages in thread
From: Johannes Huber (johu) @ 2014-09-15 16:42 UTC (permalink / raw
  To: gentoo-commits

johu        14/09/15 16:42:00

  Modified:             ChangeLog
  Added:                telepathy-qt-0.9.5.ebuild
  Log:
  Version bump.
  
  (Portage version: 2.2.12/cvs/Linux x86_64, signed Manifest commit with key 0xF3CFD2BD)

Revision  Changes    Path
1.30                 net-libs/telepathy-qt/ChangeLog

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-libs/telepathy-qt/ChangeLog?rev=1.30&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-libs/telepathy-qt/ChangeLog?rev=1.30&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-libs/telepathy-qt/ChangeLog?r1=1.29&r2=1.30

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/net-libs/telepathy-qt/ChangeLog,v
retrieving revision 1.29
retrieving revision 1.30
diff -u -r1.29 -r1.30
--- ChangeLog	8 Jul 2014 16:23:25 -0000	1.29
+++ ChangeLog	15 Sep 2014 16:41:59 -0000	1.30
@@ -1,6 +1,11 @@
 # ChangeLog for net-libs/telepathy-qt
 # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/net-libs/telepathy-qt/ChangeLog,v 1.29 2014/07/08 16:23:25 pesa Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-libs/telepathy-qt/ChangeLog,v 1.30 2014/09/15 16:41:59 johu Exp $
+
+*telepathy-qt-0.9.5 (15 Sep 2014)
+
+  15 Sep 2014; Johannes Huber <johu@gentoo.org> +telepathy-qt-0.9.5.ebuild:
+  Version bump.
 
   08 Jul 2014; Davide Pesavento <pesa@gentoo.org> -telepathy-qt-0.9.3-r1.ebuild,
   metadata.xml:



1.1                  net-libs/telepathy-qt/telepathy-qt-0.9.5.ebuild

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

Index: telepathy-qt-0.9.5.ebuild
===================================================================
# Copyright 1999-2014 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/net-libs/telepathy-qt/telepathy-qt-0.9.5.ebuild,v 1.1 2014/09/15 16:41:59 johu Exp $

EAPI=5

PYTHON_COMPAT=( python2_7 )
inherit base python-any-r1 cmake-utils virtualx multibuild

DESCRIPTION="Qt4 bindings for the Telepathy D-Bus protocol"
HOMEPAGE="http://telepathy.freedesktop.org/"
SRC_URI="http://telepathy.freedesktop.org/releases/${PN}/${P}.tar.gz"

LICENSE="LGPL-2.1"
SLOT="0"
KEYWORDS="~amd64 ~arm ~x86"
IUSE="debug farstream +qt4 qt5 test"

RDEPEND="
	farstream? (
		>=net-libs/telepathy-farstream-0.2.2
		>=net-libs/telepathy-glib-0.18.0
	)
	qt4? (
		dev-qt/qtcore:4
		dev-qt/qtdbus:4
	)
	qt5? (
		dev-qt/qtcore:5
		dev-qt/qtdbus:5
		dev-qt/qtgui:5
		dev-qt/qtnetwork:5
		dev-qt/qtxml:5
	)
	!net-libs/telepathy-qt4
"
DEPEND="${RDEPEND}
	${PYTHON_DEPS}
	virtual/pkgconfig
	test? (
		dev-libs/dbus-glib
		dev-libs/glib
		dev-python/dbus-python
		qt4? ( dev-qt/qttest:4 )
		qt5? ( dev-qt/qttest:5 )
	)
"

DOCS=( AUTHORS ChangeLog HACKING NEWS README )

RESTRICT="test"

pkg_setup() {
	python-any-r1_pkg_setup
	MULTIBUILD_VARIANTS=()
	if use qt4; then
		MULTIBUILD_VARIANTS+=(qt4)
	fi
	if use qt5; then
		MULTIBUILD_VARIANTS+=(qt5)
	fi
}

src_configure() {
	myconfigure() {
		local mycmakeargs=(
			$(cmake-utils_use_enable debug DEBUG_OUTPUT)
			$(cmake-utils_use_enable farstream)
			$(cmake-utils_use_enable test TESTS)
			-DENABLE_EXAMPLES=OFF
			-ENABLE_SERVICE_SUPPORT=ON
		)
		if [[ ${MULTIBUILD_VARIANT} = qt4 ]]; then
			mycmakeargs+=(-DDESIRED_QT_VERSION=4)
		fi
		if [[ ${MULTIBUILD_VARIANT} = qt5 ]]; then
			mycmakeargs+=(-DDESIRED_QT_VERSION=5)
		fi
		cmake-utils_src_configure
	}

	multibuild_foreach_variant myconfigure
}

src_compile() {
	multibuild_foreach_variant cmake-utils_src_compile
}

src_install() {
	multibuild_foreach_variant cmake-utils_src_install
}

src_test() {
	mytest() {
		pushd "${BUILD_DIR}" > /dev/null
		Xemake test || die "tests failed"
		popd > /dev/null
	}

	multibuild_foreach_variant mytest
}





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

* [gentoo-commits] gentoo-x86 commit in net-libs/telepathy-qt: telepathy-qt-0.9.5.ebuild ChangeLog
@ 2015-01-30 22:24 Johannes Huber (johu)
  0 siblings, 0 replies; 8+ messages in thread
From: Johannes Huber (johu) @ 2015-01-30 22:24 UTC (permalink / raw
  To: gentoo-commits

johu        15/01/30 22:24:22

  Modified:             telepathy-qt-0.9.5.ebuild ChangeLog
  Log:
  Shorten pkg setup. Sort functions.
  
  (Portage version: 2.2.15/cvs/Linux x86_64, signed Manifest commit with key F3CFD2BD)

Revision  Changes    Path
1.2                  net-libs/telepathy-qt/telepathy-qt-0.9.5.ebuild

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

Index: telepathy-qt-0.9.5.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/net-libs/telepathy-qt/telepathy-qt-0.9.5.ebuild,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -r1.1 -r1.2
--- telepathy-qt-0.9.5.ebuild	15 Sep 2014 16:41:59 -0000	1.1
+++ telepathy-qt-0.9.5.ebuild	30 Jan 2015 22:24:22 -0000	1.2
@@ -1,6 +1,6 @@
-# Copyright 1999-2014 Gentoo Foundation
+# Copyright 1999-2015 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/net-libs/telepathy-qt/telepathy-qt-0.9.5.ebuild,v 1.1 2014/09/15 16:41:59 johu Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-libs/telepathy-qt/telepathy-qt-0.9.5.ebuild,v 1.2 2015/01/30 22:24:22 johu Exp $
 
 EAPI=5
 
@@ -52,13 +52,7 @@
 
 pkg_setup() {
 	python-any-r1_pkg_setup
-	MULTIBUILD_VARIANTS=()
-	if use qt4; then
-		MULTIBUILD_VARIANTS+=(qt4)
-	fi
-	if use qt5; then
-		MULTIBUILD_VARIANTS+=(qt5)
-	fi
+	MULTIBUILD_VARIANTS=( $(usev qt4) $(usev qt5) )
 }
 
 src_configure() {
@@ -86,10 +80,6 @@
 	multibuild_foreach_variant cmake-utils_src_compile
 }
 
-src_install() {
-	multibuild_foreach_variant cmake-utils_src_install
-}
-
 src_test() {
 	mytest() {
 		pushd "${BUILD_DIR}" > /dev/null
@@ -99,3 +89,7 @@
 
 	multibuild_foreach_variant mytest
 }
+
+src_install() {
+	multibuild_foreach_variant cmake-utils_src_install
+}



1.31                 net-libs/telepathy-qt/ChangeLog

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-libs/telepathy-qt/ChangeLog?rev=1.31&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-libs/telepathy-qt/ChangeLog?rev=1.31&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-libs/telepathy-qt/ChangeLog?r1=1.30&r2=1.31

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/net-libs/telepathy-qt/ChangeLog,v
retrieving revision 1.30
retrieving revision 1.31
diff -u -r1.30 -r1.31
--- ChangeLog	15 Sep 2014 16:41:59 -0000	1.30
+++ ChangeLog	30 Jan 2015 22:24:22 -0000	1.31
@@ -1,6 +1,9 @@
 # ChangeLog for net-libs/telepathy-qt
-# Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/net-libs/telepathy-qt/ChangeLog,v 1.30 2014/09/15 16:41:59 johu Exp $
+# Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2
+# $Header: /var/cvsroot/gentoo-x86/net-libs/telepathy-qt/ChangeLog,v 1.31 2015/01/30 22:24:22 johu Exp $
+
+  30 Jan 2015; Johannes Huber <johu@gentoo.org> telepathy-qt-0.9.5.ebuild:
+  Shorten pkg setup. Sort functions.
 
 *telepathy-qt-0.9.5 (15 Sep 2014)
 





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

* [gentoo-commits] gentoo-x86 commit in net-libs/telepathy-qt: telepathy-qt-0.9.5.ebuild ChangeLog
@ 2015-03-04 12:12 Michael Palimaka (kensington)
  0 siblings, 0 replies; 8+ messages in thread
From: Michael Palimaka (kensington) @ 2015-03-04 12:12 UTC (permalink / raw
  To: gentoo-commits

kensington    15/03/04 12:12:48

  Modified:             telepathy-qt-0.9.5.ebuild ChangeLog
  Log:
  Remove unused inherit.
  
  (Portage version: 2.2.17/cvs/Linux x86_64, signed Manifest commit with key 0x06B1F38DCA45A1EC!)

Revision  Changes    Path
1.3                  net-libs/telepathy-qt/telepathy-qt-0.9.5.ebuild

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

Index: telepathy-qt-0.9.5.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/net-libs/telepathy-qt/telepathy-qt-0.9.5.ebuild,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -r1.2 -r1.3
--- telepathy-qt-0.9.5.ebuild	30 Jan 2015 22:24:22 -0000	1.2
+++ telepathy-qt-0.9.5.ebuild	4 Mar 2015 12:12:48 -0000	1.3
@@ -1,11 +1,11 @@
 # Copyright 1999-2015 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/net-libs/telepathy-qt/telepathy-qt-0.9.5.ebuild,v 1.2 2015/01/30 22:24:22 johu Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-libs/telepathy-qt/telepathy-qt-0.9.5.ebuild,v 1.3 2015/03/04 12:12:48 kensington Exp $
 
 EAPI=5
 
 PYTHON_COMPAT=( python2_7 )
-inherit base python-any-r1 cmake-utils virtualx multibuild
+inherit python-any-r1 cmake-utils virtualx multibuild
 
 DESCRIPTION="Qt4 bindings for the Telepathy D-Bus protocol"
 HOMEPAGE="http://telepathy.freedesktop.org/"



1.32                 net-libs/telepathy-qt/ChangeLog

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-libs/telepathy-qt/ChangeLog?rev=1.32&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-libs/telepathy-qt/ChangeLog?rev=1.32&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-libs/telepathy-qt/ChangeLog?r1=1.31&r2=1.32

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/net-libs/telepathy-qt/ChangeLog,v
retrieving revision 1.31
retrieving revision 1.32
diff -u -r1.31 -r1.32
--- ChangeLog	30 Jan 2015 22:24:22 -0000	1.31
+++ ChangeLog	4 Mar 2015 12:12:48 -0000	1.32
@@ -1,6 +1,10 @@
 # ChangeLog for net-libs/telepathy-qt
 # Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/net-libs/telepathy-qt/ChangeLog,v 1.31 2015/01/30 22:24:22 johu Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-libs/telepathy-qt/ChangeLog,v 1.32 2015/03/04 12:12:48 kensington Exp $
+
+  04 Mar 2015; Michael Palimaka <kensington@gentoo.org>
+  telepathy-qt-0.9.5.ebuild:
+  Remove unused inherit.
 
   30 Jan 2015; Johannes Huber <johu@gentoo.org> telepathy-qt-0.9.5.ebuild:
   Shorten pkg setup. Sort functions.





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

* [gentoo-commits] gentoo-x86 commit in net-libs/telepathy-qt: telepathy-qt-0.9.5.ebuild ChangeLog
@ 2015-03-04 13:09 Michael Palimaka (kensington)
  0 siblings, 0 replies; 8+ messages in thread
From: Michael Palimaka (kensington) @ 2015-03-04 13:09 UTC (permalink / raw
  To: gentoo-commits

kensington    15/03/04 13:09:26

  Modified:             telepathy-qt-0.9.5.ebuild ChangeLog
  Log:
  Disable broken test wrt bug #442178.
  
  (Portage version: 2.2.17/cvs/Linux x86_64, signed Manifest commit with key 0x06B1F38DCA45A1EC!)

Revision  Changes    Path
1.4                  net-libs/telepathy-qt/telepathy-qt-0.9.5.ebuild

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

Index: telepathy-qt-0.9.5.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/net-libs/telepathy-qt/telepathy-qt-0.9.5.ebuild,v
retrieving revision 1.3
retrieving revision 1.4
diff -u -r1.3 -r1.4
--- telepathy-qt-0.9.5.ebuild	4 Mar 2015 12:12:48 -0000	1.3
+++ telepathy-qt-0.9.5.ebuild	4 Mar 2015 13:09:26 -0000	1.4
@@ -1,6 +1,6 @@
 # Copyright 1999-2015 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/net-libs/telepathy-qt/telepathy-qt-0.9.5.ebuild,v 1.3 2015/03/04 12:12:48 kensington Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-libs/telepathy-qt/telepathy-qt-0.9.5.ebuild,v 1.4 2015/03/04 13:09:26 kensington Exp $
 
 EAPI=5
 
@@ -48,8 +48,6 @@
 
 DOCS=( AUTHORS ChangeLog HACKING NEWS README )
 
-RESTRICT="test"
-
 pkg_setup() {
 	python-any-r1_pkg_setup
 	MULTIBUILD_VARIANTS=( $(usev qt4) $(usev qt5) )
@@ -83,7 +81,7 @@
 src_test() {
 	mytest() {
 		pushd "${BUILD_DIR}" > /dev/null
-		Xemake test || die "tests failed"
+		VIRTUALX_COMMAND="ctest -E '(CallChannel)'" virtualmake || die "tests failed"
 		popd > /dev/null
 	}
 



1.33                 net-libs/telepathy-qt/ChangeLog

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-libs/telepathy-qt/ChangeLog?rev=1.33&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-libs/telepathy-qt/ChangeLog?rev=1.33&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-libs/telepathy-qt/ChangeLog?r1=1.32&r2=1.33

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/net-libs/telepathy-qt/ChangeLog,v
retrieving revision 1.32
retrieving revision 1.33
diff -u -r1.32 -r1.33
--- ChangeLog	4 Mar 2015 12:12:48 -0000	1.32
+++ ChangeLog	4 Mar 2015 13:09:26 -0000	1.33
@@ -1,6 +1,10 @@
 # ChangeLog for net-libs/telepathy-qt
 # Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/net-libs/telepathy-qt/ChangeLog,v 1.32 2015/03/04 12:12:48 kensington Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-libs/telepathy-qt/ChangeLog,v 1.33 2015/03/04 13:09:26 kensington Exp $
+
+  04 Mar 2015; Michael Palimaka <kensington@gentoo.org>
+  telepathy-qt-0.9.5.ebuild:
+  Disable broken test wrt bug #442178.
 
   04 Mar 2015; Michael Palimaka <kensington@gentoo.org>
   telepathy-qt-0.9.5.ebuild:





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

* [gentoo-commits] gentoo-x86 commit in net-libs/telepathy-qt: telepathy-qt-0.9.5.ebuild ChangeLog
@ 2015-03-12 10:07 Agostino Sarubbo (ago)
  0 siblings, 0 replies; 8+ messages in thread
From: Agostino Sarubbo (ago) @ 2015-03-12 10:07 UTC (permalink / raw
  To: gentoo-commits

ago         15/03/12 10:07:06

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

Revision  Changes    Path
1.5                  net-libs/telepathy-qt/telepathy-qt-0.9.5.ebuild

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

Index: telepathy-qt-0.9.5.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/net-libs/telepathy-qt/telepathy-qt-0.9.5.ebuild,v
retrieving revision 1.4
retrieving revision 1.5
diff -u -r1.4 -r1.5
--- telepathy-qt-0.9.5.ebuild	4 Mar 2015 13:09:26 -0000	1.4
+++ telepathy-qt-0.9.5.ebuild	12 Mar 2015 10:07:06 -0000	1.5
@@ -1,6 +1,6 @@
 # Copyright 1999-2015 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/net-libs/telepathy-qt/telepathy-qt-0.9.5.ebuild,v 1.4 2015/03/04 13:09:26 kensington Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-libs/telepathy-qt/telepathy-qt-0.9.5.ebuild,v 1.5 2015/03/12 10:07:06 ago Exp $
 
 EAPI=5
 
@@ -13,7 +13,7 @@
 
 LICENSE="LGPL-2.1"
 SLOT="0"
-KEYWORDS="~amd64 ~arm ~x86"
+KEYWORDS="amd64 ~arm ~x86"
 IUSE="debug farstream +qt4 qt5 test"
 
 RDEPEND="



1.34                 net-libs/telepathy-qt/ChangeLog

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-libs/telepathy-qt/ChangeLog?rev=1.34&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-libs/telepathy-qt/ChangeLog?rev=1.34&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-libs/telepathy-qt/ChangeLog?r1=1.33&r2=1.34

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/net-libs/telepathy-qt/ChangeLog,v
retrieving revision 1.33
retrieving revision 1.34
diff -u -r1.33 -r1.34
--- ChangeLog	4 Mar 2015 13:09:26 -0000	1.33
+++ ChangeLog	12 Mar 2015 10:07:06 -0000	1.34
@@ -1,6 +1,9 @@
 # ChangeLog for net-libs/telepathy-qt
 # Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/net-libs/telepathy-qt/ChangeLog,v 1.33 2015/03/04 13:09:26 kensington Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-libs/telepathy-qt/ChangeLog,v 1.34 2015/03/12 10:07:06 ago Exp $
+
+  12 Mar 2015; Agostino Sarubbo <ago@gentoo.org> telepathy-qt-0.9.5.ebuild:
+  Stable for amd64, wrt bug #542094
 
   04 Mar 2015; Michael Palimaka <kensington@gentoo.org>
   telepathy-qt-0.9.5.ebuild:





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

* [gentoo-commits] gentoo-x86 commit in net-libs/telepathy-qt: telepathy-qt-0.9.5.ebuild ChangeLog
@ 2015-03-25 14:05 Agostino Sarubbo (ago)
  0 siblings, 0 replies; 8+ messages in thread
From: Agostino Sarubbo (ago) @ 2015-03-25 14:05 UTC (permalink / raw
  To: gentoo-commits

ago         15/03/25 14:05:04

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

Revision  Changes    Path
1.6                  net-libs/telepathy-qt/telepathy-qt-0.9.5.ebuild

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

Index: telepathy-qt-0.9.5.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/net-libs/telepathy-qt/telepathy-qt-0.9.5.ebuild,v
retrieving revision 1.5
retrieving revision 1.6
diff -u -r1.5 -r1.6
--- telepathy-qt-0.9.5.ebuild	12 Mar 2015 10:07:06 -0000	1.5
+++ telepathy-qt-0.9.5.ebuild	25 Mar 2015 14:05:04 -0000	1.6
@@ -1,6 +1,6 @@
 # Copyright 1999-2015 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/net-libs/telepathy-qt/telepathy-qt-0.9.5.ebuild,v 1.5 2015/03/12 10:07:06 ago Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-libs/telepathy-qt/telepathy-qt-0.9.5.ebuild,v 1.6 2015/03/25 14:05:04 ago Exp $
 
 EAPI=5
 
@@ -13,7 +13,7 @@
 
 LICENSE="LGPL-2.1"
 SLOT="0"
-KEYWORDS="amd64 ~arm ~x86"
+KEYWORDS="amd64 ~arm x86"
 IUSE="debug farstream +qt4 qt5 test"
 
 RDEPEND="



1.35                 net-libs/telepathy-qt/ChangeLog

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-libs/telepathy-qt/ChangeLog?rev=1.35&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-libs/telepathy-qt/ChangeLog?rev=1.35&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-libs/telepathy-qt/ChangeLog?r1=1.34&r2=1.35

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/net-libs/telepathy-qt/ChangeLog,v
retrieving revision 1.34
retrieving revision 1.35
diff -u -r1.34 -r1.35
--- ChangeLog	12 Mar 2015 10:07:06 -0000	1.34
+++ ChangeLog	25 Mar 2015 14:05:04 -0000	1.35
@@ -1,6 +1,9 @@
 # ChangeLog for net-libs/telepathy-qt
 # Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/net-libs/telepathy-qt/ChangeLog,v 1.34 2015/03/12 10:07:06 ago Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-libs/telepathy-qt/ChangeLog,v 1.35 2015/03/25 14:05:04 ago Exp $
+
+  25 Mar 2015; Agostino Sarubbo <ago@gentoo.org> telepathy-qt-0.9.5.ebuild:
+  Stable for x86, wrt bug #542094
 
   12 Mar 2015; Agostino Sarubbo <ago@gentoo.org> telepathy-qt-0.9.5.ebuild:
   Stable for amd64, wrt bug #542094





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

* [gentoo-commits] gentoo-x86 commit in net-libs/telepathy-qt: telepathy-qt-0.9.5.ebuild ChangeLog
@ 2015-05-14 14:44 Davide Pesavento (pesa)
  0 siblings, 0 replies; 8+ messages in thread
From: Davide Pesavento (pesa) @ 2015-05-14 14:44 UTC (permalink / raw
  To: gentoo-commits

pesa        15/05/14 14:44:56

  Modified:             telepathy-qt-0.9.5.ebuild ChangeLog
  Log:
  Add missing REQUIRED_USE.
  
  (Portage version: 2.2.18/cvs/Linux x86_64, signed Manifest commit with key 0xDADED6B2671CB57D!)

Revision  Changes    Path
1.7                  net-libs/telepathy-qt/telepathy-qt-0.9.5.ebuild

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

Index: telepathy-qt-0.9.5.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/net-libs/telepathy-qt/telepathy-qt-0.9.5.ebuild,v
retrieving revision 1.6
retrieving revision 1.7
diff -u -r1.6 -r1.7
--- telepathy-qt-0.9.5.ebuild	25 Mar 2015 14:05:04 -0000	1.6
+++ telepathy-qt-0.9.5.ebuild	14 May 2015 14:44:56 -0000	1.7
@@ -1,13 +1,13 @@
 # Copyright 1999-2015 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/net-libs/telepathy-qt/telepathy-qt-0.9.5.ebuild,v 1.6 2015/03/25 14:05:04 ago Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-libs/telepathy-qt/telepathy-qt-0.9.5.ebuild,v 1.7 2015/05/14 14:44:56 pesa Exp $
 
 EAPI=5
 
 PYTHON_COMPAT=( python2_7 )
 inherit python-any-r1 cmake-utils virtualx multibuild
 
-DESCRIPTION="Qt4 bindings for the Telepathy D-Bus protocol"
+DESCRIPTION="Qt bindings for the Telepathy D-Bus protocol"
 HOMEPAGE="http://telepathy.freedesktop.org/"
 SRC_URI="http://telepathy.freedesktop.org/releases/${PN}/${P}.tar.gz"
 
@@ -16,6 +16,8 @@
 KEYWORDS="amd64 ~arm x86"
 IUSE="debug farstream +qt4 qt5 test"
 
+REQUIRED_USE="|| ( qt4 qt5 )"
+
 RDEPEND="
 	farstream? (
 		>=net-libs/telepathy-farstream-0.2.2



1.37                 net-libs/telepathy-qt/ChangeLog

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-libs/telepathy-qt/ChangeLog?rev=1.37&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-libs/telepathy-qt/ChangeLog?rev=1.37&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-libs/telepathy-qt/ChangeLog?r1=1.36&r2=1.37

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/net-libs/telepathy-qt/ChangeLog,v
retrieving revision 1.36
retrieving revision 1.37
diff -u -r1.36 -r1.37
--- ChangeLog	27 Mar 2015 14:41:20 -0000	1.36
+++ ChangeLog	14 May 2015 14:44:56 -0000	1.37
@@ -1,6 +1,9 @@
 # ChangeLog for net-libs/telepathy-qt
 # Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/net-libs/telepathy-qt/ChangeLog,v 1.36 2015/03/27 14:41:20 kensington Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-libs/telepathy-qt/ChangeLog,v 1.37 2015/05/14 14:44:56 pesa Exp $
+
+  14 May 2015; Davide Pesavento <pesa@gentoo.org> telepathy-qt-0.9.5.ebuild:
+  Add missing REQUIRED_USE.
 
   27 Mar 2015; Michael Palimaka <kensington@gentoo.org>
   -files/telepathy-qt-0.9.3-avatar-duplication.patch,





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

* [gentoo-commits] gentoo-x86 commit in net-libs/telepathy-qt: telepathy-qt-0.9.5.ebuild ChangeLog
@ 2015-05-14 16:17 Davide Pesavento (pesa)
  0 siblings, 0 replies; 8+ messages in thread
From: Davide Pesavento (pesa) @ 2015-05-14 16:17 UTC (permalink / raw
  To: gentoo-commits

pesa        15/05/14 16:17:13

  Modified:             telepathy-qt-0.9.5.ebuild ChangeLog
  Log:
  Specify glib SLOT.
  
  (Portage version: 2.2.18/cvs/Linux x86_64, signed Manifest commit with key 0xDADED6B2671CB57D!)

Revision  Changes    Path
1.8                  net-libs/telepathy-qt/telepathy-qt-0.9.5.ebuild

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-libs/telepathy-qt/telepathy-qt-0.9.5.ebuild?rev=1.8&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-libs/telepathy-qt/telepathy-qt-0.9.5.ebuild?rev=1.8&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-libs/telepathy-qt/telepathy-qt-0.9.5.ebuild?r1=1.7&r2=1.8

Index: telepathy-qt-0.9.5.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/net-libs/telepathy-qt/telepathy-qt-0.9.5.ebuild,v
retrieving revision 1.7
retrieving revision 1.8
diff -u -r1.7 -r1.8
--- telepathy-qt-0.9.5.ebuild	14 May 2015 14:44:56 -0000	1.7
+++ telepathy-qt-0.9.5.ebuild	14 May 2015 16:17:13 -0000	1.8
@@ -1,6 +1,6 @@
 # Copyright 1999-2015 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/net-libs/telepathy-qt/telepathy-qt-0.9.5.ebuild,v 1.7 2015/05/14 14:44:56 pesa Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-libs/telepathy-qt/telepathy-qt-0.9.5.ebuild,v 1.8 2015/05/14 16:17:13 pesa Exp $
 
 EAPI=5
 
@@ -41,7 +41,7 @@
 	virtual/pkgconfig
 	test? (
 		dev-libs/dbus-glib
-		dev-libs/glib
+		dev-libs/glib:2
 		dev-python/dbus-python
 		qt4? ( dev-qt/qttest:4 )
 		qt5? ( dev-qt/qttest:5 )



1.38                 net-libs/telepathy-qt/ChangeLog

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-libs/telepathy-qt/ChangeLog?rev=1.38&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-libs/telepathy-qt/ChangeLog?rev=1.38&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-libs/telepathy-qt/ChangeLog?r1=1.37&r2=1.38

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/net-libs/telepathy-qt/ChangeLog,v
retrieving revision 1.37
retrieving revision 1.38
diff -u -r1.37 -r1.38
--- ChangeLog	14 May 2015 14:44:56 -0000	1.37
+++ ChangeLog	14 May 2015 16:17:13 -0000	1.38
@@ -1,6 +1,9 @@
 # ChangeLog for net-libs/telepathy-qt
 # Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/net-libs/telepathy-qt/ChangeLog,v 1.37 2015/05/14 14:44:56 pesa Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-libs/telepathy-qt/ChangeLog,v 1.38 2015/05/14 16:17:13 pesa Exp $
+
+  14 May 2015; Davide Pesavento <pesa@gentoo.org> telepathy-qt-0.9.5.ebuild:
+  Specify glib SLOT.
 
   14 May 2015; Davide Pesavento <pesa@gentoo.org> telepathy-qt-0.9.5.ebuild:
   Add missing REQUIRED_USE.





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

end of thread, other threads:[~2015-05-14 16:17 UTC | newest]

Thread overview: 8+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2015-03-04 13:09 [gentoo-commits] gentoo-x86 commit in net-libs/telepathy-qt: telepathy-qt-0.9.5.ebuild ChangeLog Michael Palimaka (kensington)
  -- strict thread matches above, loose matches on Subject: below --
2015-05-14 16:17 Davide Pesavento (pesa)
2015-05-14 14:44 Davide Pesavento (pesa)
2015-03-25 14:05 Agostino Sarubbo (ago)
2015-03-12 10:07 Agostino Sarubbo (ago)
2015-03-04 12:12 Michael Palimaka (kensington)
2015-01-30 22:24 Johannes Huber (johu)
2014-09-15 16:42 Johannes Huber (johu)

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