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 3C727138359 for ; Fri, 2 Oct 2020 17:42:41 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 8B86DE09DA; Fri, 2 Oct 2020 17:42:40 +0000 (UTC) Received: from smtp.gentoo.org (woodpecker.gentoo.org [IPv6:2001:470:ea4a:1:5054:ff:fec7:86e4]) (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 710E1E09DA for ; Fri, 2 Oct 2020 17:42:40 +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 371BE340C79 for ; Fri, 2 Oct 2020 17:42:39 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 9D6E4332 for ; Fri, 2 Oct 2020 17:42:37 +0000 (UTC) From: "Matthias Maier" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Matthias Maier" Message-ID: <1601660483.f894b91a6a93535ed2e1479d2ccc7a4abe773dd0.tamiko@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-lang/julia/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-lang/julia/julia-1.4.0-r2.ebuild X-VCS-Directories: dev-lang/julia/ X-VCS-Committer: tamiko X-VCS-Committer-Name: Matthias Maier X-VCS-Revision: f894b91a6a93535ed2e1479d2ccc7a4abe773dd0 X-VCS-Branch: master Date: Fri, 2 Oct 2020 17:42:37 +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: 70cc7939-a5a9-4de9-8d15-8a3977bfb38d X-Archives-Hash: f571bd99d0f996148d1598012a58230a commit: f894b91a6a93535ed2e1479d2ccc7a4abe773dd0 Author: Jeffrey Lin icurse nl> AuthorDate: Thu Aug 13 23:01:11 2020 +0000 Commit: Matthias Maier gentoo org> CommitDate: Fri Oct 2 17:41:23 2020 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=f894b91a dev-lang/julia: make sci-visualization/gr optional This avoids pulling in around 70 dependencies on a clean install, the bulk of them being X libraries. Closes: https://github.com/gentoo/gentoo/pull/17149 Package-Manager: Portage-3.0.2, Repoman-2.3.23 Signed-off-by: Jeffrey Lin icurse.nl> Signed-off-by: Matthias Maier gentoo.org> dev-lang/julia/julia-1.4.0-r2.ebuild | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/dev-lang/julia/julia-1.4.0-r2.ebuild b/dev-lang/julia/julia-1.4.0-r2.ebuild index 0755009420f..6529f36eb26 100644 --- a/dev-lang/julia/julia-1.4.0-r2.ebuild +++ b/dev-lang/julia/julia-1.4.0-r2.ebuild @@ -59,7 +59,6 @@ RDEPEND+=" sci-libs/spqr:0= sci-libs/umfpack:0= sci-mathematics/glpk:0= - >=sci-visualization/gr-0.50.0-r1 >=sys-libs/libunwind-1.1:0= sys-libs/readline:0= sys-libs/zlib:0= @@ -202,3 +201,7 @@ src_install() { mv "${ED}"/usr/share/doc/julia/html "${ED}"/usr/share/doc/${PF} || die rmdir "${ED}"/usr/share/doc/julia || die } + +pkg_postinst() { + elog "To use Plots, you will need to install sci-visualization/gr." +}