summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJakov Smolić <jsmolic@gentoo.org>2023-01-24 18:01:10 +0100
committerJakov Smolić <jsmolic@gentoo.org>2023-01-24 21:12:20 +0100
commitded17fb11c29d2ca17dcbd3e3f39c812ea6bb21b (patch)
treed9a7eb6764b354d808927d0061c91eac1757d984 /dev-ros/ament_cmake_python/files
parentdev-ros/ament_cmake_pytest: treeclean (diff)
downloadgentoo-ded17fb11c29d2ca17dcbd3e3f39c812ea6bb21b.tar.gz
gentoo-ded17fb11c29d2ca17dcbd3e3f39c812ea6bb21b.tar.bz2
gentoo-ded17fb11c29d2ca17dcbd3e3f39c812ea6bb21b.zip
dev-ros/ament_cmake_python: treeclean
Signed-off-by: Jakov Smolić <jsmolic@gentoo.org>
Diffstat (limited to 'dev-ros/ament_cmake_python/files')
-rw-r--r--dev-ros/ament_cmake_python/files/destdir.patch26
-rw-r--r--dev-ros/ament_cmake_python/files/destdir2.patch26
2 files changed, 0 insertions, 52 deletions
diff --git a/dev-ros/ament_cmake_python/files/destdir.patch b/dev-ros/ament_cmake_python/files/destdir.patch
deleted file mode 100644
index 8e8f628afaf3..000000000000
--- a/dev-ros/ament_cmake_python/files/destdir.patch
+++ /dev/null
@@ -1,26 +0,0 @@
-Index: ament_cmake_python/cmake/ament_python_install_module.cmake
-===================================================================
---- ament_cmake_python.orig/cmake/ament_python_install_module.cmake
-+++ ament_cmake_python/cmake/ament_python_install_module.cmake
-@@ -64,7 +64,7 @@ function(_ament_cmake_python_install_mod
- "execute_process(
- COMMAND
- \"${PYTHON_EXECUTABLE}\" \"-m\" \"compileall\"
-- \"${CMAKE_INSTALL_PREFIX}/${destination}/${module_file}\"
-+ \"\$ENV{DESTDIR}/${CMAKE_INSTALL_PREFIX}/${destination}/${module_file}\"
- )"
- )
- endif()
-Index: ament_cmake_python/cmake/ament_python_install_package.cmake
-===================================================================
---- ament_cmake_python.orig/cmake/ament_python_install_package.cmake
-+++ ament_cmake_python/cmake/ament_python_install_package.cmake
-@@ -65,7 +65,7 @@ function(_ament_cmake_python_install_pac
- "execute_process(
- COMMAND
- \"${PYTHON_EXECUTABLE}\" \"-m\" \"compileall\"
-- \"${CMAKE_INSTALL_PREFIX}/${PYTHON_INSTALL_DIR}/${package_name}\"
-+ \"\$ENV{DESTDIR}/${CMAKE_INSTALL_PREFIX}/${PYTHON_INSTALL_DIR}/${package_name}\"
- )"
- )
- endif()
diff --git a/dev-ros/ament_cmake_python/files/destdir2.patch b/dev-ros/ament_cmake_python/files/destdir2.patch
deleted file mode 100644
index 5278b6e17073..000000000000
--- a/dev-ros/ament_cmake_python/files/destdir2.patch
+++ /dev/null
@@ -1,26 +0,0 @@
-Index: ament_cmake_python/cmake/ament_python_install_module.cmake
-===================================================================
---- ament_cmake_python.orig/cmake/ament_python_install_module.cmake
-+++ ament_cmake_python/cmake/ament_python_install_module.cmake
-@@ -65,7 +65,7 @@ function(_ament_cmake_python_install_mod
- "execute_process(
- COMMAND
- \"${python_interpreter}\" \"-m\" \"compileall\"
-- \"${CMAKE_INSTALL_PREFIX}/${destination}/${module_file}\"
-+ \"\$ENV{DESTDIR}/${CMAKE_INSTALL_PREFIX}/${destination}/${module_file}\"
- )"
- )
- endif()
-Index: ament_cmake_python/cmake/ament_python_install_package.cmake
-===================================================================
---- ament_cmake_python.orig/cmake/ament_python_install_package.cmake
-+++ ament_cmake_python/cmake/ament_python_install_package.cmake
-@@ -192,7 +192,7 @@ setup(
- "execute_process(
- COMMAND
- \"${python_interpreter_config}\" \"-m\" \"compileall\"
-- \"${CMAKE_INSTALL_PREFIX}/${ARG_DESTINATION}/${package_name}\"
-+ \"\$ENV{DESTDIR}/${CMAKE_INSTALL_PREFIX}/${ARG_DESTINATION}/${package_name}\"
- )"
- )
- endif()