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 23A271382C5 for ; Mon, 31 May 2021 08:20:11 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 38685E0844; Mon, 31 May 2021 08:20:10 +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 1E804E0844 for ; Mon, 31 May 2021 08:20:10 +0000 (UTC) Received: from oystercatcher.gentoo.org (unknown [IPv6:2a01:4f8:202:4333:225:90ff:fed9:fc84]) (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 85D7B340CD6 for ; Mon, 31 May 2021 08:20:08 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 8798A79E for ; Mon, 31 May 2021 08:20:06 +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: <1622448946.6606838b0dedc4fe7916e0341671884ab9478085.sam@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: sci-libs/coinor-dip/ X-VCS-Repository: repo/gentoo X-VCS-Files: sci-libs/coinor-dip/coinor-dip-0.95.0-r1.ebuild sci-libs/coinor-dip/coinor-dip-0.95.0-r2.ebuild X-VCS-Directories: sci-libs/coinor-dip/ X-VCS-Committer: sam X-VCS-Committer-Name: Sam James X-VCS-Revision: 6606838b0dedc4fe7916e0341671884ab9478085 X-VCS-Branch: master Date: Mon, 31 May 2021 08:20:06 +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: db9f5e0f-0670-4427-90e7-d3873be1c316 X-Archives-Hash: ad798ccc2e17db7774c054859f4731ef commit: 6606838b0dedc4fe7916e0341671884ab9478085 Author: Ionen Wolkens gmail com> AuthorDate: Sun Mar 28 22:36:44 2021 +0000 Commit: Sam James gentoo org> CommitDate: Mon May 31 08:15:46 2021 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=6606838b sci-libs/coinor-dip: prevent python-2.7 automagic When python-2.7 is installed it attempts to build dippy which fails with slibtool due a typo that GNU libtool ignored. Rather than fix, since it installs some unsupported 2.7 site-packages, block it and revbump to clear these. Closes: https://bugs.gentoo.org/778965 Signed-off-by: Ionen Wolkens gmail.com> Closes: https://github.com/gentoo/gentoo/pull/20171 Signed-off-by: Sam James gentoo.org> .../{coinor-dip-0.95.0-r1.ebuild => coinor-dip-0.95.0-r2.ebuild} | 3 +++ 1 file changed, 3 insertions(+) diff --git a/sci-libs/coinor-dip/coinor-dip-0.95.0-r1.ebuild b/sci-libs/coinor-dip/coinor-dip-0.95.0-r2.ebuild similarity index 92% rename from sci-libs/coinor-dip/coinor-dip-0.95.0-r1.ebuild rename to sci-libs/coinor-dip/coinor-dip-0.95.0-r2.ebuild index d19f69dd1fb..9ea837d3607 100644 --- a/sci-libs/coinor-dip/coinor-dip-0.95.0-r1.ebuild +++ b/sci-libs/coinor-dip/coinor-dip-0.95.0-r2.ebuild @@ -32,6 +32,9 @@ src_prepare() { default # Prevent unneeded call to pkg-config that needs ${ED}'s in path. sed -i '/--libs.*addlibs.txt/d' Makefile.in || die + + # Prevent python:2.7 automagic for dippy (bug #778965) + sed -i 's/@HAVE_PYTHON_TRUE@/#/' src/Makefile.in || die } src_configure() {