Gentoo Archives: gentoo-commits

From: Johannes Willem Fernhout <hfern@××××××××.info>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/proj/guru:dev commit in: app-admin/krapplet/
Date: Fri, 01 Jan 2021 18:20:37
Message-Id: 1609525137.fc8ab9d17607e4565260a96800bae08e7cf94488.hfernh@gentoo
1 commit: fc8ab9d17607e4565260a96800bae08e7cf94488
2 Author: Johannes Willem Fernhout <hfern <AT> fernhout <DOT> info>
3 AuthorDate: Fri Jan 1 18:18:57 2021 +0000
4 Commit: Johannes Willem Fernhout <hfern <AT> fernhout <DOT> info>
5 CommitDate: Fri Jan 1 18:18:57 2021 +0000
6 URL: https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=fc8ab9d1
7
8 app-admin/krapplet: new ebuild
9
10 Krapplet is a password manager based on gnome-keyring, written as a
11 systray applet.
12
13 Recommendations of AndrewAmmerlaan appreciated, and processed
14
15 Signed-off-by: Johannes Willem Fernhout <hfern <AT> fernhout.info>
16
17 app-admin/krapplet/krapplet-0.1.0.ebuild | 21 ++++-----------------
18 1 file changed, 4 insertions(+), 17 deletions(-)
19
20 diff --git a/app-admin/krapplet/krapplet-0.1.0.ebuild b/app-admin/krapplet/krapplet-0.1.0.ebuild
21 index c45155ad..73ea8d49 100644
22 --- a/app-admin/krapplet/krapplet-0.1.0.ebuild
23 +++ b/app-admin/krapplet/krapplet-0.1.0.ebuild
24 @@ -1,4 +1,4 @@
25 -# Copyright 2020 Gentoo Authors
26 +# Copyright 2020-2021 Gentoo Authors
27 # Distributed under the terms of the GNU General Public License v2
28
29 EAPI=7
30 @@ -6,7 +6,7 @@ EAPI=7
31 PYTHON_COMPAT=( python3_{7,8,9} )
32 DISTUTILS_USE_SETUPTOOLS=bdepend
33
34 -inherit distutils-r1 xdg-utils
35 +inherit distutils-r1 xdg
36
37 DESCRIPTION="Krapplet (keyring applet): a password manager based on gnome-keyring."
38 HOMEPAGE="https://gitlab.com/hfernh/krapplet https://pypi.org/project/krapplet"
39 @@ -16,28 +16,15 @@ LICENSE="BSD"
40 SLOT="0"
41 KEYWORDS="~amd64 ~arm ~arm64 ~ia64 ~ppc ~ppc64 ~x86"
42
43 -REQUIRED_USE=${PYTHON_REQUIRED_USE}
44 -
45 -RDEPEND=${PYTHON_DEPS}
46 BDEPEND=${RDEPEND}
47
48 # Upstream does not provide any test suite.
49 RESTRICT="test"
50
51 -RDEPEND="${PYTHON_DEPS}
52 +RDEPEND="
53 x11-libs/gtk+:3
54 dev-libs/glib
55 dev-libs/gobject-introspection
56 - dev-python/secretstorage "
57 + dev-python/secretstorage"
58
59 DEPEND="${RDEPEND}"
60 -
61 -pkg_postinst() {
62 - xdg_desktop_database_update
63 - xdg_icon_cache_update
64 -}
65 -
66 -pkg_postrm() {
67 - xdg_desktop_database_update
68 - xdg_icon_cache_update
69 -}