diff options
author | Yuri Victorovich <yuri@FreeBSD.org> | 2022-06-19 14:37:32 -0700 |
---|---|---|
committer | Yuri Victorovich <yuri@FreeBSD.org> | 2022-06-19 14:38:11 -0700 |
commit | 1b6bef5d436ab3213b9996a06880e155ffaadd06 (patch) | |
tree | d2140cccdf884c2a62f42e4c237ccbadd08d76de /math/py-nlopt/files/patch-extensions.py | |
parent | devel/kerl: update to version 2.5.1 (diff) |
math/py-nlopt: New port: Nonlinear optimization library
Diffstat (limited to 'math/py-nlopt/files/patch-extensions.py')
-rw-r--r-- | math/py-nlopt/files/patch-extensions.py | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/math/py-nlopt/files/patch-extensions.py b/math/py-nlopt/files/patch-extensions.py new file mode 100644 index 000000000000..1c8cfb1104cd --- /dev/null +++ b/math/py-nlopt/files/patch-extensions.py @@ -0,0 +1,11 @@ +--- extensions.py.orig 2022-06-19 20:42:31 UTC ++++ extensions.py +@@ -25,7 +25,7 @@ class NLOptBuild(build_ext): + except OSError: + raise RuntimeError("CMake must be installed") + +- if platform.system() not in ("Windows", "Linux", "Darwin"): ++ if platform.system() not in ("Windows", "Linux", "Darwin", "FreeBSD"): + raise RuntimeError(f"Unsupported os: {platform.system()}") + + for ext in self.extensions: |