From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id A15C7138334 for ; Tue, 17 Jul 2018 08:31:41 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 9788FE0907; Tue, 17 Jul 2018 08:31:39 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 66F8AE0907 for ; Tue, 17 Jul 2018 08:31:39 +0000 (UTC) Received: from oystercatcher.gentoo.org (unknown [IPv6:2a01:4f8:202:4333:225:90ff:fed9:fc84]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 4BC6D335C99 for ; Tue, 17 Jul 2018 08:31:37 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 1942936B for ; Tue, 17 Jul 2018 08:31:35 +0000 (UTC) From: "Johannes Huber" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Johannes Huber" Message-ID: <1531816284.8d4a8df5fd8d49e5ef05a55b09e35d7ab50f97c1.johu@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-libs/qtkeychain/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-libs/qtkeychain/Manifest dev-libs/qtkeychain/qtkeychain-0.9.0.ebuild X-VCS-Directories: dev-libs/qtkeychain/ X-VCS-Committer: johu X-VCS-Committer-Name: Johannes Huber X-VCS-Revision: 8d4a8df5fd8d49e5ef05a55b09e35d7ab50f97c1 X-VCS-Branch: master Date: Tue, 17 Jul 2018 08:31:35 +0000 (UTC) Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-commits@lists.gentoo.org X-Archives-Salt: c8dadbe8-6895-4c3f-9352-1ade8b975d84 X-Archives-Hash: 3cecd88376474b349b58bbcb43d0209f commit: 8d4a8df5fd8d49e5ef05a55b09e35d7ab50f97c1 Author: Johannes Huber gentoo org> AuthorDate: Tue Jul 17 08:30:31 2018 +0000 Commit: Johannes Huber gentoo org> CommitDate: Tue Jul 17 08:31:24 2018 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=8d4a8df5 dev-libs/qtkeychain: Version bump 0.9.0 Bug: https://bugs.gentoo.org/653084 Package-Manager: Portage-2.3.43, Repoman-2.3.10 dev-libs/qtkeychain/Manifest | 1 + dev-libs/qtkeychain/qtkeychain-0.9.0.ebuild | 45 +++++++++++++++++++++++++++++ 2 files changed, 46 insertions(+) diff --git a/dev-libs/qtkeychain/Manifest b/dev-libs/qtkeychain/Manifest index 54bd6db48e1..39e88122b1e 100644 --- a/dev-libs/qtkeychain/Manifest +++ b/dev-libs/qtkeychain/Manifest @@ -1 +1,2 @@ DIST qtkeychain-0.8.0.tar.gz 34686 BLAKE2B bb20ace4393e04a8c8167ce112499fed75615ed165824bfcbba6a243e374523ff397aa85eb324ee8d742295a1bd4618a363fae6f92aae74caf09b9ca18d76c1e SHA512 be83ebc665a7916e96a2fd9990c72cd29373196591cf557fa6f9691f332ab67cc5475cab240c3e50e76cb37e0b7f189f0a1f2c3a70a6f655918e1d2465ed2f33 +DIST qtkeychain-0.9.0.tar.gz 35614 BLAKE2B b8fbcc3737808f8415f703cd92dd1f036fd6d1d83c056562e0142f67a234ddc29ad7f029ce9f520c8bcf179d8b99b5cf8b702ad010763956ff0fb8ce3f030934 SHA512 d8e7895169e9746c234a156e00edb939926d14da1a5eadab7cb1e67790958973bfd11c9c04c6fa5cf776aafbd0af40dcd50c683f1c80bef60d47d1465bb350df diff --git a/dev-libs/qtkeychain/qtkeychain-0.9.0.ebuild b/dev-libs/qtkeychain/qtkeychain-0.9.0.ebuild new file mode 100644 index 00000000000..ac90679ec32 --- /dev/null +++ b/dev-libs/qtkeychain/qtkeychain-0.9.0.ebuild @@ -0,0 +1,45 @@ +# Copyright 1999-2018 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 + +EAPI=6 + +inherit cmake-utils + +HOMEPAGE="https://github.com/frankosterfeld/qtkeychain" +DESCRIPTION="Qt API for storing passwords securely" + +if [[ ${PV} != *9999* ]]; then + SRC_URI="${HOMEPAGE}/archive/v${PV}.tar.gz -> ${P}.tar.gz" + KEYWORDS="~amd64 ~arm64 ~x86" +else + inherit git-r3 + EGIT_REPO_URI="${HOMEPAGE}.git" +fi + +LICENSE="BSD" +SLOT="0/1" +IUSE="gnome-keyring" + +RDEPEND=" + dev-qt/qtcore:5 + dev-qt/qtdbus:5 + gnome-keyring? ( dev-libs/glib:2 ) +" +DEPEND="${RDEPEND} + dev-qt/linguist-tools:5 + gnome-keyring? ( gnome-base/libgnome-keyring ) +" + +DOCS=( ChangeLog ReadMe.txt ) + +src_configure() { + local mycmakeargs=( + -DBUILD_WITH_QT4=OFF + -DQTKEYCHAIN_STATIC=OFF + -DBUILD_TEST_APPLICATION=OFF + -DBUILD_TRANSLATIONS=ON + -DLIBSECRET_SUPPORT=$(usex gnome-keyring) + ) + + cmake-utils_src_configure +}