All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH V2 00/25] Static Library Updated
@ 2011-07-13  7:33 Saul Wold
  2011-07-13  7:33 ` [PATCH V2 01/25] bitbake.conf: Add *-config to default ${PN}-dev package Saul Wold
                   ` (25 more replies)
  0 siblings, 26 replies; 31+ messages in thread
From: Saul Wold @ 2011-07-13  7:33 UTC (permalink / raw)
  To: openembedded-core

Richard,

This patch includes feedback from the community.


Thanks
	Sau!

The following changes since commit a6e9edb7b4b5b0bdb067a59d691d33fba8948963:

  sato-sdk: add clutter for sato-sdk image (2011-07-12 15:23:35 +0100)

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

Saul Wold (25):
  bitbake.conf: Add *-config to default ${PN}-dev package
  shlibpackaging.bbclass: create common class
  pciutils: repackage development files in pciutils instead of libpci
  wireless-tools: Updated for staticdevpackaging
  augeas: inherit shlibpackaging class
  gamin: inherit shlibpackaging class
  sqlite3: inherit shlibpackaging class
  curl: inherit shlibpackaging class
  attr: inherit shlibpackaging class
  rpm: Create -staticdev package
  libxft: use default bitbake.conf FILES Packaging to handle staticdev
  js: Use bitbake default FILES for packaging
  tcp-wrappers: Use bitbake default FILES for packaging
  udev: Use bitbake default FILES for packaging
  liba52: Use bitbake default FILES for packaging
  python: Use bitbake default FILES for packaging
  external-csl-toolchain: Use bitbake default FILES for packaging
  opkg: Use bitbake default FILES for packaging
  util-linux: Use bitbake default FILES for packaging
  gettext: Use bitbake default FILES for packaging
  gcc: Use bitbake default FILES for packaging
  glibc: Use bitbake default FILES for packaging
  eglibc: Use bitbake default FILES for packaging
  uclibc: Use bitbake default FILES for packaging
  binutils: Use bitbake default FILES for packaging

 meta/classes/shlibpackaging.bbclass                |    9 +++++++
 meta/conf/bitbake.conf                             |    2 +-
 meta/recipes-bsp/pciutils/pciutils_3.1.7.bb        |   10 +++----
 .../wireless-tools/wireless-tools_29.bb            |   14 ++++++----
 meta/recipes-core/eglibc/eglibc-common.inc         |    2 +-
 meta/recipes-core/eglibc/eglibc-package.inc        |    8 ++++--
 meta/recipes-core/gettext/gettext_0.16.1.bb        |    6 ++--
 meta/recipes-core/gettext/gettext_0.18.1.1.bb      |   24 +++++++++---------
 meta/recipes-core/glibc/glibc-package.inc          |   12 ++++++---
 meta/recipes-core/glibc/glibc_2.10.1.bb            |    2 +-
 .../meta/external-csl-toolchain_2008q3-72.bb       |   20 ++++++++-------
 meta/recipes-core/uclibc/uclibc.inc                |    7 +++--
 meta/recipes-core/udev/udev-new.inc                |   26 ++++++++++++-------
 meta/recipes-core/udev/udev_164.bb                 |    2 +-
 meta/recipes-core/util-linux/util-linux.inc        |   17 +++++++++----
 meta/recipes-core/util-linux/util-linux_2.19.1.bb  |    2 +-
 .../binutils/binutils-cross-canadian_2.21.1.bb     |    2 +-
 meta/recipes-devtools/binutils/binutils-cross.inc  |    2 +
 .../binutils/binutils-cross_csl-arm-2008q1.bb      |    2 +-
 .../binutils/binutils-crosssdk_2.21.1.bb           |    2 +-
 meta/recipes-devtools/binutils/binutils.inc        |    9 +-----
 meta/recipes-devtools/binutils/binutils_2.21.1.bb  |    2 +-
 meta/recipes-devtools/gcc/gcc-package-runtime.inc  |   25 +++++++++++++-----
 meta/recipes-devtools/gcc/libgcc_4.6.bb            |    2 +-
 meta/recipes-devtools/opkg/opkg_0.1.8.bb           |   10 ++++---
 meta/recipes-devtools/opkg/opkg_svn.bb             |   10 ++++---
 meta/recipes-devtools/python/python_2.6.6.bb       |    4 +--
 meta/recipes-devtools/rpm/rpm_5.4.0.bb             |   18 +++++++------
 meta/recipes-extended/augeas/augeas.inc            |    7 +----
 meta/recipes-extended/augeas/augeas_0.8.1.bb       |    2 +-
 meta/recipes-extended/gamin/gamin_0.1.10.bb        |   13 +--------
 .../tcp-wrappers/tcp-wrappers_7.6.bb               |   17 +++++++-----
 meta/recipes-graphics/xorg-lib/libxft_2.2.0.bb     |    7 +----
 meta/recipes-multimedia/liba52/liba52_0.7.4.bb     |    4 +--
 meta/recipes-support/attr/acl_2.2.51.bb            |    2 +-
 meta/recipes-support/attr/attr_2.4.46.bb           |    2 +-
 meta/recipes-support/attr/ea-acl.inc               |   16 +-----------
 meta/recipes-support/curl/curl_7.21.7.bb           |   17 ++++--------
 meta/recipes-support/js/js_1.7.0+1.8.0rc1.bb       |    3 +-
 meta/recipes-support/sqlite/sqlite3.inc            |   10 +------
 40 files changed, 176 insertions(+), 175 deletions(-)
 create mode 100644 meta/classes/shlibpackaging.bbclass

-- 
1.7.3.4




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

end of thread, other threads:[~2011-07-13 11:47 UTC | newest]

Thread overview: 31+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2011-07-13  7:33 [PATCH V2 00/25] Static Library Updated Saul Wold
2011-07-13  7:33 ` [PATCH V2 01/25] bitbake.conf: Add *-config to default ${PN}-dev package Saul Wold
2011-07-13  7:33 ` [PATCH V2 02/25] shlibpackaging.bbclass: create common class Saul Wold
2011-07-13  9:17   ` Phil Blundell
2011-07-13  7:33 ` [PATCH V2 03/25] pciutils: repackage development files in pciutils instead of libpci Saul Wold
2011-07-13  7:33 ` [PATCH V2 04/25] wireless-tools: Updated for staticdevpackaging Saul Wold
2011-07-13  7:33 ` [PATCH V2 05/25] augeas: inherit shlibpackaging class Saul Wold
2011-07-13  7:33 ` [PATCH V2 06/25] gamin: " Saul Wold
2011-07-13  7:33 ` [PATCH V2 07/25] sqlite3: " Saul Wold
2011-07-13  7:33 ` [PATCH V2 08/25] curl: " Saul Wold
2011-07-13  9:14   ` Phil Blundell
2011-07-13  7:33 ` [PATCH V2 09/25] attr: " Saul Wold
2011-07-13  7:33 ` [PATCH V2 10/25] rpm: Create -staticdev package Saul Wold
2011-07-13  7:33 ` [PATCH V2 11/25] libxft: use default bitbake.conf FILES Packaging to handle staticdev Saul Wold
2011-07-13  7:33 ` [PATCH V2 12/25] js: Use bitbake default FILES for packaging Saul Wold
2011-07-13  7:33 ` [PATCH V2 13/25] tcp-wrappers: " Saul Wold
2011-07-13  7:33 ` [PATCH V2 14/25] udev: " Saul Wold
2011-07-13  9:38   ` Phil Blundell
2011-07-13  7:33 ` [PATCH V2 15/25] liba52: " Saul Wold
2011-07-13  7:33 ` [PATCH V2 16/25] python: " Saul Wold
2011-07-13  7:33 ` [PATCH V2 17/25] external-csl-toolchain: " Saul Wold
2011-07-13  7:33 ` [PATCH V2 18/25] opkg: " Saul Wold
2011-07-13  7:33 ` [PATCH V2 19/25] util-linux: " Saul Wold
2011-07-13  7:33 ` [PATCH V2 20/25] gettext: " Saul Wold
2011-07-13  7:33 ` [PATCH V2 21/25] gcc: " Saul Wold
2011-07-13 11:43   ` Phil Blundell
2011-07-13  7:33 ` [PATCH V2 22/25] glibc: " Saul Wold
2011-07-13  7:33 ` [PATCH V2 23/25] eglibc: " Saul Wold
2011-07-13  7:33 ` [PATCH V2 24/25] uclibc: " Saul Wold
2011-07-13  7:33 ` [PATCH V2 25/25] binutils: " Saul Wold
2011-07-13 10:07 ` [PATCH V2 00/25] Static Library Updated Richard Purdie

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.