Openembedded Core Discussions
 help / color / mirror / Atom feed
From: Saul Wold <sgw@linux.intel.com>
To: openembedded-core@lists.openembedded.org
Cc: Xiaofeng Yan <xiaofeng.yan@windriver.com>,
	Koen Kooi <koen@dominion.thruhere.net>,
	Yi Zhao <yi.zhao@windriver.com>,
	Robert Berger <pokylinux@reliableembeddedsystems.com>,
	Paul Eggleton <paul.eggleton@intel.com>,
	Martin Jansa <martin.jansa@gmail.com>
Subject: [PATCH 00/30] 18-May-2011 Consolidated Pull
Date: Wed, 18 May 2011 15:26:38 -0700	[thread overview]
Message-ID: <cover.1305756950.git.sgw@linux.intel.com> (raw)

This has a few core fixes to master for broken builds, utils.bbclass
address the perl failure and qt4-tools-native address a qt4 failure.

Additional this has Darren's new create/send pull request along with
fixes for 4.6 and libc overrides.

Thanks
  Sau!


The following changes since commit 1eb0207a7ae8cbc31ecde313a020ed4f12f70dd8:

  qt4: re-enable two 4.6.x patches in 4.7.3 (2011-05-18 14:32:28 +0100)

are available in the git repository at:
  git://git.openembedded.org/openembedded-core-contrib.git sgw/stage
  http://cgit.openembedded.org/cgit.cgi/openembedded-core-contrib/log/?h=sgw/stage

Bruce Ashfield (1):
  linux-yocto: fix gcc 4.6.0 compilation failures

Darren Hart (14):
  create-pull-request: alphabetize arguments
  create-pull-request: whitespace cleanup
  create-pull-request: use git request-pull and arbitrary remotes
  create-pull-request: rewrite known private URLs to public URLs
  create-pull-request: provide an RFC mode via -c argument
  send-pull-request: whitespace cleanup
  send-pull-request: remove local mta support
  send-pull-request: fix greedy auto-cc regex
  send-pull-request: don't send all patches to everyone even with -a
  send-pull-request: verify git sendemail config
  create-pull-request: add untested oe repository support
  send-pull-request: streamline git-send-email usage
  *pull-request: add copyright, license, and descriptions
  u-boot: update SRCREV to 2011.03

Dexuan Cui (1):
  package-index.bb: add support for deb and rpm.

Jessica Zhang (2):
  extract bitbake config setting into data_define, use more variables
    replacing hardcoded values
  Add adt repo checking

Koen Kooi (5):
  diffutils: fix libc overrides
  findutils: fix libc overrides
  lsof: fix libc overrides
  sysstat: fix libc overrides
  tcp-wrappers: fix libc overrides

Otavio Salvador (2):
  create-pull-request: do not check certificate
  create-pull-request: add GitHub remote support

Saul Wold (4):
  utils.bbclass: modify create_wrapper to correctly follow symlinks
  mklibs-native: Update to 0.1.33
  usbutils: Update to 0.91
  qt4-tools-native: Fix the patch location

Xiaofeng Yan (1):
  lsbsetup: Rename this file and add a link for lsb test

 meta/classes/package_deb.bbclass                   |    9 +
 meta/classes/package_ipk.bbclass                   |    9 +
 meta/classes/package_rpm.bbclass                   |    9 +
 meta/classes/utils.bbclass                         |    3 +-
 meta/recipes-bsp/uboot/u-boot_git.bb               |    8 +-
 .../{usbutils_0.86.bb => usbutils_0.91.bb}         |    2 +-
 meta/recipes-core/meta/package-index.bb            |    6 +-
 .../installer/adt-installer/adt_installer          |   15 +-
 .../installer/adt-installer/adt_installer.conf     |    2 +-
 .../adt-installer/scripts/adt_installer_internal   |    4 +-
 .../installer/adt-installer/scripts/data_define    |    1 -
 .../installer/adt-installer_1.0.bb                 |    4 +-
 .../mklibs/files/ac_init_fix.patch                 |    2 +
 .../mklibs/files/fix_STT_GNU_IFUNC.patch           |    3 +
 ...bs-native_0.1.31.bb => mklibs-native_0.1.33.bb} |    2 +-
 meta/recipes-extended/diffutils/diffutils_2.8.1.bb |    2 +-
 meta/recipes-extended/diffutils/diffutils_3.0.bb   |    2 +-
 meta/recipes-extended/findutils/findutils.inc      |    2 +-
 .../recipes-extended/findutils/findutils_4.2.31.bb |    2 +-
 meta/recipes-extended/lsb/lsbsetup_0.9.bb          |   25 --
 meta/recipes-extended/lsb/lsbsetup_1.0.bb          |   27 ++
 meta/recipes-extended/lsof/lsof_4.84.bb            |    4 +-
 meta/recipes-extended/sysstat/sysstat.inc          |    4 +-
 .../tcp-wrappers/tcp-wrappers_7.6.bb               |    3 +-
 meta/recipes-kernel/linux/linux-yocto_git.bb       |   12 +-
 meta/recipes-qt/qt4/qt4-tools-native_4.7.3.bb      |    4 +-
 scripts/create-pull-request                        |  222 ++++++++++----
 scripts/send-pull-request                          |  307 +++++++++-----------
 28 files changed, 406 insertions(+), 289 deletions(-)
 rename meta/recipes-bsp/usbutils/{usbutils_0.86.bb => usbutils_0.91.bb} (91%)
 rename meta/recipes-devtools/mklibs/{mklibs-native_0.1.31.bb => mklibs-native_0.1.33.bb} (98%)
 delete mode 100644 meta/recipes-extended/lsb/lsbsetup_0.9.bb
 create mode 100644 meta/recipes-extended/lsb/lsbsetup_1.0.bb

-- 
1.7.3.4




             reply	other threads:[~2011-05-18 22:29 UTC|newest]

Thread overview: 35+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2011-05-18 22:26 Saul Wold [this message]
2011-05-18 22:26 ` [PATCH 01/30] diffutils: fix libc overrides Saul Wold
2011-05-18 22:26 ` [PATCH 02/30] findutils: " Saul Wold
2011-05-18 22:26 ` [PATCH 03/30] lsof: " Saul Wold
2011-05-18 22:26 ` [PATCH 04/30] sysstat: " Saul Wold
2011-05-18 22:26 ` [PATCH 05/30] tcp-wrappers: " Saul Wold
2011-05-18 22:26 ` [PATCH 06/30] linux-yocto: fix gcc 4.6.0 compilation failures Saul Wold
2011-05-18 22:26 ` [PATCH 07/30] lsbsetup: Rename this file and add a link for lsb test Saul Wold
2011-05-18 22:26 ` [PATCH 08/30] package-index.bb: add support for deb and rpm Saul Wold
2011-05-19 22:33   ` Richard Purdie
2011-05-20  1:13     ` Cui, Dexuan
2011-05-18 22:26 ` [PATCH 09/30] extract bitbake config setting into data_define, use more variables replacing hardcoded values Saul Wold
2011-05-18 22:26 ` [PATCH 10/30] Add adt repo checking Saul Wold
2011-05-18 22:26 ` [PATCH 11/30] utils.bbclass: modify create_wrapper to correctly follow symlinks Saul Wold
2011-05-19 19:26   ` Koen Kooi
2011-05-18 22:26 ` [PATCH 12/30] mklibs-native: Update to 0.1.33 Saul Wold
2011-05-18 22:26 ` [PATCH 13/30] usbutils: Update to 0.91 Saul Wold
2011-05-18 22:26 ` [PATCH 14/30] qt4-tools-native: Fix the patch location Saul Wold
2011-05-18 22:26 ` [PATCH 15/30] create-pull-request: alphabetize arguments Saul Wold
2011-05-18 22:26 ` [PATCH 16/30] create-pull-request: whitespace cleanup Saul Wold
2011-05-18 22:26 ` [PATCH 17/30] create-pull-request: use git request-pull and arbitrary remotes Saul Wold
2011-05-18 22:26 ` [PATCH 18/30] create-pull-request: rewrite known private URLs to public URLs Saul Wold
2011-05-18 22:26 ` [PATCH 19/30] create-pull-request: provide an RFC mode via -c argument Saul Wold
2011-05-18 22:26 ` [PATCH 20/30] send-pull-request: whitespace cleanup Saul Wold
2011-05-18 22:26 ` [PATCH 21/30] send-pull-request: remove local mta support Saul Wold
2011-05-18 22:26 ` [PATCH 22/30] send-pull-request: fix greedy auto-cc regex Saul Wold
2011-05-18 22:26 ` [PATCH 23/30] send-pull-request: don't send all patches to everyone even with -a Saul Wold
2011-05-18 22:26 ` [PATCH 24/30] send-pull-request: verify git sendemail config Saul Wold
2011-05-18 22:26 ` [PATCH 25/30] create-pull-request: do not check certificate Saul Wold
2011-05-18 22:26 ` [PATCH 26/30] create-pull-request: add GitHub remote support Saul Wold
2011-05-18 22:26 ` [PATCH 27/30] create-pull-request: add untested oe repository support Saul Wold
2011-05-18 22:26 ` [PATCH 28/30] send-pull-request: streamline git-send-email usage Saul Wold
2011-05-18 22:26 ` [PATCH 29/30] *pull-request: add copyright, license, and descriptions Saul Wold
2011-05-18 22:26 ` [PATCH 30/30] u-boot: update SRCREV to 2011.03 Saul Wold
2011-05-19 22:42 ` [PATCH 00/30] 18-May-2011 Consolidated Pull Richard Purdie

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.1305756950.git.sgw@linux.intel.com \
    --to=sgw@linux.intel.com \
    --cc=koen@dominion.thruhere.net \
    --cc=martin.jansa@gmail.com \
    --cc=openembedded-core@lists.openembedded.org \
    --cc=paul.eggleton@intel.com \
    --cc=pokylinux@reliableembeddedsystems.com \
    --cc=xiaofeng.yan@windriver.com \
    --cc=yi.zhao@windriver.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 a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox