From c17a90bf4938f3bd9095756e4cbd762543c0a148 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Kai=20Wasserb=C3=A4ch?= Date: Sun, 16 Jan 2011 11:49:34 +0100 Subject: [PATCH] Dropped obsolete patch: FindPython_fix_#569321_and_#580503.diff --- debian/changelog | 4 +- .../FindPython_fix_#569321_and_#580503.diff | 99 ------------------- debian/patches/series | 1 - 3 files changed, 3 insertions(+), 101 deletions(-) delete mode 100644 debian/patches/FindPython_fix_#569321_and_#580503.diff diff --git a/debian/changelog b/debian/changelog index b5a2d7912..ed31d160c 100644 --- a/debian/changelog +++ b/debian/changelog @@ -1,9 +1,11 @@ cmake (2.8.4~rc1-1) UNRELEASED; urgency=low * New upstream release. - - Dropped obsolete patches: + - Dropped obsolete patches (merged or taken from upstream): + backport_fix_asm_support.diff + FindTCL_fix_#600245.diff + + FindPython_fix_#569321_and_#580503.diff (Please note, that upstream's + solution is slightly different from what Debian had initially!) -- Kai Wasserbäch Sun, 16 Jan 2011 11:40:34 +0100 diff --git a/debian/patches/FindPython_fix_#569321_and_#580503.diff b/debian/patches/FindPython_fix_#569321_and_#580503.diff deleted file mode 100644 index 375415b6e..000000000 --- a/debian/patches/FindPython_fix_#569321_and_#580503.diff +++ /dev/null @@ -1,99 +0,0 @@ -From: Kai Wasserbäch -Description: Make the Python CMake scripts more versatile in version handling. - The FindPython{Interp,Libs}.cmake scripts need to cater for a set version or, - failing that, in Debian, set the default version for Python in Debian. - As a last resort we still try a list of hardcoded values. - . - This patch addresses both issues. (Closes: #569321, #580503) - . - Parts of this patch were based on Didier Raboud's patch for - #569321. -Last-Update: 2010-11-13 -Origin: vendor -Forwarded: http://public.kitware.com/Bug/view.php?id=10279 - ---- a/Modules/FindPythonInterp.cmake -+++ b/Modules/FindPythonInterp.cmake -@@ -19,20 +19,35 @@ - # (To distribute this file outside of CMake, substitute the full - # License text for the above reference.) - --FIND_PROGRAM(PYTHON_EXECUTABLE -- NAMES python2.7 python2.6 python2.5 python2.4 python2.3 python2.2 python2.1 python2.0 python1.6 python1.5 python -- PATHS -- [HKEY_LOCAL_MACHINE\\SOFTWARE\\Python\\PythonCore\\2.7\\InstallPath] -- [HKEY_LOCAL_MACHINE\\SOFTWARE\\Python\\PythonCore\\2.6\\InstallPath] -- [HKEY_LOCAL_MACHINE\\SOFTWARE\\Python\\PythonCore\\2.5\\InstallPath] -- [HKEY_LOCAL_MACHINE\\SOFTWARE\\Python\\PythonCore\\2.4\\InstallPath] -- [HKEY_LOCAL_MACHINE\\SOFTWARE\\Python\\PythonCore\\2.3\\InstallPath] -- [HKEY_LOCAL_MACHINE\\SOFTWARE\\Python\\PythonCore\\2.2\\InstallPath] -- [HKEY_LOCAL_MACHINE\\SOFTWARE\\Python\\PythonCore\\2.1\\InstallPath] -- [HKEY_LOCAL_MACHINE\\SOFTWARE\\Python\\PythonCore\\2.0\\InstallPath] -- [HKEY_LOCAL_MACHINE\\SOFTWARE\\Python\\PythonCore\\1.6\\InstallPath] -- [HKEY_LOCAL_MACHINE\\SOFTWARE\\Python\\PythonCore\\1.5\\InstallPath] -- ) -+# The following was added for Debian by Kai Wasserbäch -+# in 2010 and based on suggestions and patches by -+# Didier Raboud and Jakub Wilk to fix the -+# following bugs: #569321 and #580503. -+# For further information please see the Debian.NEWS file for cmake-data. -+IF(CMAKE_USE_PYTHON_VERSION) -+ SET(CMAKE_PYTHON_VERSIONS ${CMAKE_USE_PYTHON_VERSION}) -+ELSE(CMAKE_USE_PYTHON_VERSION) -+ SET(CMAKE_PYTHON_VERSIONS 2.7 2.6 2.5 2.4 2.3 2.2 2.1 2.0 1.6 1.5) -+ -+ FIND_PROGRAM(PYVERSIONS_EXE -+ NAMES pyversions -+ ) -+ IF(PYVERSIONS_EXE) -+ EXECUTE_PROCESS(COMMAND pyversions -dv -+ OUTPUT_VARIABLE _CMAKE_PYTHON_VERSIONS -+ OUTPUT_STRIP_TRAILING_WHITESPACE) -+ LIST(INSERT CMAKE_PYTHON_VERSIONS 0 ${_CMAKE_PYTHON_VERSIONS}) -+ LIST(REMOVE_DUPLICATES CMAKE_PYTHON_VERSIONS) -+ ENDIF(PYVERSIONS_EXE) -+ENDIF(CMAKE_USE_PYTHON_VERSION) -+ -+FOREACH(_CURRENT_VERSION ${CMAKE_PYTHON_VERSIONS}) -+ FIND_PROGRAM(PYTHON_EXECUTABLE -+ NAMES python${_CURRENT_VERSION} -+ PATHS -+ [HKEY_LOCAL_MACHINE\\SOFTWARE\\Python\\PythonCore\\${_CURRENT_VERSION}\\InstallPath] -+ ) -+ENDFOREACH(_CURRENT_VERSION) - - # handle the QUIETLY and REQUIRED arguments and set PYTHONINTERP_FOUND to TRUE if - # all listed variables are TRUE ---- a/Modules/FindPythonLibs.cmake -+++ b/Modules/FindPythonLibs.cmake -@@ -27,7 +27,29 @@ INCLUDE(CMakeFindFrameworks) - # Search for the python framework on Apple. - CMAKE_FIND_FRAMEWORKS(Python) - --FOREACH(_CURRENT_VERSION 2.7 2.6 2.5 2.4 2.3 2.2 2.1 2.0 1.6 1.5) -+# The following was added for Debian by Kai Wasserbäch -+# in 2010 and based on suggestions and patches by -+# Didier Raboud and Jakub Wilk to fix the -+# following bugs: #569321 and #580503. -+# For further information please see the Debian.NEWS file for cmake-data. -+IF(CMAKE_USE_PYTHON_VERSION) -+ SET(CMAKE_PYTHON_VERSIONS ${CMAKE_USE_PYTHON_VERSION}) -+ELSE(CMAKE_USE_PYTHON_VERSION) -+ SET(CMAKE_PYTHON_VERSIONS 2.7 2.6 2.5 2.4 2.3 2.2 2.1 2.0 1.6 1.5) -+ -+ FIND_PROGRAM(PYVERSIONS_EXE -+ NAMES pyversions -+ ) -+ IF(PYVERSIONS_EXE) -+ EXECUTE_PROCESS(COMMAND pyversions -dv -+ OUTPUT_VARIABLE _CMAKE_PYTHON_VERSIONS -+ OUTPUT_STRIP_TRAILING_WHITESPACE) -+ LIST(INSERT CMAKE_PYTHON_VERSIONS 0 ${_CMAKE_PYTHON_VERSIONS}) -+ LIST(REMOVE_DUPLICATES CMAKE_PYTHON_VERSIONS) -+ ENDIF(PYVERSIONS_EXE) -+ENDIF(CMAKE_USE_PYTHON_VERSION) -+ -+FOREACH(_CURRENT_VERSION ${CMAKE_PYTHON_VERSIONS}) - STRING(REPLACE "." "" _CURRENT_VERSION_NO_DOTS ${_CURRENT_VERSION}) - IF(WIN32) - FIND_LIBRARY(PYTHON_DEBUG_LIBRARY diff --git a/debian/patches/series b/debian/patches/series index 086169b1c..d671b6a85 100644 --- a/debian/patches/series +++ b/debian/patches/series @@ -1,2 +1 @@ -FindPython_fix_#569321_and_#580503.diff fixup_manpages.diff