All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH 0/5]add nss for LSB library check
@ 2013-07-09 12:30 Hongxu Jia
  2013-07-09 12:30 ` [PATCH 1/5] nspr-native: add version 4.10 Hongxu Jia
                   ` (4 more replies)
  0 siblings, 5 replies; 16+ messages in thread
From: Hongxu Jia @ 2013-07-09 12:30 UTC (permalink / raw)
  To: openembedded-core

http://refspecs.linuxfoundation.org/LSB_4.1.0/LSB-Core-generic/LSB-Core-generic/libnss3.html
https://developer.mozilla.org/en-US/docs/NSS
//Hongxu

The following changes since commit dc86293f0444384e8ae5131fdd10b6cb077164b0:

  bitbake: HOB:Proper handle of SIGINT (2013-07-05 15:52:48 +0100)

are available in the git repository at:

  git://git.pokylinux.org/poky-contrib hongxu/fix-nss
  http://git.pokylinux.org/cgit.cgi/poky-contrib/log/?h=hongxu/fix-nss

Hongxu Jia (5):
  nspr-native: add version 4.10
  packagegroup-core-lsb: add nss for LSB library check
  nss: add version 3.15.1
  nss: Create checksum files for the NSS libraries
  nss: fix incorrect shebang of perl

 .../packagegroups/packagegroup-core-lsb.bb         |   1 +
 meta/recipes-support/nspr/nspr_4.10.bb             |   2 +
 .../files/nss-fix-incorrect-shebang-of-perl.patch  | 110 ++++++++++++
 .../files/nss-fix-support-cross-compiling.patch    |  71 ++++++++
 .../files/nss-no-rpath-for-cross-compiling.patch   |  26 +++
 meta/recipes-support/nss/files/nss.pc.in           |  11 ++
 meta/recipes-support/nss/files/signlibs.sh         |  20 +++
 meta/recipes-support/nss/nss.inc                   | 187 +++++++++++++++++++++
 meta/recipes-support/nss/nss_3.15.1.bb             |   9 +
 9 files changed, 437 insertions(+)
 create mode 100644 meta/recipes-support/nss/files/nss-fix-incorrect-shebang-of-perl.patch
 create mode 100644 meta/recipes-support/nss/files/nss-fix-support-cross-compiling.patch
 create mode 100644 meta/recipes-support/nss/files/nss-no-rpath-for-cross-compiling.patch
 create mode 100644 meta/recipes-support/nss/files/nss.pc.in
 create mode 100644 meta/recipes-support/nss/files/signlibs.sh
 create mode 100644 meta/recipes-support/nss/nss.inc
 create mode 100644 meta/recipes-support/nss/nss_3.15.1.bb

-- 
1.8.1.2



^ permalink raw reply	[flat|nested] 16+ messages in thread
* [PATCH V2 0/5] add nss for LSB library check
@ 2013-07-10  8:03 Hongxu Jia
  2013-07-10  8:03 ` [PATCH 4/5] nss: create checksum files for the nss libraries Hongxu Jia
  0 siblings, 1 reply; 16+ messages in thread
From: Hongxu Jia @ 2013-07-10  8:03 UTC (permalink / raw)
  To: openembedded-core

Change from V1:
1) Rename the title of patch 1/5
2) Use ${libdir} rather than ${base_libdir} as the lib location
   which references the nss in meta-browser.

//Hongxu

The following changes since commit dc86293f0444384e8ae5131fdd10b6cb077164b0:

  bitbake: HOB:Proper handle of SIGINT (2013-07-05 15:52:48 +0100)

are available in the git repository at:

  git://git.pokylinux.org/poky-contrib hongxu/fix-nss
  http://git.pokylinux.org/cgit.cgi/poky-contrib/log/?h=hongxu/fix-nss

Hongxu Jia (5):
  nspr: add native version
  packagegroup-core-lsb: add nss for LSB library check
  nss: add version 3.15.1
  nss: create checksum files for the nss libraries
  nss: fix incorrect shebang line of perl script

 .../packagegroups/packagegroup-core-lsb.bb         |   1 +
 meta/recipes-support/nspr/nspr_4.10.bb             |   2 +
 .../files/nss-fix-incorrect-shebang-of-perl.patch  | 110 ++++++++++++
 .../files/nss-fix-support-cross-compiling.patch    |  71 ++++++++
 .../files/nss-no-rpath-for-cross-compiling.patch   |  26 +++
 meta/recipes-support/nss/files/nss.pc.in           |  11 ++
 meta/recipes-support/nss/files/signlibs.sh         |  20 +++
 meta/recipes-support/nss/nss.inc                   | 187 +++++++++++++++++++++
 meta/recipes-support/nss/nss_3.15.1.bb             |   9 +
 9 files changed, 437 insertions(+)
 create mode 100644 meta/recipes-support/nss/files/nss-fix-incorrect-shebang-of-perl.patch
 create mode 100644 meta/recipes-support/nss/files/nss-fix-support-cross-compiling.patch
 create mode 100644 meta/recipes-support/nss/files/nss-no-rpath-for-cross-compiling.patch
 create mode 100644 meta/recipes-support/nss/files/nss.pc.in
 create mode 100644 meta/recipes-support/nss/files/signlibs.sh
 create mode 100644 meta/recipes-support/nss/nss.inc
 create mode 100644 meta/recipes-support/nss/nss_3.15.1.bb

-- 
1.8.1.2



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

end of thread, other threads:[~2013-07-12 12:45 UTC | newest]

Thread overview: 16+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2013-07-09 12:30 [PATCH 0/5]add nss for LSB library check Hongxu Jia
2013-07-09 12:30 ` [PATCH 1/5] nspr-native: add version 4.10 Hongxu Jia
2013-07-09 12:42   ` Martin Jansa
2013-07-09 12:52     ` Hongxu Jia
2013-07-09 12:30 ` [PATCH 2/5] packagegroup-core-lsb: add nss for LSB library check Hongxu Jia
2013-07-09 12:30 ` [PATCH 3/5] nss: add version 3.15.1 Hongxu Jia
2013-07-09 12:44   ` Paul Eggleton
2013-07-09 13:29     ` Hongxu Jia
2013-07-09 13:38       ` Paul Eggleton
2013-07-09 13:41         ` Khem Raj
2013-07-10  1:26         ` Hongxu Jia
2013-07-09 12:30 ` [PATCH 4/5] nss: Create checksum files for the NSS libraries Hongxu Jia
2013-07-09 12:30 ` [PATCH 5/5] nss: fix incorrect shebang of perl Hongxu Jia
2013-07-10  8:03 [PATCH V2 0/5] add nss for LSB library check Hongxu Jia
2013-07-10  8:03 ` [PATCH 4/5] nss: create checksum files for the nss libraries Hongxu Jia
2013-07-12 12:39   ` Burton, Ross
2013-07-12 12:45     ` Hongxu Jia

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.