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 4B6B7138359 for ; Sat, 17 Oct 2020 11:45:23 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id A97C9E0946; Sat, 17 Oct 2020 11:45:22 +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 8D909E0946 for ; Sat, 17 Oct 2020 11:45:22 +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 82773335D61 for ; Sat, 17 Oct 2020 11:45:21 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 07133396 for ; Sat, 17 Oct 2020 11:45:20 +0000 (UTC) From: "Mark Wright" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Mark Wright" Message-ID: <1602935077.a9511a558e48c0f6a7a74a8d7c161eda1948dd3f.gienah@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-ml/cudf/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-ml/cudf/cudf-0.8-r1.ebuild dev-ml/cudf/cudf-0.9.ebuild X-VCS-Directories: dev-ml/cudf/ X-VCS-Committer: gienah X-VCS-Committer-Name: Mark Wright X-VCS-Revision: a9511a558e48c0f6a7a74a8d7c161eda1948dd3f X-VCS-Branch: master Date: Sat, 17 Oct 2020 11:45:20 +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: f6dc619b-a5bd-47a7-afae-5960f99f6f7b X-Archives-Hash: 0220f198742e725e8f1e01f82fd6cad7 commit: a9511a558e48c0f6a7a74a8d7c161eda1948dd3f Author: Mark Wright gentoo org> AuthorDate: Sat Oct 17 11:44:37 2020 +0000 Commit: Mark Wright gentoo org> CommitDate: Sat Oct 17 11:44:37 2020 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=a9511a55 dev-ml/cudf: Fix 633836 749243 cudf needs to be linked with libunwind when compiled with dev-lang/ocaml where dev-lang/ocaml is compiled with the spacetime USE flag. Thanks to Flo Gravo and toralf for reporting. Closes: https://bugs.gentoo.org/633836 Closes: https://bugs.gentoo.org/749243 Package-Manager: Portage-3.0.8, Repoman-3.0.1 Signed-off-by: Mark Wright gentoo.org> dev-ml/cudf/cudf-0.8-r1.ebuild | 6 +++--- dev-ml/cudf/cudf-0.9.ebuild | 4 ++-- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/dev-ml/cudf/cudf-0.8-r1.ebuild b/dev-ml/cudf/cudf-0.8-r1.ebuild index 3d7e202217b..68264255481 100644 --- a/dev-ml/cudf/cudf-0.8-r1.ebuild +++ b/dev-ml/cudf/cudf-0.8-r1.ebuild @@ -1,4 +1,4 @@ -# Copyright 1999-2019 Gentoo Authors +# Copyright 1999-2020 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 EAPI=5 @@ -34,10 +34,10 @@ src_prepare() { -e 's|make|$(MAKE)|g' \ Makefile || die sed -i \ - -e 's|-lncurses|$(shell ${PKG_CONFIG} --libs ncurses glib-2.0)|g' \ + -e 's|-lncurses|$(shell ${PKG_CONFIG} --libs ncurses glib-2.0 libunwind)|g' \ c-lib/Makefile || die sed -i \ - -e 's|-lcurses|$(shell ${PKG_CONFIG} --libs ncurses glib-2.0)|g' \ + -e 's|-lcurses|$(shell ${PKG_CONFIG} --libs ncurses glib-2.0 libunwind)|g' \ c-lib/Makefile.variants || die tc-export CC PKG_CONFIG diff --git a/dev-ml/cudf/cudf-0.9.ebuild b/dev-ml/cudf/cudf-0.9.ebuild index 5a176346903..0294691bd95 100644 --- a/dev-ml/cudf/cudf-0.9.ebuild +++ b/dev-ml/cudf/cudf-0.9.ebuild @@ -35,10 +35,10 @@ src_prepare() { -e 's|make|$(MAKE)|g' \ Makefile || die sed -i \ - -e 's|-lncurses|$(shell ${PKG_CONFIG} --libs ncurses glib-2.0)|g' \ + -e 's|-lncurses|$(shell ${PKG_CONFIG} --libs ncurses glib-2.0 libunwind)|g' \ c-lib/Makefile || die sed -i \ - -e 's|-lcurses|$(shell ${PKG_CONFIG} --libs ncurses glib-2.0)|g' \ + -e 's|-lcurses|$(shell ${PKG_CONFIG} --libs ncurses glib-2.0 libunwind)|g' \ c-lib/Makefile.variants || die tc-export CC PKG_CONFIG