diff options
author | Marek Szuba <marecki@gentoo.org> | 2021-06-30 13:56:15 +0100 |
---|---|---|
committer | Marek Szuba <marecki@gentoo.org> | 2021-06-30 18:54:52 +0100 |
commit | 157639964958320f1123570f2a75f496b4f457a6 (patch) | |
tree | 1ab413c2e990ff459c1273be70e71d590f708c27 /virtual | |
parent | profiles/arch/riscv: remove outdated net-libs/libssh2[mbedtls] mask (diff) | |
download | gentoo-157639964958320f1123570f2a75f496b4f457a6.tar.gz gentoo-157639964958320f1123570f2a75f496b4f457a6.tar.bz2 gentoo-157639964958320f1123570f2a75f496b4f457a6.zip |
virtual/secret-service: initial import
A virtual for providers of the freedesktop.org Secret Service API,
ultimately to supersede directly depending on gnome-base/gnome-keyring
- there is now at least one more functional provider in the tree
(app-admin/keepassxc - tested by me using secret-tool, seahorse and
of course applications actually using this API for secrets, no problems),
and work is ongoing on implementing this in KDE.
Nb. gnome-keyring is currently listed as preferred because in addition
to having been THE SS API provider until quite recently, keepassxc is
currently somewhat more complicated to use - one must prepare keyring
or keyrings in advance for use with SS, no PAM module for unlocking
a keyring on login, no command-line option to enable SS support etc.
Signed-off-by: Marek Szuba <marecki@gentoo.org>
Diffstat (limited to 'virtual')
-rw-r--r-- | virtual/secret-service/metadata.xml | 9 | ||||
-rw-r--r-- | virtual/secret-service/secret-service-0.ebuild | 15 |
2 files changed, 24 insertions, 0 deletions
diff --git a/virtual/secret-service/metadata.xml b/virtual/secret-service/metadata.xml new file mode 100644 index 000000000000..3827cb158fcc --- /dev/null +++ b/virtual/secret-service/metadata.xml @@ -0,0 +1,9 @@ +<?xml version="1.0" encoding="UTF-8"?> +<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd"> +<pkgmetadata> + <maintainer type="person"> + <email>marecki@gentoo.org</email> + <name>Marek Szuba</name> + </maintainer> + <stabilize-allarches/> +</pkgmetadata> diff --git a/virtual/secret-service/secret-service-0.ebuild b/virtual/secret-service/secret-service-0.ebuild new file mode 100644 index 000000000000..f814c4d14ad3 --- /dev/null +++ b/virtual/secret-service/secret-service-0.ebuild @@ -0,0 +1,15 @@ +# Copyright 1999-2021 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=7 + +DESCRIPTION="Virtual for a freedesktop.org Secret Service API provider" +SLOT="0" +KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~ia64 ~mips ~ppc ~ppc64 ~riscv ~sparc ~x86 ~amd64-linux ~x86-linux ~ppc-macos ~x86-solaris" + +RDEPEND="|| ( + gnome-base/gnome-keyring + app-admin/keepassxc +)" +# TODO: add the KDE provider here once ready, still WIP as of June 2021 though +# (see https://bugs.kde.org/show_bug.cgi?id=313216) |