From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: <gentoo-commits+bounces-1406831-garchives=archives.gentoo.org@lists.gentoo.org> Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (2048 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id 1160F158091 for <garchives@archives.gentoo.org>; Fri, 10 Jun 2022 07:58:15 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 4E075E0827; Fri, 10 Jun 2022 07:58:14 +0000 (UTC) Received: from smtp.gentoo.org (mail.gentoo.org [IPv6:2001:470:ea4a:1:5054:ff:fec7:86e4]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 33FE7E0827 for <gentoo-commits@lists.gentoo.org>; Fri, 10 Jun 2022 07:58:14 +0000 (UTC) Received: from oystercatcher.gentoo.org (unknown [IPv6:2a01:4f8:202:4333:225:90ff:fed9:fc84]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 6D4053416C1 for <gentoo-commits@lists.gentoo.org>; Fri, 10 Jun 2022 07:58:13 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 26628D3 for <gentoo-commits@lists.gentoo.org>; Fri, 10 Jun 2022 07:58:12 +0000 (UTC) From: "Matthew Smith" <matthew@gentoo.org> To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Matthew Smith" <matthew@gentoo.org> Message-ID: <1654847722.772d2a3d1a7ef18fb2f70de2d23480c10a43f072.matthew@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: media-gfx/solvespace/ X-VCS-Repository: repo/gentoo X-VCS-Files: media-gfx/solvespace/solvespace-3.1.ebuild X-VCS-Directories: media-gfx/solvespace/ X-VCS-Committer: matthew X-VCS-Committer-Name: Matthew Smith X-VCS-Revision: 772d2a3d1a7ef18fb2f70de2d23480c10a43f072 X-VCS-Branch: master Date: Fri, 10 Jun 2022 07:58:12 +0000 (UTC) Precedence: bulk List-Post: <mailto:gentoo-commits@lists.gentoo.org> List-Help: <mailto:gentoo-commits+help@lists.gentoo.org> List-Unsubscribe: <mailto:gentoo-commits+unsubscribe@lists.gentoo.org> List-Subscribe: <mailto:gentoo-commits+subscribe@lists.gentoo.org> List-Id: Gentoo Linux mail <gentoo-commits.gentoo.org> X-BeenThere: gentoo-commits@lists.gentoo.org X-Auto-Response-Suppress: DR, RN, NRN, OOF, AutoReply X-Archives-Salt: db048b80-6204-45af-aced-f898fd0ff9e9 X-Archives-Hash: 03bf2631874e0f1ba6cdf76865a915a8 commit: 772d2a3d1a7ef18fb2f70de2d23480c10a43f072 Author: Matthew Smith <matthew <AT> gentoo <DOT> org> AuthorDate: Fri Jun 10 07:55:22 2022 +0000 Commit: Matthew Smith <matthew <AT> gentoo <DOT> org> CommitDate: Fri Jun 10 07:55:22 2022 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=772d2a3d media-gfx/solvespace: add missing dev-cpp/eigen depend Fixes build failure and RDEPENDs untouched, no revbump. Closes: https://bugs.gentoo.org/850931 Signed-off-by: Matthew Smith <matthew <AT> gentoo.org> media-gfx/solvespace/solvespace-3.1.ebuild | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/media-gfx/solvespace/solvespace-3.1.ebuild b/media-gfx/solvespace/solvespace-3.1.ebuild index 347d89fe867d..00c648f92e37 100644 --- a/media-gfx/solvespace/solvespace-3.1.ebuild +++ b/media-gfx/solvespace/solvespace-3.1.ebuild @@ -44,7 +44,10 @@ RDEPEND=" x11-libs/cairo[X] x11-libs/gtk+:3[X] " -DEPEND="${RDEPEND}" +DEPEND=" + ${RDEPEND} + dev-cpp/eigen:3 +" BDEPEND="virtual/pkgconfig" PATCHES=( "${FILESDIR}"/${PN}-3.1-use-system-mimalloc.patch )