From: Hongxu Jia <hongxu.jia@windriver.com>
To: <openembedded-core@lists.openembedded.org>,
<liezhi.yang@windriver.com>, <ross.burton@intel.com>,
<alejandro.hernandez@linux.intel.com>,
<richard.purdie@linuxfoundation.org>
Subject: [PATCH 00/15] fix python buildpaths QA issue
Date: Thu, 25 Feb 2016 20:44:53 -0500 [thread overview]
Message-ID: <cover.1456449257.git.hongxu.jia@windriver.com> (raw)
- Patch 01-06 has be sent in previous pull request.
- add buildpaths QA ignore pattern, and ignore Makefile by default
- fix .pyc/.pyo buildpath QA issue
- fix python related buildpath QA issue
Test Steps:
vim local.conf
...
MACHINE ?= "qemux86-64"
WARN_QA += "buildpaths"
require conf/multilib.conf
MULTILIBS = "multilib:lib32"
DEFAULTTUNE_virtclass-multilib-lib32 = "core2-32"
...
bitbake -k world
In oe-core, these patches fixed 40+ recipes' buildpath QA issue,
and fixed all python related buildpath QA issue.
There are still 55 recipes left that has buildpath QA issue.
//Hongxu
The following changes since commit 23056103c949b498c23b47579e8dd57ce78e6ed9:
uclibc: Do not use immediate expansion operator (2016-02-22 20:42:48 +0000)
are available in the git repository at:
git://git.openembedded.org/openembedded-core-contrib hongxu/fix-buildpath
http://cgit.openembedded.org/cgit.cgi/openembedded-core-contrib/log/?h=hongxu/fix-buildpath
Hongxu Jia (15):
depmodwrapper-cross: nopackages to avoid QA [buildpaths] issue
gcc: use relative path for configure script
bison/gettext: add --with-bisonlocaledir to assign BISON_LOCALEDIR
openssl: substitute buildpath in source code
btrfs-tools: fix symlink creation multiple times
git: fix installed-vs-shipped QA Issue
insane:add buildpaths QA ignore pattern
python2/3: fix buildpath QA issue
bbclass distutils/distutils3: fix .pyc/.pyo buildpath
python-setuptools/python3-setuptools: use old-style install
python3-pip: use old-style install
bbclass distutils/distutils3/setuptools/setuptools3: clean up
DISTUTILS_INSTALL_ARGS
python-pygobject: fix buildpath QA issue
python-numpy: fix buildpaths QA issue
python-pycairo: fix buildpath QA issue
meta/classes/distutils.bbclass | 8 +--
meta/classes/distutils3.bbclass | 8 +--
meta/classes/insane.bbclass | 13 +++++
meta/classes/setuptools.bbclass | 5 --
meta/classes/setuptools3.bbclass | 5 --
meta/recipes-connectivity/openssl/openssl.inc | 2 +-
.../substitute-buildpath-in-source-code.patch | 41 ++++++++++++++
.../recipes-connectivity/openssl/openssl_1.0.2f.bb | 1 +
.../gettext-0.19.6/add-with-bisonlocaledir.patch | 58 ++++++++++++++++++++
meta/recipes-core/gettext/gettext_0.19.6.bb | 4 ++
.../bison/bison/add-with-bisonlocaledir.patch | 58 ++++++++++++++++++++
meta/recipes-devtools/bison/bison_3.0.4.bb | 1 +
.../fix-symlink-creation-multiple-times.patch | 46 ++++++++++++++++
.../btrfs-tools/btrfs-tools_4.4.bb | 1 +
meta/recipes-devtools/gcc/gcc-runtime.inc | 3 +-
meta/recipes-devtools/gcc/gcc-sanitizers.inc | 3 +-
meta/recipes-devtools/gcc/libgcc-common.inc | 3 +-
meta/recipes-devtools/gcc/libgfortran.inc | 3 +-
meta/recipes-devtools/git/git.inc | 2 +
.../remove-build-path-in-comments.patch | 30 +++++++++++
.../recipes-devtools/python/python-numpy_1.10.4.bb | 1 +
...trip-off-build-path-in-purported-filename.patch | 62 ++++++++++++++++++++++
.../python/python-pycairo_1.10.0.bb | 22 ++++----
.../python/python-pygobject_2.28.3.bb | 5 ++
.../python/python-setuptools_19.4.bb | 2 -
.../use-relative-path-to-compile-source-file.patch | 31 +++++++++++
meta/recipes-devtools/python/python3-pip_8.0.0.bb | 12 -----
.../python/python3-setuptools_19.4.bb | 8 +--
.../use-relative-path-to-compile-source-file.patch | 31 +++++++++++
meta/recipes-devtools/python/python3_3.5.1.bb | 10 +++-
meta/recipes-devtools/python/python_2.7.11.bb | 8 +++
.../recipes-kernel/kmod/depmodwrapper-cross_1.0.bb | 2 +
32 files changed, 438 insertions(+), 51 deletions(-)
create mode 100644 meta/recipes-connectivity/openssl/openssl/substitute-buildpath-in-source-code.patch
create mode 100644 meta/recipes-core/gettext/gettext-0.19.6/add-with-bisonlocaledir.patch
create mode 100644 meta/recipes-devtools/bison/bison/add-with-bisonlocaledir.patch
create mode 100644 meta/recipes-devtools/btrfs-tools/btrfs-tools/fix-symlink-creation-multiple-times.patch
create mode 100644 meta/recipes-devtools/python/python-numpy/remove-build-path-in-comments.patch
create mode 100644 meta/recipes-devtools/python/python-pycairo/strip-off-build-path-in-purported-filename.patch
create mode 100644 meta/recipes-devtools/python/python/use-relative-path-to-compile-source-file.patch
create mode 100644 meta/recipes-devtools/python/python3/use-relative-path-to-compile-source-file.patch
--
1.9.1
next reply other threads:[~2016-02-26 1:45 UTC|newest]
Thread overview: 16+ messages / expand[flat|nested] mbox.gz Atom feed top
2016-02-26 1:44 Hongxu Jia [this message]
2016-02-26 1:44 ` [PATCH 07/15] insane:add buildpaths QA ignore pattern Hongxu Jia
2016-02-26 1:44 ` [PATCH 08/15] python2/3: fix buildpath QA issue Hongxu Jia
2016-02-26 1:44 ` [PATCH 09/15] bbclass distutils/distutils3: fix .pyc/.pyo buildpath Hongxu Jia
2016-02-26 1:44 ` [PATCH 10/15] python-setuptools/python3-setuptools: use old-style install Hongxu Jia
2016-02-26 1:44 ` [PATCH 11/15] python3-pip: " Hongxu Jia
2016-02-26 1:44 ` [PATCH 12/15] bbclass distutils/distutils3/setuptools/setuptools3: clean up DISTUTILS_INSTALL_ARGS Hongxu Jia
2016-02-26 1:45 ` [PATCH 13/15] python-pygobject: fix buildpath QA issue Hongxu Jia
2016-03-08 15:24 ` Burton, Ross
2016-03-08 15:27 ` Alexander Kanavin
2016-03-09 1:07 ` Hongxu Jia
2016-02-26 1:45 ` [PATCH 14/15] python-numpy: fix buildpaths " Hongxu Jia
2016-02-26 1:45 ` [PATCH 15/15] python-pycairo: fix buildpath " Hongxu Jia
2016-03-08 15:26 ` Burton, Ross
2016-03-09 1:05 ` Hongxu Jia
2016-03-09 1:11 ` [PATCH 00/15] fix python buildpaths " Hongxu Jia
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.1456449257.git.hongxu.jia@windriver.com \
--to=hongxu.jia@windriver.com \
--cc=alejandro.hernandez@linux.intel.com \
--cc=liezhi.yang@windriver.com \
--cc=openembedded-core@lists.openembedded.org \
--cc=richard.purdie@linuxfoundation.org \
--cc=ross.burton@intel.com \
/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 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.