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 8FB5015810F for ; Thu, 8 Jun 2023 11:59:08 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 6EC2FE08F5; Thu, 8 Jun 2023 11:59:07 +0000 (UTC) Received: from smtp.gentoo.org (woodpecker.gentoo.org [140.211.166.183]) (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 51259E08F5 for ; Thu, 8 Jun 2023 11:59:07 +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 46C35340B98 for ; Thu, 8 Jun 2023 11:59:06 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id A54B9A80 for ; Thu, 8 Jun 2023 11:59:04 +0000 (UTC) From: "Guilherme Amadio" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Guilherme Amadio" Message-ID: <1686225528.f2e4bbc44ec1f90456cf73a2c96daffe607a2a4f.amadio@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: net-libs/xrootd/ X-VCS-Repository: repo/gentoo X-VCS-Files: net-libs/xrootd/metadata.xml net-libs/xrootd/xrootd-5.5.5-r1.ebuild net-libs/xrootd/xrootd-5.5.5.ebuild X-VCS-Directories: net-libs/xrootd/ X-VCS-Committer: amadio X-VCS-Committer-Name: Guilherme Amadio X-VCS-Revision: f2e4bbc44ec1f90456cf73a2c96daffe607a2a4f X-VCS-Branch: master Date: Thu, 8 Jun 2023 11:59:04 +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: d55ab194-f206-4b6e-b10d-af7d3d87c904 X-Archives-Hash: 915fe9490a6784f55212b8cf6bfafbdc commit: f2e4bbc44ec1f90456cf73a2c96daffe607a2a4f Author: Guilherme Amadio gentoo org> AuthorDate: Thu Jun 8 11:57:46 2023 +0000 Commit: Guilherme Amadio gentoo org> CommitDate: Thu Jun 8 11:58:48 2023 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=f2e4bbc4 net-libs/xrootd: add support for macaroons and scitokens Closes: https://bugs.gentoo.org/834109 Signed-off-by: Guilherme Amadio gentoo.org> net-libs/xrootd/metadata.xml | 2 ++ .../xrootd/{xrootd-5.5.5.ebuild => xrootd-5.5.5-r1.ebuild} | 13 ++++++++++--- 2 files changed, 12 insertions(+), 3 deletions(-) diff --git a/net-libs/xrootd/metadata.xml b/net-libs/xrootd/metadata.xml index 16c259164057..3b614243b413 100644 --- a/net-libs/xrootd/metadata.xml +++ b/net-libs/xrootd/metadata.xml @@ -20,6 +20,8 @@ Enable the sys-fs/fuse filesystem driver Enable http protocol support Use dev-libs/libxml2 for XML parsing (preferred) instead of bundled tinyxml + Enable support for macaroons with dev-libs/libmacaroons + Enable support for scitokens with dev-cpp/scitokens-cpp Install xrootd server and related plug-ins Enable erasure coding support (XrdEc plugin) with dev-libs/isa-l diff --git a/net-libs/xrootd/xrootd-5.5.5.ebuild b/net-libs/xrootd/xrootd-5.5.5-r1.ebuild similarity index 93% rename from net-libs/xrootd/xrootd-5.5.5.ebuild rename to net-libs/xrootd/xrootd-5.5.5-r1.ebuild index 9137e1925da2..7b7be06008c8 100644 --- a/net-libs/xrootd/xrootd-5.5.5.ebuild +++ b/net-libs/xrootd/xrootd-5.5.5-r1.ebuild @@ -23,7 +23,12 @@ SRC_URI="https://xrootd.slac.stanford.edu/download/v${PV}/${P}.tar.gz" LICENSE="LGPL-3" SLOT="0" KEYWORDS="~amd64 ~x86 ~amd64-linux ~x86-linux" -IUSE="examples fuse http kerberos +libxml2 python readline +server systemd test xrdec" +IUSE="examples fuse http kerberos +libxml2 macaroons python readline scitokens +server systemd test xrdec" + +REQUIRED_USE=" + macaroons? ( server ) + scitokens? ( server ) +" RESTRICT="!test? ( test )" @@ -39,8 +44,10 @@ CDEPEND="acct-group/xrootd ) kerberos? ( virtual/krb5 ) libxml2? ( dev-libs/libxml2:2= ) + macaroons? ( dev-libs/libmacaroons ) python? ( ${PYTHON_DEPS} ) readline? ( sys-libs/readline:0= ) + scitokens? ( dev-cpp/scitokens-cpp ) systemd? ( sys-apps/systemd:= ) xrdec? ( dev-libs/isa-l ) " @@ -98,10 +105,10 @@ src_configure() { -DENABLE_FUSE=$(usex fuse) -DENABLE_HTTP=$(usex http) -DENABLE_KRB5=$(usex kerberos) - -DENABLE_MACAROONS=no + -DENABLE_MACAROONS=$(usex macaroons) -DENABLE_PYTHON=$(usex python) -DENABLE_READLINE=$(usex readline) - -DENABLE_SCITOKENS=no + -DENABLE_SCITOKENS=$(usex scitokens) -DENABLE_TESTS=$(usex test) -DENABLE_VOMS=no -DENABLE_XRDCL=yes