Blame SOURCES/pybind11-2.6.1-hpath.patch

c5ded3
diff -up pybind11-2.6.1/pybind11/commands.py.hpath pybind11-2.6.1/pybind11/commands.py
c5ded3
--- pybind11-2.6.1/pybind11/commands.py.hpath	2020-11-11 22:33:21.000000000 +0100
c5ded3
+++ pybind11-2.6.1/pybind11/commands.py	2020-11-12 13:22:07.355000414 +0100
c5ded3
@@ -1,22 +1,8 @@
c5ded3
 # -*- coding: utf-8 -*-
c5ded3
 import os
c5ded3
 
c5ded3
-
c5ded3
-DIR = os.path.abspath(os.path.dirname(__file__))
c5ded3
-
c5ded3
-
c5ded3
 def get_include(user=False):
c5ded3
-    # type: (bool) -> str
c5ded3
-    installed_path = os.path.join(DIR, "include")
c5ded3
-    source_path = os.path.join(os.path.dirname(DIR), "include")
c5ded3
-    return installed_path if os.path.exists(installed_path) else source_path
c5ded3
-
c5ded3
+    return '/usr/include/pybind11'
c5ded3
 
c5ded3
 def get_cmake_dir():
c5ded3
-    # type: () -> str
c5ded3
-    cmake_installed_path = os.path.join(DIR, "share", "cmake", "pybind11")
c5ded3
-    if os.path.exists(cmake_installed_path):
c5ded3
-        return cmake_installed_path
c5ded3
-    else:
c5ded3
-        msg = "pybind11 not installed, installation required to access the CMake files"
c5ded3
-        raise ImportError(msg)
c5ded3
+    return '/usr/share/cmake/pybind11'
c5ded3
diff -up pybind11-2.6.1/pybind11/__init__.py.hpath pybind11-2.6.1/pybind11/__init__.py
c5ded3
diff -up pybind11-2.6.1/pybind11/__main__.py.hpath pybind11-2.6.1/pybind11/__main__.py