From 875637f2ab6dec762cb67ee3e039484a8a454735 Mon Sep 17 00:00:00 2001
From: Torsten Maehne <Torsten.Maehne@gmx.de>
Date: Fri, 19 May 2017 10:24:20 +0200
Subject: [PATCH 2/2] Fix the python36 variant of the octave-symbolic port.
Due to a typo, the variant pulled in wrongly python35 and py35-sympy.
---
ports/math/octave-symbolic/Portfile | 6 +++---
1 file changed, 3 insertions(+), 3 deletions(-)
diff --git a/ports/math/octave-symbolic/Portfile b/ports/math/octave-symbolic/Portfile
index ecdc119..bef63d0 100644
a
|
b
|
PortSystem 1.0 |
4 | 4 | PortGroup octave 1.0 |
5 | 5 | |
6 | 6 | octave.setup symbolic 2.5.0 |
7 | | revision 1 |
| 7 | revision 2 |
8 | 8 | platforms darwin |
9 | 9 | license GPL-3 |
10 | 10 | maintainers {mps @Schamschula} openmaintainer |
… |
… |
variant python35 description "Use Python 3.5 SymPy" conflicts python27 python34 |
42 | 42 | } |
43 | 43 | |
44 | 44 | variant python36 description "Use Python 3.6 SymPy" conflicts python27 python34 python35 { |
45 | | depends_lib-append port:python35 \ |
46 | | port:py35-sympy |
| 45 | depends_lib-append port:python36 \ |
| 46 | port:py36-sympy |
47 | 47 | |
48 | 48 | configure.env-append \ |
49 | 49 | PYTHON=${prefix}/bin/python3.6 |