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.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (2048 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id 798B5158086 for ; Tue, 2 Nov 2021 21:38:22 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 7DC25E0948; Tue, 2 Nov 2021 21:38:16 +0000 (UTC) Received: from smtp.gentoo.org (mail.gentoo.org [IPv6:2001:470:ea4a:1:5054:ff:fec7:86e4]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits) server-digest SHA256) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id BD76EE0948 for ; Tue, 2 Nov 2021 21:38:11 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits) server-digest SHA256) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 77215342EB0 for ; Tue, 2 Nov 2021 21:38:09 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 979C8164 for ; Tue, 2 Nov 2021 21:38:07 +0000 (UTC) From: "Mike Gilbert" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Mike Gilbert" Message-ID: <1635888667.668fbb134ae5bb8bc30cad65e27b5faed869b7b7.floppym@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-vcs/subversion/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-vcs/subversion/metadata.xml dev-vcs/subversion/subversion-1.14.1.ebuild X-VCS-Directories: dev-vcs/subversion/ X-VCS-Committer: floppym X-VCS-Committer-Name: Mike Gilbert X-VCS-Revision: 668fbb134ae5bb8bc30cad65e27b5faed869b7b7 X-VCS-Branch: master Date: Tue, 2 Nov 2021 21:38:07 +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: ba5727e8-638a-41cf-998b-a86a8541b322 X-Archives-Hash: 4f6dc2ea5127c127cb26a0f44c37fb5c commit: 668fbb134ae5bb8bc30cad65e27b5faed869b7b7 Author: Mike Gilbert gentoo org> AuthorDate: Tue Nov 2 21:31:07 2021 +0000 Commit: Mike Gilbert gentoo org> CommitDate: Tue Nov 2 21:31:07 2021 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=668fbb13 dev-vcs/subversion: add 'plaintext-password-storage' USE flag This allows the user to opt into insecure password storage if they truly desire it. Signed-off-by: Mike Gilbert gentoo.org> dev-vcs/subversion/metadata.xml | 1 + dev-vcs/subversion/subversion-1.14.1.ebuild | 3 ++- 2 files changed, 3 insertions(+), 1 deletion(-) diff --git a/dev-vcs/subversion/metadata.xml b/dev-vcs/subversion/metadata.xml index a599f94e6eb..20c7048c476 100644 --- a/dev-vcs/subversion/metadata.xml +++ b/dev-vcs/subversion/metadata.xml @@ -12,5 +12,6 @@ Install extra scripts (examples, tools, hooks) Enable encrypted storage of passwords with kde-frameworks/kwallet + Enable on-disk caching of plaintext passwords and passphrases. (Enabling this functionality will not force Subversion to store passwords in plaintext, but does permit users to explicitly allow that behavior via runtime configuration.) diff --git a/dev-vcs/subversion/subversion-1.14.1.ebuild b/dev-vcs/subversion/subversion-1.14.1.ebuild index bbe0b31da1c..a9987638af1 100644 --- a/dev-vcs/subversion/subversion-1.14.1.ebuild +++ b/dev-vcs/subversion/subversion-1.14.1.ebuild @@ -22,7 +22,7 @@ LICENSE="Apache-2.0 BSD MIT BSD-2 FSFAP unicode" SLOT="0" [[ "${PV}" = *_rc* ]] || \ KEYWORDS="~alpha amd64 arm arm64 ~hppa ~ia64 ppc ppc64 ~riscv sparc x86 ~amd64-linux ~x86-linux" -IUSE="apache2 berkdb debug doc extras gnome-keyring java kwallet nls perl ruby sasl test" +IUSE="apache2 berkdb debug doc extras gnome-keyring java kwallet nls perl plaintext-password-storage ruby sasl test" RESTRICT="!test? ( test )" COMMON_DEPEND=" @@ -184,6 +184,7 @@ src_configure() { $(use_with java jdk "${JAVA_HOME}") $(use_with kwallet) $(use_enable nls) + $(use_enable plaintext-password-storage) $(use_with sasl) --with-serf --with-apr="${EPREFIX}/usr/bin/apr-1-config"