All of lore.kernel.org
 help / color / mirror / Atom feed
* [meta-oe][PATCH 0/4] 4 fixes for multilib
@ 2015-05-21  8:00 Yi Zhao
  2015-05-21  8:00 ` [meta-oe][PATCH 1/4] libio-pty-perl: fix QA issue " Yi Zhao
                   ` (3 more replies)
  0 siblings, 4 replies; 5+ messages in thread
From: Yi Zhao @ 2015-05-21  8:00 UTC (permalink / raw)
  To: openembedded-devel

The following changes since commit 54def94d4e7aa8900fec58e6aaef8f8c3b0b563e:

  sylpheed: remove do_install_append (2015-05-17 09:46:31 +0200)

are available in the git repository at:

  git://git.openembedded.org/meta-openembedded-contrib yzhao/4-fixes-for-multilib
  http://cgit.openembedded.org/cgit.cgi/meta-openembedded-contrib/log/?h=yzhao/4-fixes-for-multilib

Yi Zhao (4):
  libio-pty-perl: fix QA issue for multilib
  lprng: fix QA issue for multilib
  ctags: fix ${PN}-${PV} -> ${BP} for multilib
  cscope: fix ${PN}-${PV} -> ${BP} for multilib

 meta-oe/recipes-devtools/cscope/cscope_15.8b.bb    |    2 +-
 meta-oe/recipes-devtools/ctags/ctags_5.8.bb        |    2 +-
 .../recipes-devtools/perl/libio-pty-perl_1.10.bb   |    2 ++
 meta-oe/recipes-extended/lprng/lprng_3.8.C.bb      |    2 +-
 4 files changed, 5 insertions(+), 3 deletions(-)

-- 
1.7.9.5



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

* [meta-oe][PATCH 1/4] libio-pty-perl: fix QA issue for multilib
  2015-05-21  8:00 [meta-oe][PATCH 0/4] 4 fixes for multilib Yi Zhao
@ 2015-05-21  8:00 ` Yi Zhao
  2015-05-21  8:00 ` [meta-oe][PATCH 2/4] lprng: " Yi Zhao
                   ` (2 subsequent siblings)
  3 siblings, 0 replies; 5+ messages in thread
From: Yi Zhao @ 2015-05-21  8:00 UTC (permalink / raw)
  To: openembedded-devel

bitbake lib32-libio-pty-perl
[snip]
ERROR: QA Issue: non debug package contains .debug directory: lib32-libio-pty-perl path
/work/x86-pokymllib32-linux/lib32-libio-pty-perl/1.10-r0/packages-split/lib32-libio-pty-perl/usr/lib/perl/vendor_perl/5.20.0/auto/IO/Tty/.debug/Tty.so [debug-files]
[snip]

Signed-off-by: Yi Zhao <yi.zhao@windriver.com>
---
 .../recipes-devtools/perl/libio-pty-perl_1.10.bb   |    2 ++
 1 file changed, 2 insertions(+)

diff --git a/meta-oe/recipes-devtools/perl/libio-pty-perl_1.10.bb b/meta-oe/recipes-devtools/perl/libio-pty-perl_1.10.bb
index 88db683..a5f887f 100644
--- a/meta-oe/recipes-devtools/perl/libio-pty-perl_1.10.bb
+++ b/meta-oe/recipes-devtools/perl/libio-pty-perl_1.10.bb
@@ -12,3 +12,5 @@ S = "${WORKDIR}/IO-Tty-${PV}"
 
 inherit cpan
 
+FILES_${PN}-dbg += "${libdir}/perl/vendor_perl/*/auto/IO/Tty/.debug/"
+
-- 
1.7.9.5



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

* [meta-oe][PATCH 2/4] lprng: fix QA issue for multilib
  2015-05-21  8:00 [meta-oe][PATCH 0/4] 4 fixes for multilib Yi Zhao
  2015-05-21  8:00 ` [meta-oe][PATCH 1/4] libio-pty-perl: fix QA issue " Yi Zhao
@ 2015-05-21  8:00 ` Yi Zhao
  2015-05-21  8:00 ` [meta-oe][PATCH 3/4] ctags: fix ${PN}-${PV} -> ${BP} " Yi Zhao
  2015-05-21  8:00 ` [meta-oe][PATCH 4/4] cscope: " Yi Zhao
  3 siblings, 0 replies; 5+ messages in thread
From: Yi Zhao @ 2015-05-21  8:00 UTC (permalink / raw)
  To: openembedded-devel

bitbake lprng
[snip]
ERROR: QA Issue: non debug package contains .debug directory: lprng path
/work/core2-64-poky-linux/lprng/3.8.C-r0/packages-split/lprng/usr/lib64/lprng/filters/.debug/lpf [debug-files]
[snip]

Signed-off-by: Yi Zhao <yi.zhao@windriver.com>
---
 meta-oe/recipes-extended/lprng/lprng_3.8.C.bb |    2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/meta-oe/recipes-extended/lprng/lprng_3.8.C.bb b/meta-oe/recipes-extended/lprng/lprng_3.8.C.bb
index 3357828..80b93d9 100644
--- a/meta-oe/recipes-extended/lprng/lprng_3.8.C.bb
+++ b/meta-oe/recipes-extended/lprng/lprng_3.8.C.bb
@@ -10,7 +10,7 @@ SRC_URI[sha256sum] = "694a1747a96385b89e93f43343bf35cee5c8c73353a83814106911c99f
 inherit autotools gettext
 
 EXTRA_OECONF = "--disable-ssl --disable-kerberos --enable-force_localhost"
-FILES_${PN}-dbg += "/usr/lib/lprng/filters/.debug"
+FILES_${PN}-dbg += "${libdir}/lprng/filters/.debug"
 
 do_install_append() {
     mv ${D}/etc/printcap.sample ${D}/etc/printcap
-- 
1.7.9.5



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

* [meta-oe][PATCH 3/4] ctags: fix ${PN}-${PV} -> ${BP} for multilib
  2015-05-21  8:00 [meta-oe][PATCH 0/4] 4 fixes for multilib Yi Zhao
  2015-05-21  8:00 ` [meta-oe][PATCH 1/4] libio-pty-perl: fix QA issue " Yi Zhao
  2015-05-21  8:00 ` [meta-oe][PATCH 2/4] lprng: " Yi Zhao
@ 2015-05-21  8:00 ` Yi Zhao
  2015-05-21  8:00 ` [meta-oe][PATCH 4/4] cscope: " Yi Zhao
  3 siblings, 0 replies; 5+ messages in thread
From: Yi Zhao @ 2015-05-21  8:00 UTC (permalink / raw)
  To: openembedded-devel

Signed-off-by: Yi Zhao <yi.zhao@windriver.com>
---
 meta-oe/recipes-devtools/ctags/ctags_5.8.bb |    2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/meta-oe/recipes-devtools/ctags/ctags_5.8.bb b/meta-oe/recipes-devtools/ctags/ctags_5.8.bb
index 6fc3912..d006d83 100644
--- a/meta-oe/recipes-devtools/ctags/ctags_5.8.bb
+++ b/meta-oe/recipes-devtools/ctags/ctags_5.8.bb
@@ -14,7 +14,7 @@ LIC_FILES_CHKSUM = "file://COPYING;md5=0636e73ff0215e8d672dc4c32c317bb3"
 
 inherit autotools-brokensep
 
-SRC_URI = "http://prdownloads.sourceforge.net/${PN}/${PN}-${PV}.tar.gz"
+SRC_URI = "http://prdownloads.sourceforge.net/${BPN}/${BP}.tar.gz"
 
 SRC_URI[md5sum] = "c00f82ecdcc357434731913e5b48630d"
 SRC_URI[sha256sum] = "0e44b45dcabe969e0bbbb11e30c246f81abe5d32012db37395eb57d66e9e99c7"
-- 
1.7.9.5



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

* [meta-oe][PATCH 4/4] cscope: fix ${PN}-${PV} -> ${BP} for multilib
  2015-05-21  8:00 [meta-oe][PATCH 0/4] 4 fixes for multilib Yi Zhao
                   ` (2 preceding siblings ...)
  2015-05-21  8:00 ` [meta-oe][PATCH 3/4] ctags: fix ${PN}-${PV} -> ${BP} " Yi Zhao
@ 2015-05-21  8:00 ` Yi Zhao
  3 siblings, 0 replies; 5+ messages in thread
From: Yi Zhao @ 2015-05-21  8:00 UTC (permalink / raw)
  To: openembedded-devel

Signed-off-by: Yi Zhao <yi.zhao@windriver.com>
---
 meta-oe/recipes-devtools/cscope/cscope_15.8b.bb |    2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/meta-oe/recipes-devtools/cscope/cscope_15.8b.bb b/meta-oe/recipes-devtools/cscope/cscope_15.8b.bb
index ecf7e6c..8aa5947 100644
--- a/meta-oe/recipes-devtools/cscope/cscope_15.8b.bb
+++ b/meta-oe/recipes-devtools/cscope/cscope_15.8b.bb
@@ -18,7 +18,7 @@ inherit autotools
 
 DEPENDS += "ncurses"
 
-SRC_URI = "http://downloads.sourceforge.net/project/cscope/cscope/${PV}/${PN}-${PV}.tar.gz"
+SRC_URI = "http://downloads.sourceforge.net/project/cscope/cscope/${PV}/${BP}.tar.gz"
 
 SRC_URI[md5sum] = "8f9409a238ee313a96f9f87fe0f3b176"
 SRC_URI[sha256sum] = "4889d091f05aa0845384b1e4965aa31d2b20911fb2c001b2cdcffbcb7212d3af"
-- 
1.7.9.5



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

end of thread, other threads:[~2015-05-21  8:01 UTC | newest]

Thread overview: 5+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2015-05-21  8:00 [meta-oe][PATCH 0/4] 4 fixes for multilib Yi Zhao
2015-05-21  8:00 ` [meta-oe][PATCH 1/4] libio-pty-perl: fix QA issue " Yi Zhao
2015-05-21  8:00 ` [meta-oe][PATCH 2/4] lprng: " Yi Zhao
2015-05-21  8:00 ` [meta-oe][PATCH 3/4] ctags: fix ${PN}-${PV} -> ${BP} " Yi Zhao
2015-05-21  8:00 ` [meta-oe][PATCH 4/4] cscope: " Yi Zhao

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.