All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH][V3 0/7] Add Piglit
@ 2014-01-14 15:19 Ross Burton
  2014-01-14 15:19 ` [PATCH][V3 1/7] cmake: specify all install paths Ross Burton
                   ` (6 more replies)
  0 siblings, 7 replies; 8+ messages in thread
From: Ross Burton @ 2014-01-14 15:19 UTC (permalink / raw)
  To: openembedded-core

Hi,

V3 of the Piglit series that adds a missing build dependency from meta-oe (honestly no idea
how this ever worked for me), and fixes cmake.bbclass for multilib builds.

Ross

The following changes since commit d6ed40fa2a7646e3353460390090aaaecf5b38a3:

  cmake: default to out-of-tree builds (2014-01-14 11:33:56 +0000)

are available in the git repository at:

  git://git.yoctoproject.org/poky-contrib ross/piglit

for you to fetch changes up to f0636fc5fd95fc5f9f1271ccbaf347d06489d3e7:

  packagegroup-core-tools-testapps: add Piglit (2014-01-14 14:42:06 +0000)

----------------------------------------------------------------
Ross Burton (7):
      cmake: specify all install paths
      python-mako: add (from meta-oe)
      python-nose: add (from meta-oe)
      python-numpy: add (from meta-oe)
      waffle: add (from meta-oe)
      piglit: add (from meta-oe)
      packagegroup-core-tools-testapps: add Piglit

 meta/classes/cmake.bbclass                         |    9 ++
 .../packagegroup-core-tools-testapps.bb            |    7 +-
 meta/recipes-devtools/python/python-mako_0.9.1.bb  |   20 +++
 meta/recipes-devtools/python/python-nose_1.2.1.bb  |   14 ++
 .../python/python-numpy/aarch64/_numpyconfig.h     |   30 +++++
 .../python/python-numpy/aarch64/config.h           |  139 ++++++++++++++++++++
 .../python/python-numpy/arm/config.h               |   21 +++
 .../python/python-numpy/arm/numpyconfig.h          |   17 +++
 .../python/python-numpy/armeb/config.h             |   21 +++
 .../python/python-numpy/armeb/numpyconfig.h        |   17 +++
 .../python/python-numpy/i586/config.h              |  108 +++++++++++++++
 .../python/python-numpy/i586/numpyconfig.h         |   24 ++++
 .../python/python-numpy/mipsel/config.h            |   21 +++
 .../python/python-numpy/mipsel/numpyconfig.h       |   17 +++
 .../python/python-numpy/trycompile.diff            |   33 +++++
 .../python/python-numpy/unbreak-assumptions.diff   |   16 +++
 .../python/python-numpy/x86-64/_numpyconfig.h      |   30 +++++
 .../python/python-numpy/x86-64/config.h            |  139 ++++++++++++++++++++
 meta/recipes-devtools/python/python-numpy_1.7.0.bb |   78 +++++++++++
 meta/recipes-graphics/piglit/piglit_git.bb         |   48 +++++++
 meta/recipes-graphics/waffle/waffle_1.3.0.bb       |   32 +++++
 21 files changed, 840 insertions(+), 1 deletion(-)
 create mode 100644 meta/recipes-devtools/python/python-mako_0.9.1.bb
 create mode 100644 meta/recipes-devtools/python/python-nose_1.2.1.bb
 create mode 100644 meta/recipes-devtools/python/python-numpy/aarch64/_numpyconfig.h
 create mode 100644 meta/recipes-devtools/python/python-numpy/aarch64/config.h
 create mode 100644 meta/recipes-devtools/python/python-numpy/arm/config.h
 create mode 100644 meta/recipes-devtools/python/python-numpy/arm/numpyconfig.h
 create mode 100644 meta/recipes-devtools/python/python-numpy/armeb/config.h
 create mode 100644 meta/recipes-devtools/python/python-numpy/armeb/numpyconfig.h
 create mode 100644 meta/recipes-devtools/python/python-numpy/i586/config.h
 create mode 100644 meta/recipes-devtools/python/python-numpy/i586/numpyconfig.h
 create mode 100644 meta/recipes-devtools/python/python-numpy/mipsel/config.h
 create mode 100644 meta/recipes-devtools/python/python-numpy/mipsel/numpyconfig.h
 create mode 100644 meta/recipes-devtools/python/python-numpy/trycompile.diff
 create mode 100644 meta/recipes-devtools/python/python-numpy/unbreak-assumptions.diff
 create mode 100644 meta/recipes-devtools/python/python-numpy/x86-64/_numpyconfig.h
 create mode 100644 meta/recipes-devtools/python/python-numpy/x86-64/config.h
 create mode 100644 meta/recipes-devtools/python/python-numpy_1.7.0.bb
 create mode 100644 meta/recipes-graphics/piglit/piglit_git.bb
 create mode 100644 meta/recipes-graphics/waffle/waffle_1.3.0.bb

Ross Burton (7):
  cmake: specify all install paths
  python-mako: add (from meta-oe)
  python-nose: add (from meta-oe)
  python-numpy: add (from meta-oe)
  waffle: add (from meta-oe)
  piglit: add (from meta-oe)
  packagegroup-core-tools-testapps: add Piglit

 meta/classes/cmake.bbclass                         |    9 ++
 .../packagegroup-core-tools-testapps.bb            |    7 +-
 meta/recipes-devtools/python/python-mako_0.9.1.bb  |   20 +++
 meta/recipes-devtools/python/python-nose_1.2.1.bb  |   14 ++
 .../python/python-numpy/aarch64/_numpyconfig.h     |   30 +++++
 .../python/python-numpy/aarch64/config.h           |  139 ++++++++++++++++++++
 .../python/python-numpy/arm/config.h               |   21 +++
 .../python/python-numpy/arm/numpyconfig.h          |   17 +++
 .../python/python-numpy/armeb/config.h             |   21 +++
 .../python/python-numpy/armeb/numpyconfig.h        |   17 +++
 .../python/python-numpy/i586/config.h              |  108 +++++++++++++++
 .../python/python-numpy/i586/numpyconfig.h         |   24 ++++
 .../python/python-numpy/mipsel/config.h            |   21 +++
 .../python/python-numpy/mipsel/numpyconfig.h       |   17 +++
 .../python/python-numpy/trycompile.diff            |   33 +++++
 .../python/python-numpy/unbreak-assumptions.diff   |   16 +++
 .../python/python-numpy/x86-64/_numpyconfig.h      |   30 +++++
 .../python/python-numpy/x86-64/config.h            |  139 ++++++++++++++++++++
 meta/recipes-devtools/python/python-numpy_1.7.0.bb |   78 +++++++++++
 meta/recipes-graphics/piglit/piglit_git.bb         |   48 +++++++
 meta/recipes-graphics/waffle/waffle_1.3.0.bb       |   32 +++++
 21 files changed, 840 insertions(+), 1 deletion(-)
 create mode 100644 meta/recipes-devtools/python/python-mako_0.9.1.bb
 create mode 100644 meta/recipes-devtools/python/python-nose_1.2.1.bb
 create mode 100644 meta/recipes-devtools/python/python-numpy/aarch64/_numpyconfig.h
 create mode 100644 meta/recipes-devtools/python/python-numpy/aarch64/config.h
 create mode 100644 meta/recipes-devtools/python/python-numpy/arm/config.h
 create mode 100644 meta/recipes-devtools/python/python-numpy/arm/numpyconfig.h
 create mode 100644 meta/recipes-devtools/python/python-numpy/armeb/config.h
 create mode 100644 meta/recipes-devtools/python/python-numpy/armeb/numpyconfig.h
 create mode 100644 meta/recipes-devtools/python/python-numpy/i586/config.h
 create mode 100644 meta/recipes-devtools/python/python-numpy/i586/numpyconfig.h
 create mode 100644 meta/recipes-devtools/python/python-numpy/mipsel/config.h
 create mode 100644 meta/recipes-devtools/python/python-numpy/mipsel/numpyconfig.h
 create mode 100644 meta/recipes-devtools/python/python-numpy/trycompile.diff
 create mode 100644 meta/recipes-devtools/python/python-numpy/unbreak-assumptions.diff
 create mode 100644 meta/recipes-devtools/python/python-numpy/x86-64/_numpyconfig.h
 create mode 100644 meta/recipes-devtools/python/python-numpy/x86-64/config.h
 create mode 100644 meta/recipes-devtools/python/python-numpy_1.7.0.bb
 create mode 100644 meta/recipes-graphics/piglit/piglit_git.bb
 create mode 100644 meta/recipes-graphics/waffle/waffle_1.3.0.bb

-- 
1.7.10.4



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

end of thread, other threads:[~2014-01-14 15:19 UTC | newest]

Thread overview: 8+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2014-01-14 15:19 [PATCH][V3 0/7] Add Piglit Ross Burton
2014-01-14 15:19 ` [PATCH][V3 1/7] cmake: specify all install paths Ross Burton
2014-01-14 15:19 ` [PATCH][V3 2/7] python-mako: add (from meta-oe) Ross Burton
2014-01-14 15:19 ` [PATCH][V3 3/7] python-nose: " Ross Burton
2014-01-14 15:19 ` [PATCH][V3 4/7] python-numpy: " Ross Burton
2014-01-14 15:19 ` [PATCH][V3 5/7] waffle: " Ross Burton
2014-01-14 15:19 ` [PATCH][V3 6/7] piglit: " Ross Burton
2014-01-14 15:19 ` [PATCH][V3 7/7] packagegroup-core-tools-testapps: add Piglit Ross Burton

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.