diff --git a/README b/README index 0722997..02ac3d8 100644 --- a/README +++ b/README @@ -106,9 +106,6 @@ REDISTRIBUTIONS The log4cxx recipe originated from the recipe in the OpenEmbedded (Classic) Development (cf. http://cgit.openembedded.org/openembedded/tree/recipes/log4cxx) licensed with the MIT License. - The eigen recipe originated from the recipe in Kartik Mohta's OpenEmbedded layer - (cf. https://github.com/kartikmohta/meta-km/tree/master/recipes-extended/eigen) - licensed with the MIT License. The yaml-cpp recipe originated from the recipe in Kartik Mohta's OpenEmbedded layer (cf. https://github.com/kartikmohta/meta-km/blob/master/recipes-devtools/yaml-cpp/yaml-cpp_0.3.0.bb) licensed with the MIT License. diff --git a/recipes-extended/eigen/eigen.inc b/recipes-extended/eigen/eigen.inc deleted file mode 100644 index fdfec38..0000000 --- a/recipes-extended/eigen/eigen.inc +++ /dev/null @@ -1,22 +0,0 @@ -DESCRIPTION = "Eigen is a C++ template library for linear algebra: matrices, vectors, numerical solvers, and related algorithms." -AUTHOR = "Benoît Jacob and Gaël Guennebaud and others" -HOMEPAGE = "http://eigen.tuxfamily.org/" -LICENSE = "MPL-2.0" -LIC_FILES_CHKSUM = "file://COPYING.MPL2;md5=815ca599c9df247a0c7f619bab123dad" - -PR = "r0" - -SRC_URI = "http://bitbucket.org/eigen/eigen/get/${PV}.tar.bz2" - -inherit cmake - -OECMAKE_SOURCEPATH = ".." -OECMAKE_BUILDPATH = "build" - -EXTRA_OECMAKE += "-Dpkg_config_libdir=${libdir}" - -FILES_${PN} = "${includedir} ${libdir}" - -# ${PN} is empty so we need to tweak -dev and -dbg package dependencies -RDEPENDS_${PN}-dev = "" -RRECOMMENDS_${PN}-dbg = "${PN}-dev (= ${EXTENDPKGV})" diff --git a/recipes-extended/eigen/eigen_3.1.3.bb b/recipes-extended/eigen/eigen_3.1.3.bb deleted file mode 100644 index 208a0a0..0000000 --- a/recipes-extended/eigen/eigen_3.1.3.bb +++ /dev/null @@ -1,10 +0,0 @@ -require eigen.inc - -PR = "r0" - -SRC_URI += "file://eigen-disable-tests.patch" - -SRC_URI[md5sum] = "43eee0e9252a77149d6b65e93e73b79d" -SRC_URI[sha256sum] = "1a443145f321dd47a5ca11f176e7319056198a6124a7577723d92e3c3cd59ece" - -S = "${WORKDIR}/eigen-eigen-2249f9c22fe8" diff --git a/recipes-extended/eigen/files/eigen-disable-tests.patch b/recipes-extended/eigen/files/eigen-disable-tests.patch deleted file mode 100644 index c6212ff..0000000 --- a/recipes-extended/eigen/files/eigen-disable-tests.patch +++ /dev/null @@ -1,75 +0,0 @@ -eigen: don't try building tests - -While configuring, if the tests are enabled, it checks some machine specific -stuff which we don't want to do while cross-compiling. - -Upstream-Status: Inappropriate [embedded specific] - -Signed-off-by: Kartik Mohta - ---- a/CMakeLists.txt~ 2012-07-02 20:33:20.330773075 -0400 -+++ b/CMakeLists.txt 2012-07-02 20:34:23.515778505 -0400 -@@ -307,24 +307,24 @@ - - add_subdirectory(doc EXCLUDE_FROM_ALL) - --include(EigenConfigureTesting) -+#include(EigenConfigureTesting) - # fixme, not sure this line is still needed: --enable_testing() # must be called from the root CMakeLists, see man page -+#enable_testing() # must be called from the root CMakeLists, see man page - - --if(EIGEN_LEAVE_TEST_IN_ALL_TARGET) -- add_subdirectory(test) # can't do EXCLUDE_FROM_ALL here, breaks CTest --else() -- add_subdirectory(test EXCLUDE_FROM_ALL) --endif() -- --if(EIGEN_LEAVE_TEST_IN_ALL_TARGET) -- add_subdirectory(blas) -- add_subdirectory(lapack) --else() -- add_subdirectory(blas EXCLUDE_FROM_ALL) -- add_subdirectory(lapack EXCLUDE_FROM_ALL) --endif() -+#if(EIGEN_LEAVE_TEST_IN_ALL_TARGET) -+# add_subdirectory(test) # can't do EXCLUDE_FROM_ALL here, breaks CTest -+#else() -+# add_subdirectory(test EXCLUDE_FROM_ALL) -+#endif() -+ -+#if(EIGEN_LEAVE_TEST_IN_ALL_TARGET) -+# add_subdirectory(blas) -+# add_subdirectory(lapack) -+#else() -+# add_subdirectory(blas EXCLUDE_FROM_ALL) -+# add_subdirectory(lapack EXCLUDE_FROM_ALL) -+#endif() - - add_subdirectory(unsupported) - -@@ -342,7 +342,7 @@ - add_subdirectory(bench/spbench EXCLUDE_FROM_ALL) - endif(NOT WIN32) - --ei_testing_print_summary() -+#ei_testing_print_summary() - - message(STATUS "") - message(STATUS "Configured Eigen ${EIGEN_VERSION_NUMBER}") ---- a/unsupported/CMakeLists.txt~ 2012-07-02 20:33:58.775385403 -0400 -+++ b/unsupported/CMakeLists.txt 2012-07-02 20:34:06.495509672 -0400 -@@ -1,7 +1,7 @@ - add_subdirectory(Eigen) - add_subdirectory(doc EXCLUDE_FROM_ALL) --if(EIGEN_LEAVE_TEST_IN_ALL_TARGET) -- add_subdirectory(test) # can't do EXCLUDE_FROM_ALL here, breaks CTest --else() -- add_subdirectory(test EXCLUDE_FROM_ALL) --endif() -+#if(EIGEN_LEAVE_TEST_IN_ALL_TARGET) -+# add_subdirectory(test) # can't do EXCLUDE_FROM_ALL here, breaks CTest -+#else() -+# add_subdirectory(test EXCLUDE_FROM_ALL) -+#endif()