| Submitter | Andreas Müller |
|---|---|
| Date | Jan. 2, 2013, 3:16 p.m. |
| Message ID | <1357139774-4364-2-git-send-email-schnitzeltony@googlemail.com> |
| Download | mbox | patch |
| Permalink | /patch/41869/ |
| State | Accepted, archived |
| Headers | show |
Comments
On Wed, Jan 2, 2013 at 10:16 AM, Andreas Müller <schnitzeltony@googlemail.com> wrote: > > Signed-off-by: Andreas Müller <schnitzeltony@googlemail.com> > --- > meta-xfce/recipes-xfce/exo/exo/configure.patch | 4 ++-- > .../exo/{exo_0.8.0.bb => exo_0.10.2.bb} | 4 ++-- > 2 files changed, 4 insertions(+), 4 deletions(-) > rename meta-xfce/recipes-xfce/exo/{exo_0.8.0.bb => exo_0.10.2.bb} (87%) There seems to be a missing dependency on some Perl modules[1]: | checking for perl module URI::Escape... no | checking for perl module URI::file... no | checking for perl module URI::URL... no | configure: error: Atleast one of the required Perl modules (URI::Escape, URI::file and URI::URL) was not found on your system | Configure failed. The contents of all config.log files follows to aid debugging [1] https://s3.amazonaws.com/beagleboard/angstrom-2013-03-30-16%3A24%3A13/build.log I'm working on a patch. > > > diff --git a/meta-xfce/recipes-xfce/exo/exo/configure.patch b/meta-xfce/recipes-xfce/exo/exo/configure.patch > index 2ccfcfc..ef27e42 100644 > --- a/meta-xfce/recipes-xfce/exo/exo/configure.patch > +++ b/meta-xfce/recipes-xfce/exo/exo/configure.patch > @@ -1,5 +1,5 @@ > ---- exo-0.3.4/configure.in~ 2007-12-02 10:37:06.000000000 -0200 > -+++ exo-0.3.4/configure.in 2008-06-05 17:21:42.000000000 -0300 > +--- a/configure.ac 2007-12-02 10:37:06.000000000 -0200 > ++++ b/configure.ac 2008-06-05 17:21:42.000000000 -0300 > @@ -127,22 +127,24 @@ > dnl *************************************** > dnl *** Check for strftime() extensions *** > diff --git a/meta-xfce/recipes-xfce/exo/exo_0.8.0.bb b/meta-xfce/recipes-xfce/exo/exo_0.10.2.bb > similarity index 87% > rename from meta-xfce/recipes-xfce/exo/exo_0.8.0.bb > rename to meta-xfce/recipes-xfce/exo/exo_0.10.2.bb > index af9103f..4fdfd48 100644 > --- a/meta-xfce/recipes-xfce/exo/exo_0.8.0.bb > +++ b/meta-xfce/recipes-xfce/exo/exo_0.10.2.bb > @@ -13,8 +13,8 @@ SRC_URI += " \ > file://gnome-mount \ > " > > -SRC_URI[md5sum] = "189bd19210e1d7d8601be1cdf27bf259" > -SRC_URI[sha256sum] = "6e21aa30692affcb45fc8283d034da4a02221d26e3e1facb968d04fed4ba05b0" > +SRC_URI[md5sum] = "c70f2a217811bfba2e62f938d4b8f748" > +SRC_URI[sha256sum] = "b385828bf8a38204da3254b57fdfa25a72694495aa189fabd5040f707eec76ce" > > # see http://wiki.xfce.org/gnomemount-replacement > do_install_append () { > -- > 1.7.4.4 > > > _______________________________________________ > Openembedded-devel mailing list > Openembedded-devel@lists.openembedded.org > http://lists.linuxtogo.org/cgi-bin/mailman/listinfo/openembedded-devel
On Sat, Mar 30, 2013 at 1:05 PM, Jason Kridner <jkridner@beagleboard.org> wrote: > On Wed, Jan 2, 2013 at 10:16 AM, Andreas Müller > <schnitzeltony@googlemail.com> wrote: >> >> Signed-off-by: Andreas Müller <schnitzeltony@googlemail.com> >> --- >> meta-xfce/recipes-xfce/exo/exo/configure.patch | 4 ++-- >> .../exo/{exo_0.8.0.bb => exo_0.10.2.bb} | 4 ++-- >> 2 files changed, 4 insertions(+), 4 deletions(-) >> rename meta-xfce/recipes-xfce/exo/{exo_0.8.0.bb => exo_0.10.2.bb} (87%) > > > There seems to be a missing dependency on some Perl modules[1]: > > | checking for perl module URI::Escape... no > | checking for perl module URI::file... no > | checking for perl module URI::URL... no > | configure: error: Atleast one of the required Perl modules > (URI::Escape, URI::file and URI::URL) was not found on your system > | Configure failed. The contents of all config.log files follows to > aid debugging > > [1] https://s3.amazonaws.com/beagleboard/angstrom-2013-03-30-16%3A24%3A13/build.log > > I'm working on a patch. k, it seems that the builds use the Perl packages in the host system and not perl-native, so probably the right thing to do is for me to simply add it to my host system. For Ubuntu, that is 'sudo apt-get install liburi-perl'. Is this something we'd want to avoid having as a host dependency in the future? > >> >> >> diff --git a/meta-xfce/recipes-xfce/exo/exo/configure.patch b/meta-xfce/recipes-xfce/exo/exo/configure.patch >> index 2ccfcfc..ef27e42 100644 >> --- a/meta-xfce/recipes-xfce/exo/exo/configure.patch >> +++ b/meta-xfce/recipes-xfce/exo/exo/configure.patch >> @@ -1,5 +1,5 @@ >> ---- exo-0.3.4/configure.in~ 2007-12-02 10:37:06.000000000 -0200 >> -+++ exo-0.3.4/configure.in 2008-06-05 17:21:42.000000000 -0300 >> +--- a/configure.ac 2007-12-02 10:37:06.000000000 -0200 >> ++++ b/configure.ac 2008-06-05 17:21:42.000000000 -0300 >> @@ -127,22 +127,24 @@ >> dnl *************************************** >> dnl *** Check for strftime() extensions *** >> diff --git a/meta-xfce/recipes-xfce/exo/exo_0.8.0.bb b/meta-xfce/recipes-xfce/exo/exo_0.10.2.bb >> similarity index 87% >> rename from meta-xfce/recipes-xfce/exo/exo_0.8.0.bb >> rename to meta-xfce/recipes-xfce/exo/exo_0.10.2.bb >> index af9103f..4fdfd48 100644 >> --- a/meta-xfce/recipes-xfce/exo/exo_0.8.0.bb >> +++ b/meta-xfce/recipes-xfce/exo/exo_0.10.2.bb >> @@ -13,8 +13,8 @@ SRC_URI += " \ >> file://gnome-mount \ >> " >> >> -SRC_URI[md5sum] = "189bd19210e1d7d8601be1cdf27bf259" >> -SRC_URI[sha256sum] = "6e21aa30692affcb45fc8283d034da4a02221d26e3e1facb968d04fed4ba05b0" >> +SRC_URI[md5sum] = "c70f2a217811bfba2e62f938d4b8f748" >> +SRC_URI[sha256sum] = "b385828bf8a38204da3254b57fdfa25a72694495aa189fabd5040f707eec76ce" >> >> # see http://wiki.xfce.org/gnomemount-replacement >> do_install_append () { >> -- >> 1.7.4.4 >> >> >> _______________________________________________ >> Openembedded-devel mailing list >> Openembedded-devel@lists.openembedded.org >> http://lists.linuxtogo.org/cgi-bin/mailman/listinfo/openembedded-devel
On Sat, Mar 30, 2013 at 01:14:13PM -0400, Jason Kridner wrote: > On Sat, Mar 30, 2013 at 1:05 PM, Jason Kridner <jkridner@beagleboard.org> wrote: > > On Wed, Jan 2, 2013 at 10:16 AM, Andreas Müller > > <schnitzeltony@googlemail.com> wrote: > >> > >> Signed-off-by: Andreas Müller <schnitzeltony@googlemail.com> > >> --- > >> meta-xfce/recipes-xfce/exo/exo/configure.patch | 4 ++-- > >> .../exo/{exo_0.8.0.bb => exo_0.10.2.bb} | 4 ++-- > >> 2 files changed, 4 insertions(+), 4 deletions(-) > >> rename meta-xfce/recipes-xfce/exo/{exo_0.8.0.bb => exo_0.10.2.bb} (87%) > > > > > > There seems to be a missing dependency on some Perl modules[1]: > > > > | checking for perl module URI::Escape... no > > | checking for perl module URI::file... no > > | checking for perl module URI::URL... no > > | configure: error: Atleast one of the required Perl modules > > (URI::Escape, URI::file and URI::URL) was not found on your system > > | Configure failed. The contents of all config.log files follows to > > aid debugging > > > > [1] https://s3.amazonaws.com/beagleboard/angstrom-2013-03-30-16%3A24%3A13/build.log > > > > I'm working on a patch. > > k, it seems that the builds use the Perl packages in the host system > and not perl-native, so probably the right thing to do is for me to > simply add it to my host system. > > For Ubuntu, that is 'sudo apt-get install liburi-perl'. > > Is this something we'd want to avoid having as a host dependency in the future? I would prefer to inherit perlnative and add it as dependency. If you managed to build the rest without liburi-perl, then it's not so common on host.. > > > > >> > >> > >> diff --git a/meta-xfce/recipes-xfce/exo/exo/configure.patch b/meta-xfce/recipes-xfce/exo/exo/configure.patch > >> index 2ccfcfc..ef27e42 100644 > >> --- a/meta-xfce/recipes-xfce/exo/exo/configure.patch > >> +++ b/meta-xfce/recipes-xfce/exo/exo/configure.patch > >> @@ -1,5 +1,5 @@ > >> ---- exo-0.3.4/configure.in~ 2007-12-02 10:37:06.000000000 -0200 > >> -+++ exo-0.3.4/configure.in 2008-06-05 17:21:42.000000000 -0300 > >> +--- a/configure.ac 2007-12-02 10:37:06.000000000 -0200 > >> ++++ b/configure.ac 2008-06-05 17:21:42.000000000 -0300 > >> @@ -127,22 +127,24 @@ > >> dnl *************************************** > >> dnl *** Check for strftime() extensions *** > >> diff --git a/meta-xfce/recipes-xfce/exo/exo_0.8.0.bb b/meta-xfce/recipes-xfce/exo/exo_0.10.2.bb > >> similarity index 87% > >> rename from meta-xfce/recipes-xfce/exo/exo_0.8.0.bb > >> rename to meta-xfce/recipes-xfce/exo/exo_0.10.2.bb > >> index af9103f..4fdfd48 100644 > >> --- a/meta-xfce/recipes-xfce/exo/exo_0.8.0.bb > >> +++ b/meta-xfce/recipes-xfce/exo/exo_0.10.2.bb > >> @@ -13,8 +13,8 @@ SRC_URI += " \ > >> file://gnome-mount \ > >> " > >> > >> -SRC_URI[md5sum] = "189bd19210e1d7d8601be1cdf27bf259" > >> -SRC_URI[sha256sum] = "6e21aa30692affcb45fc8283d034da4a02221d26e3e1facb968d04fed4ba05b0" > >> +SRC_URI[md5sum] = "c70f2a217811bfba2e62f938d4b8f748" > >> +SRC_URI[sha256sum] = "b385828bf8a38204da3254b57fdfa25a72694495aa189fabd5040f707eec76ce" > >> > >> # see http://wiki.xfce.org/gnomemount-replacement > >> do_install_append () { > >> -- > >> 1.7.4.4 > >> > >> > >> _______________________________________________ > >> Openembedded-devel mailing list > >> Openembedded-devel@lists.openembedded.org > >> http://lists.linuxtogo.org/cgi-bin/mailman/listinfo/openembedded-devel > > _______________________________________________ > Openembedded-devel mailing list > Openembedded-devel@lists.openembedded.org > http://lists.linuxtogo.org/cgi-bin/mailman/listinfo/openembedded-devel
On Sat, Mar 30, 2013 at 2:14 PM, Jason Kridner <jkridner@beagleboard.org> wrote: > On Sat, Mar 30, 2013 at 1:05 PM, Jason Kridner <jkridner@beagleboard.org> wrote: >> On Wed, Jan 2, 2013 at 10:16 AM, Andreas Müller >> <schnitzeltony@googlemail.com> wrote: >>> >>> Signed-off-by: Andreas Müller <schnitzeltony@googlemail.com> >>> --- >>> meta-xfce/recipes-xfce/exo/exo/configure.patch | 4 ++-- >>> .../exo/{exo_0.8.0.bb => exo_0.10.2.bb} | 4 ++-- >>> 2 files changed, 4 insertions(+), 4 deletions(-) >>> rename meta-xfce/recipes-xfce/exo/{exo_0.8.0.bb => exo_0.10.2.bb} (87%) >> >> >> There seems to be a missing dependency on some Perl modules[1]: >> >> | checking for perl module URI::Escape... no >> | checking for perl module URI::file... no >> | checking for perl module URI::URL... no >> | configure: error: Atleast one of the required Perl modules >> (URI::Escape, URI::file and URI::URL) was not found on your system >> | Configure failed. The contents of all config.log files follows to >> aid debugging >> >> [1] https://s3.amazonaws.com/beagleboard/angstrom-2013-03-30-16%3A24%3A13/build.log >> >> I'm working on a patch. > > k, it seems that the builds use the Perl packages in the host system > and not perl-native, so probably the right thing to do is for me to > simply add it to my host system. This is the wrong fix. > For Ubuntu, that is 'sudo apt-get install liburi-perl'. > > Is this something we'd want to avoid having as a host dependency in the future? As Martin said, add inherit perlnative and the dependency; it should fix it. -- Otavio Salvador O.S. Systems E-mail: otavio@ossystems.com.br http://www.ossystems.com.br Mobile: +55 53 9981-7854 http://projetos.ossystems.com.br
Patch
diff --git a/meta-xfce/recipes-xfce/exo/exo/configure.patch b/meta-xfce/recipes-xfce/exo/exo/configure.patch index 2ccfcfc..ef27e42 100644 --- a/meta-xfce/recipes-xfce/exo/exo/configure.patch +++ b/meta-xfce/recipes-xfce/exo/exo/configure.patch @@ -1,5 +1,5 @@ ---- exo-0.3.4/configure.in~ 2007-12-02 10:37:06.000000000 -0200 -+++ exo-0.3.4/configure.in 2008-06-05 17:21:42.000000000 -0300 +--- a/configure.ac 2007-12-02 10:37:06.000000000 -0200 ++++ b/configure.ac 2008-06-05 17:21:42.000000000 -0300 @@ -127,22 +127,24 @@ dnl *************************************** dnl *** Check for strftime() extensions *** diff --git a/meta-xfce/recipes-xfce/exo/exo_0.8.0.bb b/meta-xfce/recipes-xfce/exo/exo_0.10.2.bb similarity index 87% rename from meta-xfce/recipes-xfce/exo/exo_0.8.0.bb rename to meta-xfce/recipes-xfce/exo/exo_0.10.2.bb index af9103f..4fdfd48 100644 --- a/meta-xfce/recipes-xfce/exo/exo_0.8.0.bb +++ b/meta-xfce/recipes-xfce/exo/exo_0.10.2.bb @@ -13,8 +13,8 @@ SRC_URI += " \ file://gnome-mount \ " -SRC_URI[md5sum] = "189bd19210e1d7d8601be1cdf27bf259" -SRC_URI[sha256sum] = "6e21aa30692affcb45fc8283d034da4a02221d26e3e1facb968d04fed4ba05b0" +SRC_URI[md5sum] = "c70f2a217811bfba2e62f938d4b8f748" +SRC_URI[sha256sum] = "b385828bf8a38204da3254b57fdfa25a72694495aa189fabd5040f707eec76ce" # see http://wiki.xfce.org/gnomemount-replacement do_install_append () {
Signed-off-by: Andreas Müller <schnitzeltony@googlemail.com> --- meta-xfce/recipes-xfce/exo/exo/configure.patch | 4 ++-- .../exo/{exo_0.8.0.bb => exo_0.10.2.bb} | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) rename meta-xfce/recipes-xfce/exo/{exo_0.8.0.bb => exo_0.10.2.bb} (87%)