Buildroot Archive on lore.kernel.org
 help / color / mirror / Atom feed
* [Buildroot] [PATCH v2 00/24] Scientific libraries
@ 2014-04-22 23:15 Samuel Martin
  2014-04-22 23:15 ` [Buildroot] [PATCH v2 01/24] qt: add an option to install the test module Samuel Martin
                   ` (24 more replies)
  0 siblings, 25 replies; 57+ messages in thread
From: Samuel Martin @ 2014-04-22 23:15 UTC (permalink / raw)
  To: buildroot

Hi all,


Here is the 2nd round of the Scientific libraries series, which contains a
couple of new scientific packages, among these python Numpy, a bump of OpenCV
and some fixes/refactoring in OpenCV reverse dependencies.

Unlike the 1st post of this series, this new round is largely dominated by
OpenCV change sets, which have been heavily chainsawed to make easier the review
process. ;)


Yours,
Samuel

Samuel Martin (24):
  qt: add an option to install the test module
  opencv: fix qt selection when highgui is enable
  armadillo: new package
  clapack: new package
  python-numpy: new package
  python-numpy: add optional blas/lapack support
  opencv: bump to version 2.4.8
  opencv: add license details
  opencv: sort and reorder CMake configuration flags
  opencv: sort and reorder HW support options
  opencv: sort and reorder SW support options
  opencv: add superres module knob
  opencv: disable apps module
  opencv: disable opencl support/module
  opencv: disable OpenMP support
  opencv: enable SSE4.1 SSE4.2 support when available
  opencv: rework V4L/libv4l support
  opencv: add jasper support
  opencv: add Qt5 support
  opencv: add python/numpy support
  opencv: define modules inter-dependencies
  opencv: add hidden symbol BR2_PACKAGE_OPENCV_USE_DEPRECATED_HEADERS
  vlc: add opencv support
  gst1-plugins-bad: rework opencv plugin dependencies

 package/Config.in                                  |   3 +
 package/armadillo/Config.in                        |  12 ++
 package/armadillo/armadillo.mk                     |  15 ++
 package/clapack/Config.in                          |  18 ++
 ...ce-libf2c-to-be-built-as-a-static-library.patch |  32 ++++
 ...ake-test-build-sensitive-to-BUILD_TESTING.patch |  80 +++++++++
 ...t-try-to-run-arithchk-when-cross-compilin.patch |  70 ++++++++
 ...blas-add-library-and-header-install-rules.patch |  23 +++
 ...pack-add-library-and-header-install-rules.patch |  24 +++
 package/clapack/clapack.mk                         |  23 +++
 package/gstreamer1/gst1-plugins-bad/Config.in      |  10 +-
 package/opencv/Config.in                           | 161 ++++++++++++++----
 ...01-fix-cross-compilation-issue-with-Numpy.patch |  71 ++++++++
 package/opencv/opencv.mk                           | 189 +++++++++++++++------
 package/python-numpy/Config.in                     |   8 +
 package/python-numpy/python-numpy.mk               |  48 ++++++
 package/qt/Config.in                               |   5 +
 package/qt/qt.mk                                   |   3 +
 package/vlc/Config.in                              |   1 +
 package/vlc/vlc.mk                                 |   7 +
 20 files changed, 712 insertions(+), 91 deletions(-)
 create mode 100644 package/armadillo/Config.in
 create mode 100644 package/armadillo/armadillo.mk
 create mode 100644 package/clapack/Config.in
 create mode 100644 package/clapack/clapack-0001-cmake-force-libf2c-to-be-built-as-a-static-library.patch
 create mode 100644 package/clapack/clapack-0002-cmake-make-test-build-sensitive-to-BUILD_TESTING.patch
 create mode 100644 package/clapack/clapack-0003-cmake-do-not-try-to-run-arithchk-when-cross-compilin.patch
 create mode 100644 package/clapack/clapack-0004-cmake-blas-add-library-and-header-install-rules.patch
 create mode 100644 package/clapack/clapack-0005-cmake-lapack-add-library-and-header-install-rules.patch
 create mode 100644 package/clapack/clapack.mk
 create mode 100644 package/opencv/opencv-0001-fix-cross-compilation-issue-with-Numpy.patch
 create mode 100644 package/python-numpy/Config.in
 create mode 100644 package/python-numpy/python-numpy.mk

--
1.9.2

^ permalink raw reply	[flat|nested] 57+ messages in thread

end of thread, other threads:[~2014-07-16 21:03 UTC | newest]

Thread overview: 57+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2014-04-22 23:15 [Buildroot] [PATCH v2 00/24] Scientific libraries Samuel Martin
2014-04-22 23:15 ` [Buildroot] [PATCH v2 01/24] qt: add an option to install the test module Samuel Martin
2014-05-03 16:58   ` Yann E. MORIN
2014-05-03 21:10   ` Peter Korsgaard
2014-04-22 23:15 ` [Buildroot] [PATCH v2 02/24] opencv: fix qt selection when highgui is enable Samuel Martin
2014-05-03 17:01   ` Yann E. MORIN
2014-05-03 21:11   ` Peter Korsgaard
2014-04-22 23:15 ` [Buildroot] [PATCH v2 03/24] armadillo: new package Samuel Martin
2014-05-03 17:08   ` Yann E. MORIN
2014-05-03 19:50     ` Samuel Martin
2014-05-04 21:18   ` Peter Korsgaard
2014-04-22 23:15 ` [Buildroot] [PATCH v2 04/24] clapack: " Samuel Martin
2014-05-03 17:23   ` Yann E. MORIN
2014-05-04  7:10   ` Peter Korsgaard
2014-04-22 23:15 ` [Buildroot] [PATCH v2 05/24] python-numpy: " Samuel Martin
2014-05-03 17:40   ` Yann E. MORIN
2014-07-16 20:30   ` Thomas Petazzoni
2014-04-22 23:15 ` [Buildroot] [PATCH v2 06/24] python-numpy: add optional blas/lapack support Samuel Martin
2014-05-03 20:05   ` Yann E. MORIN
2014-07-16 20:50   ` Thomas Petazzoni
2014-04-22 23:15 ` [Buildroot] [PATCH v2 07/24] opencv: bump to version 2.4.8 Samuel Martin
2014-05-03 21:28   ` Yann E. MORIN
2014-04-22 23:15 ` [Buildroot] [PATCH v2 08/24] opencv: add license details Samuel Martin
2014-05-03 21:31   ` Yann E. MORIN
2014-04-22 23:15 ` [Buildroot] [PATCH v2 09/24] opencv: sort and reorder CMake configuration flags Samuel Martin
2014-05-03 21:40   ` Yann E. MORIN
2014-04-22 23:15 ` [Buildroot] [PATCH v2 10/24] opencv: sort and reorder HW support options Samuel Martin
2014-05-03 22:15   ` Yann E. MORIN
2014-04-22 23:15 ` [Buildroot] [PATCH v2 11/24] opencv: sort and reorder SW " Samuel Martin
2014-05-03 22:19   ` Yann E. MORIN
2014-04-22 23:15 ` [Buildroot] [PATCH v2 12/24] opencv: add superres module knob Samuel Martin
2014-05-03 22:23   ` Yann E. MORIN
2014-04-22 23:15 ` [Buildroot] [PATCH v2 13/24] opencv: disable apps module Samuel Martin
2014-05-03 22:28   ` Yann E. MORIN
2014-04-22 23:15 ` [Buildroot] [PATCH v2 14/24] opencv: disable opencl support/module Samuel Martin
2014-05-03 22:34   ` Yann E. MORIN
2014-04-22 23:15 ` [Buildroot] [PATCH v2 15/24] opencv: disable OpenMP support Samuel Martin
2014-05-04  9:24   ` Yann E. MORIN
2014-04-22 23:15 ` [Buildroot] [PATCH v2 16/24] opencv: enable SSE4.1 SSE4.2 support when available Samuel Martin
2014-05-04  9:24   ` Yann E. MORIN
2014-04-22 23:15 ` [Buildroot] [PATCH v2 17/24] opencv: rework V4L/libv4l support Samuel Martin
2014-05-04  9:32   ` Yann E. MORIN
2014-04-22 23:15 ` [Buildroot] [PATCH v2 18/24] opencv: add jasper support Samuel Martin
2014-05-04  9:40   ` Yann E. MORIN
2014-04-22 23:15 ` [Buildroot] [PATCH v2 19/24] opencv: add Qt5 support Samuel Martin
2014-05-04  9:51   ` Yann E. MORIN
2014-04-22 23:15 ` [Buildroot] [PATCH v2 20/24] opencv: add python/numpy support Samuel Martin
2014-05-04 10:00   ` Yann E. MORIN
2014-04-22 23:15 ` [Buildroot] [PATCH v2 21/24] opencv: define modules inter-dependencies Samuel Martin
2014-05-04 10:04   ` Yann E. MORIN
2014-04-22 23:15 ` [Buildroot] [PATCH v2 22/24] opencv: add hidden symbol BR2_PACKAGE_OPENCV_USE_DEPRECATED_HEADERS Samuel Martin
2014-05-04 10:06   ` Yann E. MORIN
2014-04-22 23:15 ` [Buildroot] [PATCH v2 23/24] vlc: add opencv support Samuel Martin
2014-05-04 10:08   ` Yann E. MORIN
2014-04-22 23:15 ` [Buildroot] [PATCH v2 24/24] gst1-plugins-bad: rework opencv plugin dependencies Samuel Martin
2014-05-04 10:10   ` Yann E. MORIN
2014-07-16 21:03 ` [Buildroot] [PATCH v2 00/24] Scientific libraries Thomas Petazzoni

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox