From: Ross Burton <ross.burton@intel.com>
To: openembedded-core@lists.openembedded.org
Subject: [PATCH][V3 0/7] Add Piglit
Date: Tue, 14 Jan 2014 15:19:25 +0000 [thread overview]
Message-ID: <cover.1389712683.git.ross.burton@intel.com> (raw)
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
next reply other threads:[~2014-01-14 15:19 UTC|newest]
Thread overview: 8+ messages / expand[flat|nested] mbox.gz Atom feed top
2014-01-14 15:19 Ross Burton [this message]
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
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=cover.1389712683.git.ross.burton@intel.com \
--to=ross.burton@intel.com \
--cc=openembedded-core@lists.openembedded.org \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox