johu        15/05/29 19:10:33

  Modified:             ChangeLog
  Added:                qtkeychain-0.5.0.ebuild
  Removed:              qtkeychain-0.4.0.ebuild
  Log:
  Version bump, remove old.
  
  (Portage version: 2.2.20/cvs/Linux x86_64, signed Manifest commit with key 
0xF3CFD2BD)

Revision  Changes    Path
1.6                  dev-libs/qtkeychain/ChangeLog

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/qtkeychain/ChangeLog?rev=1.6&view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/qtkeychain/ChangeLog?rev=1.6&content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/qtkeychain/ChangeLog?r1=1.5&r2=1.6

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-libs/qtkeychain/ChangeLog,v
retrieving revision 1.5
retrieving revision 1.6
diff -u -r1.5 -r1.6
--- ChangeLog   30 Jan 2015 21:06:07 -0000      1.5
+++ ChangeLog   29 May 2015 19:10:33 -0000      1.6
@@ -1,6 +1,12 @@
 # ChangeLog for dev-libs/qtkeychain
 # Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-libs/qtkeychain/ChangeLog,v 1.5 
2015/01/30 21:06:07 johu Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-libs/qtkeychain/ChangeLog,v 1.6 
2015/05/29 19:10:33 johu Exp $
+
+*qtkeychain-0.5.0 (29 May 2015)
+
+  29 May 2015; Johannes Huber <j...@gentoo.org> +qtkeychain-0.5.0.ebuild,
+  -qtkeychain-0.4.0.ebuild:
+  Version bump, remove old.
 
   30 Jan 2015; Johannes Huber <j...@gentoo.org> -qtkeychain-0.3.0.ebuild,
   qtkeychain-0.4.0.ebuild:



1.1                  dev-libs/qtkeychain/qtkeychain-0.5.0.ebuild

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/qtkeychain/qtkeychain-0.5.0.ebuild?rev=1.1&view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/qtkeychain/qtkeychain-0.5.0.ebuild?rev=1.1&content-type=text/plain

Index: qtkeychain-0.5.0.ebuild
===================================================================
# Copyright 1999-2015 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: 
/var/cvsroot/gentoo-x86/dev-libs/qtkeychain/qtkeychain-0.5.0.ebuild,v 1.1 
2015/05/29 19:10:33 johu Exp $

EAPI=5

inherit cmake-utils multibuild

DESCRIPTION="Qt API for storing passwords securely"
HOMEPAGE="https://github.com/frankosterfeld/qtkeychain";
SRC_URI="https://github.com/frankosterfeld/${PN}/archive/v${PV}.tar.gz -> 
${P}.tar.gz"

LICENSE="BSD"
SLOT="0"
KEYWORDS="~amd64 ~x86"
IUSE="+qt4 qt5"

REQUIRED_USE="|| ( qt4 qt5 )"

RDEPEND="
        qt5? (
                dev-qt/qtcore:5
                dev-qt/qtdbus:5
        )
        qt4? (
                dev-qt/qtcore:4
                dev-qt/qtdbus:4
        )
"
DEPEND="${RDEPEND}
        qt5? ( dev-qt/linguist-tools:5 )
"

DOCS=( ChangeLog ReadMe.txt )

pkg_setup() {
        MULTIBUILD_VARIANTS=( $(usev qt4) $(usev qt5) )
}

src_configure() {
        myconfigure() {
                if [[ ${MULTIBUILD_VARIANT} = qt4 ]]; then
                        local mycmakeargs=(-DBUILD_WITH_QT4=ON)
                fi
                if [[ ${MULTIBUILD_VARIANT} = qt5 ]]; then
                        local mycmakeargs=(-DBUILD_WITH_QT4=OFF)
                fi
                cmake-utils_src_configure
        }

        multibuild_foreach_variant myconfigure
}

src_compile() {
        multibuild_foreach_variant cmake-utils_src_compile
}

src_test() {
        multibuild_foreach_variant cmake-utils_src_test
}

src_install() {
        multibuild_foreach_variant cmake-utils_src_install
}




Reply via email to