diff options
author | Rene Ladan <rene@FreeBSD.org> | 2015-11-01 16:02:28 +0000 |
---|---|---|
committer | Rene Ladan <rene@FreeBSD.org> | 2015-11-01 16:02:28 +0000 |
commit | 5e1001eeb3e8c92ec3453e2cee94a870ee99ed86 (patch) | |
tree | 2d4440a865b6507c6089800fceacb58171068eed /irc/weechat-devel/files/patch-cmake-FindPython_cmake | |
parent | Ignore on the package builders when default version of python is not 3.4+ (diff) |
Remove expired ports:
2015-10-31 audio/cmus-post.fm: Broken for more than 6 months
2015-10-31 devel/libphish: Broken for more than 6 months
2015-10-31 devel/rubygem-debugger: This port is for Ruby 1.9 only. Upstream stopped maintenance.
2015-10-31 games/linux-ningpo-demo: Broken for more than 6 months
2015-10-30 graphics/gdal-grass: Superseded by gdal-2.0.0
2015-10-31 graphics/picviz: Broken for more than 6 months
2015-10-31 irc/weechat-devel: far behind stable irc/weechat (use it instead)
2015-10-31 mail/cucipop: Broken for more than 6 months
2015-10-31 math/rkward-kde4: Depends on deprecated math/R-cran-car
2015-10-31 multimedia/streamanalyze: Broken for more than 6 months
2015-10-31 net-mgmt/collectd: Please move to collectd5 - collect4 is not developed/patched
2015-10-31 sysutils/sdd: Broken for more than 6 months
2015-10-31 sysutils/xfce4-minicmd-plugin: Broken for more than 6 months
2015-10-31 www/linux-libgtkembedmoz: Broken for more than 6 months
2015-10-31 www/py-feedfinder: Broken for more than 6 months
2015-10-31 www/py-openssl-proxy: Broken for more than 6 months
2015-10-31 www/py-webware: Broken for more than 6 months
2015-10-31 www/py-webware-component: Depends on deprecated www/py-webware
2015-10-31 x11-fonts/code2001: Broken for more than 6 months
2015-10-31 x11-wm/e-module-diskio: Broken for more than 7 months
Notes
Notes:
svn path=/head/; revision=400622
Diffstat (limited to 'irc/weechat-devel/files/patch-cmake-FindPython_cmake')
-rw-r--r-- | irc/weechat-devel/files/patch-cmake-FindPython_cmake | 61 |
1 files changed, 0 insertions, 61 deletions
diff --git a/irc/weechat-devel/files/patch-cmake-FindPython_cmake b/irc/weechat-devel/files/patch-cmake-FindPython_cmake deleted file mode 100644 index af4844d5c914..000000000000 --- a/irc/weechat-devel/files/patch-cmake-FindPython_cmake +++ /dev/null @@ -1,61 +0,0 @@ ---- cmake/FindPython.cmake.orig 2013-01-11 00:10:37.730703018 +0000 -+++ cmake/FindPython.cmake 2013-01-11 00:21:33.725664455 +0000 -@@ -33,17 +33,9 @@ - SET(PYTHON_FIND_QUIETLY TRUE) - ENDIF(PYTHON_FOUND) - --IF(ENABLE_PYTHON3) -- FIND_PROGRAM(PYTHON_EXECUTABLE -- NAMES python3.4 python3.3 python3.2 python3.1 python3.0 python3 python2.7 python2.6 python2.5 python -- PATHS /usr/bin /usr/local/bin /usr/pkg/bin -- ) --ELSE(ENABLE_PYTHON3) -- FIND_PROGRAM(PYTHON_EXECUTABLE -- NAMES python2.7 python2.6 python2.5 python -- PATHS /usr/bin /usr/local/bin /usr/pkg/bin -- ) --ENDIF(ENABLE_PYTHON3) -+FIND_PROGRAM(PYTHON_EXECUTABLE -+ NAMES ${BSD_PYTHON_CMD} -+ ) - - IF(PYTHON_EXECUTABLE) - EXECUTE_PROCESS( -@@ -65,32 +57,13 @@ - NAMES Python.h - PATHS ${PYTHON_INC_DIR} - ) -- IF(ENABLE_PYTHON3) -- FIND_LIBRARY(PYTHON_LIBRARY -- NAMES python3.4 python3.3 python3.2 python3.1 python3.0 python3 python2.7 python2.6 python2.5 python -- PATHS ${PYTHON_POSSIBLE_LIB_PATH} -- ) -- ELSE(ENABLE_PYTHON3) -- FIND_LIBRARY(PYTHON_LIBRARY -- NAMES python2.7 python2.6 python2.5 python -- PATHS ${PYTHON_POSSIBLE_LIB_PATH} -- ) -- ENDIF(ENABLE_PYTHON3) -+ -+ FIND_LIBRARY(PYTHON_LIBRARY -+ NAMES ${BSD_PYTHON_VER} -+ ) - - IF(PYTHON_LIBRARY AND PYTHON_INCLUDE_PATH) -- EXECUTE_PROCESS( -- COMMAND ${PYTHON_EXECUTABLE} -c "import sys; sys.stdout.write(sys.version[:3])" -- OUTPUT_VARIABLE PYTHON_VERSION -- ) -- EXECUTE_PROCESS( -- COMMAND ${PYTHON_EXECUTABLE} -c "import sys; sys.stdout.write(str(sys.version_info < (2,5)))" -- OUTPUT_VARIABLE PYTHON_OLD_VERSION -- ) -- IF(${PYTHON_OLD_VERSION} STREQUAL "True") -- MESSAGE("Python >= 2.5 is needed to build python plugin, version found: ${PYTHON_VERSION}") -- ELSE() -- SET(PYTHON_FOUND TRUE) -- ENDIF(${PYTHON_OLD_VERSION} STREQUAL "True") -+ SET(PYTHON_FOUND TRUE) - ENDIF(PYTHON_LIBRARY AND PYTHON_INCLUDE_PATH) - - MARK_AS_ADVANCED( |