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 F20FA138334 for ; Fri, 20 Dec 2019 14:11:06 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 31978E09C2; Fri, 20 Dec 2019 14:11:06 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (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 149D7E09C2 for ; Fri, 20 Dec 2019 14:11:06 +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 D8FDA34DA4A for ; Fri, 20 Dec 2019 14:11:04 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 642BC887 for ; Fri, 20 Dec 2019 14:11:02 +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: <1576851027.349bf02860377e3a7b0a73433a353e1b5f0bd5dd.marecki@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: net-libs/xrootd/ X-VCS-Repository: repo/gentoo X-VCS-Files: net-libs/xrootd/xrootd-4.10.1.ebuild X-VCS-Directories: net-libs/xrootd/ X-VCS-Committer: marecki X-VCS-Committer-Name: Marek Szuba X-VCS-Revision: 349bf02860377e3a7b0a73433a353e1b5f0bd5dd X-VCS-Branch: master Date: Fri, 20 Dec 2019 14:11:02 +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: 4377b296-55b1-4d5c-a705-bb449a02987d X-Archives-Hash: 75279a5a78604eae0f4432b0ecd2c840 commit: 349bf02860377e3a7b0a73433a353e1b5f0bd5dd Author: Marek Szuba gentoo org> AuthorDate: Fri Dec 20 14:10:27 2019 +0000 Commit: Marek Szuba gentoo org> CommitDate: Fri Dec 20 14:10:27 2019 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=349bf028 net-libs/xrootd: remove redundant USE=rbd from 4.10.1 Since version 4.10.0 xrootd upstream no longer bundle XrdCeph code with core XRootD so all this flag did in this ebuild was create an unnecessary dependency on sys-cluster/ceph and produce configure-time warnings. Closes: https://bugs.gentoo.org/691600 Package-Manager: Portage-2.3.79, Repoman-2.3.16 Signed-off-by: Marek Szuba gentoo.org> net-libs/xrootd/xrootd-4.10.1.ebuild | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/net-libs/xrootd/xrootd-4.10.1.ebuild b/net-libs/xrootd/xrootd-4.10.1.ebuild index 84ac2910a28..c15bef797bd 100644 --- a/net-libs/xrootd/xrootd-4.10.1.ebuild +++ b/net-libs/xrootd/xrootd-4.10.1.ebuild @@ -14,7 +14,7 @@ SRC_URI="http://xrootd.org/download/v${PV}/${P}.tar.gz" LICENSE="LGPL-3" SLOT="0" KEYWORDS="~amd64 ~x86 ~amd64-linux ~x86-linux" -IUSE="doc examples fuse http kerberos python readline rbd ssl test" +IUSE="doc examples fuse http kerberos python readline ssl test" RESTRICT="!test? ( test )" CDEPEND=" @@ -22,7 +22,6 @@ CDEPEND=" fuse? ( sys-fs/fuse:= ) kerberos? ( virtual/krb5 ) python? ( ${PYTHON_DEPS} ) - rbd? ( sys-cluster/ceph ) readline? ( sys-libs/readline:0= ) ssl? ( dev-libs/openssl:0= ) " @@ -56,7 +55,6 @@ pkg_setup() { src_configure() { local mycmakeargs=( - -DENABLE_CEPH=$(usex rbd) -DENABLE_CRYPTO=$(usex ssl) -DENABLE_FUSE=$(usex fuse) -DENABLE_HTTP=$(usex http)