mirror of
https://git.freebsd.org/ports.git
synced 2025-07-07 04:19:17 -04:00
15 lines
491 B
Python
15 lines
491 B
Python
--- setup.py.orig 2023-01-04 19:23:00 UTC
|
|
+++ setup.py
|
|
@@ -555,12 +555,6 @@ def setup_requires():
|
|
req = parse_requirements("requirements_dev.txt")
|
|
req = list(filter(lambda r: not r.startswith("-r"), req))
|
|
|
|
- req_cmake = list(filter(lambda r: "cmake" in r, req))[0]
|
|
-
|
|
- # Add cmake requirement if libtiledb is not found and cmake is not available.
|
|
- if not libtiledb_exists(LIB_DIRS) and not cmake_available():
|
|
- req.append(req_cmake)
|
|
-
|
|
return req
|
|
|
|
|