public inbox for gentoo-commits@lists.gentoo.org
 help / color / mirror / Atom feed
From: "Johannes Huber" <johu@gentoo.org>
To: gentoo-commits@lists.gentoo.org
Subject: [gentoo-commits] repo/gentoo:master commit in: dev-libs/qtkeychain/
Date: Mon, 23 May 2016 20:04:44 +0000 (UTC)	[thread overview]
Message-ID: <1464033871.be830541d314526824e7eb2da969fa4109db56ec.johu@gentoo> (raw)

commit:     be830541d314526824e7eb2da969fa4109db56ec
Author:     Johannes Huber <johu <AT> gentoo <DOT> org>
AuthorDate: Mon May 23 19:31:01 2016 +0000
Commit:     Johannes Huber <johu <AT> gentoo <DOT> org>
CommitDate: Mon May 23 20:04:31 2016 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=be830541

dev-libs/qtkeychain: Version bump 0.7.0

Package-Manager: portage-2.3.0_rc1

 dev-libs/qtkeychain/Manifest                |  1 +
 dev-libs/qtkeychain/qtkeychain-0.7.0.ebuild | 70 +++++++++++++++++++++++++++++
 2 files changed, 71 insertions(+)

diff --git a/dev-libs/qtkeychain/Manifest b/dev-libs/qtkeychain/Manifest
index 31009fd..9a26bd8 100644
--- a/dev-libs/qtkeychain/Manifest
+++ b/dev-libs/qtkeychain/Manifest
@@ -1,2 +1,3 @@
 DIST qtkeychain-0.5.0.tar.gz 18422 SHA256 e62d7ae9c8ae04784d8a5d0f213aaa22f1c02427e800ce88739e997f499bb514 SHA512 abc9d27b318a984c95b55f821f8bba7d8f34e6316958cf41b44aa4451371e5f629f17b9a0d1356cd6455f19979d562157a260f835c8f037037b0ac7bf64b94e5 WHIRLPOOL b3c99c863390b8c9e807a17783ca95640a468d57eec35e197412a46031aae06433e06c3274973e7876192a654e09cba6bd92512baf8a3500052a3de9d1a50496
 DIST qtkeychain-0.6.2.tar.gz 18859 SHA256 ae13459234feeeab3a154457319d9b26ee9600973443517c77e055838ebae63c SHA512 be668c9730b331071cefff0b6d640e7130bd6b029e56aa4b1fa709d118d4db18146869cdd013df2f5348da32ec1101646f2df0bfa8f0790ec9542f9063f0b195 WHIRLPOOL beed71a48c18848a01e1fe57a7ed2d641e17907a792fdce15f3e6dc4c40218376c5ed04d608c2950c1fb7a60f7d9e0e9ee30e72d400e7e7031fa33cc35872126
+DIST qtkeychain-0.7.0.tar.gz 18913 SHA256 9f9afaae8e909391d7fc932bac95e38befaac5b2eb49f6623a8efec60a2e6a3a SHA512 b7e98fa6c7f6a8a5e4d79468366b30c859db4edf08984d685d2cd8d87c5ab60b5f4769b5af96c8d9ca306111e46a63e4d23be7c07d77d6c3492f2e81ae8cd88b WHIRLPOOL 325684232485cc4a24e41015ccdc6cdc0e2f0e5671b092e151489ab2e3bb241aa3fabdeb4ff6a0456c5732514c4079a548cb462d7151c7193c7c08664fa436f8

diff --git a/dev-libs/qtkeychain/qtkeychain-0.7.0.ebuild b/dev-libs/qtkeychain/qtkeychain-0.7.0.ebuild
new file mode 100644
index 0000000..f05c9b0
--- /dev/null
+++ b/dev-libs/qtkeychain/qtkeychain-0.7.0.ebuild
@@ -0,0 +1,70 @@
+# Copyright 1999-2016 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Id$
+
+EAPI=6
+
+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
+
+		mycmakeargs+=(
+			-DQTKEYCHAIN_STATIC=OFF
+			-DBUILD_TRANSLATIONS=ON
+		)
+
+		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	other threads:[~2016-05-23 20:04 UTC|newest]

Thread overview: 64+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2016-05-23 20:04 Johannes Huber [this message]
  -- strict thread matches above, loose matches on Subject: below --
2025-02-18 21:42 [gentoo-commits] repo/gentoo:master commit in: dev-libs/qtkeychain/ Andreas Sturmlechner
2025-02-18  0:48 Sam James
2025-02-18  0:12 Sam James
2025-02-18  0:12 Sam James
2025-01-16 20:25 Andreas Sturmlechner
2024-06-29 18:41 Andreas Sturmlechner
2024-06-17  5:54 Arthur Zamarin
2024-06-17  5:19 Arthur Zamarin
2024-05-14 17:41 Andreas Sturmlechner
2024-03-06 20:32 Andreas Sturmlechner
2023-12-25 17:04 Andreas Sturmlechner
2023-07-09 10:09 Andreas Sturmlechner
2023-06-28 23:59 Sam James
2023-06-28 21:14 Sam James
2023-06-28 21:14 Sam James
2023-06-10 19:04 Andreas Sturmlechner
2023-06-10 19:04 Andreas Sturmlechner
2023-06-08 19:38 Andreas Sturmlechner
2023-06-03  7:09 WANG Xuerui
2021-12-12 22:15 Andreas Sturmlechner
2021-12-10 22:13 Sam James
2021-12-10 20:54 Sam James
2021-12-10 17:04 Jakov Smolić
2021-11-19  9:55 Andreas Sturmlechner
2021-11-19  9:55 Andreas Sturmlechner
2021-11-09  7:14 Andreas Sturmlechner
2021-11-07 17:23 Andreas Sturmlechner
2021-11-07 16:12 Andreas Sturmlechner
2021-10-11 12:30 Andreas Sturmlechner
2021-10-10  4:45 Yixun Lan
2021-10-02 12:58 Andreas Sturmlechner
2021-07-17  8:47 Andreas Sturmlechner
2021-04-27 18:02 Sam James
2021-04-27 18:01 Sam James
2020-12-08  7:37 Johannes Huber
2020-08-03 23:25 Sam James
2020-03-28  8:33 Johannes Huber
2020-03-19  6:39 Johannes Huber
2020-02-19  1:31 Georgy Yakovlev
2020-02-18 16:58 Johannes Huber
2020-02-17 12:13 Agostino Sarubbo
2020-02-16 21:14 Thomas Deutschmann
2020-01-12 11:02 Johannes Huber
2020-01-02 11:42 Johannes Huber
2018-10-07 20:32 Johannes Huber
2018-10-07 11:53 Mikle Kolyada
2018-10-06 23:05 Thomas Deutschmann
2018-07-17  8:31 Johannes Huber
2018-03-31 19:01 Mart Raudsepp
2018-02-22 17:34 Johannes Huber
2018-02-06 15:10 Thomas Deutschmann
2018-01-28 12:10 Johannes Huber
2017-09-05 18:54 Johannes Huber
2017-09-01 21:41 Andreas Sturmlechner
2017-01-10 18:08 Johannes Huber
2017-01-09 10:24 Aaron Bauman
2017-01-08 14:43 Johannes Huber
2016-06-27 18:30 Johannes Huber
2016-05-23 20:04 Johannes Huber
2016-05-13  8:41 Agostino Sarubbo
2016-04-11 16:59 Johannes Huber
2016-03-13 11:32 Johannes Huber
2016-01-05 10:49 Agostino Sarubbo

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=1464033871.be830541d314526824e7eb2da969fa4109db56ec.johu@gentoo \
    --to=johu@gentoo.org \
    --cc=gentoo-commits@lists.gentoo.org \
    --cc=gentoo-dev@lists.gentoo.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox