From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) by finch.gentoo.org (Postfix) with ESMTP id A6D5813829C for ; Fri, 3 Jun 2016 19:21:32 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id C5D56254022; Fri, 3 Jun 2016 19:21:30 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 5A5B0254022 for ; Fri, 3 Jun 2016 19:21:30 +0000 (UTC) Received: from oystercatcher.gentoo.org (unknown [IPv6:2a01:4f8:202:4333:225:90ff:fed9:fc84]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id DD28C340D03 for ; Fri, 3 Jun 2016 19:21:28 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 10676971 for ; Fri, 3 Jun 2016 19:21:26 +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: <1464981621.3c56fb2b54a511f1f461358a5526f18a836ea209.johu@gentoo> Subject: [gentoo-commits] proj/kde:master commit in: kde-apps/kgpg/ X-VCS-Repository: proj/kde X-VCS-Files: kde-apps/kgpg/kgpg-5.9999.ebuild X-VCS-Directories: kde-apps/kgpg/ X-VCS-Committer: johu X-VCS-Committer-Name: Johannes Huber X-VCS-Revision: 3c56fb2b54a511f1f461358a5526f18a836ea209 X-VCS-Branch: master Date: Fri, 3 Jun 2016 19:21:26 +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: d5224dba-31b2-4a3f-8404-2c78bf8c8318 X-Archives-Hash: a4358eab7346810cf9a0e06277fd4935 commit: 3c56fb2b54a511f1f461358a5526f18a836ea209 Author: Johannes Huber gentoo org> AuthorDate: Fri Jun 3 19:20:21 2016 +0000 Commit: Johannes Huber gentoo org> CommitDate: Fri Jun 3 19:20:21 2016 +0000 URL: https://gitweb.gentoo.org/proj/kde.git/commit/?id=3c56fb2b kde-apps/kgpg: Version bump based on KF5 Package-Manager: portage-2.3.0_rc1 kde-apps/kgpg/kgpg-5.9999.ebuild | 55 ++++++++++++++++++++++++++++++++++++++++ 1 file changed, 55 insertions(+) diff --git a/kde-apps/kgpg/kgpg-5.9999.ebuild b/kde-apps/kgpg/kgpg-5.9999.ebuild new file mode 100644 index 0000000..4df6b86 --- /dev/null +++ b/kde-apps/kgpg/kgpg-5.9999.ebuild @@ -0,0 +1,55 @@ +# Copyright 1999-2016 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Id$ + +EAPI=6 + +KDE_SELINUX_MODULE="gpg" +EGIT_BRANCH="frameworks" +inherit kde5 + +DESCRIPTION="Frontend for GnuPG, a powerful encryption utility by KDE" +HOMEPAGE="https://www.kde.org/applications/utilities/kgpg +https://utils.kde.org/projects/kgpg" +KEYWORDS="" +IUSE="" + +CDEPEND=" + $(add_frameworks_dep karchive) + $(add_frameworks_dep kcodecs) + $(add_frameworks_dep kcompletion) + $(add_frameworks_dep kconfig) + $(add_frameworks_dep kconfigwidgets) + $(add_frameworks_dep kcoreaddons) + $(add_frameworks_dep kdelibs4support) + $(add_frameworks_dep ki18n) + $(add_frameworks_dep kiconthemes) + $(add_frameworks_dep kio) + $(add_frameworks_dep knotifications) + $(add_frameworks_dep kservice) + $(add_frameworks_dep ktextwidgets) + $(add_frameworks_dep kwidgetsaddons) + $(add_frameworks_dep kwindowsystem) + $(add_frameworks_dep kxmlgui) + $(add_kdeapps_dep akonadi) + $(add_kdeapps_dep akonadi-contact) + $(add_kdeapps_dep kcontacts) + $(add_qt_dep qtdbus) + $(add_qt_dep qtgui) + $(add_qt_dep qtprintsupport) + $(add_qt_dep qtwidgets) +" +DEPEND="${CDEPEND} + sys-devel/gettext +" +RDEPEND="${CDEPEND} + app-crypt/gnupg +" + +pkg_postinst() { + kde5_pkg_postinst + + if ! has_version 'app-crypt/dirmngr' && ! has_version '>=app-crypt/gnupg-2.1'; then + elog "For improved key search functionality, install app-crypt/dirmngr." + fi +}