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 9D282139086 for ; Fri, 30 Dec 2016 16:48:17 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id D103921C1DB; Fri, 30 Dec 2016 16:48:16 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id A643A21C1DB for ; Fri, 30 Dec 2016 16:48:11 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id BDEB43416CD for ; Fri, 30 Dec 2016 16:48:05 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 1E233257D for ; Fri, 30 Dec 2016 15:32:23 +0000 (UTC) From: "Andrew Savchenko" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Andrew Savchenko" Message-ID: <1483111939.bc14e67bbdb9cb6c054f762732c50d6b31e92051.bircoph@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.4.0.ebuild net-libs/xrootd/xrootd-4.5.0.ebuild X-VCS-Directories: net-libs/xrootd/ X-VCS-Committer: bircoph X-VCS-Committer-Name: Andrew Savchenko X-VCS-Revision: bc14e67bbdb9cb6c054f762732c50d6b31e92051 X-VCS-Branch: master Date: Fri, 30 Dec 2016 15:32:23 +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-Archives-Salt: 111cda43-9da5-41e5-8bc6-0a624eb8949c X-Archives-Hash: cccfd9e7bb381e444ea49265a32a7be2 commit: bc14e67bbdb9cb6c054f762732c50d6b31e92051 Author: Andrew Savchenko gentoo org> AuthorDate: Fri Dec 30 15:32:06 2016 +0000 Commit: Andrew Savchenko gentoo org> CommitDate: Fri Dec 30 15:32:19 2016 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=bc14e67b net-libs/xrootd: fix bug 603016 As explained[1] by upstream libXrd.*-4.so files are xrootd plugins which are not supposed to be linked directly with, so adding QA_SONAME_NO_SYMLINK exception for them. [1] https://github.com/xrootd/xrootd/issues/447 Package-Manager: portage-2.3.3 Signed-off-by: Andrew Savchenko gentoo.org> net-libs/xrootd/xrootd-4.4.0.ebuild | 5 +++++ net-libs/xrootd/xrootd-4.5.0.ebuild | 5 +++++ 2 files changed, 10 insertions(+) diff --git a/net-libs/xrootd/xrootd-4.4.0.ebuild b/net-libs/xrootd/xrootd-4.4.0.ebuild index d664ec8..bae1b0a 100644 --- a/net-libs/xrootd/xrootd-4.4.0.ebuild +++ b/net-libs/xrootd/xrootd-4.4.0.ebuild @@ -29,6 +29,11 @@ DEPEND="${RDEPEND} REQUIRED_USE="http? ( kerberos ssl )" PATCHES=( "${FILESDIR}"/${PN}-no-werror.patch ) +# xrootd plugins are not intended to be linked with, +# they are to be loaded at runtime by xrootd, +# see https://github.com/xrootd/xrootd/issues/447 +QA_SONAME_NO_SYMLINK="/usr/lib.*/libXrd*-4.so" + pkg_setup() { enewgroup xrootd enewuser xrootd -1 -1 "${EPREFIX}"/var/spool/xrootd xrootd diff --git a/net-libs/xrootd/xrootd-4.5.0.ebuild b/net-libs/xrootd/xrootd-4.5.0.ebuild index c48d44f..d60b54e 100644 --- a/net-libs/xrootd/xrootd-4.5.0.ebuild +++ b/net-libs/xrootd/xrootd-4.5.0.ebuild @@ -43,6 +43,11 @@ REQUIRED_USE=" " PATCHES=( "${FILESDIR}"/${PN}-no-werror.patch ) +# xrootd plugins are not intended to be linked with, +# they are to be loaded at runtime by xrootd, +# see https://github.com/xrootd/xrootd/issues/447 +QA_SONAME_NO_SYMLINK="/usr/lib.*/libXrd*-4.so" + pkg_setup() { enewgroup xrootd enewuser xrootd -1 -1 "${EPREFIX}"/var/spool/xrootd xrootd