All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH 0/3] Fix failures of LSB.
@ 2010-12-21  9:54 Jingdong Lu
  2010-12-21  9:54 ` [PATCH 1/3] perl: Add GDBM_File into perl extension Jingdong Lu
                   ` (3 more replies)
  0 siblings, 4 replies; 8+ messages in thread
From: Jingdong Lu @ 2010-12-21  9:54 UTC (permalink / raw)
  To: poky

Pull URL: git://git.pokylinux.org/poky-contrib.git
  Branch: jingdonglu/distro
  Browse: http://git.pokylinux.org/cgit.cgi/poky-contrib/log/?h=jingdonglu/distro

Thanks,
    Jingdong Lu <jingdong.lu@windriver.com>
---


Jingdong Lu (3):
  perl: Add GDBM_File into perl extension
  gcc: Add "--enable-clocale=gnu" option explicitly
  mailx: Add mailx

 meta/recipes-devtools/gcc/gcc-configure-common.inc |    2 +-
 meta/recipes-devtools/perl/perl-5.8.8/config.sh    |    2 +-
 meta/recipes-extended/mailx/mailx_12.4.bb          |   18 ++++++++++++++++++
 3 files changed, 20 insertions(+), 2 deletions(-)
 create mode 100644 meta/recipes-extended/mailx/mailx_12.4.bb



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

* [PATCH 1/3] perl: Add GDBM_File into perl extension
  2010-12-21  9:54 [PATCH 0/3] Fix failures of LSB Jingdong Lu
@ 2010-12-21  9:54 ` Jingdong Lu
  2010-12-21  9:54 ` [PATCH 2/3] gcc: Add "--enable-clocale=gnu" option explicitly Jingdong Lu
                   ` (2 subsequent siblings)
  3 siblings, 0 replies; 8+ messages in thread
From: Jingdong Lu @ 2010-12-21  9:54 UTC (permalink / raw)
  To: poky

Add GDBM_File into perl extension in config.sh in order to fix failure of lsb-perl-test.

Signed-off-by: Jingdong Lu <jingdong.lu@windriver.com>
---
 meta/recipes-devtools/perl/perl-5.8.8/config.sh |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)

diff --git a/meta/recipes-devtools/perl/perl-5.8.8/config.sh b/meta/recipes-devtools/perl/perl-5.8.8/config.sh
index 3d4c193..49d5ab7 100644
--- a/meta/recipes-devtools/perl/perl-5.8.8/config.sh
+++ b/meta/recipes-devtools/perl/perl-5.8.8/config.sh
@@ -522,7 +522,7 @@ endservent_r_proto='0'
 eunicefix=':'
 exe_ext=''
 expr='expr'
-extensions='attrs B ByteLoader Cwd Data/Dumper Devel/DProf Devel/Peek Devel/PPPort Digest/MD5 Encode Fcntl File/Glob Filter/Util/Call I18N/Langinfo IO IPC/SysV List/Util MIME/Base64 Opcode PerlIO/encoding PerlIO/scalar PerlIO/via POSIX re SDBM_File Socket Storable Sys/Hostname Sys/Syslog threads Time/HiRes Unicode/Normalize XS/APItest XS/Typemap threads/shared Errno'
+extensions='attrs B ByteLoader Cwd Data/Dumper Devel/DProf Devel/Peek Devel/PPPort Digest/MD5 Encode Fcntl File/Glob Filter/Util/Call I18N/Langinfo IO IPC/SysV List/Util MIME/Base64 Opcode PerlIO/encoding PerlIO/scalar PerlIO/via POSIX re GDBM_File SDBM_File Socket Storable Sys/Hostname Sys/Syslog threads Time/HiRes Unicode/Normalize XS/APItest XS/Typemap threads/shared Errno'
 extras=''
 fflushNULL='define'
 fflushall='undef'
-- 
1.7.0.4



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

* [PATCH 2/3] gcc: Add "--enable-clocale=gnu" option explicitly
  2010-12-21  9:54 [PATCH 0/3] Fix failures of LSB Jingdong Lu
  2010-12-21  9:54 ` [PATCH 1/3] perl: Add GDBM_File into perl extension Jingdong Lu
@ 2010-12-21  9:54 ` Jingdong Lu
  2010-12-21  9:54 ` [PATCH 3/3] mailx: Add mailx Jingdong Lu
  2010-12-22  0:41 ` [PATCH 0/3] Fix failures of LSB Saul Wold
  3 siblings, 0 replies; 8+ messages in thread
From: Jingdong Lu @ 2010-12-21  9:54 UTC (permalink / raw)
  To: poky

Add "--enable-clocale=gun" option for gcc configuration explicitly in order to make sure C++ library can use correct locale module.

Signed-off-by: Jingdong Lu <jingdong.lu@windriver.com>
---
 meta/recipes-devtools/gcc/gcc-configure-common.inc |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)

diff --git a/meta/recipes-devtools/gcc/gcc-configure-common.inc b/meta/recipes-devtools/gcc/gcc-configure-common.inc
index 4393777..b212fdc 100644
--- a/meta/recipes-devtools/gcc/gcc-configure-common.inc
+++ b/meta/recipes-devtools/gcc/gcc-configure-common.inc
@@ -27,7 +27,7 @@ EXTRA_OECONF_INTERMEDIATE ?= ""
 
 GCCMULTILIB = "--disable-multilib"
 
-EXTRA_OECONF = "${@['--enable-clocale=generic', ''][bb.data.getVar('USE_NLS', d, 1) != 'no']} \
+EXTRA_OECONF = "${@['--enable-clocale=generic', ' --enable-clocale=gnu'][bb.data.getVar('USE_NLS', d, 1) != 'no']} \
                 --with-gnu-ld \
                 --enable-shared \
                 --enable-languages=${LANGUAGES} \
-- 
1.7.0.4



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

* [PATCH 3/3] mailx: Add mailx
  2010-12-21  9:54 [PATCH 0/3] Fix failures of LSB Jingdong Lu
  2010-12-21  9:54 ` [PATCH 1/3] perl: Add GDBM_File into perl extension Jingdong Lu
  2010-12-21  9:54 ` [PATCH 2/3] gcc: Add "--enable-clocale=gnu" option explicitly Jingdong Lu
@ 2010-12-21  9:54 ` Jingdong Lu
  2010-12-22  0:41 ` [PATCH 0/3] Fix failures of LSB Saul Wold
  3 siblings, 0 replies; 8+ messages in thread
From: Jingdong Lu @ 2010-12-21  9:54 UTC (permalink / raw)
  To: poky

Signed-off-by: Jingdong Lu <jingdong.lu@windriver.com>
---
 meta/recipes-extended/mailx/mailx_12.4.bb |   18 ++++++++++++++++++
 1 files changed, 18 insertions(+), 0 deletions(-)
 create mode 100644 meta/recipes-extended/mailx/mailx_12.4.bb

diff --git a/meta/recipes-extended/mailx/mailx_12.4.bb b/meta/recipes-extended/mailx/mailx_12.4.bb
new file mode 100644
index 0000000..eb8109a
--- /dev/null
+++ b/meta/recipes-extended/mailx/mailx_12.4.bb
@@ -0,0 +1,18 @@
+DESCRIPTION = "Mailx is an enhanced mail command, which provides the functionality \
+of the POSIX mailx command, as well as SysV mail and Berkeley Mail \
+(from which it is derived)."
+HOMEPAGE = "http://heirloom.sourceforge.net/mailx.html"
+SECTION = "console/network"
+
+PRIORITY = "required"
+LICENSE = "BSD with advertising and MPLv1.1"
+PR = "r0"
+
+#COPYING or Licence
+LIC_FILES_CHKSUM = "file://COPYING;md5=4202a0a62910cf94f7af8a3436a2a2dd"
+
+SRC_URI = "http://downloads.sourceforge.net/heirloom/mailx-12.4.tar.bz2 \
+          "
+do_install() {
+       make DESTDIR=${D} PREFIX=/usr UCBINSTALL=install install
+}
-- 
1.7.0.4



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

* Re: [PATCH 0/3] Fix failures of LSB.
  2010-12-21  9:54 [PATCH 0/3] Fix failures of LSB Jingdong Lu
                   ` (2 preceding siblings ...)
  2010-12-21  9:54 ` [PATCH 3/3] mailx: Add mailx Jingdong Lu
@ 2010-12-22  0:41 ` Saul Wold
  2010-12-22  9:53   ` Lu Jingdong
  3 siblings, 1 reply; 8+ messages in thread
From: Saul Wold @ 2010-12-22  0:41 UTC (permalink / raw)
  To: Jingdong Lu; +Cc: poky

On 12/21/2010 01:54 AM, Jingdong Lu wrote:
> Pull URL: git://git.pokylinux.org/poky-contrib.git
>    Branch: jingdonglu/distro
>    Browse: http://git.pokylinux.org/cgit.cgi/poky-contrib/log/?h=jingdonglu/distro
>
> Thanks,
>      Jingdong Lu<jingdong.lu@windriver.com>
> ---
>

Jingdong,



Why do you need the do_install?  Can the standard do_install not work 
correctly for this recipe?

Thanks
    Sau!
>
> Jingdong Lu (3):
>    perl: Add GDBM_File into perl extension
>    gcc: Add "--enable-clocale=gnu" option explicitly
>    mailx: Add mailx
>
>   meta/recipes-devtools/gcc/gcc-configure-common.inc |    2 +-

We are reviewing the impact of the gcc clocale=gnu

>   meta/recipes-devtools/perl/perl-5.8.8/config.sh    |    2 +-
This on is OK

>   meta/recipes-extended/mailx/mailx_12.4.bb          |   18 ++++++++++++++++++
Can you please add a SUMMARY and SRC_URI checksums to the mailx recipe.

Is the PREFIX=/usr correct?  I note in other there is a ${D} or 
${D}${prefix}, please make sure you have the correct location here.

Please re-sumbit a v2 patch set.

Sau!

>   3 files changed, 20 insertions(+), 2 deletions(-)
>   create mode 100644 meta/recipes-extended/mailx/mailx_12.4.bb
>
> _______________________________________________
> poky mailing list
> poky@yoctoproject.org
> https://lists.yoctoproject.org/listinfo/poky
>



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

* Re: [PATCH 0/3] Fix failures of LSB.
  2010-12-22  0:41 ` [PATCH 0/3] Fix failures of LSB Saul Wold
@ 2010-12-22  9:53   ` Lu Jingdong
  2010-12-22 11:11     ` Richard Purdie
  2010-12-22 15:21     ` Saul Wold
  0 siblings, 2 replies; 8+ messages in thread
From: Lu Jingdong @ 2010-12-22  9:53 UTC (permalink / raw)
  To: Saul Wold; +Cc: poky

On 12/22/2010 08:41 AM, Saul Wold wrote:
> On 12/21/2010 01:54 AM, Jingdong Lu wrote:
>> Pull URL: git://git.pokylinux.org/poky-contrib.git
>>    Branch: jingdonglu/distro
>>    Browse: 
>> http://git.pokylinux.org/cgit.cgi/poky-contrib/log/?h=jingdonglu/distro
>>
>> Thanks,
>>      Jingdong Lu<jingdong.lu@windriver.com>
>> ---
>>
>
> Jingdong,
>
>
>
> Why do you need the do_install?  Can the standard do_install not work 
> correctly for this recipe?
Because we need add some options to make install, eg, 
UCBINSTALL=install, I didn't use standard do_install.

>   meta/recipes-extended/mailx/mailx_12.4.bb          |   18 
> ++++++++++++++++++
> Can you please add a SUMMARY and SRC_URI checksums to the mailx recipe.
>
> Is the PREFIX=/usr correct?  I note in other there is a ${D} or 
> ${D}${prefix}, please make sure you have the correct location here.
Because the default value of PREFIX is /usr/local in Makefile, I change 
it into /usr and give this option.
>
> Please re-sumbit a v2 patch set.
I re-submit patch set.
Thank you!
>
>


-- 
Lu Jingdong
jingdong.lu@windriver.com
China, Wind River



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

* Re: [PATCH 0/3] Fix failures of LSB.
  2010-12-22  9:53   ` Lu Jingdong
@ 2010-12-22 11:11     ` Richard Purdie
  2010-12-22 15:21     ` Saul Wold
  1 sibling, 0 replies; 8+ messages in thread
From: Richard Purdie @ 2010-12-22 11:11 UTC (permalink / raw)
  To: Lu Jingdong; +Cc: poky

On Wed, 2010-12-22 at 17:53 +0800, Lu Jingdong wrote:
> > Is the PREFIX=/usr correct?  I note in other there is a ${D} or 
> > ${D}${prefix}, please make sure you have the correct location here.
> Because the default value of PREFIX is /usr/local in Makefile, I change 
> it into /usr and give this option.

I'd suggest using PREFIX=${prefix} and then if someone wants the change
the layout using our standard variables, they can.

Cheers,

Richard



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

* Re: [PATCH 0/3] Fix failures of LSB.
  2010-12-22  9:53   ` Lu Jingdong
  2010-12-22 11:11     ` Richard Purdie
@ 2010-12-22 15:21     ` Saul Wold
  1 sibling, 0 replies; 8+ messages in thread
From: Saul Wold @ 2010-12-22 15:21 UTC (permalink / raw)
  To: Lu Jingdong; +Cc: poky

On 12/22/2010 01:53 AM, Lu Jingdong wrote:
> On 12/22/2010 08:41 AM, Saul Wold wrote:
>> On 12/21/2010 01:54 AM, Jingdong Lu wrote:
>>> Pull URL: git://git.pokylinux.org/poky-contrib.git
>>> Branch: jingdonglu/distro
>>> Browse:
>>> http://git.pokylinux.org/cgit.cgi/poky-contrib/log/?h=jingdonglu/distro
>>>
>>> Thanks,
>>> Jingdong Lu<jingdong.lu@windriver.com>
>>> ---
>>>
>>
>> Jingdong,
>>
>>
>>
>> Why do you need the do_install? Can the standard do_install not work
>> correctly for this recipe?
> Because we need add some options to make install, eg,
> UCBINSTALL=install, I didn't use standard do_install.
>
>> meta/recipes-extended/mailx/mailx_12.4.bb | 18 ++++++++++++++++++
>> Can you please add a SUMMARY and SRC_URI checksums to the mailx recipe.
>>
Jingdong,

You added SRC_URI Checksums, but not the SUMMARY, also see Richard's 
comments about using ${prefix}, please re-submit a v3 of this patch.

Sau!

>> Is the PREFIX=/usr correct? I note in other there is a ${D} or
>> ${D}${prefix}, please make sure you have the correct location here.
> Because the default value of PREFIX is /usr/local in Makefile, I change
> it into /usr and give this option.
>>
>> Please re-sumbit a v2 patch set.
> I re-submit patch set.
> Thank you!
>>
>>
>
>


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

end of thread, other threads:[~2010-12-22 15:21 UTC | newest]

Thread overview: 8+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2010-12-21  9:54 [PATCH 0/3] Fix failures of LSB Jingdong Lu
2010-12-21  9:54 ` [PATCH 1/3] perl: Add GDBM_File into perl extension Jingdong Lu
2010-12-21  9:54 ` [PATCH 2/3] gcc: Add "--enable-clocale=gnu" option explicitly Jingdong Lu
2010-12-21  9:54 ` [PATCH 3/3] mailx: Add mailx Jingdong Lu
2010-12-22  0:41 ` [PATCH 0/3] Fix failures of LSB Saul Wold
2010-12-22  9:53   ` Lu Jingdong
2010-12-22 11:11     ` Richard Purdie
2010-12-22 15:21     ` Saul Wold

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.