* [Buildroot] [PATCH 1/2] cloog: bump to version 0.18.3
@ 2015-07-04 12:33 Gustavo Zacarias
2015-07-04 12:33 ` [Buildroot] [PATCH 2/2] isl: bump to version 0.14.1 Gustavo Zacarias
2015-07-04 12:57 ` [Buildroot] [PATCH 1/2] cloog: bump to version 0.18.3 Thomas Petazzoni
0 siblings, 2 replies; 5+ messages in thread
From: Gustavo Zacarias @ 2015-07-04 12:33 UTC (permalink / raw)
To: buildroot
Patch upstream so remove.
And add hash file.
Signed-off-by: Gustavo Zacarias <gustavo@zacarias.com.ar>
---
package/cloog/0001-add-missing-files.patch | 69 ------------------------------
package/cloog/cloog.hash | 2 +
package/cloog/cloog.mk | 2 +-
3 files changed, 3 insertions(+), 70 deletions(-)
delete mode 100644 package/cloog/0001-add-missing-files.patch
create mode 100644 package/cloog/cloog.hash
diff --git a/package/cloog/0001-add-missing-files.patch b/package/cloog/0001-add-missing-files.patch
deleted file mode 100644
index 23743cc..0000000
--- a/package/cloog/0001-add-missing-files.patch
+++ /dev/null
@@ -1,69 +0,0 @@
-Add CMake related files missing from the release tarball
-
-Due to a bug in the cloog release, a few files were missing from the
-release tarball. This patch re-adds those files, which are needed for
-the build to work. This patch can be dropped when cloog is bumped.
-
-Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
-
-Index: b/cmake/isl-config.cmake
-===================================================================
---- /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)
-Index: b/cmake/cloog-isl-config.cmake
-===================================================================
---- /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/package/cloog/cloog.hash b/package/cloog/cloog.hash
new file mode 100644
index 0000000..72a5b65
--- /dev/null
+++ b/package/cloog/cloog.hash
@@ -0,0 +1,2 @@
+# Locally computed
+sha256 460c6c740acb8cdfbfbb387156b627cf731b3837605f2ec0001d079d89c69734 cloog-0.18.3.tar.gz
diff --git a/package/cloog/cloog.mk b/package/cloog/cloog.mk
index f74d649..4b02cd4 100644
--- a/package/cloog/cloog.mk
+++ b/package/cloog/cloog.mk
@@ -4,7 +4,7 @@
#
################################################################################
-CLOOG_VERSION = 0.18.2
+CLOOG_VERSION = 0.18.3
CLOOG_SITE = http://www.bastoul.net/cloog/pages/download
CLOOG_LICENSE = LGPLv2.1+
CLOOG_DEPENDENCIES = gmp isl
--
2.3.6
^ permalink raw reply related [flat|nested] 5+ messages in thread
* [Buildroot] [PATCH 2/2] isl: bump to version 0.14.1
2015-07-04 12:33 [Buildroot] [PATCH 1/2] cloog: bump to version 0.18.3 Gustavo Zacarias
@ 2015-07-04 12:33 ` Gustavo Zacarias
2015-07-04 12:57 ` Thomas Petazzoni
2015-07-04 12:57 ` [Buildroot] [PATCH 1/2] cloog: bump to version 0.18.3 Thomas Petazzoni
1 sibling, 1 reply; 5+ messages in thread
From: Gustavo Zacarias @ 2015-07-04 12:33 UTC (permalink / raw)
To: buildroot
Also add hash file.
Signed-off-by: Gustavo Zacarias <gustavo@zacarias.com.ar>
---
package/isl/isl.hash | 2 ++
package/isl/isl.mk | 8 ++++----
2 files changed, 6 insertions(+), 4 deletions(-)
create mode 100644 package/isl/isl.hash
diff --git a/package/isl/isl.hash b/package/isl/isl.hash
new file mode 100644
index 0000000..e2c14ad
--- /dev/null
+++ b/package/isl/isl.hash
@@ -0,0 +1,2 @@
+# Locally computed
+sha256 8882c9e36549fc757efa267706a9af733bb8d7fe3905cbfde43e17a89eea4675 isl-0.14.1.tar.xz
diff --git a/package/isl/isl.mk b/package/isl/isl.mk
index 55cff9d..d7df226 100644
--- a/package/isl/isl.mk
+++ b/package/isl/isl.mk
@@ -4,18 +4,18 @@
#
################################################################################
-# The latest 0.13 version is not yet compatible with cloog 0.18.2, so
+# The latest 0.15 version is not yet compatible with cloog 0.18.3, so
# bumping isl is not possible until a new version of cloog is
# published.
-ISL_VERSION = 0.12.2
-ISL_SOURCE = isl-$(ISL_VERSION).tar.bz2
+ISL_VERSION = 0.14.1
+ISL_SOURCE = isl-$(ISL_VERSION).tar.xz
ISL_SITE = http://isl.gforge.inria.fr
ISL_LICENSE = MIT
ISL_LICENSE_FILES = LICENSE
ISL_DEPENDENCIES = gmp
# Our libtool patch doesn't apply, and since this package is only
-# built for the host, we don't really care about it.
+# # built for the host, we don't really care about it.
ISL_LIBTOOL_PATCH = NO
$(eval $(host-autotools-package))
--
2.3.6
^ permalink raw reply related [flat|nested] 5+ messages in thread
* [Buildroot] [PATCH 1/2] cloog: bump to version 0.18.3
2015-07-04 12:33 [Buildroot] [PATCH 1/2] cloog: bump to version 0.18.3 Gustavo Zacarias
2015-07-04 12:33 ` [Buildroot] [PATCH 2/2] isl: bump to version 0.14.1 Gustavo Zacarias
@ 2015-07-04 12:57 ` Thomas Petazzoni
1 sibling, 0 replies; 5+ messages in thread
From: Thomas Petazzoni @ 2015-07-04 12:57 UTC (permalink / raw)
To: buildroot
Dear Gustavo Zacarias,
On Sat, 4 Jul 2015 09:33:26 -0300, Gustavo Zacarias wrote:
> Patch upstream so remove.
> And add hash file.
>
> Signed-off-by: Gustavo Zacarias <gustavo@zacarias.com.ar>
> ---
> package/cloog/0001-add-missing-files.patch | 69 ------------------------------
> package/cloog/cloog.hash | 2 +
> package/cloog/cloog.mk | 2 +-
> 3 files changed, 3 insertions(+), 70 deletions(-)
> delete mode 100644 package/cloog/0001-add-missing-files.patch
> create mode 100644 package/cloog/cloog.hash
Applied, thanks.
Thomas
--
Thomas Petazzoni, CTO, Free Electrons
Embedded Linux, Kernel and Android engineering
http://free-electrons.com
^ permalink raw reply [flat|nested] 5+ messages in thread
* [Buildroot] [PATCH 2/2] isl: bump to version 0.14.1
2015-07-04 12:33 ` [Buildroot] [PATCH 2/2] isl: bump to version 0.14.1 Gustavo Zacarias
@ 2015-07-04 12:57 ` Thomas Petazzoni
2015-07-04 13:02 ` Gustavo Zacarias
0 siblings, 1 reply; 5+ messages in thread
From: Thomas Petazzoni @ 2015-07-04 12:57 UTC (permalink / raw)
To: buildroot
Dear Gustavo Zacarias,
On Sat, 4 Jul 2015 09:33:27 -0300, Gustavo Zacarias wrote:
> # Our libtool patch doesn't apply, and since this package is only
> -# built for the host, we don't really care about it.
> +# # built for the host, we don't really care about it.
Not sure why this change was done. Applied after reverting this change.
But did you check that our libtool patch still doesn't apply?
Thanks,
Thomas
--
Thomas Petazzoni, CTO, Free Electrons
Embedded Linux, Kernel and Android engineering
http://free-electrons.com
^ permalink raw reply [flat|nested] 5+ messages in thread
* [Buildroot] [PATCH 2/2] isl: bump to version 0.14.1
2015-07-04 12:57 ` Thomas Petazzoni
@ 2015-07-04 13:02 ` Gustavo Zacarias
0 siblings, 0 replies; 5+ messages in thread
From: Gustavo Zacarias @ 2015-07-04 13:02 UTC (permalink / raw)
To: buildroot
On 04/07/15 09:57, Thomas Petazzoni wrote:
> Not sure why this change was done. Applied after reverting this change.
> But did you check that our libtool patch still doesn't apply?
HI.
That's because i tried and failed, and copy/pasted back :)
Regards.
^ permalink raw reply [flat|nested] 5+ messages in thread
end of thread, other threads:[~2015-07-04 13:02 UTC | newest]
Thread overview: 5+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2015-07-04 12:33 [Buildroot] [PATCH 1/2] cloog: bump to version 0.18.3 Gustavo Zacarias
2015-07-04 12:33 ` [Buildroot] [PATCH 2/2] isl: bump to version 0.14.1 Gustavo Zacarias
2015-07-04 12:57 ` Thomas Petazzoni
2015-07-04 13:02 ` Gustavo Zacarias
2015-07-04 12:57 ` [Buildroot] [PATCH 1/2] cloog: bump to version 0.18.3 Thomas Petazzoni
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox