[neon/backports-focal/draco/Neon/release] debian/patches: Revert "Refresh patches"
Jonathan Riddell
null at kde.org
Wed Dec 15 17:07:57 GMT 2021
Git commit fa430cff437f048d8730677878b00040de8a0c8d by Jonathan Riddell.
Committed on 15/12/2021 at 17:07.
Pushed by jriddell into branch 'Neon/release'.
Revert "Refresh patches"
This reverts commit 677f96c1531ee20b83b9be1bef6e3620c06ab230.
D +0 -127 debian/patches/0001-Use-debianized-third-party-libraries.patch
A +44 -0 debian/patches/0001-Use-system-Googletest-sources.patch
A +21 -0 debian/patches/0002-Fix-install-location-of-draco-config.cmake.patch
R +11 -10 debian/patches/0003-Fix-removal-of-build-dir-prefix-from-include-path.patch [from: debian/patches/0002-Fix-removal-of-build-dir-prefix-from-include-path.patch - 062% similarity]
D +0 -65 debian/patches/0003-Install-proper-CMake-targets.patch
A +41 -0 debian/patches/0004-Install-proper-CMake-targets.patch
D +0 -47 debian/patches/0004-Use-C-17-filesystem-library.patch
A +23 -0 debian/patches/0005-Bump-SOVERSION-after-ABI-break.patch
M +5 -4 debian/patches/series
https://invent.kde.org/neon/backports-focal/draco/commit/fa430cff437f048d8730677878b00040de8a0c8d
diff --git a/debian/patches/0001-Use-debianized-third-party-libraries.patch b/debian/patches/0001-Use-debianized-third-party-libraries.patch
deleted file mode 100644
index a895b36..0000000
--- a/debian/patches/0001-Use-debianized-third-party-libraries.patch
+++ /dev/null
@@ -1,127 +0,0 @@
-From: =?utf-8?q?Timo_R=C3=B6hling?= <timo at gaussglocke.de>
-Date: Wed, 2 Dec 2020 13:32:16 +0100
-Subject: Use debianized third-party libraries
-
----
- cmake/draco_build_definitions.cmake | 22 ++++++----------------
- cmake/draco_tests.cmake | 4 ++--
- src/draco/io/gltf_decoder.cc | 2 +-
- src/draco/io/gltf_decoder.h | 2 +-
- src/draco/io/tiny_gltf_utils.cc | 4 ++--
- src/draco/io/tiny_gltf_utils.h | 2 +-
- 6 files changed, 13 insertions(+), 23 deletions(-)
-
-diff --git a/cmake/draco_build_definitions.cmake b/cmake/draco_build_definitions.cmake
-index 057e15b..54f13ba 100644
---- a/cmake/draco_build_definitions.cmake
-+++ b/cmake/draco_build_definitions.cmake
-@@ -77,27 +77,17 @@ macro(draco_set_build_definitions)
- endif()
-
- if(DRACO_TRANSCODER_SUPPORTED)
-- list(APPEND submodule_test_dirs
-- "${draco_root}/third_party/eigen/Eigen"
-- "${draco_root}/third_party/filesystem/include"
-- "${draco_root}/third_party/tinygltf")
-- foreach(dir IN LISTS submodule_test_dirs)
-- if(NOT EXISTS ${dir})
-- message(FATAL_ERROR "${dir} missing, run git submodule update --init")
-- endif()
-- endforeach()
--
- list(APPEND draco_include_paths
-- "${draco_root}/third_party/eigen"
-- "${draco_root}/third_party/filesystem/include")
-+ "/usr/include/eigen3"
-+ "/usr/include/stb")
- endif()
-
- list(APPEND draco_test_include_paths
- ${draco_include_paths}
-- "${draco_root}/third_party/googletest/googlemock/include"
-- "${draco_root}/third_party/googletest/googlemock"
-- "${draco_root}/third_party/googletest/googletest/include"
-- "${draco_root}/third_party/googletest/googletest")
-+ "/usr/src/googletest/googlemock/include"
-+ "/usr/src/googletest/googlemock"
-+ "/usr/src/googletest/googletest/include"
-+ "/usr/src/googletest/googletest")
-
-
- list(APPEND draco_defines "DRACO_CMAKE=1"
-diff --git a/cmake/draco_tests.cmake b/cmake/draco_tests.cmake
-index c332e7b..6e66ce7 100644
---- a/cmake/draco_tests.cmake
-+++ b/cmake/draco_tests.cmake
-@@ -91,9 +91,9 @@ if(DRACO_TRANSCODER_SUPPORTED)
- endif()
-
- list(APPEND draco_gtest_all
-- "${draco_root}/third_party/googletest/googletest/src/gtest-all.cc")
-+ "/usr/src/googletest/googletest/src/gtest-all.cc")
- list(APPEND draco_gtest_main
-- "${draco_root}/third_party/googletest/googletest/src/gtest_main.cc")
-+ "/usr/src/googletest/googletest/src/gtest_main.cc")
-
- macro(draco_setup_test_targets)
- if(DRACO_TESTS)
-diff --git a/src/draco/io/gltf_decoder.cc b/src/draco/io/gltf_decoder.cc
-index 5c55393..c8cf3d5 100644
---- a/src/draco/io/gltf_decoder.cc
-+++ b/src/draco/io/gltf_decoder.cc
-@@ -27,7 +27,7 @@
- #include "draco/scene/scene_indices.h"
- #include "draco/texture/source_image.h"
- #include "draco/texture/texture_utils.h"
--#include "third_party/tinygltf/tiny_gltf.h"
-+#include <tiny_gltf.h>
-
- namespace draco {
-
-diff --git a/src/draco/io/gltf_decoder.h b/src/draco/io/gltf_decoder.h
-index daac733..4efaca0 100644
---- a/src/draco/io/gltf_decoder.h
-+++ b/src/draco/io/gltf_decoder.h
-@@ -31,7 +31,7 @@
- #include "draco/mesh/mesh.h"
- #include "draco/mesh/triangle_soup_mesh_builder.h"
- #include "draco/scene/scene.h"
--#include "third_party/tinygltf/tiny_gltf.h"
-+#include <tiny_gltf.h>
-
- namespace draco {
-
-diff --git a/src/draco/io/tiny_gltf_utils.cc b/src/draco/io/tiny_gltf_utils.cc
-index 816f746..aed26f3 100644
---- a/src/draco/io/tiny_gltf_utils.cc
-+++ b/src/draco/io/tiny_gltf_utils.cc
-@@ -19,7 +19,7 @@
- #include "draco/animation/node_animation_data.h"
- #include "draco/core/status.h"
- #include "draco/core/vector_d.h"
--#include "third_party/tinygltf/tiny_gltf.h"
-+#include <tiny_gltf.h>
-
- namespace draco {
-
-@@ -225,6 +225,6 @@ void TinyGltfUtils::SetDataImpl(float value, int index,
- #define TINYGLTF_ENABLE_DRACO
- #define TINYGLTF_IMPLEMENTATION
-
--#include "third_party/tinygltf/tiny_gltf.h"
-+#include <tiny_gltf.h>
-
- #endif // DRACO_TRANSCODER_SUPPORTED
-diff --git a/src/draco/io/tiny_gltf_utils.h b/src/draco/io/tiny_gltf_utils.h
-index c3ac22c..4060e67 100644
---- a/src/draco/io/tiny_gltf_utils.h
-+++ b/src/draco/io/tiny_gltf_utils.h
-@@ -24,7 +24,7 @@
- #include "draco/core/status.h"
- #include "draco/core/status_or.h"
- #include "draco/material/material.h"
--#include "third_party/tinygltf/tiny_gltf.h"
-+#include <tiny_gltf.h>
-
- namespace draco {
-
diff --git a/debian/patches/0001-Use-system-Googletest-sources.patch b/debian/patches/0001-Use-system-Googletest-sources.patch
new file mode 100644
index 0000000..e1dcb5f
--- /dev/null
+++ b/debian/patches/0001-Use-system-Googletest-sources.patch
@@ -0,0 +1,44 @@
+From: =?utf-8?q?Timo_R=C3=B6hling?= <timo at gaussglocke.de>
+Date: Wed, 2 Dec 2020 13:32:16 +0100
+Subject: Use system Googletest sources
+
+---
+ cmake/draco_build_definitions.cmake | 8 ++++----
+ cmake/draco_tests.cmake | 4 ++--
+ 2 files changed, 6 insertions(+), 6 deletions(-)
+
+diff --git a/cmake/draco_build_definitions.cmake b/cmake/draco_build_definitions.cmake
+index 4da7d92..ca7e0b1 100644
+--- a/cmake/draco_build_definitions.cmake
++++ b/cmake/draco_build_definitions.cmake
+@@ -78,10 +78,10 @@ macro(draco_set_build_definitions)
+
+
+ list(APPEND draco_gtest_include_paths
+- "${draco_root}/../googletest/googlemock/include"
+- "${draco_root}/../googletest/googlemock"
+- "${draco_root}/../googletest/googletest/include"
+- "${draco_root}/../googletest/googletest")
++ "/usr/src/googletest/googlemock/include"
++ "/usr/src/googletest/googlemock"
++ "/usr/src/googletest/googletest/include"
++ "/usr/src/googletest/googletest")
+ list(APPEND draco_test_include_paths ${draco_include_paths}
+ ${draco_gtest_include_paths})
+ list(APPEND draco_defines "DRACO_CMAKE=1"
+diff --git a/cmake/draco_tests.cmake b/cmake/draco_tests.cmake
+index 29c1b6e..1c7528c 100644
+--- a/cmake/draco_tests.cmake
++++ b/cmake/draco_tests.cmake
+@@ -69,9 +69,9 @@ list(
+ "${draco_src_root}/point_cloud/point_cloud_test.cc")
+
+ list(APPEND draco_gtest_all
+- "${draco_root}/../googletest/googletest/src/gtest-all.cc")
++ "/usr/src/googletest/googletest/src/gtest-all.cc")
+ list(APPEND draco_gtest_main
+- "${draco_root}/../googletest/googletest/src/gtest_main.cc")
++ "/usr/src/googletest/googletest/src/gtest_main.cc")
+
+ macro(draco_setup_test_targets)
+ if(DRACO_TESTS)
diff --git a/debian/patches/0002-Fix-install-location-of-draco-config.cmake.patch b/debian/patches/0002-Fix-install-location-of-draco-config.cmake.patch
new file mode 100644
index 0000000..5462439
--- /dev/null
+++ b/debian/patches/0002-Fix-install-location-of-draco-config.cmake.patch
@@ -0,0 +1,21 @@
+From: =?utf-8?q?Timo_R=C3=B6hling?= <timo at gaussglocke.de>
+Date: Wed, 2 Dec 2020 14:02:48 +0100
+Subject: Fix install location of draco-config.cmake
+
+---
+ cmake/draco_install.cmake | 2 +-
+ 1 file changed, 1 insertion(+), 1 deletion(-)
+
+diff --git a/cmake/draco_install.cmake b/cmake/draco_install.cmake
+index 905bca6..228b701 100644
+--- a/cmake/draco_install.cmake
++++ b/cmake/draco_install.cmake
+@@ -40,7 +40,7 @@ macro(draco_setup_install_target)
+ "${draco_build}/draco-config.cmake" @ONLY NEWLINE_STYLE UNIX)
+ install(
+ FILES "${draco_build}/draco-config.cmake"
+- DESTINATION "${CMAKE_INSTALL_PREFIX}/${CMAKE_INSTALL_DATAROOTDIR}/cmake")
++ DESTINATION "${CMAKE_INSTALL_PREFIX}/${CMAKE_INSTALL_LIBDIR}/cmake/draco")
+
+ foreach(file ${draco_sources})
+ if(file MATCHES "h$")
diff --git a/debian/patches/0002-Fix-removal-of-build-dir-prefix-from-include-path.patch b/debian/patches/0003-Fix-removal-of-build-dir-prefix-from-include-path.patch
similarity index 62%
rename from debian/patches/0002-Fix-removal-of-build-dir-prefix-from-include-path.patch
rename to debian/patches/0003-Fix-removal-of-build-dir-prefix-from-include-path.patch
index 18879ff..94254af 100644
--- a/debian/patches/0002-Fix-removal-of-build-dir-prefix-from-include-path.patch
+++ b/debian/patches/0003-Fix-removal-of-build-dir-prefix-from-include-path.patch
@@ -1,27 +1,28 @@
-From: =?utf-8?q?Timo_R=C3=B6hling?= <roehling at debian.org>
-Date: Sat, 11 Dec 2021 12:41:59 +0100
+From: =?utf-8?q?Timo_R=C3=B6hling?= <timo at gaussglocke.de>
+Date: Wed, 2 Dec 2020 14:02:59 +0100
Subject: Fix removal of build dir prefix from include path
---
- cmake/draco_install.cmake | 7 +++----
- 1 file changed, 3 insertions(+), 4 deletions(-)
+ cmake/draco_install.cmake | 6 +++---
+ 1 file changed, 3 insertions(+), 3 deletions(-)
diff --git a/cmake/draco_install.cmake b/cmake/draco_install.cmake
-index 88753c4..6d2f3be 100644
+index 228b701..9f48b6a 100644
--- a/cmake/draco_install.cmake
+++ b/cmake/draco_install.cmake
-@@ -61,11 +61,10 @@ macro(draco_setup_install_target)
-
- list(REMOVE_DUPLICATES draco_api_includes)
+@@ -48,12 +48,12 @@ macro(draco_setup_install_target)
+ endif()
+ endforeach()
- # Strip $draco_src_root from the file paths: we need to install relative to
- # $include_directory.
- list(TRANSFORM draco_api_includes REPLACE "${draco_src_root}/" "")
--
+ set(include_directory "${CMAKE_INSTALL_PREFIX}/${CMAKE_INSTALL_INCLUDEDIR}")
+
foreach(draco_api_include ${draco_api_includes})
+ # Strip $draco_src_root from the file paths: we need to install relative to
+ # $include_directory.
+ string(REPLACE "${draco_src_root}/" "" draco_api_include "${draco_api_include}")
get_filename_component(file_directory ${draco_api_include} DIRECTORY)
- set(target_directory "${includes_path}/draco/${file_directory}")
+ set(target_directory "${include_directory}/draco/${file_directory}")
install(FILES ${draco_src_root}/${draco_api_include}
diff --git a/debian/patches/0003-Install-proper-CMake-targets.patch b/debian/patches/0003-Install-proper-CMake-targets.patch
deleted file mode 100644
index 1e4159c..0000000
--- a/debian/patches/0003-Install-proper-CMake-targets.patch
+++ /dev/null
@@ -1,65 +0,0 @@
-From: =?utf-8?q?Timo_R=C3=B6hling?= <roehling at debian.org>
-Date: Sat, 11 Dec 2021 14:01:57 +0100
-Subject: Install proper CMake targets
-
----
- cmake/draco-config.cmake.template | 3 ++-
- cmake/draco_install.cmake | 15 ++++++++++-----
- 2 files changed, 12 insertions(+), 6 deletions(-)
-
-diff --git a/cmake/draco-config.cmake.template b/cmake/draco-config.cmake.template
-index 913b1b0..2ad53e7 100644
---- a/cmake/draco-config.cmake.template
-+++ b/cmake/draco-config.cmake.template
-@@ -1,4 +1,5 @@
- @PACKAGE_INIT@
-+include("${CMAKE_CURRENT_LIST_DIR}/draco-targets.cmake")
- set_and_check(DRACO_INCLUDE_DIR "@CMAKE_INSTALL_FULL_INCLUDEDIR@")
- set_and_check(DRACO_LIB_DIR "@CMAKE_INSTALL_FULL_LIBDIR@")
--set_and_check(DRACO_LIBRARY "draco")
-+set(DRACO_LIBRARY "draco")
-diff --git a/cmake/draco_install.cmake b/cmake/draco_install.cmake
-index 6d2f3be..dc74147 100644
---- a/cmake/draco_install.cmake
-+++ b/cmake/draco_install.cmake
-@@ -39,10 +39,10 @@ macro(draco_setup_install_target)
- configure_package_config_file(
- "${draco_root}/cmake/draco-config.cmake.template"
- "${draco_build}/draco-config.cmake"
-- INSTALL_DESTINATION "${data_path}/cmake")
-+ INSTALL_DESTINATION "${libs_path}/cmake/draco")
- install(
- FILES "${draco_build}/draco-config.cmake"
-- DESTINATION "${data_path}/cmake")
-+ DESTINATION "${libs_path}/cmake/draco")
-
- # CMake version: draco-version.cmake
- write_basic_package_version_file(
-@@ -51,7 +51,7 @@ macro(draco_setup_install_target)
- COMPATIBILITY AnyNewerVersion)
- install(
- FILES "${draco_build}/draco-version.cmake"
-- DESTINATION "${data_path}/cmake")
-+ DESTINATION "${libs_path}/cmake/draco")
-
- foreach(file ${draco_sources})
- if(file MATCHES "h$")
-@@ -81,11 +81,16 @@ macro(draco_setup_install_target)
- if(MSVC)
- install(TARGETS draco DESTINATION "${libs_path}")
- else()
-- install(TARGETS draco_static DESTINATION "${libs_path}")
-+ target_include_directories(draco_static INTERFACE ${DRACO_INCLUDE_DIR})
-+ install(TARGETS draco_static EXPORT draco-targets DESTINATION "${libs_path}")
-
- if(BUILD_SHARED_LIBS)
-- install(TARGETS draco_shared DESTINATION "${libs_path}")
-+ target_include_directories(draco_shared INTERFACE ${DRACO_INCLUDE_DIR})
-+ set_target_properties(draco_shared PROPERTIES EXPORT_NAME draco)
-+ install(TARGETS draco_shared EXPORT draco-targets DESTINATION "${libs_path}")
- endif()
-+
-+ install(EXPORT draco-targets DESTINATION "${libs_path}/cmake/draco")
- endif()
-
- if(DRACO_UNITY_PLUGIN)
diff --git a/debian/patches/0004-Install-proper-CMake-targets.patch b/debian/patches/0004-Install-proper-CMake-targets.patch
new file mode 100644
index 0000000..7c4e194
--- /dev/null
+++ b/debian/patches/0004-Install-proper-CMake-targets.patch
@@ -0,0 +1,41 @@
+From: =?utf-8?q?Timo_R=C3=B6hling?= <timo at gaussglocke.de>
+Date: Wed, 2 Dec 2020 15:17:25 +0100
+Subject: Install proper CMake targets
+
+---
+ cmake/draco-config.cmake.template | 3 ++-
+ cmake/draco_install.cmake | 8 ++++++--
+ 2 files changed, 8 insertions(+), 3 deletions(-)
+
+diff --git a/cmake/draco-config.cmake.template b/cmake/draco-config.cmake.template
+index ca4a456..1a46102 100644
+--- a/cmake/draco-config.cmake.template
++++ b/cmake/draco-config.cmake.template
+@@ -1,2 +1,3 @@
++include(${CMAKE_CURRENT_LIST_DIR}/draco-targets.cmake)
+ set(DRACO_INCLUDE_DIRS "@DRACO_INCLUDE_DIRS@")
+-set(DRACO_LIBRARIES "draco")
++set(DRACO_LIBRARIES "draco::draco_shared")
+diff --git a/cmake/draco_install.cmake b/cmake/draco_install.cmake
+index 9f48b6a..5f884ff 100644
+--- a/cmake/draco_install.cmake
++++ b/cmake/draco_install.cmake
+@@ -73,12 +73,16 @@ macro(draco_setup_install_target)
+ install(TARGETS draco DESTINATION
+ "${CMAKE_INSTALL_PREFIX}/${CMAKE_INSTALL_LIBDIR}")
+ else()
+- install(TARGETS draco_static DESTINATION
++ target_include_directories(draco_static INTERFACE ${DRACO_INCLUDE_DIRS})
++ install(TARGETS draco_static EXPORT draco-targets DESTINATION
+ "${CMAKE_INSTALL_PREFIX}/${CMAKE_INSTALL_LIBDIR}")
+ if(BUILD_SHARED_LIBS)
+- install(TARGETS draco_shared DESTINATION
++ target_include_directories(draco_shared INTERFACE ${DRACO_INCLUDE_DIRS})
++ install(TARGETS draco_shared EXPORT draco-targets DESTINATION
+ "${CMAKE_INSTALL_PREFIX}/${CMAKE_INSTALL_LIBDIR}")
+ endif()
++ install(EXPORT draco-targets NAMESPACE draco:: DESTINATION
++ "${CMAKE_INSTALL_PREFIX}/${CMAKE_INSTALL_LIBDIR}/cmake/draco")
+ endif()
+
+ if(DRACO_UNITY_PLUGIN)
diff --git a/debian/patches/0004-Use-C-17-filesystem-library.patch b/debian/patches/0004-Use-C-17-filesystem-library.patch
deleted file mode 100644
index eb9c4a5..0000000
--- a/debian/patches/0004-Use-C-17-filesystem-library.patch
+++ /dev/null
@@ -1,47 +0,0 @@
-From: =?utf-8?q?Timo_R=C3=B6hling?= <roehling at debian.org>
-Date: Sat, 11 Dec 2021 14:21:01 +0100
-Subject: Use C++17 filesystem library
-
----
- CMakeLists.txt | 3 ---
- src/draco/io/file_writer_utils.cc | 6 +++---
- 2 files changed, 3 insertions(+), 6 deletions(-)
-
-diff --git a/CMakeLists.txt b/CMakeLists.txt
-index 10ef8bc..8aa55cb 100644
---- a/CMakeLists.txt
-+++ b/CMakeLists.txt
-@@ -14,9 +14,6 @@
-
- cmake_minimum_required(VERSION 3.12 FATAL_ERROR)
-
--# Draco requires modern compiler support.
--set(CMAKE_C_STANDARD 99)
--set(CMAKE_CXX_STANDARD 11)
- project(draco C CXX)
-
- if(NOT CMAKE_BUILD_TYPE)
-diff --git a/src/draco/io/file_writer_utils.cc b/src/draco/io/file_writer_utils.cc
-index c790b30..c284de8 100644
---- a/src/draco/io/file_writer_utils.cc
-+++ b/src/draco/io/file_writer_utils.cc
-@@ -8,7 +8,7 @@
- #include "draco/draco_features.h"
-
- #ifdef DRACO_TRANSCODER_SUPPORTED
--#include "ghc/filesystem.hpp"
-+#include <filesystem>
- #endif // DRACO_TRANSCODER_SUPPORTED
-
- namespace draco {
-@@ -65,8 +65,8 @@ bool CheckAndCreatePathForFile(const std::string &filename) {
- SplitPathPrivate(filename, &path, &basename);
-
- #ifdef DRACO_TRANSCODER_SUPPORTED
-- const ghc::filesystem::path ghc_path(path);
-- ghc::filesystem::create_directories(ghc_path);
-+ const std::filesystem::path fs_path(path);
-+ std::filesystem::create_directories(fs_path);
- #endif // DRACO_TRANSCODER_SUPPORTED
- const bool directory_exists = DirectoryExists(path);
-
diff --git a/debian/patches/0005-Bump-SOVERSION-after-ABI-break.patch b/debian/patches/0005-Bump-SOVERSION-after-ABI-break.patch
new file mode 100644
index 0000000..c0077eb
--- /dev/null
+++ b/debian/patches/0005-Bump-SOVERSION-after-ABI-break.patch
@@ -0,0 +1,23 @@
+From: =?utf-8?q?Timo_R=C3=B6hling?= <roehling at debian.org>
+Date: Sat, 16 Oct 2021 19:51:12 +0200
+Subject: Bump SOVERSION after ABI break
+
+---
+ cmake/draco_targets.cmake | 4 ++--
+ 1 file changed, 2 insertions(+), 2 deletions(-)
+
+diff --git a/cmake/draco_targets.cmake b/cmake/draco_targets.cmake
+index f2acc72..973f38b 100644
+--- a/cmake/draco_targets.cmake
++++ b/cmake/draco_targets.cmake
+@@ -341,8 +341,8 @@ macro(draco_add_library)
+ # VERSION and SOVERSION as necessary
+ if((lib_TYPE STREQUAL BUNDLE OR lib_TYPE STREQUAL SHARED) AND NOT MSVC)
+ set_target_properties(${lib_NAME}
+- PROPERTIES VERSION ${DRACO_SOVERSION} SOVERSION
+- ${DRACO_SOVERSION_MAJOR})
++ PROPERTIES VERSION ${DRACO_SOVERSION}a SOVERSION
++ ${DRACO_SOVERSION_MAJOR}a)
+ endif()
+ endif()
+
diff --git a/debian/patches/series b/debian/patches/series
index f26b0d1..c0aaca1 100644
--- a/debian/patches/series
+++ b/debian/patches/series
@@ -1,4 +1,5 @@
-0001-Use-debianized-third-party-libraries.patch
-0002-Fix-removal-of-build-dir-prefix-from-include-path.patch
-0003-Install-proper-CMake-targets.patch
-0004-Use-C-17-filesystem-library.patch
+0001-Use-system-Googletest-sources.patch
+0002-Fix-install-location-of-draco-config.cmake.patch
+0003-Fix-removal-of-build-dir-prefix-from-include-path.patch
+0004-Install-proper-CMake-targets.patch
+0005-Bump-SOVERSION-after-ABI-break.patch
More information about the Neon-commits
mailing list