This is an automated email from the git hooks/post-receive script. sebastic pushed a commit to branch master in repository otb.
commit 9da376b194686f84099eace1405def2a01a7070f Author: Bas Couwenberg <sebas...@xs4all.nl> Date: Thu Jan 25 08:05:12 2018 +0100 Drop patches, included upstream. --- debian/changelog | 1 + ...1499-add-a-if-else-to-support-ossimRpcSol.patch | 54 --------------------- ...UG-Mantis-1499-detect-Ossim-version-2.2.0.patch | 56 ---------------------- debian/patches/series | 2 - 4 files changed, 1 insertion(+), 112 deletions(-) diff --git a/debian/changelog b/debian/changelog index 3f32ddb..8924cdb 100644 --- a/debian/changelog +++ b/debian/changelog @@ -3,6 +3,7 @@ otb (6.4.0~rc1+dfsg-1) UNRELEASED; urgency=medium * Team upload. * New upstream release candidate. * Update copyright-format URL to use HTTPS. + * Drop patches, included upstream. -- Bas Couwenberg <sebas...@debian.org> Thu, 25 Jan 2018 07:50:01 +0100 diff --git a/debian/patches/0001-BUG-Mantis-1499-add-a-if-else-to-support-ossimRpcSol.patch b/debian/patches/0001-BUG-Mantis-1499-add-a-if-else-to-support-ossimRpcSol.patch deleted file mode 100644 index 2fdeac0..0000000 --- a/debian/patches/0001-BUG-Mantis-1499-add-a-if-else-to-support-ossimRpcSol.patch +++ /dev/null @@ -1,54 +0,0 @@ -From 8cad2e5d8265563ad8e03b044398a578a20bf7cf Mon Sep 17 00:00:00 2001 -From: Guillaume Pasero <guillaume.pas...@c-s.fr> -Date: Fri, 15 Dec 2017 17:15:41 +0100 -Subject: BUG: Mantis-1499: add a if-else to support - ossimRpcSolver::getRpcModel() - ---- - Modules/Adapters/OSSIMAdapters/src/CMakeLists.txt | 11 ++++++++++- - Modules/Adapters/OSSIMAdapters/src/otbRPCSolverAdapter.cxx | 4 ++++ - Modules/ThirdParty/Ossim/otb-module-init.cmake | 2 ++ - 3 files changed, 16 insertions(+), 1 deletion(-) - ---- a/Modules/Adapters/OSSIMAdapters/src/CMakeLists.txt -+++ b/Modules/Adapters/OSSIMAdapters/src/CMakeLists.txt -@@ -41,7 +41,16 @@ target_link_libraries(OTBOSSIMAdapters - ${OTBOssim_LIBRARIES} - ${OTBOssimPlugins_LIBRARIES} - ${OTBOpenThreads_LIBRARIES} -- - ) - - otb_module_target(OTBOSSIMAdapters) -+ -+# add the OTB_OSSIM_VERSION definition -+get_target_property(_OTBOSSIMAdapters_COMP_DEF OTBOSSIMAdapters COMPILE_DEFINITIONS) -+if(_OTBOSSIMAdapters_COMP_DEF) -+ set_target_properties(OTBOSSIMAdapters -+ PROPERTIES COMPILE_DEFINITIONS "${_OTBOSSIMAdapters_COMP_DEF};OTB_OSSIM_VERSION=${OTB_OSSIM_VERSION}") -+else() -+ set_target_properties(OTBOSSIMAdapters -+ PROPERTIES COMPILE_DEFINITIONS "OTB_OSSIM_VERSION=${OTB_OSSIM_VERSION}") -+endif() ---- a/Modules/Adapters/OSSIMAdapters/src/otbRPCSolverAdapter.cxx -+++ b/Modules/Adapters/OSSIMAdapters/src/otbRPCSolverAdapter.cxx -@@ -112,7 +112,11 @@ RPCSolverAdapter::Solve(const GCPsContai - rmsError = rpcSolver->getRmsError(); - - // Retrieve the output RPC projection -+#if OTB_OSSIM_VERSION < 20200 - ossimRefPtr<ossimRpcProjection> rpcProjection = dynamic_cast<ossimRpcProjection*>(rpcSolver->createRpcProjection()->getProjection()); -+#else -+ ossimRefPtr<ossimRpcModel> rpcProjection = rpcSolver->getRpcModel(); -+#endif - - // Export the sensor model in an ossimKeywordlist - ossimKeywordlist geom_kwl; ---- a/Modules/ThirdParty/Ossim/otb-module-init.cmake -+++ b/Modules/ThirdParty/Ossim/otb-module-init.cmake -@@ -19,3 +19,5 @@ - # - - find_package ( Ossim REQUIRED ) -+ -+set(OTB_OSSIM_VERSION ${OSSIM_VERSION_NUMBER} CACHE INTERNAL "Ossim version detected by OTB" FORCE) diff --git a/debian/patches/0001-BUG-Mantis-1499-detect-Ossim-version-2.2.0.patch b/debian/patches/0001-BUG-Mantis-1499-detect-Ossim-version-2.2.0.patch deleted file mode 100644 index 7195cf4..0000000 --- a/debian/patches/0001-BUG-Mantis-1499-detect-Ossim-version-2.2.0.patch +++ /dev/null @@ -1,56 +0,0 @@ -From 85d25812fef825c2e095e8dad064fd94453ea0da Mon Sep 17 00:00:00 2001 -From: Guillaume Pasero <guillaume.pas...@c-s.fr> -Date: Fri, 15 Dec 2017 17:13:31 +0100 -Subject: BUG: Mantis-1499: detect Ossim version 2.2.0 - ---- - CMake/FindOssim.cmake | 28 +++++++++++++++++++++++----- - 1 file changed, 23 insertions(+), 5 deletions(-) - ---- a/CMake/FindOssim.cmake -+++ b/CMake/FindOssim.cmake -@@ -35,14 +35,10 @@ find_path( OSSIM_INCLUDE_DIR - NAMES ossim/init/ossimInit.h ) - - # Version checking -+set(OSSIM_VERSION) - if(EXISTS "${OSSIM_INCLUDE_DIR}/ossim/ossimVersion.h") - file(READ "${OSSIM_INCLUDE_DIR}/ossim/ossimVersion.h" _ossim_version_h_CONTENTS) - string(REGEX REPLACE ".*# *define OSSIM_VERSION *\"([0-9.]+)\".*" "\\1" OSSIM_VERSION "${_ossim_version_h_CONTENTS}") -- string(REGEX REPLACE "([0-9]+)\\.([0-9]+)\\.([0-9]+)" "\\1" OSSIM_MAJOR_VERSION_NUMBER "${OSSIM_VERSION}") -- string(REGEX REPLACE "([0-9]+)\\.([0-9]+)\\.([0-9]+)" "\\2" OSSIM_MINOR_VERSION_NUMBER "${OSSIM_VERSION}") -- string(REGEX REPLACE "([0-9]+)\\.([0-9]+)\\.([0-9]+)" "\\3" OSSIM_PATCH_VERSION_NUMBER "${OSSIM_VERSION}") -- math(EXPR OSSIM_VERSION_NUMBER -- "((${OSSIM_MAJOR_VERSION_NUMBER})*100+${OSSIM_MINOR_VERSION_NUMBER})*100+${OSSIM_PATCH_VERSION_NUMBER}") - if("${OSSIM_VERSION}" VERSION_LESS "1.8.20") - message(WARNING "The OSSIM include directory detected by OTB is: '${OSSIM_INCLUDE_DIR}'." - "This version (${OSSIM_VERSION}) is not fully compatible with OTB." -@@ -67,6 +63,28 @@ else() - endif() - endif() - -+# Hack to detect version 2.2.0, without ossimVersion.h -+if(EXISTS "${OSSIM_INCLUDE_DIR}/ossim/projection/ossimRpcSolver.h") -+ file(STRINGS "${OSSIM_INCLUDE_DIR}/ossim/projection/ossimRpcSolver.h" _ossim_rpc_solv_content) -+ if(_ossim_rpc_solv_content MATCHES "const +ossimRefPtr<ossimRpcModel> +getRpcModel\\(\\)") -+ if((NOT OSSIM_VERSION) OR (OSSIM_VERSION VERSION_LESS "2.2.0")) -+ set(OSSIM_VERSION "2.2.0") -+ endif() -+ endif() -+endif() -+ -+if(OSSIM_VERSION) -+ string(REGEX REPLACE "([0-9]+)\\.([0-9]+)\\.([0-9]+)" "\\1" OSSIM_MAJOR_VERSION_NUMBER "${OSSIM_VERSION}") -+ string(REGEX REPLACE "([0-9]+)\\.([0-9]+)\\.([0-9]+)" "\\2" OSSIM_MINOR_VERSION_NUMBER "${OSSIM_VERSION}") -+ string(REGEX REPLACE "([0-9]+)\\.([0-9]+)\\.([0-9]+)" "\\3" OSSIM_PATCH_VERSION_NUMBER "${OSSIM_VERSION}") -+ math(EXPR OSSIM_VERSION_NUMBER -+ "((${OSSIM_MAJOR_VERSION_NUMBER})*100+${OSSIM_MINOR_VERSION_NUMBER})*100+${OSSIM_PATCH_VERSION_NUMBER}") -+else() -+ # Unknown version : default to 0 -+ set(OSSIM_VERSION_NUMBER 0) -+endif() -+ -+# Look for the library - find_library(OSSIM_LIBRARY - NAMES ossim) - diff --git a/debian/patches/series b/debian/patches/series deleted file mode 100644 index 1cd3b3f..0000000 --- a/debian/patches/series +++ /dev/null @@ -1,2 +0,0 @@ -0001-BUG-Mantis-1499-detect-Ossim-version-2.2.0.patch -0001-BUG-Mantis-1499-add-a-if-else-to-support-ossimRpcSol.patch -- Alioth's /usr/local/bin/git-commit-notice on /srv/git.debian.org/git/pkg-grass/otb.git _______________________________________________ Pkg-grass-devel mailing list Pkg-grass-devel@lists.alioth.debian.org http://lists.alioth.debian.org/cgi-bin/mailman/listinfo/pkg-grass-devel