All of lore.kernel.org
 help / color / mirror / Atom feed
* [meta-oe][PATCH v2] Submitting cyassl recipe for consideration in being added to meta-oe/meta-networking/recipes-connectivity. Cyassl is a lightweight, embedded SSL/TLS library. For more information: www.wolfssl.com. The cyassl recipe is a fully functional bb file tested with the YoctoProject.
@ 2014-08-12 19:42 lchristina26
  2014-08-12 22:12 ` Martin Jansa
  0 siblings, 1 reply; 6+ messages in thread
From: lchristina26 @ 2014-08-12 19:42 UTC (permalink / raw)
  To: openembedded-devel

Signed-off-by: Leah Thompson <lchristina26@hotmail.com>
---
 .../recipes-connectivity/cyassl/cyassl_3.1.0.bb     | 21 +++++++++++++++++++++
 1 file changed, 21 insertions(+)
 create mode 100644 meta-networking/recipes-connectivity/cyassl/cyassl_3.1.0.bb

diff --git a/meta-networking/recipes-connectivity/cyassl/cyassl_3.1.0.bb b/meta-networking/recipes-connectivity/cyassl/cyassl_3.1.0.bb
new file mode 100644
index 0000000..441d321
--- /dev/null
+++ b/meta-networking/recipes-connectivity/cyassl/cyassl_3.1.0.bb
@@ -0,0 +1,21 @@
+SUMMARY = "CyaSSL Embedded SSL Library"
+DESCRIPTION = "CyaSSL is a lightweight SSL library written in C and \
+               optimized for embedded and RTOS environments. It can be \
+               Up to 20 times smaller than OpenSSL while still supporting \
+               a full TLS 1.2 client and server."
+HOMEPAGE = "http://www.yassl.com/yaSSL/Products-cyassl.html"
+BUGTRACKER = "http://github.com/cyassl/cyassl/issues"
+SECTION = "libs/network"
+LICENSE = "GPLv2"
+LIC_FILES_CHKSUM = "file://COPYING;md5=b234ee4d69f5fce4486a80fdaf4a4263"
+
+SRC_URI = "http://www.yassl.com/cyassl-${PV}.zip"
+
+
+SRC_URI[md5sum] = "72477eb50697e759d309c49cb1aef18a"
+SRC_URI[sha256sum] = "85a79009d2a7468910dfb1e4b975e0b00a42c695f4f1a2adc16d2507b5d0b03e"
+
+S = "${WORKDIR}/${PN}-${PV}"
+
+inherit autotools
+
-- 
1.9.1



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

* Re: [meta-oe][PATCH v2] Submitting cyassl recipe for consideration in being added to meta-oe/meta-networking/recipes-connectivity. Cyassl is a lightweight, embedded SSL/TLS library. For more information: www.wolfssl.com. The cyassl recipe is a fully functional bb file tested with the YoctoProject.
  2014-08-12 19:42 [meta-oe][PATCH v2] Submitting cyassl recipe for consideration in being added to meta-oe/meta-networking/recipes-connectivity. Cyassl is a lightweight, embedded SSL/TLS library. For more information: www.wolfssl.com. The cyassl recipe is a fully functional bb file tested with the YoctoProject lchristina26
@ 2014-08-12 22:12 ` Martin Jansa
  2014-08-13 20:53   ` [meta-oe][PATCH v2] Submitting cyassl recipe for consideration in being added to meta-oe/meta-networking/recipes-connectivity. Cyassl is a lightweight, embedded SSL/TLS library. For more information: www.wolfssl.com. The cyassl recipe is a fully LC Mac
  0 siblings, 1 reply; 6+ messages in thread
From: Martin Jansa @ 2014-08-12 22:12 UTC (permalink / raw)
  To: openembedded-devel

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

On Tue, Aug 12, 2014 at 01:42:39PM -0600, lchristina26 wrote:
> Signed-off-by: Leah Thompson <lchristina26@hotmail.com>
> ---
>  .../recipes-connectivity/cyassl/cyassl_3.1.0.bb     | 21 +++++++++++++++++++++
>  1 file changed, 21 insertions(+)
>  create mode 100644 meta-networking/recipes-connectivity/cyassl/cyassl_3.1.0.bb
> 
> diff --git a/meta-networking/recipes-connectivity/cyassl/cyassl_3.1.0.bb b/meta-networking/recipes-connectivity/cyassl/cyassl_3.1.0.bb
> new file mode 100644
> index 0000000..441d321
> --- /dev/null
> +++ b/meta-networking/recipes-connectivity/cyassl/cyassl_3.1.0.bb
> @@ -0,0 +1,21 @@
> +SUMMARY = "CyaSSL Embedded SSL Library"
> +DESCRIPTION = "CyaSSL is a lightweight SSL library written in C and \
> +               optimized for embedded and RTOS environments. It can be \
> +               Up to 20 times smaller than OpenSSL while still supporting \
> +               a full TLS 1.2 client and server."
> +HOMEPAGE = "http://www.yassl.com/yaSSL/Products-cyassl.html"
> +BUGTRACKER = "http://github.com/cyassl/cyassl/issues"
> +SECTION = "libs/network"
> +LICENSE = "GPLv2"
> +LIC_FILES_CHKSUM = "file://COPYING;md5=b234ee4d69f5fce4486a80fdaf4a4263"
> +
> +SRC_URI = "http://www.yassl.com/cyassl-${PV}.zip"

cyassl-${PV} -> ${BP}

> +
> +
> +SRC_URI[md5sum] = "72477eb50697e759d309c49cb1aef18a"
> +SRC_URI[sha256sum] = "85a79009d2a7468910dfb1e4b975e0b00a42c695f4f1a2adc16d2507b5d0b03e"
> +
> +S = "${WORKDIR}/${PN}-${PV}"

This is default value, drop S assignment

> +
> +inherit autotools
> +
> -- 
> 1.9.1
> 
> -- 
> _______________________________________________
> 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: 188 bytes --]

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

* Re: [meta-oe][PATCH v2] Submitting cyassl recipe for consideration in being added to meta-oe/meta-networking/recipes-connectivity. Cyassl is a lightweight, embedded SSL/TLS library. For more information: www.wolfssl.com. The cyassl recipe is a fully
  2014-08-12 22:12 ` Martin Jansa
@ 2014-08-13 20:53   ` LC Mac
  2014-08-13 21:06     ` [meta-oe][PATCH v2] Submitting cyassl recipe LC Mac
  2014-08-13 21:14     ` [meta-oe][PATCH v2] Submitting cyassl recipe for consideration in being added to meta-oe/meta-networking/recipes-connectivity. Cyassl is a lightweight, embedded SSL/TLS library. For more information: www.wolfssl.com. The cyassl recipe is a fully Martin Jansa
  0 siblings, 2 replies; 6+ messages in thread
From: LC Mac @ 2014-08-13 20:53 UTC (permalink / raw)
  To: openembedded-devel@lists.openembedded.org

Hi Martin, 

I'm a bit confused by the line cyassl-${PV} -> ${BP}. 
Could you explain that? When you say drop the S assignment, do you mean 
delete the entire line or leave the line like this: 
${WORKDIR}/${PN}-${PV}? I cannot get the recipe to build with any of the
 proposed changes. 


Thanks,

Leah

From: martin.jansa@gmail.com
Date: Wed, 13 Aug 2014 00:12:25 +0200
To: openembedded-devel@lists.openembedded.org
Subject: Re: [oe] [meta-oe][PATCH v2] Submitting cyassl recipe for consideration in being added to meta-oe/meta-networking/recipes-connectivity. Cyassl is a lightweight, embedded SSL/TLS library. For more information: www.wolfssl.com. The cyassl recipe is a fully functional bb file tested with the YoctoProject.

On Tue, Aug 12, 2014 at 01:42:39PM -0600, lchristina26 wrote:
> Signed-off-by: Leah Thompson <lchristina26@hotmail.com>
> ---
>  .../recipes-connectivity/cyassl/cyassl_3.1.0.bb     | 21 +++++++++++++++++++++
>  1 file changed, 21 insertions(+)
>  create mode 100644 meta-networking/recipes-connectivity/cyassl/cyassl_3.1.0.bb
> 
> diff --git a/meta-networking/recipes-connectivity/cyassl/cyassl_3.1.0.bb b/meta-networking/recipes-connectivity/cyassl/cyassl_3.1.0.bb
> new file mode 100644
> index 0000000..441d321
> --- /dev/null
> +++ b/meta-networking/recipes-connectivity/cyassl/cyassl_3.1.0.bb
> @@ -0,0 +1,21 @@
> +SUMMARY = "CyaSSL Embedded SSL Library"
> +DESCRIPTION = "CyaSSL is a lightweight SSL library written in C and \
> +               optimized for embedded and RTOS environments. It can be \
> +               Up to 20 times smaller than OpenSSL while still supporting \
> +               a full TLS 1.2 client and server."
> +HOMEPAGE = "http://www.yassl.com/yaSSL/Products-cyassl.html"
> +BUGTRACKER = "http://github.com/cyassl/cyassl/issues"
> +SECTION = "libs/network"
> +LICENSE = "GPLv2"
> +LIC_FILES_CHKSUM = "file://COPYING;md5=b234ee4d69f5fce4486a80fdaf4a4263"
> +
> +SRC_URI = "http://www.yassl.com/cyassl-${PV}.zip"
 
cyassl-${PV} -> ${BP}
 
> +
> +
> +SRC_URI[md5sum] = "72477eb50697e759d309c49cb1aef18a"
> +SRC_URI[sha256sum] = "85a79009d2a7468910dfb1e4b975e0b00a42c695f4f1a2adc16d2507b5d0b03e"
> +
> +S = "${WORKDIR}/${PN}-${PV}"
 
This is default value, drop S assignment
 
> +
> +inherit autotools
> +
> -- 
> 1.9.1
> 
> -- 
> _______________________________________________
> 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

-- 
_______________________________________________
Openembedded-devel mailing list
Openembedded-devel@lists.openembedded.org
http://lists.openembedded.org/mailman/listinfo/openembedded-devel 		 	   		  

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

* Re: [meta-oe][PATCH v2] Submitting cyassl recipe
  2014-08-13 20:53   ` [meta-oe][PATCH v2] Submitting cyassl recipe for consideration in being added to meta-oe/meta-networking/recipes-connectivity. Cyassl is a lightweight, embedded SSL/TLS library. For more information: www.wolfssl.com. The cyassl recipe is a fully LC Mac
@ 2014-08-13 21:06     ` LC Mac
  2014-08-13 21:14     ` [meta-oe][PATCH v2] Submitting cyassl recipe for consideration in being added to meta-oe/meta-networking/recipes-connectivity. Cyassl is a lightweight, embedded SSL/TLS library. For more information: www.wolfssl.com. The cyassl recipe is a fully Martin Jansa
  1 sibling, 0 replies; 6+ messages in thread
From: LC Mac @ 2014-08-13 21:06 UTC (permalink / raw)
  To: openembedded-devel@lists.openembedded.org

Actually, I'm guessing you meant for me to delete the entire line S = ".." without adding anything else? This line just threw me off: cyassl-${PV} -> ${BP}.

From: lchristina26@hotmail.com
To: openembedded-devel@lists.openembedded.org
Subject: RE: [oe] [meta-oe][PATCH v2] Submitting cyassl recipe for consideration in being added to meta-oe/meta-networking/recipes-connectivity. Cyassl is a lightweight, embedded SSL/TLS library. For more information: www.wolfssl.com. The cyassl recipe is a fully
Date: Wed, 13 Aug 2014 14:53:19 -0600




Hi Martin, 

I'm a bit confused by the line cyassl-${PV} -> ${BP}. 
Could you explain that? When you say drop the S assignment, do you mean 
delete the entire line or leave the line like this: 
${WORKDIR}/${PN}-${PV}? I cannot get the recipe to build with any of the
 proposed changes. 


Thanks,

Leah

From: martin.jansa@gmail.com
Date: Wed, 13 Aug 2014 00:12:25 +0200
To: openembedded-devel@lists.openembedded.org
Subject: Re: [oe] [meta-oe][PATCH v2] Submitting cyassl recipe for consideration in being added to meta-oe/meta-networking/recipes-connectivity. Cyassl is a lightweight, embedded SSL/TLS library. For more information: www.wolfssl.com. The cyassl recipe is a fully functional bb file tested with the YoctoProject.

On Tue, Aug 12, 2014 at 01:42:39PM -0600, lchristina26 wrote:
> Signed-off-by: Leah Thompson <lchristina26@hotmail.com>
> ---
>  .../recipes-connectivity/cyassl/cyassl_3.1.0.bb     | 21 +++++++++++++++++++++
>  1 file changed, 21 insertions(+)
>  create mode 100644 meta-networking/recipes-connectivity/cyassl/cyassl_3.1.0.bb
> 
> diff --git a/meta-networking/recipes-connectivity/cyassl/cyassl_3.1.0.bb b/meta-networking/recipes-connectivity/cyassl/cyassl_3.1.0.bb
> new file mode 100644
> index 0000000..441d321
> --- /dev/null
> +++ b/meta-networking/recipes-connectivity/cyassl/cyassl_3.1.0.bb
> @@ -0,0 +1,21 @@
> +SUMMARY = "CyaSSL Embedded SSL Library"
> +DESCRIPTION = "CyaSSL is a lightweight SSL library written in C and \
> +               optimized for embedded and RTOS environments. It can be \
> +               Up to 20 times smaller than OpenSSL while still supporting \
> +               a full TLS 1.2 client and server."
> +HOMEPAGE = "http://www.yassl.com/yaSSL/Products-cyassl.html"
> +BUGTRACKER = "http://github.com/cyassl/cyassl/issues"
> +SECTION = "libs/network"
> +LICENSE = "GPLv2"
> +LIC_FILES_CHKSUM = "file://COPYING;md5=b234ee4d69f5fce4486a80fdaf4a4263"
> +
> +SRC_URI = "http://www.yassl.com/cyassl-${PV}.zip"
 
cyassl-${PV} -> ${BP}
 
> +
> +
> +SRC_URI[md5sum] = "72477eb50697e759d309c49cb1aef18a"
> +SRC_URI[sha256sum] = "85a79009d2a7468910dfb1e4b975e0b00a42c695f4f1a2adc16d2507b5d0b03e"
> +
> +S = "${WORKDIR}/${PN}-${PV}"
 
This is default value, drop S assignment
 
> +
> +inherit autotools
> +
> -- 
> 1.9.1
> 
> -- 
> _______________________________________________
> 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

-- 
_______________________________________________
Openembedded-devel mailing list
Openembedded-devel@lists.openembedded.org
http://lists.openembedded.org/mailman/listinfo/openembedded-devel 		 	   		   		 	   		  

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

* Re: [meta-oe][PATCH v2] Submitting cyassl recipe for consideration in being added to meta-oe/meta-networking/recipes-connectivity. Cyassl is a lightweight, embedded SSL/TLS library. For more information: www.wolfssl.com. The cyassl recipe is a fully
  2014-08-13 20:53   ` [meta-oe][PATCH v2] Submitting cyassl recipe for consideration in being added to meta-oe/meta-networking/recipes-connectivity. Cyassl is a lightweight, embedded SSL/TLS library. For more information: www.wolfssl.com. The cyassl recipe is a fully LC Mac
  2014-08-13 21:06     ` [meta-oe][PATCH v2] Submitting cyassl recipe LC Mac
@ 2014-08-13 21:14     ` Martin Jansa
  2014-08-13 21:19       ` [meta-oe][PATCH v2] Submitting cyassl recipe LC Mac
  1 sibling, 1 reply; 6+ messages in thread
From: Martin Jansa @ 2014-08-13 21:14 UTC (permalink / raw)
  To: openembedded-devel

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

On Wed, Aug 13, 2014 at 02:53:19PM -0600, LC Mac wrote:
> Hi Martin, 
> 
> I'm a bit confused by the line cyassl-${PV} -> ${BP}. 

cyassl-${PV} == ${BP}

so please replace "cyassl-${PV} with ${BP}

> Could you explain that? When you say drop the S assignment, do you mean 
> delete the entire line or leave the line like this: 
> ${WORKDIR}/${PN}-${PV}? I cannot get the recipe to build with any of the
>  proposed changes. 

"${WORKDIR}/${PN}-${PV}" is default value, drop whole line, because it's
unnecessary

> 
> 
> Thanks,
> 
> Leah
> 
> From: martin.jansa@gmail.com
> Date: Wed, 13 Aug 2014 00:12:25 +0200
> To: openembedded-devel@lists.openembedded.org
> Subject: Re: [oe] [meta-oe][PATCH v2] Submitting cyassl recipe for consideration in being added to meta-oe/meta-networking/recipes-connectivity. Cyassl is a lightweight, embedded SSL/TLS library. For more information: www.wolfssl.com. The cyassl recipe is a fully functional bb file tested with the YoctoProject.
> 
> On Tue, Aug 12, 2014 at 01:42:39PM -0600, lchristina26 wrote:
> > Signed-off-by: Leah Thompson <lchristina26@hotmail.com>
> > ---
> >  .../recipes-connectivity/cyassl/cyassl_3.1.0.bb     | 21 +++++++++++++++++++++
> >  1 file changed, 21 insertions(+)
> >  create mode 100644 meta-networking/recipes-connectivity/cyassl/cyassl_3.1.0.bb
> > 
> > diff --git a/meta-networking/recipes-connectivity/cyassl/cyassl_3.1.0.bb b/meta-networking/recipes-connectivity/cyassl/cyassl_3.1.0.bb
> > new file mode 100644
> > index 0000000..441d321
> > --- /dev/null
> > +++ b/meta-networking/recipes-connectivity/cyassl/cyassl_3.1.0.bb
> > @@ -0,0 +1,21 @@
> > +SUMMARY = "CyaSSL Embedded SSL Library"
> > +DESCRIPTION = "CyaSSL is a lightweight SSL library written in C and \
> > +               optimized for embedded and RTOS environments. It can be \
> > +               Up to 20 times smaller than OpenSSL while still supporting \
> > +               a full TLS 1.2 client and server."
> > +HOMEPAGE = "http://www.yassl.com/yaSSL/Products-cyassl.html"
> > +BUGTRACKER = "http://github.com/cyassl/cyassl/issues"
> > +SECTION = "libs/network"
> > +LICENSE = "GPLv2"
> > +LIC_FILES_CHKSUM = "file://COPYING;md5=b234ee4d69f5fce4486a80fdaf4a4263"
> > +
> > +SRC_URI = "http://www.yassl.com/cyassl-${PV}.zip"
>  
> cyassl-${PV} -> ${BP}
>  
> > +
> > +
> > +SRC_URI[md5sum] = "72477eb50697e759d309c49cb1aef18a"
> > +SRC_URI[sha256sum] = "85a79009d2a7468910dfb1e4b975e0b00a42c695f4f1a2adc16d2507b5d0b03e"
> > +
> > +S = "${WORKDIR}/${PN}-${PV}"
>  
> This is default value, drop S assignment
>  
> > +
> > +inherit autotools
> > +
> > -- 
> > 1.9.1
> > 
> > -- 
> > _______________________________________________
> > 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
> 
> -- 
> _______________________________________________
> Openembedded-devel mailing list
> Openembedded-devel@lists.openembedded.org
> http://lists.openembedded.org/mailman/listinfo/openembedded-devel 		 	   		  
> -- 
> _______________________________________________
> 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: 188 bytes --]

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

* Re: [meta-oe][PATCH v2] Submitting cyassl recipe
  2014-08-13 21:14     ` [meta-oe][PATCH v2] Submitting cyassl recipe for consideration in being added to meta-oe/meta-networking/recipes-connectivity. Cyassl is a lightweight, embedded SSL/TLS library. For more information: www.wolfssl.com. The cyassl recipe is a fully Martin Jansa
@ 2014-08-13 21:19       ` LC Mac
  0 siblings, 0 replies; 6+ messages in thread
From: LC Mac @ 2014-08-13 21:19 UTC (permalink / raw)
  To: openembedded-devel@lists.openembedded.org

I should've looked up one line. Thanks!

From: martin.jansa@gmail.com
Date: Wed, 13 Aug 2014 23:14:36 +0200
To: openembedded-devel@lists.openembedded.org
Subject: Re: [oe] [meta-oe][PATCH v2] Submitting cyassl recipe for consideration in being added to meta-oe/meta-networking/recipes-connectivity. Cyassl is a lightweight, embedded SSL/TLS library. For more information: www.wolfssl.com. The cyassl recipe is a fully

On Wed, Aug 13, 2014 at 02:53:19PM -0600, LC Mac wrote:
> Hi Martin, 
> 
> I'm a bit confused by the line cyassl-${PV} -> ${BP}. 
 
cyassl-${PV} == ${BP}
 
so please replace "cyassl-${PV} with ${BP}
 
> Could you explain that? When you say drop the S assignment, do you mean 
> delete the entire line or leave the line like this: 
> ${WORKDIR}/${PN}-${PV}? I cannot get the recipe to build with any of the
>  proposed changes. 
 
"${WORKDIR}/${PN}-${PV}" is default value, drop whole line, because it's
unnecessary
 
> 
> 
> Thanks,
> 
> Leah
> 
> From: martin.jansa@gmail.com
> Date: Wed, 13 Aug 2014 00:12:25 +0200
> To: openembedded-devel@lists.openembedded.org
> Subject: Re: [oe] [meta-oe][PATCH v2] Submitting cyassl recipe for consideration in being added to meta-oe/meta-networking/recipes-connectivity. Cyassl is a lightweight, embedded SSL/TLS library. For more information: www.wolfssl.com. The cyassl recipe is a fully functional bb file tested with the YoctoProject.
> 
> On Tue, Aug 12, 2014 at 01:42:39PM -0600, lchristina26 wrote:
> > Signed-off-by: Leah Thompson <lchristina26@hotmail.com>
> > ---
> >  .../recipes-connectivity/cyassl/cyassl_3.1.0.bb     | 21 +++++++++++++++++++++
> >  1 file changed, 21 insertions(+)
> >  create mode 100644 meta-networking/recipes-connectivity/cyassl/cyassl_3.1.0.bb
> > 
> > diff --git a/meta-networking/recipes-connectivity/cyassl/cyassl_3.1.0.bb b/meta-networking/recipes-connectivity/cyassl/cyassl_3.1.0.bb
> > new file mode 100644
> > index 0000000..441d321
> > --- /dev/null
> > +++ b/meta-networking/recipes-connectivity/cyassl/cyassl_3.1.0.bb
> > @@ -0,0 +1,21 @@
> > +SUMMARY = "CyaSSL Embedded SSL Library"
> > +DESCRIPTION = "CyaSSL is a lightweight SSL library written in C and \
> > +               optimized for embedded and RTOS environments. It can be \
> > +               Up to 20 times smaller than OpenSSL while still supporting \
> > +               a full TLS 1.2 client and server."
> > +HOMEPAGE = "http://www.yassl.com/yaSSL/Products-cyassl.html"
> > +BUGTRACKER = "http://github.com/cyassl/cyassl/issues"
> > +SECTION = "libs/network"
> > +LICENSE = "GPLv2"
> > +LIC_FILES_CHKSUM = "file://COPYING;md5=b234ee4d69f5fce4486a80fdaf4a4263"
> > +
> > +SRC_URI = "http://www.yassl.com/cyassl-${PV}.zip"
>  
> cyassl-${PV} -> ${BP}
>  
> > +
> > +
> > +SRC_URI[md5sum] = "72477eb50697e759d309c49cb1aef18a"
> > +SRC_URI[sha256sum] = "85a79009d2a7468910dfb1e4b975e0b00a42c695f4f1a2adc16d2507b5d0b03e"
> > +
> > +S = "${WORKDIR}/${PN}-${PV}"
>  
> This is default value, drop S assignment
>  
> > +
> > +inherit autotools
> > +
> > -- 
> > 1.9.1
> > 
> > -- 
> > _______________________________________________
> > 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
> 
> -- 
> _______________________________________________
> Openembedded-devel mailing list
> Openembedded-devel@lists.openembedded.org
> http://lists.openembedded.org/mailman/listinfo/openembedded-devel 		 	   		  
> -- 
> _______________________________________________
> 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

-- 
_______________________________________________
Openembedded-devel mailing list
Openembedded-devel@lists.openembedded.org
http://lists.openembedded.org/mailman/listinfo/openembedded-devel 		 	   		  

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

end of thread, other threads:[~2014-08-13 21:19 UTC | newest]

Thread overview: 6+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2014-08-12 19:42 [meta-oe][PATCH v2] Submitting cyassl recipe for consideration in being added to meta-oe/meta-networking/recipes-connectivity. Cyassl is a lightweight, embedded SSL/TLS library. For more information: www.wolfssl.com. The cyassl recipe is a fully functional bb file tested with the YoctoProject lchristina26
2014-08-12 22:12 ` Martin Jansa
2014-08-13 20:53   ` [meta-oe][PATCH v2] Submitting cyassl recipe for consideration in being added to meta-oe/meta-networking/recipes-connectivity. Cyassl is a lightweight, embedded SSL/TLS library. For more information: www.wolfssl.com. The cyassl recipe is a fully LC Mac
2014-08-13 21:06     ` [meta-oe][PATCH v2] Submitting cyassl recipe LC Mac
2014-08-13 21:14     ` [meta-oe][PATCH v2] Submitting cyassl recipe for consideration in being added to meta-oe/meta-networking/recipes-connectivity. Cyassl is a lightweight, embedded SSL/TLS library. For more information: www.wolfssl.com. The cyassl recipe is a fully Martin Jansa
2014-08-13 21:19       ` [meta-oe][PATCH v2] Submitting cyassl recipe LC Mac

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.