yngwin 15/05/15 13:25:08 Modified: ChangeLog Added: telepathy-qt-0.9.6.ebuild Log: version bump (Portage version: 2.2.19/cvs/Linux x86_64, signed Manifest commit with key 0x4FDF9CFD2FAC514E!)
Revision Changes Path 1.39 net-libs/telepathy-qt/ChangeLog file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-libs/telepathy-qt/ChangeLog?rev=1.39&view=markup plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-libs/telepathy-qt/ChangeLog?rev=1.39&content-type=text/plain diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-libs/telepathy-qt/ChangeLog?r1=1.38&r2=1.39 Index: ChangeLog =================================================================== RCS file: /var/cvsroot/gentoo-x86/net-libs/telepathy-qt/ChangeLog,v retrieving revision 1.38 retrieving revision 1.39 diff -u -r1.38 -r1.39 --- ChangeLog 14 May 2015 16:17:13 -0000 1.38 +++ ChangeLog 15 May 2015 13:25:08 -0000 1.39 @@ -1,6 +1,11 @@ # 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.38 2015/05/14 16:17:13 pesa Exp $ +# $Header: /var/cvsroot/gentoo-x86/net-libs/telepathy-qt/ChangeLog,v 1.39 2015/05/15 13:25:08 yngwin Exp $ + +*telepathy-qt-0.9.6 (15 May 2015) + + 15 May 2015; Ben de Groot <yng...@gentoo.org> +telepathy-qt-0.9.6.ebuild: + version bump 14 May 2015; Davide Pesavento <p...@gentoo.org> telepathy-qt-0.9.5.ebuild: Specify glib SLOT. 1.1 net-libs/telepathy-qt/telepathy-qt-0.9.6.ebuild file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-libs/telepathy-qt/telepathy-qt-0.9.6.ebuild?rev=1.1&view=markup plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-libs/telepathy-qt/telepathy-qt-0.9.6.ebuild?rev=1.1&content-type=text/plain Index: telepathy-qt-0.9.6.ebuild =================================================================== # 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.6.ebuild,v 1.1 2015/05/15 13:25:08 yngwin Exp $ EAPI=5 PYTHON_COMPAT=( python2_7 ) inherit python-any-r1 cmake-utils virtualx multibuild 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" LICENSE="LGPL-2.1" SLOT="0" KEYWORDS="~amd64 ~arm ~x86" IUSE="debug farstream +qt4 qt5 test" REQUIRED_USE="|| ( qt4 qt5 )" 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:2 dev-python/dbus-python qt4? ( dev-qt/qttest:4 ) qt5? ( dev-qt/qttest:5 ) ) " DOCS=( AUTHORS ChangeLog HACKING NEWS README ) pkg_setup() { python-any-r1_pkg_setup MULTIBUILD_VARIANTS=( $(usev qt4) $(usev qt5) ) } 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_test() { mytest() { pushd "${BUILD_DIR}" > /dev/null VIRTUALX_COMMAND="ctest -E '(CallChannel)'" virtualmake || die "tests failed" popd > /dev/null } multibuild_foreach_variant mytest } src_install() { multibuild_foreach_variant cmake-utils_src_install }