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 1BEB11382C5 for ; Fri, 1 Jan 2021 18:20:37 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 1A2DAE07A7; Fri, 1 Jan 2021 18:20:36 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [IPv6:2001:470:ea4a:1:5054:ff:fec7:86e4]) (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 010EEE07A7 for ; Fri, 1 Jan 2021 18:20:35 +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 97083340F34 for ; Fri, 1 Jan 2021 18:20:34 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 20E71C3 for ; Fri, 1 Jan 2021 18:20:33 +0000 (UTC) From: "Johannes Willem Fernhout" 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 Willem Fernhout" Message-ID: <1609525137.fc8ab9d17607e4565260a96800bae08e7cf94488.hfernh@gentoo> Subject: [gentoo-commits] repo/proj/guru:dev commit in: app-admin/krapplet/ X-VCS-Repository: repo/proj/guru X-VCS-Files: app-admin/krapplet/krapplet-0.1.0.ebuild X-VCS-Directories: app-admin/krapplet/ X-VCS-Committer: hfernh X-VCS-Committer-Name: Johannes Willem Fernhout X-VCS-Revision: fc8ab9d17607e4565260a96800bae08e7cf94488 X-VCS-Branch: dev Date: Fri, 1 Jan 2021 18:20:33 +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-Auto-Response-Suppress: DR, RN, NRN, OOF, AutoReply X-Archives-Salt: e668ef42-a408-4569-8003-22b4c816360c X-Archives-Hash: c1ee7e681453d75eb7a9fb0d6d4c7d15 commit: fc8ab9d17607e4565260a96800bae08e7cf94488 Author: Johannes Willem Fernhout fernhout info> AuthorDate: Fri Jan 1 18:18:57 2021 +0000 Commit: Johannes Willem Fernhout fernhout info> CommitDate: Fri Jan 1 18:18:57 2021 +0000 URL: https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=fc8ab9d1 app-admin/krapplet: new ebuild Krapplet is a password manager based on gnome-keyring, written as a systray applet. Recommendations of AndrewAmmerlaan appreciated, and processed Signed-off-by: Johannes Willem Fernhout fernhout.info> app-admin/krapplet/krapplet-0.1.0.ebuild | 21 ++++----------------- 1 file changed, 4 insertions(+), 17 deletions(-) diff --git a/app-admin/krapplet/krapplet-0.1.0.ebuild b/app-admin/krapplet/krapplet-0.1.0.ebuild index c45155ad..73ea8d49 100644 --- a/app-admin/krapplet/krapplet-0.1.0.ebuild +++ b/app-admin/krapplet/krapplet-0.1.0.ebuild @@ -1,4 +1,4 @@ -# Copyright 2020 Gentoo Authors +# Copyright 2020-2021 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 EAPI=7 @@ -6,7 +6,7 @@ EAPI=7 PYTHON_COMPAT=( python3_{7,8,9} ) DISTUTILS_USE_SETUPTOOLS=bdepend -inherit distutils-r1 xdg-utils +inherit distutils-r1 xdg DESCRIPTION="Krapplet (keyring applet): a password manager based on gnome-keyring." HOMEPAGE="https://gitlab.com/hfernh/krapplet https://pypi.org/project/krapplet" @@ -16,28 +16,15 @@ LICENSE="BSD" SLOT="0" KEYWORDS="~amd64 ~arm ~arm64 ~ia64 ~ppc ~ppc64 ~x86" -REQUIRED_USE=${PYTHON_REQUIRED_USE} - -RDEPEND=${PYTHON_DEPS} BDEPEND=${RDEPEND} # Upstream does not provide any test suite. RESTRICT="test" -RDEPEND="${PYTHON_DEPS} +RDEPEND=" x11-libs/gtk+:3 dev-libs/glib dev-libs/gobject-introspection - dev-python/secretstorage " + dev-python/secretstorage" DEPEND="${RDEPEND}" - -pkg_postinst() { - xdg_desktop_database_update - xdg_icon_cache_update -} - -pkg_postrm() { - xdg_desktop_database_update - xdg_icon_cache_update -}