* [meta-networking][PATCH v3-retransmit] wolfssl: update to 3.15.8 and use github SRC_URI
@ 2019-04-06 0:48 Randy MacLeod
2019-04-06 1:05 ` Randy MacLeod
0 siblings, 1 reply; 3+ messages in thread
From: Randy MacLeod @ 2019-04-06 0:48 UTC (permalink / raw)
To: openembedded-devel
The previous SRC_URI did not work for the new version and
when looking at the site, users are required to navigate
through a click-through license agreement. Also use git
repo rather than the .zip archive since the github checksum
can change from time to time.
Signed-off-by: Randy MacLeod <Randy.MacLeod@windriver.com>
---
.../wolfssl/{wolfssl_3.15.7.bb => wolfssl_3.15.8.bb} | 6 +++---
1 file changed, 3 insertions(+), 3 deletions(-)
rename meta-networking/recipes-connectivity/wolfssl/{wolfssl_3.15.7.bb => wolfssl_3.15.8.bb} (77%)
diff --git a/meta-networking/recipes-connectivity/wolfssl/wolfssl_3.15.7.bb b/meta-networking/recipes-connectivity/wolfssl/wolfssl_3.15.8.bb
similarity index 77%
rename from meta-networking/recipes-connectivity/wolfssl/wolfssl_3.15.7.bb
rename to meta-networking/recipes-connectivity/wolfssl/wolfssl_3.15.8.bb
index 0a0a6075d..d4b969104 100644
--- a/meta-networking/recipes-connectivity/wolfssl/wolfssl_3.15.7.bb
+++ b/meta-networking/recipes-connectivity/wolfssl/wolfssl_3.15.8.bb
@@ -12,9 +12,9 @@ LIC_FILES_CHKSUM = "file://COPYING;md5=b234ee4d69f5fce4486a80fdaf4a4263"
PROVIDES += "cyassl"
RPROVIDES_${PN} = "cyassl"
-SRC_URI = "https://www.wolfssl.com/wolfssl-${PV}.zip"
-SRC_URI[md5sum] = "6ec08c09e3f51cccbb1686b4fd45f92f"
-SRC_URI[sha256sum] = "4cc318c49580d3b9c361fe258fac6106624aa744f1d34e03977b587766a753ee"
+SRC_URI = "git://github.com/wolfSSL/wolfssl.git;protocol=https"
+SRCREV = "e87433e2b6682aa7162fcb4aafefb08e2fbd932b"
+S = "${WORKDIR}/git"
inherit autotools
--
2.17.0
^ permalink raw reply related [flat|nested] 3+ messages in thread
* Re: [meta-networking][PATCH v3-retransmit] wolfssl: update to 3.15.8 and use github SRC_URI
2019-04-06 0:48 [meta-networking][PATCH v3-retransmit] wolfssl: update to 3.15.8 and use github SRC_URI Randy MacLeod
@ 2019-04-06 1:05 ` Randy MacLeod
2019-04-06 1:38 ` Khem Raj
0 siblings, 1 reply; 3+ messages in thread
From: Randy MacLeod @ 2019-04-06 1:05 UTC (permalink / raw)
To: openembedded-devel, Khem Raj
Khem,
I know you had a compile problem with this patch last time but
I've checked it again and even 'called a friend' to do
a sanity check and the simple patch works for both of us.
I don't see what the problem could be so hopefully it'll
just work this time.
../Randy
On 4/5/19 8:48 PM, Randy MacLeod wrote:
> The previous SRC_URI did not work for the new version and
> when looking at the site, users are required to navigate
> through a click-through license agreement. Also use git
> repo rather than the .zip archive since the github checksum
> can change from time to time.
>
> Signed-off-by: Randy MacLeod <Randy.MacLeod@windriver.com>
> ---
> .../wolfssl/{wolfssl_3.15.7.bb => wolfssl_3.15.8.bb} | 6 +++---
> 1 file changed, 3 insertions(+), 3 deletions(-)
> rename meta-networking/recipes-connectivity/wolfssl/{wolfssl_3.15.7.bb => wolfssl_3.15.8.bb} (77%)
>
> diff --git a/meta-networking/recipes-connectivity/wolfssl/wolfssl_3.15.7.bb b/meta-networking/recipes-connectivity/wolfssl/wolfssl_3.15.8.bb
> similarity index 77%
> rename from meta-networking/recipes-connectivity/wolfssl/wolfssl_3.15.7.bb
> rename to meta-networking/recipes-connectivity/wolfssl/wolfssl_3.15.8.bb
> index 0a0a6075d..d4b969104 100644
> --- a/meta-networking/recipes-connectivity/wolfssl/wolfssl_3.15.7.bb
> +++ b/meta-networking/recipes-connectivity/wolfssl/wolfssl_3.15.8.bb
> @@ -12,9 +12,9 @@ LIC_FILES_CHKSUM = "file://COPYING;md5=b234ee4d69f5fce4486a80fdaf4a4263"
> PROVIDES += "cyassl"
> RPROVIDES_${PN} = "cyassl"
>
> -SRC_URI = "https://www.wolfssl.com/wolfssl-${PV}.zip"
> -SRC_URI[md5sum] = "6ec08c09e3f51cccbb1686b4fd45f92f"
> -SRC_URI[sha256sum] = "4cc318c49580d3b9c361fe258fac6106624aa744f1d34e03977b587766a753ee"
> +SRC_URI = "git://github.com/wolfSSL/wolfssl.git;protocol=https"
> +SRCREV = "e87433e2b6682aa7162fcb4aafefb08e2fbd932b"
> +S = "${WORKDIR}/git"
>
> inherit autotools
>
>
--
# Randy MacLeod
# Wind River Linux
^ permalink raw reply [flat|nested] 3+ messages in thread
* Re: [meta-networking][PATCH v3-retransmit] wolfssl: update to 3.15.8 and use github SRC_URI
2019-04-06 1:05 ` Randy MacLeod
@ 2019-04-06 1:38 ` Khem Raj
0 siblings, 0 replies; 3+ messages in thread
From: Khem Raj @ 2019-04-06 1:38 UTC (permalink / raw)
To: Randy MacLeod; +Cc: openembedded-devel
On Fri, Apr 5, 2019 at 6:05 PM Randy MacLeod <randy.macleod@windriver.com>
wrote:
> Khem,
>
> I know you had a compile problem with this patch last time but
> I've checked it again and even 'called a friend' to do
> a sanity check and the simple patch works for both of us.
>
> I don't see what the problem could be so hopefully it'll
> just work this time.
My builds on Oe servers takes more than 24 hours so I was still on v2 and
v3 build is still in progress
>
>
> ../Randy
>
> On 4/5/19 8:48 PM, Randy MacLeod wrote:
> > The previous SRC_URI did not work for the new version and
> > when looking at the site, users are required to navigate
> > through a click-through license agreement. Also use git
> > repo rather than the .zip archive since the github checksum
> > can change from time to time.
> >
> > Signed-off-by: Randy MacLeod <Randy.MacLeod@windriver.com>
> > ---
> > .../wolfssl/{wolfssl_3.15.7.bb => wolfssl_3.15.8.bb} | 6 +++---
> > 1 file changed, 3 insertions(+), 3 deletions(-)
> > rename meta-networking/recipes-connectivity/wolfssl/{wolfssl_3.15.7.bb
> => wolfssl_3.15.8.bb} (77%)
> >
> > diff --git a/meta-networking/recipes-connectivity/wolfssl/
> wolfssl_3.15.7.bb b/meta-networking/recipes-connectivity/wolfssl/
> wolfssl_3.15.8.bb
> > similarity index 77%
> > rename from meta-networking/recipes-connectivity/wolfssl/
> wolfssl_3.15.7.bb
> > rename to meta-networking/recipes-connectivity/wolfssl/wolfssl_3.15.8.bb
> > index 0a0a6075d..d4b969104 100644
> > --- a/meta-networking/recipes-connectivity/wolfssl/wolfssl_3.15.7.bb
> > +++ b/meta-networking/recipes-connectivity/wolfssl/wolfssl_3.15.8.bb
> > @@ -12,9 +12,9 @@ LIC_FILES_CHKSUM =
> "file://COPYING;md5=b234ee4d69f5fce4486a80fdaf4a4263"
> > PROVIDES += "cyassl"
> > RPROVIDES_${PN} = "cyassl"
> >
> > -SRC_URI = "https://www.wolfssl.com/wolfssl-${PV}.zip"
> > -SRC_URI[md5sum] = "6ec08c09e3f51cccbb1686b4fd45f92f"
> > -SRC_URI[sha256sum] =
> "4cc318c49580d3b9c361fe258fac6106624aa744f1d34e03977b587766a753ee"
> > +SRC_URI = "git://github.com/wolfSSL/wolfssl.git;protocol=https"
> > +SRCREV = "e87433e2b6682aa7162fcb4aafefb08e2fbd932b"
> > +S = "${WORKDIR}/git"
> >
> > inherit autotools
> >
> >
>
>
> --
> # Randy MacLeod
> # Wind River Linux
>
^ permalink raw reply [flat|nested] 3+ messages in thread
end of thread, other threads:[~2019-04-06 1:38 UTC | newest]
Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2019-04-06 0:48 [meta-networking][PATCH v3-retransmit] wolfssl: update to 3.15.8 and use github SRC_URI Randy MacLeod
2019-04-06 1:05 ` Randy MacLeod
2019-04-06 1:38 ` Khem Raj
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.