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 F3DE3139347 for ; Wed, 30 Jun 2021 17:55:56 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id DD78CE0830; Wed, 30 Jun 2021 17:55:55 +0000 (UTC) Received: from smtp.gentoo.org (woodpecker.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 9F394E0830 for ; Wed, 30 Jun 2021 17:55:55 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (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 60A30335D0A for ; Wed, 30 Jun 2021 17:55:54 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id C27C97B3 for ; Wed, 30 Jun 2021 17:55:52 +0000 (UTC) From: "Marek Szuba" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Marek Szuba" Message-ID: <1625075692.157639964958320f1123570f2a75f496b4f457a6.marecki@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: virtual/secret-service/ X-VCS-Repository: repo/gentoo X-VCS-Files: virtual/secret-service/metadata.xml virtual/secret-service/secret-service-0.ebuild X-VCS-Directories: virtual/secret-service/ X-VCS-Committer: marecki X-VCS-Committer-Name: Marek Szuba X-VCS-Revision: 157639964958320f1123570f2a75f496b4f457a6 X-VCS-Branch: master Date: Wed, 30 Jun 2021 17:55:52 +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: 4870f8f5-29a7-46c6-8f8d-ff351abd3fd8 X-Archives-Hash: a581e2a4e33989a36e4dd33dd148386b commit: 157639964958320f1123570f2a75f496b4f457a6 Author: Marek Szuba gentoo org> AuthorDate: Wed Jun 30 12:56:15 2021 +0000 Commit: Marek Szuba gentoo org> CommitDate: Wed Jun 30 17:54:52 2021 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=15763996 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 gentoo.org> virtual/secret-service/metadata.xml | 9 +++++++++ virtual/secret-service/secret-service-0.ebuild | 15 +++++++++++++++ 2 files changed, 24 insertions(+) diff --git a/virtual/secret-service/metadata.xml b/virtual/secret-service/metadata.xml new file mode 100644 index 00000000000..3827cb158fc --- /dev/null +++ b/virtual/secret-service/metadata.xml @@ -0,0 +1,9 @@ + + + + + marecki@gentoo.org + Marek Szuba + + + diff --git a/virtual/secret-service/secret-service-0.ebuild b/virtual/secret-service/secret-service-0.ebuild new file mode 100644 index 00000000000..f814c4d14ad --- /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)