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 CFE50158094 for ; Mon, 18 Jul 2022 18:45:21 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 901A7E0BD2; Mon, 18 Jul 2022 18:45:20 +0000 (UTC) Received: from smtp.gentoo.org (woodpecker.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 72842E0BD2 for ; Mon, 18 Jul 2022 18:45:20 +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)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 4FDAC340D24 for ; Mon, 18 Jul 2022 18:45:19 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id E00CF456 for ; Mon, 18 Jul 2022 18:45:17 +0000 (UTC) From: "Sam James" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Sam James" Message-ID: <1658169863.d48fd2cd2c455abce55ff43c684136e3b0d8a1de.sam@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: net-libs/libgssglue/ X-VCS-Repository: repo/gentoo X-VCS-Files: net-libs/libgssglue/libgssglue-0.5-r1.ebuild net-libs/libgssglue/libgssglue-0.5.ebuild X-VCS-Directories: net-libs/libgssglue/ X-VCS-Committer: sam X-VCS-Committer-Name: Sam James X-VCS-Revision: d48fd2cd2c455abce55ff43c684136e3b0d8a1de X-VCS-Branch: master Date: Mon, 18 Jul 2022 18:45:17 +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: 25f7fe0c-acb1-4b79-a40d-136fd6415c26 X-Archives-Hash: c7b08c4c483b416931777604946a4a4c commit: d48fd2cd2c455abce55ff43c684136e3b0d8a1de Author: Sam James gentoo org> AuthorDate: Mon Jul 18 18:44:23 2022 +0000 Commit: Sam James gentoo org> CommitDate: Mon Jul 18 18:44:23 2022 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=d48fd2cd net-libs/libgssglue: add README; RDEPEND on virtual/krb5 Signed-off-by: Sam James gentoo.org> ...gssglue-0.5.ebuild => libgssglue-0.5-r1.ebuild} | 24 ++++++++++++++++++++-- 1 file changed, 22 insertions(+), 2 deletions(-) diff --git a/net-libs/libgssglue/libgssglue-0.5.ebuild b/net-libs/libgssglue/libgssglue-0.5-r1.ebuild similarity index 63% rename from net-libs/libgssglue/libgssglue-0.5.ebuild rename to net-libs/libgssglue/libgssglue-0.5-r1.ebuild index 83b13a4f094e..11a29340a820 100644 --- a/net-libs/libgssglue/libgssglue-0.5.ebuild +++ b/net-libs/libgssglue/libgssglue-0.5-r1.ebuild @@ -3,7 +3,7 @@ EAPI=8 -inherit autotools +inherit autotools readme.gentoo-r1 DESCRIPTION="Exports a gssapi interface which calls other random gssapi libraries" HOMEPAGE="http://www.citi.umich.edu/projects/nfsv4/linux https://gitlab.com/gsasl/libgssglue" @@ -14,11 +14,25 @@ LICENSE="BSD" SLOT="0" KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~riscv ~s390 ~sparc ~x86" +RDEPEND="virtual/krb5" + PATCHES=( "${FILESDIR}"/${PN}-0.3-protos.patch "${FILESDIR}"/${PN}-0.4-implicit-declarations.patch ) +DOC_CONTENTS=" +This package allows choosing a Kerberos or GSSAPI implementation +at runtime. + +See +https://blog.josefsson.org/2022/07/14/towards-pluggable-gss-api-modules/ +for more details. + +A system-wide implementation can be chosen by editing ${EROOT}/etc/gssapi_mech.conf, +or it can be set per-process via the GSSAPI_MECH_CONF environment variable. +" + src_prepare() { default @@ -31,8 +45,14 @@ src_prepare() { src_install() { default - find "${ED}" -name '*.la' -delete || die + readme.gentoo_create_doc insinto /etc doins doc/gssapi_mech.conf + + find "${ED}" -name '*.la' -delete || die +} + +pkg_postinst() { + readme.gentoo_print_elog }