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 206AF13835A for ; Sun, 14 Feb 2021 10:37:00 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 73FDCE0949; Sun, 14 Feb 2021 10:36:59 +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 5A3B0E0949 for ; Sun, 14 Feb 2021 10:36:59 +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 59D2C340F29 for ; Sun, 14 Feb 2021 10:36:58 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 39BEE4DC for ; Sun, 14 Feb 2021 10:36:55 +0000 (UTC) From: "David Seifert" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "David Seifert" Message-ID: <1613298771.01d46a46cbebb9039d6958046262572caac90cb3.soap@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: net-misc/cgminer/ X-VCS-Repository: repo/gentoo X-VCS-Files: net-misc/cgminer/cgminer-4.10.0.ebuild X-VCS-Directories: net-misc/cgminer/ X-VCS-Committer: soap X-VCS-Committer-Name: David Seifert X-VCS-Revision: 01d46a46cbebb9039d6958046262572caac90cb3 X-VCS-Branch: master Date: Sun, 14 Feb 2021 10:36:55 +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: bd5ed202-a4b4-48a9-916c-b5ecca505443 X-Archives-Hash: 017ed231f443919e7b179a2e9140171f commit: 01d46a46cbebb9039d6958046262572caac90cb3 Author: Jakov Smolic sartura hr> AuthorDate: Sun Feb 14 10:32:51 2021 +0000 Commit: David Seifert gentoo org> CommitDate: Sun Feb 14 10:32:51 2021 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=01d46a46 net-misc/cgminer: Apply gcc-10 workaround * Upstream inactive since 2018 Closes: https://bugs.gentoo.org/707436 Signed-off-by: Jakov Smolic sartura.hr> Signed-off-by: David Seifert gentoo.org> net-misc/cgminer/cgminer-4.10.0.ebuild | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/net-misc/cgminer/cgminer-4.10.0.ebuild b/net-misc/cgminer/cgminer-4.10.0.ebuild index 1ac87f413db..bcfc4b2aa99 100644 --- a/net-misc/cgminer/cgminer-4.10.0.ebuild +++ b/net-misc/cgminer/cgminer-4.10.0.ebuild @@ -1,4 +1,4 @@ -# Copyright 1999-2019 Gentoo Authors +# Copyright 1999-2021 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 EAPI=7 @@ -19,7 +19,8 @@ IUSE="doc examples udev hardened ncurses ${HARDWARE}" REQUIRED_USE="|| ( ${HARDWARE} )" -RDEPEND="net-misc/curl +RDEPEND=" + net-misc/curl >=dev-libs/jansson-2.6 virtual/libusb:1[udev] ncurses? ( sys-libs/ncurses:0= ) @@ -29,6 +30,7 @@ BDEPEND="virtual/pkgconfig" src_configure() { use hardened && append-cflags "-no-pie" + append-cflags -fcommon # PKG_CHECK_MODULES needs PKG_CONFIG for --with-system-jansson. export PKG_CONFIG="$(tc-getPKG_CONFIG)"