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 <[email protected]> +telepathy-qt-0.9.5.ebuild:
+  Version bump.
 
   08 Jul 2014; Davide Pesavento <[email protected]> 
-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
}




Reply via email to