All of lore.kernel.org
 help / color / mirror / Atom feed
* [meta-oe][PATCH 1/2] glmark2: Rework recipe to use the 'waf' class
@ 2014-03-18 16:28 Otavio Salvador
  2014-03-18 16:28 ` [meta-oe][PATCH 2/2] libmicrohttpd: Update to 0.9.34 Otavio Salvador
  0 siblings, 1 reply; 5+ messages in thread
From: Otavio Salvador @ 2014-03-18 16:28 UTC (permalink / raw)
  To: Meta-OpenEmbedded Mailing listing; +Cc: Otavio Salvador

This removes the duplicated code and uses the OE-Core waf class.

Signed-off-by: Otavio Salvador <otavio@ossystems.com.br>
---
 meta-oe/recipes-benchmark/glmark2/glmark2_2012.12.bb | 14 +-------------
 1 file changed, 1 insertion(+), 13 deletions(-)

diff --git a/meta-oe/recipes-benchmark/glmark2/glmark2_2012.12.bb b/meta-oe/recipes-benchmark/glmark2/glmark2_2012.12.bb
index 9edee14..031e3b3 100644
--- a/meta-oe/recipes-benchmark/glmark2/glmark2_2012.12.bb
+++ b/meta-oe/recipes-benchmark/glmark2/glmark2_2012.12.bb
@@ -15,21 +15,9 @@ SRC_URI = "https://launchpad.net/${BPN}/trunk/${PV}/+download/${BP}.tar.gz"
 SRC_URI[md5sum] = "4f306664aa3886fa0cf93853603603f8"
 SRC_URI[sha256sum] = "bea6f9de2cdce376195bd91e4a2fdfdf80bf3e480abff8e05b90a6458c1deb47"
 
-inherit pkgconfig
+inherit waf pkgconfig
 
 PACKAGECONFIG ?= "gl gles2"
 
 PACKAGECONFIG[gl] = "--enable-gl,,virtual/libgl"
 PACKAGECONFIG[gles2] = "--enable-glesv2,,virtual/libgles2"
-
-do_configure() {
-	./waf configure --prefix=${prefix} ${EXTRA_OECONF}
-}
-
-do_compile() {
-	./waf build ${PARALLEL_MAKE}
-}
-
-do_install() {
-	./waf install --destdir=${D}
-}
-- 
1.9.0



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

* [meta-oe][PATCH 2/2] libmicrohttpd: Update to 0.9.34
  2014-03-18 16:28 [meta-oe][PATCH 1/2] glmark2: Rework recipe to use the 'waf' class Otavio Salvador
@ 2014-03-18 16:28 ` Otavio Salvador
  2014-03-18 19:06   ` Martin Jansa
  0 siblings, 1 reply; 5+ messages in thread
From: Otavio Salvador @ 2014-03-18 16:28 UTC (permalink / raw)
  To: Meta-OpenEmbedded Mailing listing; +Cc: Otavio Salvador

This update fixes the following build error:

,----[ Build error ]
| ...
| .../libmicrospdy.so: undefined reference to `SSL_get_error'
| .../libmicrospdy.so: undefined reference to `SSL_write'
| .../libmicrospdy.so: undefined reference to `SSL_free'
| ...
`----

Reported-by: Prabhu Sundararaj <prabhu.sundararaj@freescale.com>
Signed-off-by: Otavio Salvador <otavio@ossystems.com.br>
---
 .../{libmicrohttpd_0.9.33.bb => libmicrohttpd_0.9.34.bb}              | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)
 rename meta-oe/recipes-support/libmicrohttpd/{libmicrohttpd_0.9.33.bb => libmicrohttpd_0.9.34.bb} (85%)

diff --git a/meta-oe/recipes-support/libmicrohttpd/libmicrohttpd_0.9.33.bb b/meta-oe/recipes-support/libmicrohttpd/libmicrohttpd_0.9.34.bb
similarity index 85%
rename from meta-oe/recipes-support/libmicrohttpd/libmicrohttpd_0.9.33.bb
rename to meta-oe/recipes-support/libmicrohttpd/libmicrohttpd_0.9.34.bb
index 523b8dd..5de9390 100644
--- a/meta-oe/recipes-support/libmicrohttpd/libmicrohttpd_0.9.33.bb
+++ b/meta-oe/recipes-support/libmicrohttpd/libmicrohttpd_0.9.34.bb
@@ -6,8 +6,8 @@ SECTION = "net"
 DEPENDS = "libgcrypt gnutls"
 
 SRC_URI = "http://ftp.gnu.org/gnu/libmicrohttpd/${BPN}-${PV}.tar.gz"
-SRC_URI[md5sum] = "013b10f9de1cda5448b29c81305354a3"
-SRC_URI[sha256sum] = "d9587e8497548f820650cd607daf3615ea3272435779378983032c570f1cd559"
+SRC_URI[md5sum] = "2947eee13c2c8affb95023a0cb6fda0c"
+SRC_URI[sha256sum] = "29a2bfd4fd2ddf60c756b8c283291a134898e3cc143843be421a040be1b25a88"
 
 inherit autotools lib_package
 
-- 
1.9.0



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

* Re: [meta-oe][PATCH 2/2] libmicrohttpd: Update to 0.9.34
  2014-03-18 16:28 ` [meta-oe][PATCH 2/2] libmicrohttpd: Update to 0.9.34 Otavio Salvador
@ 2014-03-18 19:06   ` Martin Jansa
  2014-03-18 19:17     ` Martin Jansa
  0 siblings, 1 reply; 5+ messages in thread
From: Martin Jansa @ 2014-03-18 19:06 UTC (permalink / raw)
  To: openembedded-devel; +Cc: Otavio Salvador

[-- Attachment #1: Type: text/plain, Size: 2060 bytes --]

On Tue, Mar 18, 2014 at 01:28:23PM -0300, Otavio Salvador wrote:
> This update fixes the following build error:
> 
> ,----[ Build error ]
> | ...
> | .../libmicrospdy.so: undefined reference to `SSL_get_error'
> | .../libmicrospdy.so: undefined reference to `SSL_write'
> | .../libmicrospdy.so: undefined reference to `SSL_free'
> | ...
> `----

Is this v2 or the same as previous update?

> 
> Reported-by: Prabhu Sundararaj <prabhu.sundararaj@freescale.com>
> Signed-off-by: Otavio Salvador <otavio@ossystems.com.br>
> ---
>  .../{libmicrohttpd_0.9.33.bb => libmicrohttpd_0.9.34.bb}              | 4 ++--
>  1 file changed, 2 insertions(+), 2 deletions(-)
>  rename meta-oe/recipes-support/libmicrohttpd/{libmicrohttpd_0.9.33.bb => libmicrohttpd_0.9.34.bb} (85%)
> 
> diff --git a/meta-oe/recipes-support/libmicrohttpd/libmicrohttpd_0.9.33.bb b/meta-oe/recipes-support/libmicrohttpd/libmicrohttpd_0.9.34.bb
> similarity index 85%
> rename from meta-oe/recipes-support/libmicrohttpd/libmicrohttpd_0.9.33.bb
> rename to meta-oe/recipes-support/libmicrohttpd/libmicrohttpd_0.9.34.bb
> index 523b8dd..5de9390 100644
> --- a/meta-oe/recipes-support/libmicrohttpd/libmicrohttpd_0.9.33.bb
> +++ b/meta-oe/recipes-support/libmicrohttpd/libmicrohttpd_0.9.34.bb
> @@ -6,8 +6,8 @@ SECTION = "net"
>  DEPENDS = "libgcrypt gnutls"
>  
>  SRC_URI = "http://ftp.gnu.org/gnu/libmicrohttpd/${BPN}-${PV}.tar.gz"
> -SRC_URI[md5sum] = "013b10f9de1cda5448b29c81305354a3"
> -SRC_URI[sha256sum] = "d9587e8497548f820650cd607daf3615ea3272435779378983032c570f1cd559"
> +SRC_URI[md5sum] = "2947eee13c2c8affb95023a0cb6fda0c"
> +SRC_URI[sha256sum] = "29a2bfd4fd2ddf60c756b8c283291a134898e3cc143843be421a040be1b25a88"
>  
>  inherit autotools lib_package
>  
> -- 
> 1.9.0
> 
> -- 
> _______________________________________________
> Openembedded-devel mailing list
> Openembedded-devel@lists.openembedded.org
> http://lists.openembedded.org/mailman/listinfo/openembedded-devel

-- 
Martin 'JaMa' Jansa     jabber: Martin.Jansa@gmail.com

[-- Attachment #2: Digital signature --]
[-- Type: application/pgp-signature, Size: 205 bytes --]

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

* Re: [meta-oe][PATCH 2/2] libmicrohttpd: Update to 0.9.34
  2014-03-18 19:06   ` Martin Jansa
@ 2014-03-18 19:17     ` Martin Jansa
  2014-03-18 19:53       ` Otavio Salvador
  0 siblings, 1 reply; 5+ messages in thread
From: Martin Jansa @ 2014-03-18 19:17 UTC (permalink / raw)
  To: openembedded-devel; +Cc: Otavio Salvador

[-- Attachment #1: Type: text/plain, Size: 2414 bytes --]

On Tue, Mar 18, 2014 at 08:06:02PM +0100, Martin Jansa wrote:
> On Tue, Mar 18, 2014 at 01:28:23PM -0300, Otavio Salvador wrote:
> > This update fixes the following build error:
> > 
> > ,----[ Build error ]
> > | ...
> > | .../libmicrospdy.so: undefined reference to `SSL_get_error'
> > | .../libmicrospdy.so: undefined reference to `SSL_write'
> > | .../libmicrospdy.so: undefined reference to `SSL_free'
> > | ...
> > `----
> 
> Is this v2 or the same as previous update?

Hmm it's identical, please don't resend identical changes and if you do
it by accident, then please update status on patchwork.

> > Reported-by: Prabhu Sundararaj <prabhu.sundararaj@freescale.com>
> > Signed-off-by: Otavio Salvador <otavio@ossystems.com.br>
> > ---
> >  .../{libmicrohttpd_0.9.33.bb => libmicrohttpd_0.9.34.bb}              | 4 ++--
> >  1 file changed, 2 insertions(+), 2 deletions(-)
> >  rename meta-oe/recipes-support/libmicrohttpd/{libmicrohttpd_0.9.33.bb => libmicrohttpd_0.9.34.bb} (85%)
> > 
> > diff --git a/meta-oe/recipes-support/libmicrohttpd/libmicrohttpd_0.9.33.bb b/meta-oe/recipes-support/libmicrohttpd/libmicrohttpd_0.9.34.bb
> > similarity index 85%
> > rename from meta-oe/recipes-support/libmicrohttpd/libmicrohttpd_0.9.33.bb
> > rename to meta-oe/recipes-support/libmicrohttpd/libmicrohttpd_0.9.34.bb
> > index 523b8dd..5de9390 100644
> > --- a/meta-oe/recipes-support/libmicrohttpd/libmicrohttpd_0.9.33.bb
> > +++ b/meta-oe/recipes-support/libmicrohttpd/libmicrohttpd_0.9.34.bb
> > @@ -6,8 +6,8 @@ SECTION = "net"
> >  DEPENDS = "libgcrypt gnutls"
> >  
> >  SRC_URI = "http://ftp.gnu.org/gnu/libmicrohttpd/${BPN}-${PV}.tar.gz"
> > -SRC_URI[md5sum] = "013b10f9de1cda5448b29c81305354a3"
> > -SRC_URI[sha256sum] = "d9587e8497548f820650cd607daf3615ea3272435779378983032c570f1cd559"
> > +SRC_URI[md5sum] = "2947eee13c2c8affb95023a0cb6fda0c"
> > +SRC_URI[sha256sum] = "29a2bfd4fd2ddf60c756b8c283291a134898e3cc143843be421a040be1b25a88"
> >  
> >  inherit autotools lib_package
> >  
> > -- 
> > 1.9.0
> > 
> > -- 
> > _______________________________________________
> > Openembedded-devel mailing list
> > Openembedded-devel@lists.openembedded.org
> > http://lists.openembedded.org/mailman/listinfo/openembedded-devel
> 
> -- 
> Martin 'JaMa' Jansa     jabber: Martin.Jansa@gmail.com



-- 
Martin 'JaMa' Jansa     jabber: Martin.Jansa@gmail.com

[-- Attachment #2: Digital signature --]
[-- Type: application/pgp-signature, Size: 205 bytes --]

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

* Re: [meta-oe][PATCH 2/2] libmicrohttpd: Update to 0.9.34
  2014-03-18 19:17     ` Martin Jansa
@ 2014-03-18 19:53       ` Otavio Salvador
  0 siblings, 0 replies; 5+ messages in thread
From: Otavio Salvador @ 2014-03-18 19:53 UTC (permalink / raw)
  To: OpenEmbedded Devel List

On Tue, Mar 18, 2014 at 4:17 PM, Martin Jansa <martin.jansa@gmail.com> wrote:
> On Tue, Mar 18, 2014 at 08:06:02PM +0100, Martin Jansa wrote:
>> On Tue, Mar 18, 2014 at 01:28:23PM -0300, Otavio Salvador wrote:
>> > This update fixes the following build error:
>> >
>> > ,----[ Build error ]
>> > | ...
>> > | .../libmicrospdy.so: undefined reference to `SSL_get_error'
>> > | .../libmicrospdy.so: undefined reference to `SSL_write'
>> > | .../libmicrospdy.so: undefined reference to `SSL_free'
>> > | ...
>> > `----
>>
>> Is this v2 or the same as previous update?
>
> Hmm it's identical, please don't resend identical changes and if you do
> it by accident, then please update status on patchwork.

My fault.

-- 
Otavio Salvador                             O.S. Systems
http://www.ossystems.com.br        http://code.ossystems.com.br
Mobile: +55 (53) 9981-7854            Mobile: +1 (347) 903-9750


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

end of thread, other threads:[~2014-03-18 19:53 UTC | newest]

Thread overview: 5+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2014-03-18 16:28 [meta-oe][PATCH 1/2] glmark2: Rework recipe to use the 'waf' class Otavio Salvador
2014-03-18 16:28 ` [meta-oe][PATCH 2/2] libmicrohttpd: Update to 0.9.34 Otavio Salvador
2014-03-18 19:06   ` Martin Jansa
2014-03-18 19:17     ` Martin Jansa
2014-03-18 19:53       ` Otavio Salvador

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.