All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH 0/5] Fixed packaging warnings
@ 2012-03-23  4:31 Lianhao Lu
  2012-03-23  4:31 ` [PATCH 1/5] pseudo: package the var/pseudo directory Lianhao Lu
                   ` (5 more replies)
  0 siblings, 6 replies; 7+ messages in thread
From: Lianhao Lu @ 2012-03-23  4:31 UTC (permalink / raw)
  To: openembedded-core

This patch set fixed misc packaging warnings.

The following changes since commit b92aaf764e6de94fb9fdee610e8f6643ccf74894:
  Richard Purdie (1):
        gst-plugins-bluetooth: Don't install headers, man pages or .pc files

are available in the git repository at:

  git://git.yoctoproject.org/poky-contrib llu/warningfix2
  http://git.yoctoproject.org/cgit.cgi/poky-contrib/log/?h=llu/warningfix2

Lianhao Lu (5):
  pseudo: package the var/pseudo directory.
  gdb-cross-canadian: not shipping libiberty.
  ncurses: ship clear/reset in package.
  nativesdk/misc: set PKGSUFFIX for correct variable name expansion.
  libgcc: corrected -nativesdk package namings.

 meta/classes/nativesdk.bbclass                     |    2 ++
 meta/recipes-core/eglibc/eglibc-locale.inc         |    2 +-
 meta/recipes-core/eglibc/eglibc_2.13.bb            |    2 +-
 meta/recipes-core/eglibc/eglibc_2.15.bb            |    2 +-
 meta/recipes-core/ncurses/ncurses.inc              |    6 +++---
 meta/recipes-devtools/gcc/gcc-4.6.inc              |    2 +-
 meta/recipes-devtools/gcc/libgcc_4.6.bb            |   11 +++++++----
 meta/recipes-devtools/gdb/gdb-cross-canadian.inc   |    6 ++++++
 .../recipes-devtools/gdb/gdb-cross-canadian_7.4.bb |    2 +-
 meta/recipes-devtools/opkg/opkg.inc                |    2 +-
 meta/recipes-devtools/pseudo/pseudo.inc            |    2 +-
 meta/recipes-devtools/pseudo/pseudo_1.2.bb         |    2 +-
 meta/recipes-devtools/pseudo/pseudo_git.bb         |    2 +-
 meta/recipes-multimedia/alsa/alsa-lib_1.0.25.bb    |    2 +-
 meta/recipes-support/sqlite/sqlite3_3.7.10.bb      |    2 +-
 15 files changed, 29 insertions(+), 18 deletions(-)




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

* [PATCH 1/5] pseudo: package the var/pseudo directory.
  2012-03-23  4:31 [PATCH 0/5] Fixed packaging warnings Lianhao Lu
@ 2012-03-23  4:31 ` Lianhao Lu
  2012-03-23  4:31 ` [PATCH 2/5] gdb-cross-canadian: not shipping libiberty Lianhao Lu
                   ` (4 subsequent siblings)
  5 siblings, 0 replies; 7+ messages in thread
From: Lianhao Lu @ 2012-03-23  4:31 UTC (permalink / raw)
  To: openembedded-core

Fixed the "not shipped" packaging warnings.

WARNING: For recipe pseudo-nativesdk, the following files/directories
were installed but not shipped in any package:
WARNING:   /opt/poky/1.1+snapshot/sysroots/x86_64-pokysdk-linux/usr/var
WARNING:
/opt/poky/1.1+snapshot/sysroots/x86_64-pokysdk-linux/usr/var/pseudo

Signed-off-by: Lianhao Lu <lianhao.lu@intel.com>
---
 meta/recipes-devtools/pseudo/pseudo.inc    |    2 +-
 meta/recipes-devtools/pseudo/pseudo_1.2.bb |    2 +-
 meta/recipes-devtools/pseudo/pseudo_git.bb |    2 +-
 3 files changed, 3 insertions(+), 3 deletions(-)

diff --git a/meta/recipes-devtools/pseudo/pseudo.inc b/meta/recipes-devtools/pseudo/pseudo.inc
index c2a871b..4a3ef6f 100644
--- a/meta/recipes-devtools/pseudo/pseudo.inc
+++ b/meta/recipes-devtools/pseudo/pseudo.inc
@@ -9,7 +9,7 @@ SECTION = "base"
 LICENSE = "LGPL2.1"
 DEPENDS = "sqlite3"
 
-FILES_${PN} = "${libdir}/pseudo/lib*/libpseudo.so ${bindir}/* ${localstatedir}/pseudo"
+FILES_${PN} = "${libdir}/pseudo/lib*/libpseudo.so ${bindir}/* ${localstatedir}/pseudo ${prefix}/var/pseudo"
 FILES_${PN}-dbg += "${libdir}/pseudo/lib*/.debug"
 PROVIDES += "virtual/fakeroot"
 
diff --git a/meta/recipes-devtools/pseudo/pseudo_1.2.bb b/meta/recipes-devtools/pseudo/pseudo_1.2.bb
index 04bcbce..9f95bd7 100644
--- a/meta/recipes-devtools/pseudo/pseudo_1.2.bb
+++ b/meta/recipes-devtools/pseudo/pseudo_1.2.bb
@@ -1,6 +1,6 @@
 require pseudo.inc
 
-PR = "r5"
+PR = "r6"
 
 SRC_URI = "http://www.yoctoproject.org/downloads/${BPN}/${BPN}-${PV}.tar.bz2 \
            file://oe-config.patch \
diff --git a/meta/recipes-devtools/pseudo/pseudo_git.bb b/meta/recipes-devtools/pseudo/pseudo_git.bb
index 5ed8cf7..4f8c9d6 100644
--- a/meta/recipes-devtools/pseudo/pseudo_git.bb
+++ b/meta/recipes-devtools/pseudo/pseudo_git.bb
@@ -2,7 +2,7 @@ require pseudo.inc
 
 SRCREV = "17c2233f93692f79684792750001ee6d13e03925"
 PV = "1.2+git${SRCPV}"
-PR = "r20"
+PR = "r21"
 
 DEFAULT_PREFERENCE = "-1"
 
-- 
1.7.0.4




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

* [PATCH 2/5] gdb-cross-canadian: not shipping libiberty.
  2012-03-23  4:31 [PATCH 0/5] Fixed packaging warnings Lianhao Lu
  2012-03-23  4:31 ` [PATCH 1/5] pseudo: package the var/pseudo directory Lianhao Lu
@ 2012-03-23  4:31 ` Lianhao Lu
  2012-03-23  4:31 ` [PATCH 3/5] ncurses: ship clear/reset in package Lianhao Lu
                   ` (3 subsequent siblings)
  5 siblings, 0 replies; 7+ messages in thread
From: Lianhao Lu @ 2012-03-23  4:31 UTC (permalink / raw)
  To: openembedded-core

Fixed package QA warnings.

WARNING: QA Issue: non -staticdev package contains static .a library:
gdb-cross-canadian-i586 path
'/work/x86_64-nativesdk-pokysdk-linux/gdb-cross-canadian-i586-7.4-r6.3/packages-split/gdb-cross-canadian-i586/opt/poky/1.1+snapshot/sysroots/x86_64-pokysdk-linux/usr/lib/lib/libiberty.a'

Signed-off-by: Lianhao Lu <lianhao.lu@intel.com>
---
 meta/recipes-devtools/gdb/gdb-cross-canadian.inc   |    6 ++++++
 .../recipes-devtools/gdb/gdb-cross-canadian_7.4.bb |    2 +-
 2 files changed, 7 insertions(+), 1 deletions(-)

diff --git a/meta/recipes-devtools/gdb/gdb-cross-canadian.inc b/meta/recipes-devtools/gdb/gdb-cross-canadian.inc
index a7cac61..47d7d28 100644
--- a/meta/recipes-devtools/gdb/gdb-cross-canadian.inc
+++ b/meta/recipes-devtools/gdb/gdb-cross-canadian.inc
@@ -23,3 +23,9 @@ exit 0
 EOF
         chmod +x ${WORKDIR}/python
 }
+
+# we don't want gdb to provide bfd/iberty/opcodes, which instead will override the
+# right bits installed by binutils.
+do_install_append() {
+	rm -rf ${D}${exec_prefix}/lib
+}
diff --git a/meta/recipes-devtools/gdb/gdb-cross-canadian_7.4.bb b/meta/recipes-devtools/gdb/gdb-cross-canadian_7.4.bb
index dbcffde..dfb7d81 100644
--- a/meta/recipes-devtools/gdb/gdb-cross-canadian_7.4.bb
+++ b/meta/recipes-devtools/gdb/gdb-cross-canadian_7.4.bb
@@ -1,7 +1,7 @@
 require gdb-common.inc
 require gdb-cross-canadian.inc
 
-PR = "${INC_PR}.3"
+PR = "${INC_PR}.4"
 
 GDBPROPREFIX = "--program-prefix='${TARGET_PREFIX}'"
 EXPAT = "--with-expat"
-- 
1.7.0.4




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

* [PATCH 3/5] ncurses: ship clear/reset in package.
  2012-03-23  4:31 [PATCH 0/5] Fixed packaging warnings Lianhao Lu
  2012-03-23  4:31 ` [PATCH 1/5] pseudo: package the var/pseudo directory Lianhao Lu
  2012-03-23  4:31 ` [PATCH 2/5] gdb-cross-canadian: not shipping libiberty Lianhao Lu
@ 2012-03-23  4:31 ` Lianhao Lu
  2012-03-23  4:31 ` [PATCH 4/5] nativesdk/misc: set PKGSUFFIX for correct variable name expansion Lianhao Lu
                   ` (2 subsequent siblings)
  5 siblings, 0 replies; 7+ messages in thread
From: Lianhao Lu @ 2012-03-23  4:31 UTC (permalink / raw)
  To: openembedded-core

Fixed not shipped packaging warnings.

WARNING: For recipe ncurses-nativesdk, the following files/directories
were installed but not shipped in any package:
WARNING:
/opt/poky/1.1+snapshot/sysroots/x86_64-pokysdk-linux/usr/bin/reset
WARNING:
/opt/poky/1.1+snapshot/sysroots/x86_64-pokysdk-linux/usr/bin/clear

Signed-off-by: Lianhao Lu <lianhao.lu@intel.com>
---
 meta/recipes-core/ncurses/ncurses.inc |    6 +++---
 1 files changed, 3 insertions(+), 3 deletions(-)

diff --git a/meta/recipes-core/ncurses/ncurses.inc b/meta/recipes-core/ncurses/ncurses.inc
index 4d64f5e..ae99e2c 100644
--- a/meta/recipes-core/ncurses/ncurses.inc
+++ b/meta/recipes-core/ncurses/ncurses.inc
@@ -6,7 +6,7 @@ LIC_FILES_CHKSUM = "file://ncurses/base/version.c;beginline=1;endline=27;md5=cbc
 SECTION = "libs"
 DEPENDS = "ncurses-native"
 DEPENDS_virtclass-native = ""
-INC_PR = "r7"
+INC_PR = "r8"
 
 inherit autotools binconfig multilib_header
 
@@ -245,8 +245,8 @@ FILES_${PN}-tools = "\
   ${bindir}/infotocap \
   ${bindir}/captoinfo \
   ${bindir}/infocmp \
-  ${bindir}/clear.${PN} \
-  ${bindir}/reset.${PN} \
+  ${bindir}/clear${@['', '.${PN\x7d'][d.getVar('PN', 1) == 'ncurses']} \
+  ${bindir}/reset${@['', '.${PN\x7d'][d.getVar('PN', 1) == 'ncurses']} \
   ${bindir}/tack \
   ${bindir}/tabs \
 "
-- 
1.7.0.4




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

* [PATCH 4/5] nativesdk/misc: set PKGSUFFIX for correct variable name expansion.
  2012-03-23  4:31 [PATCH 0/5] Fixed packaging warnings Lianhao Lu
                   ` (2 preceding siblings ...)
  2012-03-23  4:31 ` [PATCH 3/5] ncurses: ship clear/reset in package Lianhao Lu
@ 2012-03-23  4:31 ` Lianhao Lu
  2012-03-23  4:31 ` [PATCH 5/5] libgcc: corrected -nativesdk package namings Lianhao Lu
  2012-03-23 12:03 ` [PATCH 0/5] Fixed packaging warnings Richard Purdie
  5 siblings, 0 replies; 7+ messages in thread
From: Lianhao Lu @ 2012-03-23  4:31 UTC (permalink / raw)
  To: openembedded-core

Set PKGSUFFIX in nativesdk.bbclass for correct variable name expansion.
This would fix bunch of "not shipped" packaging warnings in "-nativesdk"
recipes. And also bumping the corresponding PR.

Signed-off-by: Lianhao Lu <lianhao.lu@intel.com>
---
 meta/classes/nativesdk.bbclass                  |    2 ++
 meta/recipes-core/eglibc/eglibc-locale.inc      |    2 +-
 meta/recipes-core/eglibc/eglibc_2.13.bb         |    2 +-
 meta/recipes-core/eglibc/eglibc_2.15.bb         |    2 +-
 meta/recipes-devtools/opkg/opkg.inc             |    2 +-
 meta/recipes-multimedia/alsa/alsa-lib_1.0.25.bb |    2 +-
 meta/recipes-support/sqlite/sqlite3_3.7.10.bb   |    2 +-
 7 files changed, 8 insertions(+), 6 deletions(-)

diff --git a/meta/classes/nativesdk.bbclass b/meta/classes/nativesdk.bbclass
index ceec53e..97c460c 100644
--- a/meta/classes/nativesdk.bbclass
+++ b/meta/classes/nativesdk.bbclass
@@ -56,6 +56,8 @@ baselib = "lib"
 export PKG_CONFIG_DIR = "${STAGING_DIR_HOST}${libdir}/pkgconfig"
 export PKG_CONFIG_SYSROOT_DIR = "${STAGING_DIR_HOST}"
 
+PKGSUFFIX = "-nativesdk"
+
 python nativesdk_virtclass_handler () {
     if not isinstance(e, bb.event.RecipePreFinalise):
         return
diff --git a/meta/recipes-core/eglibc/eglibc-locale.inc b/meta/recipes-core/eglibc/eglibc-locale.inc
index 2e9b4d4..9d5434f 100644
--- a/meta/recipes-core/eglibc/eglibc-locale.inc
+++ b/meta/recipes-core/eglibc/eglibc-locale.inc
@@ -26,7 +26,7 @@ BINARY_LOCALE_ARCHES ?= "arm.* i[3-6]86 x86_64 powerpc mips"
 # set "0" for qemu emulation of native localedef for locale generation
 LOCALE_GENERATION_WITH_CROSS-LOCALEDEF = "1"
 
-PR = "r19"
+PR = "r20"
 
 PKGSUFFIX = ""
 PKGSUFFIX_virtclass-nativesdk = "-nativesdk"
diff --git a/meta/recipes-core/eglibc/eglibc_2.13.bb b/meta/recipes-core/eglibc/eglibc_2.13.bb
index a4f59b6..e02c80f 100644
--- a/meta/recipes-core/eglibc/eglibc_2.13.bb
+++ b/meta/recipes-core/eglibc/eglibc_2.13.bb
@@ -3,7 +3,7 @@ require eglibc.inc
 SRCREV = "15508"
 
 DEPENDS += "gperf-native"
-PR = "r21"
+PR = "r22"
 PR_append = "+svnr${SRCPV}"
 
 EGLIBC_BRANCH="eglibc-2_13"
diff --git a/meta/recipes-core/eglibc/eglibc_2.15.bb b/meta/recipes-core/eglibc/eglibc_2.15.bb
index 3820f5a..644d904 100644
--- a/meta/recipes-core/eglibc/eglibc_2.15.bb
+++ b/meta/recipes-core/eglibc/eglibc_2.15.bb
@@ -3,7 +3,7 @@ require eglibc.inc
 SRCREV = "16540"
 
 DEPENDS += "gperf-native"
-PR = "r1"
+PR = "r2"
 PR_append = "+svnr${SRCPV}"
 
 EGLIBC_BRANCH="eglibc-2_15"
diff --git a/meta/recipes-devtools/opkg/opkg.inc b/meta/recipes-devtools/opkg/opkg.inc
index 689bd4a..14083d0 100644
--- a/meta/recipes-devtools/opkg/opkg.inc
+++ b/meta/recipes-devtools/opkg/opkg.inc
@@ -11,7 +11,7 @@ DEPENDS_virtclass-native = "curl-native"
 DEPENDS_virtclass-nativesdk = "curl-nativesdk"
 
 PE = "1"
-INC_PR = "r8"
+INC_PR = "r9"
 
 FILESDIR = "${@os.path.dirname(d.getVar('FILE',1))}/opkg"
 
diff --git a/meta/recipes-multimedia/alsa/alsa-lib_1.0.25.bb b/meta/recipes-multimedia/alsa/alsa-lib_1.0.25.bb
index 90b0cba..b128d77 100644
--- a/meta/recipes-multimedia/alsa/alsa-lib_1.0.25.bb
+++ b/meta/recipes-multimedia/alsa/alsa-lib_1.0.25.bb
@@ -14,7 +14,7 @@ BBCLASSEXTEND = "native nativesdk"
 #FIXME: remove the following
 ARM_INSTRUCTION_SET = "arm"
 
-PR = "r0"
+PR = "r1"
 
 SRC_URI = "ftp://ftp.alsa-project.org/pub/lib/alsa-lib-${PV}.tar.bz2 \
            file://fix-tstamp-declaration.patch"
diff --git a/meta/recipes-support/sqlite/sqlite3_3.7.10.bb b/meta/recipes-support/sqlite/sqlite3_3.7.10.bb
index 25e2b24..ec6ded6 100644
--- a/meta/recipes-support/sqlite/sqlite3_3.7.10.bb
+++ b/meta/recipes-support/sqlite/sqlite3_3.7.10.bb
@@ -1,6 +1,6 @@
 require sqlite3.inc
 
-PR = "r1"
+PR = "r2"
 
 LIC_FILES_CHKSUM = "file://sqlite3.h;endline=11;md5=65f0a57ca6928710b418c094b3570bb0"
 
-- 
1.7.0.4




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

* [PATCH 5/5] libgcc: corrected -nativesdk package namings.
  2012-03-23  4:31 [PATCH 0/5] Fixed packaging warnings Lianhao Lu
                   ` (3 preceding siblings ...)
  2012-03-23  4:31 ` [PATCH 4/5] nativesdk/misc: set PKGSUFFIX for correct variable name expansion Lianhao Lu
@ 2012-03-23  4:31 ` Lianhao Lu
  2012-03-23 12:03 ` [PATCH 0/5] Fixed packaging warnings Richard Purdie
  5 siblings, 0 replies; 7+ messages in thread
From: Lianhao Lu @ 2012-03-23  4:31 UTC (permalink / raw)
  To: openembedded-core

1. Corrected the -nativesdk package namings.

2. Fixed package QA warnings:
WARNING: QA Issue: non -staticdev package contains static .a library:
libgcc-nativesdk-dev path
'/work/x86_64-nativesdk-pokysdk-linux/libgcc-nativesdk-4.6.3+svnr184847-r23/packages-split/libgcc-nativesdk-dev/opt/poky/1.1+snapshot/sysroots/x86_64-pokysdk-linux/usr/lib/x86_64-pokysdk-linux/4.6.4/libgcc.a'
WARNING: QA Issue: non -staticdev package contains static .a library:
libgcc-nativesdk-dev path
'/work/x86_64-nativesdk-pokysdk-linux/libgcc-nativesdk-4.6.3+svnr184847-r23/packages-split/libgcc-nativesdk-dev/opt/poky/1.1+snapshot/sysroots/x86_64-pokysdk-linux/usr/lib/x86_64-pokysdk-linux/4.6.4/libgcc_eh.a'

Signed-off-by: Lianhao Lu <lianhao.lu@intel.com>
---
 meta/recipes-devtools/gcc/gcc-4.6.inc   |    2 +-
 meta/recipes-devtools/gcc/libgcc_4.6.bb |   11 +++++++----
 2 files changed, 8 insertions(+), 5 deletions(-)

diff --git a/meta/recipes-devtools/gcc/gcc-4.6.inc b/meta/recipes-devtools/gcc/gcc-4.6.inc
index 99c30a6..d40a534 100644
--- a/meta/recipes-devtools/gcc/gcc-4.6.inc
+++ b/meta/recipes-devtools/gcc/gcc-4.6.inc
@@ -1,6 +1,6 @@
 require gcc-common.inc
 
-PR = "r23"
+PR = "r24"
 
 # Third digit in PV should be incremented after a minor release
 # happens from this branch on gcc e.g. currently its 4.6.0
diff --git a/meta/recipes-devtools/gcc/libgcc_4.6.bb b/meta/recipes-devtools/gcc/libgcc_4.6.bb
index 04e2877..6e557d5 100644
--- a/meta/recipes-devtools/gcc/libgcc_4.6.bb
+++ b/meta/recipes-devtools/gcc/libgcc_4.6.bb
@@ -3,11 +3,14 @@ require gcc-${PV}.inc
 INHIBIT_DEFAULT_DEPS = "1"
 DEPENDS = "virtual/${TARGET_PREFIX}gcc virtual/${TARGET_PREFIX}g++"
 
+PKGSUFFIX = ""
+PKGSUFFIX_virtclass-nativesdk = "-nativesdk"
+
 PACKAGES = "\
   ${PN} \
   ${PN}-dev \
   ${PN}-dbg \
-  libgcov-dev \
+  libgcov${PKGSUFFIX}-dev \
   "
 
 FILES_${PN} = "${base_libdir}/libgcc*.so.*"
@@ -15,7 +18,7 @@ FILES_${PN}-dev = " \
   ${base_libdir}/libgcc*.so \
   ${libdir}/${TARGET_SYS}/${BINV}/crt* \
   ${libdir}/${TARGET_SYS}/${BINV}/libgcc*"
-FILES_libgcov-dev = " \
+FILES_libgcov${PKGSUFFIX}-dev = " \
   ${libdir}/${TARGET_SYS}/${BINV}/libgcov.a"
 
 FILES_${PN}-dbg += "${base_libdir}/.debug/"
@@ -48,6 +51,6 @@ do_package_write_rpm[depends] += "virtual/${MLPREFIX}libc:do_package"
 
 BBCLASSEXTEND = "nativesdk"
 
-INSANE_SKIP_libgcc-dev = "staticdev"
-INSANE_SKIP_libgcov-dev = "staticdev"
+INSANE_SKIP_${PN}-dev = "staticdev"
+INSANE_SKIP_libgcov${PKGSUFFIX}-dev = "staticdev"
 
-- 
1.7.0.4




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

* Re: [PATCH 0/5] Fixed packaging warnings
  2012-03-23  4:31 [PATCH 0/5] Fixed packaging warnings Lianhao Lu
                   ` (4 preceding siblings ...)
  2012-03-23  4:31 ` [PATCH 5/5] libgcc: corrected -nativesdk package namings Lianhao Lu
@ 2012-03-23 12:03 ` Richard Purdie
  5 siblings, 0 replies; 7+ messages in thread
From: Richard Purdie @ 2012-03-23 12:03 UTC (permalink / raw)
  To: Patches and discussions about the oe-core layer

On Fri, 2012-03-23 at 12:31 +0800, Lianhao Lu wrote:
> This patch set fixed misc packaging warnings.
> 
> The following changes since commit b92aaf764e6de94fb9fdee610e8f6643ccf74894:
>   Richard Purdie (1):
>         gst-plugins-bluetooth: Don't install headers, man pages or .pc files
> 
> are available in the git repository at:
> 
>   git://git.yoctoproject.org/poky-contrib llu/warningfix2
>   http://git.yoctoproject.org/cgit.cgi/poky-contrib/log/?h=llu/warningfix2
> 
> Lianhao Lu (5):
>   pseudo: package the var/pseudo directory.
>   gdb-cross-canadian: not shipping libiberty.
>   ncurses: ship clear/reset in package.
>   nativesdk/misc: set PKGSUFFIX for correct variable name expansion.
>   libgcc: corrected -nativesdk package namings.

Merged to master, thanks!

Richard




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

end of thread, other threads:[~2012-03-23 12:12 UTC | newest]

Thread overview: 7+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2012-03-23  4:31 [PATCH 0/5] Fixed packaging warnings Lianhao Lu
2012-03-23  4:31 ` [PATCH 1/5] pseudo: package the var/pseudo directory Lianhao Lu
2012-03-23  4:31 ` [PATCH 2/5] gdb-cross-canadian: not shipping libiberty Lianhao Lu
2012-03-23  4:31 ` [PATCH 3/5] ncurses: ship clear/reset in package Lianhao Lu
2012-03-23  4:31 ` [PATCH 4/5] nativesdk/misc: set PKGSUFFIX for correct variable name expansion Lianhao Lu
2012-03-23  4:31 ` [PATCH 5/5] libgcc: corrected -nativesdk package namings Lianhao Lu
2012-03-23 12:03 ` [PATCH 0/5] Fixed packaging warnings 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.