Gentoo Archives: gentoo-commits

From: Matthias Maier <tamiko@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: dev-lang/julia/
Date: Fri, 02 Oct 2020 17:42:41
Message-Id: 1601660483.f894b91a6a93535ed2e1479d2ccc7a4abe773dd0.tamiko@gentoo
1 commit: f894b91a6a93535ed2e1479d2ccc7a4abe773dd0
2 Author: Jeffrey Lin <jeffrey <AT> icurse <DOT> nl>
3 AuthorDate: Thu Aug 13 23:01:11 2020 +0000
4 Commit: Matthias Maier <tamiko <AT> gentoo <DOT> org>
5 CommitDate: Fri Oct 2 17:41:23 2020 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=f894b91a
7
8 dev-lang/julia: make sci-visualization/gr optional
9
10 This avoids pulling in around 70 dependencies on a clean install, the
11 bulk of them being X libraries.
12
13 Closes: https://github.com/gentoo/gentoo/pull/17149
14
15 Package-Manager: Portage-3.0.2, Repoman-2.3.23
16 Signed-off-by: Jeffrey Lin <jeffrey <AT> icurse.nl>
17 Signed-off-by: Matthias Maier <tamiko <AT> gentoo.org>
18
19 dev-lang/julia/julia-1.4.0-r2.ebuild | 5 ++++-
20 1 file changed, 4 insertions(+), 1 deletion(-)
21
22 diff --git a/dev-lang/julia/julia-1.4.0-r2.ebuild b/dev-lang/julia/julia-1.4.0-r2.ebuild
23 index 0755009420f..6529f36eb26 100644
24 --- a/dev-lang/julia/julia-1.4.0-r2.ebuild
25 +++ b/dev-lang/julia/julia-1.4.0-r2.ebuild
26 @@ -59,7 +59,6 @@ RDEPEND+="
27 sci-libs/spqr:0=
28 sci-libs/umfpack:0=
29 sci-mathematics/glpk:0=
30 - >=sci-visualization/gr-0.50.0-r1
31 >=sys-libs/libunwind-1.1:0=
32 sys-libs/readline:0=
33 sys-libs/zlib:0=
34 @@ -202,3 +201,7 @@ src_install() {
35 mv "${ED}"/usr/share/doc/julia/html "${ED}"/usr/share/doc/${PF} || die
36 rmdir "${ED}"/usr/share/doc/julia || die
37 }
38 +
39 +pkg_postinst() {
40 + elog "To use Plots, you will need to install sci-visualization/gr."
41 +}