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 17BBD138E80 for ; Sun, 16 Oct 2016 14:28:56 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id E2CB7E0BC1; Sun, 16 Oct 2016 14:28:52 +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 C87DCE0BC1 for ; Sun, 16 Oct 2016 14:28:52 +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 551B03411FB for ; Sun, 16 Oct 2016 14:28:50 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id CCA462F2 for ; Sun, 16 Oct 2016 14:28:46 +0000 (UTC) From: "Michael Orlitzky" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Michael Orlitzky" Message-ID: <1476627843.f44f0193a792635ea779651f2d2c50a9b0ccc7ae.mjo@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: sci-mathematics/rw/ X-VCS-Repository: repo/gentoo X-VCS-Files: sci-mathematics/rw/rw-0.7-r1.ebuild sci-mathematics/rw/rw-0.7-r2.ebuild X-VCS-Directories: sci-mathematics/rw/ X-VCS-Committer: mjo X-VCS-Committer-Name: Michael Orlitzky X-VCS-Revision: f44f0193a792635ea779651f2d2c50a9b0ccc7ae X-VCS-Branch: master Date: Sun, 16 Oct 2016 14:28:46 +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: 175c39df-84b4-4799-ac9c-768c1ac78612 X-Archives-Hash: 7b45a189fe9a64dfc7678bb63e122f66 commit: f44f0193a792635ea779651f2d2c50a9b0ccc7ae Author: Michael Orlitzky gentoo org> AuthorDate: Sun Oct 16 14:23:36 2016 +0000 Commit: Michael Orlitzky gentoo org> CommitDate: Sun Oct 16 14:24:03 2016 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=f44f0193 sci-mathematics/rw: new revision with a blocker on media-gfx/xpaint. We have a file collision (librw.so) with xpaint. Barring a better solution, we should at least block it in RDEPEND so that users don't see the collision. This new revision adds "!media-gfx/xpaint" to RDEPEND. Gentoo-Bug: 560210 Package-Manager: portage-2.3.0 sci-mathematics/rw/{rw-0.7-r1.ebuild => rw-0.7-r2.ebuild} | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/sci-mathematics/rw/rw-0.7-r1.ebuild b/sci-mathematics/rw/rw-0.7-r2.ebuild similarity index 84% rename from sci-mathematics/rw/rw-0.7-r1.ebuild rename to sci-mathematics/rw/rw-0.7-r2.ebuild index ba4627f..e0712fd 100644 --- a/sci-mathematics/rw/rw-0.7-r1.ebuild +++ b/sci-mathematics/rw/rw-0.7-r2.ebuild @@ -7,7 +7,7 @@ EAPI=6 DESCRIPTION="Compute rank-width decompositions of graphs" AUTHORPAGE="http://pholia.tdi.informatik.uni-frankfurt.de/~philipp/" HOMEPAGE="${AUTHORPAGE}software/${PN}.shtml" -SRC_URI="${AUTHORPAGE}/software/${P}.tar.gz" +SRC_URI="${AUTHORPAGE}software/${P}.tar.gz" LICENSE="GPL-2+" SLOT="0" @@ -15,7 +15,10 @@ KEYWORDS="~amd64 ~amd64-linux ~x86 ~x86-linux ~ppc-macos ~x86-macos ~x64-macos" IUSE="+executable" DEPEND="executable? ( >=dev-libs/igraph-0.6 )" -RDEPEND="${DEPEND}" + +# We have a file collision (librw.so) with xpaint, bug 560210. +RDEPEND="${DEPEND} + !media-gfx/xpaint" DOCDIR="/usr/share/doc/${PF}"