* [PATCH 0/1] Fix Yocto 3069 @ 2012-10-25 9:50 Kang Kai 2012-10-25 9:50 ` [PATCH 1/1] perl: update dependencies Kang Kai 2012-10-25 20:03 ` [PATCH 0/1] Fix Yocto 3069 Saul Wold 0 siblings, 2 replies; 5+ messages in thread From: Kang Kai @ 2012-10-25 9:50 UTC (permalink / raw) To: richard.purdie; +Cc: Zhenfeng.Zhao, openembedded-core The following changes since commit 33440ee70623394d06a4b214c2be10788cba6d08: bitbake: hob/settings: add a scroll bar for the box with mirrors (2012-10-24 21:13:08 +0100) are available in the git repository at: git://git.pokylinux.org/poky-contrib kangkai/fix-3069 http://git.pokylinux.org/cgit.cgi/poky-contrib/log/?h=kangkai/fix-3069 Kang Kai (1): perl: update dependencies .../recipes-devtools/perl/perl-rdepends_5.14.2.inc | 2 ++ meta/recipes-devtools/perl/perl_5.14.2.bb | 2 +- 2 files changed, 3 insertions(+), 1 deletions(-) -- 1.7.5.4 ^ permalink raw reply [flat|nested] 5+ messages in thread
* [PATCH 1/1] perl: update dependencies 2012-10-25 9:50 [PATCH 0/1] Fix Yocto 3069 Kang Kai @ 2012-10-25 9:50 ` Kang Kai 2012-10-25 14:54 ` Saul Wold 2012-10-25 20:03 ` [PATCH 0/1] Fix Yocto 3069 Saul Wold 1 sibling, 1 reply; 5+ messages in thread From: Kang Kai @ 2012-10-25 9:50 UTC (permalink / raw) To: richard.purdie; +Cc: Zhenfeng.Zhao, openembedded-core Update dependencies for perl modules again. When only install perl-module-file-glob, run perl script with "require File::Glob;" will fail. Update dependencies to fix that. [Yocto 3069] Signed-off-by: Kang Kai <kai.kang@windriver.com> --- .../recipes-devtools/perl/perl-rdepends_5.14.2.inc | 2 ++ meta/recipes-devtools/perl/perl_5.14.2.bb | 2 +- 2 files changed, 3 insertions(+), 1 deletions(-) diff --git a/meta/recipes-devtools/perl/perl-rdepends_5.14.2.inc b/meta/recipes-devtools/perl/perl-rdepends_5.14.2.inc index 2707fe8..39972ca 100644 --- a/meta/recipes-devtools/perl/perl-rdepends_5.14.2.inc +++ b/meta/recipes-devtools/perl/perl-rdepends_5.14.2.inc @@ -13,8 +13,10 @@ # Some additional dependencies that the above doesn't manage to figure out # Please take care that exporter depends exporter-heavy, not reverse +RDEPENDS_${PN}-module-dynaloader += "${PN}-module-carp" RDEPENDS_${PN}-module-exporter += "${PN}-module-exporter-heavy" RDEPENDS_${PN}-module-file-glob += "${PN}-module-feature" +RDEPENDS_${PN}-module-file-glob += "${PN}-module-file" RDEPENDS_${PN}-module-file-path += "${PN}-module-cwd" RDEPENDS_${PN}-module-file-spec += "${PN}-module-file-spec-unix" RDEPENDS_${PN}-module-file-stat += "${PN}-module-fcntl" diff --git a/meta/recipes-devtools/perl/perl_5.14.2.bb b/meta/recipes-devtools/perl/perl_5.14.2.bb index 3ede831..1e1eb04 100644 --- a/meta/recipes-devtools/perl/perl_5.14.2.bb +++ b/meta/recipes-devtools/perl/perl_5.14.2.bb @@ -7,7 +7,7 @@ LIC_FILES_CHKSUM = "file://Copying;md5=2b4c6ffbcfcbdee469f02565f253d81a \ # We need gnugrep (for -I) DEPENDS = "virtual/db grep-native" DEPENDS += "gdbm zlib" -PR = "r13" +PR = "r14" # 5.10.1 has Module::Build built-in PROVIDES += "libmodule-build-perl" -- 1.7.5.4 ^ permalink raw reply related [flat|nested] 5+ messages in thread
* Re: [PATCH 1/1] perl: update dependencies 2012-10-25 9:50 ` [PATCH 1/1] perl: update dependencies Kang Kai @ 2012-10-25 14:54 ` Saul Wold 2012-10-26 1:40 ` Kang Kai 0 siblings, 1 reply; 5+ messages in thread From: Saul Wold @ 2012-10-25 14:54 UTC (permalink / raw) To: Kang Kai; +Cc: Zhenfeng.Zhao, openembedded-core On 10/25/2012 02:50 AM, Kang Kai wrote: > Update dependencies for perl modules again. When only install > perl-module-file-glob, run perl script with "require File::Glob;" will > fail. Update dependencies to fix that. > Is this just a point fix for the File::Glob issue? As I was originally researching this issue it seemed to me that the perl_rdepends was incorrect, the script used to generate it did not actually work, please review the bug comment. Are you going to look at the bigger issue? Thanks Sau! > [Yocto 3069] > > Signed-off-by: Kang Kai <kai.kang@windriver.com> > --- > .../recipes-devtools/perl/perl-rdepends_5.14.2.inc | 2 ++ > meta/recipes-devtools/perl/perl_5.14.2.bb | 2 +- > 2 files changed, 3 insertions(+), 1 deletions(-) > > diff --git a/meta/recipes-devtools/perl/perl-rdepends_5.14.2.inc b/meta/recipes-devtools/perl/perl-rdepends_5.14.2.inc > index 2707fe8..39972ca 100644 > --- a/meta/recipes-devtools/perl/perl-rdepends_5.14.2.inc > +++ b/meta/recipes-devtools/perl/perl-rdepends_5.14.2.inc > @@ -13,8 +13,10 @@ > > # Some additional dependencies that the above doesn't manage to figure out > # Please take care that exporter depends exporter-heavy, not reverse > +RDEPENDS_${PN}-module-dynaloader += "${PN}-module-carp" > RDEPENDS_${PN}-module-exporter += "${PN}-module-exporter-heavy" > RDEPENDS_${PN}-module-file-glob += "${PN}-module-feature" > +RDEPENDS_${PN}-module-file-glob += "${PN}-module-file" > RDEPENDS_${PN}-module-file-path += "${PN}-module-cwd" > RDEPENDS_${PN}-module-file-spec += "${PN}-module-file-spec-unix" > RDEPENDS_${PN}-module-file-stat += "${PN}-module-fcntl" > diff --git a/meta/recipes-devtools/perl/perl_5.14.2.bb b/meta/recipes-devtools/perl/perl_5.14.2.bb > index 3ede831..1e1eb04 100644 > --- a/meta/recipes-devtools/perl/perl_5.14.2.bb > +++ b/meta/recipes-devtools/perl/perl_5.14.2.bb > @@ -7,7 +7,7 @@ LIC_FILES_CHKSUM = "file://Copying;md5=2b4c6ffbcfcbdee469f02565f253d81a \ > # We need gnugrep (for -I) > DEPENDS = "virtual/db grep-native" > DEPENDS += "gdbm zlib" > -PR = "r13" > +PR = "r14" > > # 5.10.1 has Module::Build built-in > PROVIDES += "libmodule-build-perl" > ^ permalink raw reply [flat|nested] 5+ messages in thread
* Re: [PATCH 1/1] perl: update dependencies 2012-10-25 14:54 ` Saul Wold @ 2012-10-26 1:40 ` Kang Kai 0 siblings, 0 replies; 5+ messages in thread From: Kang Kai @ 2012-10-26 1:40 UTC (permalink / raw) To: Saul Wold; +Cc: Zhenfeng.Zhao, Yang, Liezhi, openembedded-core On 2012年10月25日 22:54, Saul Wold wrote: > On 10/25/2012 02:50 AM, Kang Kai wrote: >> Update dependencies for perl modules again. When only install >> perl-module-file-glob, run perl script with "require File::Glob;" will >> fail. Update dependencies to fix that. >> > Is this just a point fix for the File::Glob issue? Fix perl-module-dynaloader too. It didn't expose to run failed when update the deps among perl modules. > > As I was originally researching this issue it seemed to me that the > perl_rdepends was incorrect, the script used to generate it did not > actually work, please review the bug comment. > > Are you going to look at the bigger issue? I'm glad to. But this may need more time. Regards, Kai > > Thanks > Sau! > >> [Yocto 3069] >> >> Signed-off-by: Kang Kai <kai.kang@windriver.com> >> --- >> .../recipes-devtools/perl/perl-rdepends_5.14.2.inc | 2 ++ >> meta/recipes-devtools/perl/perl_5.14.2.bb | 2 +- >> 2 files changed, 3 insertions(+), 1 deletions(-) >> >> diff --git a/meta/recipes-devtools/perl/perl-rdepends_5.14.2.inc >> b/meta/recipes-devtools/perl/perl-rdepends_5.14.2.inc >> index 2707fe8..39972ca 100644 >> --- a/meta/recipes-devtools/perl/perl-rdepends_5.14.2.inc >> +++ b/meta/recipes-devtools/perl/perl-rdepends_5.14.2.inc >> @@ -13,8 +13,10 @@ >> >> # Some additional dependencies that the above doesn't manage to >> figure out >> # Please take care that exporter depends exporter-heavy, not reverse >> +RDEPENDS_${PN}-module-dynaloader += "${PN}-module-carp" >> RDEPENDS_${PN}-module-exporter += "${PN}-module-exporter-heavy" >> RDEPENDS_${PN}-module-file-glob += "${PN}-module-feature" >> +RDEPENDS_${PN}-module-file-glob += "${PN}-module-file" >> RDEPENDS_${PN}-module-file-path += "${PN}-module-cwd" >> RDEPENDS_${PN}-module-file-spec += "${PN}-module-file-spec-unix" >> RDEPENDS_${PN}-module-file-stat += "${PN}-module-fcntl" >> diff --git a/meta/recipes-devtools/perl/perl_5.14.2.bb >> b/meta/recipes-devtools/perl/perl_5.14.2.bb >> index 3ede831..1e1eb04 100644 >> --- a/meta/recipes-devtools/perl/perl_5.14.2.bb >> +++ b/meta/recipes-devtools/perl/perl_5.14.2.bb >> @@ -7,7 +7,7 @@ LIC_FILES_CHKSUM = >> "file://Copying;md5=2b4c6ffbcfcbdee469f02565f253d81a \ >> # We need gnugrep (for -I) >> DEPENDS = "virtual/db grep-native" >> DEPENDS += "gdbm zlib" >> -PR = "r13" >> +PR = "r14" >> >> # 5.10.1 has Module::Build built-in >> PROVIDES += "libmodule-build-perl" >> > ^ permalink raw reply [flat|nested] 5+ messages in thread
* Re: [PATCH 0/1] Fix Yocto 3069 2012-10-25 9:50 [PATCH 0/1] Fix Yocto 3069 Kang Kai 2012-10-25 9:50 ` [PATCH 1/1] perl: update dependencies Kang Kai @ 2012-10-25 20:03 ` Saul Wold 1 sibling, 0 replies; 5+ messages in thread From: Saul Wold @ 2012-10-25 20:03 UTC (permalink / raw) To: Kang Kai Cc: Zhao, Zhenfeng1, 'Patches and discussions about the oe-core layer' On 10/25/2012 02:50 AM, Kang Kai wrote: > The following changes since commit 33440ee70623394d06a4b214c2be10788cba6d08: > > bitbake: hob/settings: add a scroll bar for the box with mirrors (2012-10-24 21:13:08 +0100) > > are available in the git repository at: > git://git.pokylinux.org/poky-contrib kangkai/fix-3069 > http://git.pokylinux.org/cgit.cgi/poky-contrib/log/?h=kangkai/fix-3069 > > Kang Kai (1): > perl: update dependencies > > .../recipes-devtools/perl/perl-rdepends_5.14.2.inc | 2 ++ > meta/recipes-devtools/perl/perl_5.14.2.bb | 2 +- > 2 files changed, 3 insertions(+), 1 deletions(-) > Merged into OE-Core Thanks Sau! ^ permalink raw reply [flat|nested] 5+ messages in thread
end of thread, other threads:[~2012-10-26 1:53 UTC | newest] Thread overview: 5+ messages (download: mbox.gz follow: Atom feed -- links below jump to the message on this page -- 2012-10-25 9:50 [PATCH 0/1] Fix Yocto 3069 Kang Kai 2012-10-25 9:50 ` [PATCH 1/1] perl: update dependencies Kang Kai 2012-10-25 14:54 ` Saul Wold 2012-10-26 1:40 ` Kang Kai 2012-10-25 20:03 ` [PATCH 0/1] Fix Yocto 3069 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.