From 0f270b6151237d09a5c4c076a631f843a2dfba24 Mon Sep 17 00:00:00 2001 From: Michael Olbrich Date: Tue, 9 Sep 2014 11:06:58 +0200 Subject: host-cloog: version bump 0.18.1 -> 0.18.2 Signed-off-by: Michael Olbrich --- .../0001-HACK-add-missing-cmake-files.patch | 77 ++++++++++++++++++++++ patches/cloog-0.18.2/series | 4 ++ rules/host-cloog.make | 4 +- 3 files changed, 83 insertions(+), 2 deletions(-) create mode 100644 patches/cloog-0.18.2/0001-HACK-add-missing-cmake-files.patch create mode 100644 patches/cloog-0.18.2/series diff --git a/patches/cloog-0.18.2/0001-HACK-add-missing-cmake-files.patch b/patches/cloog-0.18.2/0001-HACK-add-missing-cmake-files.patch new file mode 100644 index 0000000..35c0e82 --- /dev/null +++ b/patches/cloog-0.18.2/0001-HACK-add-missing-cmake-files.patch @@ -0,0 +1,77 @@ +From: Michael Olbrich +Date: Fri, 28 Nov 2014 17:16:02 +0100 +Subject: [PATCH] HACK: add missing cmake files + +They got lost during 'make dist' + +Signed-off-by: Michael Olbrich +--- + cmake/cloog-isl-config.cmake | 26 ++++++++++++++++++++++++++ + cmake/isl-config.cmake | 25 +++++++++++++++++++++++++ + 2 files changed, 51 insertions(+) + create mode 100644 cmake/cloog-isl-config.cmake + create mode 100644 cmake/isl-config.cmake + +diff --git a/cmake/cloog-isl-config.cmake b/cmake/cloog-isl-config.cmake +new file mode 100644 +index 000000000000..1cdfedca499b +--- /dev/null ++++ b/cmake/cloog-isl-config.cmake +@@ -0,0 +1,26 @@ ++# Try to find the cloog-isl library ++ ++# CLOOG_ISL_FOUND - System has cloog-isl lib ++# CLOOG_ISL_INCLUDE_DIR - The cloog-isl include directory ++# CLOOG_ISL_LIBRARY - Library needed to use cloog-isl ++ ++ ++if (CLOOG_ISL_INCLUDE_DIR AND CLOOG_ISL_LIBRARY) ++ # Already in cache, be silent ++ set(CLOOG_ISL_FIND_QUIETLY TRUE) ++endif() ++ ++find_path(CLOOG_ISL_INCLUDE_DIR NAMES cloog/isl/cloog.h) ++find_library(CLOOG_ISL_LIBRARY NAMES cloog-isl) ++ ++if (CLOOG_ISL_LIBRARY AND CLOOG_ISL_INCLUDE_DIR) ++ message(STATUS "Library cloog-isl found =) ${CLOOG_ISL_LIBRARY}") ++else() ++ message(STATUS "Library cloog-isl not found =(") ++endif() ++ ++ ++include(FindPackageHandleStandardArgs) ++FIND_PACKAGE_HANDLE_STANDARD_ARGS(CLOOG_ISL DEFAULT_MSG CLOOG_ISL_INCLUDE_DIR CLOOG_ISL_LIBRARY) ++ ++mark_as_advanced(CLOOG_ISL_INCLUDE_DIR CLOOG_ISL_LIBRARY) +diff --git a/cmake/isl-config.cmake b/cmake/isl-config.cmake +new file mode 100644 +index 000000000000..ae9c2412eabd +--- /dev/null ++++ b/cmake/isl-config.cmake +@@ -0,0 +1,25 @@ ++# Try to find the isl library ++ ++# ISL_FOUND - System has isl lib ++# ISL_INCLUDE_DIR - The isl include directory ++# ISL_LIBRARY - Library needed to use isl ++ ++ ++if (ISL_INCLUDE_DIR AND ISL_LIBRARY) ++ # Already in cache, be silent ++ set(ISL_FIND_QUIETLY TRUE) ++endif() ++ ++find_path(ISL_INCLUDE_DIR NAMES isl/version.h) ++find_library(ISL_LIBRARY NAMES isl) ++ ++if (ISL_LIBRARY AND ISL_INCLUDE_DIR) ++ message(STATUS "Library isl found =) ${ISL_LIBRARY}") ++else() ++ message(STATUS "Library isl not found =(") ++endif() ++ ++include(FindPackageHandleStandardArgs) ++FIND_PACKAGE_HANDLE_STANDARD_ARGS(ISL DEFAULT_MSG ISL_INCLUDE_DIR ISL_LIBRARY) ++ ++mark_as_advanced(ISL_INCLUDE_DIR ISL_LIBRARY) diff --git a/patches/cloog-0.18.2/series b/patches/cloog-0.18.2/series new file mode 100644 index 0000000..9c7bfc3 --- /dev/null +++ b/patches/cloog-0.18.2/series @@ -0,0 +1,4 @@ +# generated by git-ptx-patches +#tag:base --start-number 1 +0001-HACK-add-missing-cmake-files.patch +# 6ac0e26cfedff8257ac8e6f4ca8036c5 - git-ptx-patches magic diff --git a/rules/host-cloog.make b/rules/host-cloog.make index 9087c36..b7d8aa0 100644 --- a/rules/host-cloog.make +++ b/rules/host-cloog.make @@ -16,8 +16,8 @@ HOST_PACKAGES-$(PTXCONF_HOST_CLOOG) += host-cloog # # Paths and names # -HOST_CLOOG_VERSION := 0.18.1 -HOST_CLOOG_MD5 := e34fca0540d840e5d0f6427e98c92252 +HOST_CLOOG_VERSION := 0.18.2 +HOST_CLOOG_MD5 := 69116aa6cd5e73f6b688d871875e1292 HOST_CLOOG := cloog-$(HOST_CLOOG_VERSION) HOST_CLOOG_SUFFIX := tar.gz HOST_CLOOG_URL := http://www.bastoul.net/cloog/pages/download/$(HOST_CLOOG).$(HOST_CLOOG_SUFFIX) -- cgit v1.2.3