All of lore.kernel.org
 help / color / mirror / Atom feed
* [meta-networking][PATCH v2] wolfssl: update to 3.15.8 and use github SRC_URI
@ 2019-03-30 16:56 Randy MacLeod
  2019-03-30 19:56 ` Randy MacLeod
  0 siblings, 1 reply; 7+ messages in thread
From: Randy MacLeod @ 2019-03-30 16:56 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}         | 5 ++---
 1 file changed, 2 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..29e094783 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,8 @@ 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"
 
 inherit autotools
 
-- 
2.17.0



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

* Re: [meta-networking][PATCH v2] wolfssl: update to 3.15.8 and use github SRC_URI
  2019-03-30 16:56 [meta-networking][PATCH v2] wolfssl: update to 3.15.8 and use github SRC_URI Randy MacLeod
@ 2019-03-30 19:56 ` Randy MacLeod
  2019-04-02  2:28   ` Khem Raj
  0 siblings, 1 reply; 7+ messages in thread
From: Randy MacLeod @ 2019-03-30 19:56 UTC (permalink / raw)
  To: openembedded-devel

On 3/30/19 12:56 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}         | 5 ++---
>   1 file changed, 2 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..29e094783 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,8 @@ 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"
>   
Oops, I forgot:
+S = "${WORKDIR}/git"

v3 sent already.
../Randy
>   inherit autotools
>   
> 


-- 
# Randy MacLeod
# Wind River Linux


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

* Re: [meta-networking][PATCH v2] wolfssl: update to 3.15.8 and use github SRC_URI
  2019-03-30 19:56 ` Randy MacLeod
@ 2019-04-02  2:28   ` Khem Raj
  2019-04-02  2:33     ` Randy MacLeod
  0 siblings, 1 reply; 7+ messages in thread
From: Khem Raj @ 2019-04-02  2:28 UTC (permalink / raw)
  To: Randy MacLeod; +Cc: openembeded-devel

On Sat, Mar 30, 2019 at 12:56 PM Randy MacLeod
<randy.macleod@windriver.com> wrote:
>
> On 3/30/19 12:56 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.
> >

https://errors.yoctoproject.org/Errors/Details/235000/


> > Signed-off-by: Randy MacLeod <Randy.MacLeod@windriver.com>
> > ---
> >   .../wolfssl/{wolfssl_3.15.7.bb => wolfssl_3.15.8.bb}         | 5 ++---
> >   1 file changed, 2 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..29e094783 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,8 @@ 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"
> >
> Oops, I forgot:
> +S = "${WORKDIR}/git"
>
> v3 sent already.
> ../Randy
> >   inherit autotools
> >
> >
>
>
> --
> # Randy MacLeod
> # Wind River Linux
> --
> _______________________________________________
> Openembedded-devel mailing list
> Openembedded-devel@lists.openembedded.org
> http://lists.openembedded.org/mailman/listinfo/openembedded-devel


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

* Re: [meta-networking][PATCH v2] wolfssl: update to 3.15.8 and use github SRC_URI
  2019-04-02  2:28   ` Khem Raj
@ 2019-04-02  2:33     ` Randy MacLeod
  2019-04-02  2:37       ` Randy MacLeod
  0 siblings, 1 reply; 7+ messages in thread
From: Randy MacLeod @ 2019-04-02  2:33 UTC (permalink / raw)
  To: Khem Raj; +Cc: openembeded-devel

On 4/1/19 10:28 PM, Khem Raj wrote:
> On Sat, Mar 30, 2019 at 12:56 PM Randy MacLeod
> <randy.macleod@windriver.com> wrote:
>>
>> On 3/30/19 12:56 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.
>>>
> 
> https://errors.yoctoproject.org/Errors/Details/235000/

That's odd.

I built the update for all qemu targets and both glibc/musl.
I may not have done sysvinit but I doubt that matters.

Are you sure there wasn't something wrong on your end?

I'll try the rpi tomorrow.

../Randy

> 
> 
>>> Signed-off-by: Randy MacLeod <Randy.MacLeod@windriver.com>
>>> ---
>>>    .../wolfssl/{wolfssl_3.15.7.bb => wolfssl_3.15.8.bb}         | 5 ++---
>>>    1 file changed, 2 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..29e094783 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,8 @@ 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"
>>>
>> Oops, I forgot:
>> +S = "${WORKDIR}/git"
>>
>> v3 sent already.
>> ../Randy
>>>    inherit autotools
>>>
>>>
>>
>>
>> --
>> # Randy MacLeod
>> # Wind River Linux
>> --
>> _______________________________________________
>> Openembedded-devel mailing list
>> Openembedded-devel@lists.openembedded.org
>> http://lists.openembedded.org/mailman/listinfo/openembedded-devel


-- 
# Randy MacLeod
# Wind River Linux


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

* Re: [meta-networking][PATCH v2] wolfssl: update to 3.15.8 and use github SRC_URI
  2019-04-02  2:33     ` Randy MacLeod
@ 2019-04-02  2:37       ` Randy MacLeod
  2019-04-02 15:34         ` Khem Raj
  0 siblings, 1 reply; 7+ messages in thread
From: Randy MacLeod @ 2019-04-02  2:37 UTC (permalink / raw)
  To: Khem Raj; +Cc: openembeded-devel

On 4/1/19 10:33 PM, Randy MacLeod wrote:
> On 4/1/19 10:28 PM, Khem Raj wrote:
>> On Sat, Mar 30, 2019 at 12:56 PM Randy MacLeod
>> <randy.macleod@windriver.com> wrote:
>>>
>>> On 3/30/19 12:56 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.
>>>>
>>
>> https://errors.yoctoproject.org/Errors/Details/235000/
> 
> That's odd.
> 
> I built the update for all qemu targets and both glibc/musl.
> I may not have done sysvinit but I doubt that matters.
> 
> Are you sure there wasn't something wrong on your end?
> 
> I'll try the rpi tomorrow.

You are replying on the v2 thread.
Did you see and use v3?
../Randy

> 
> ../Randy
> 
>>
>>
>>>> Signed-off-by: Randy MacLeod <Randy.MacLeod@windriver.com>
>>>> ---
>>>>    .../wolfssl/{wolfssl_3.15.7.bb => wolfssl_3.15.8.bb}         | 5 
>>>> ++---
>>>>    1 file changed, 2 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..29e094783 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,8 @@ 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"
>>>>
>>> Oops, I forgot:
>>> +S = "${WORKDIR}/git"
>>>
>>> v3 sent already.
>>> ../Randy
>>>>    inherit autotools
>>>>
>>>>
>>>
>>>
>>> -- 
>>> # Randy MacLeod
>>> # Wind River Linux
>>> -- 
>>> _______________________________________________
>>> Openembedded-devel mailing list
>>> Openembedded-devel@lists.openembedded.org
>>> http://lists.openembedded.org/mailman/listinfo/openembedded-devel
> 
> 


-- 
# Randy MacLeod
# Wind River Linux


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

* Re: [meta-networking][PATCH v2] wolfssl: update to 3.15.8 and use github SRC_URI
  2019-04-02  2:37       ` Randy MacLeod
@ 2019-04-02 15:34         ` Khem Raj
  2019-04-02 18:17           ` Randy MacLeod
  0 siblings, 1 reply; 7+ messages in thread
From: Khem Raj @ 2019-04-02 15:34 UTC (permalink / raw)
  To: Randy MacLeod; +Cc: openembeded-devel

its v3


On Mon, Apr 1, 2019 at 7:38 PM Randy MacLeod
<randy.macleod@windriver.com> wrote:
>
> On 4/1/19 10:33 PM, Randy MacLeod wrote:
> > On 4/1/19 10:28 PM, Khem Raj wrote:
> >> On Sat, Mar 30, 2019 at 12:56 PM Randy MacLeod
> >> <randy.macleod@windriver.com> wrote:
> >>>
> >>> On 3/30/19 12:56 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.
> >>>>
> >>
> >> https://errors.yoctoproject.org/Errors/Details/235000/
> >
> > That's odd.
> >
> > I built the update for all qemu targets and both glibc/musl.
> > I may not have done sysvinit but I doubt that matters.
> >
> > Are you sure there wasn't something wrong on your end?
> >
> > I'll try the rpi tomorrow.
>
> You are replying on the v2 thread.
> Did you see and use v3?
> ../Randy
>
> >
> > ../Randy
> >
> >>
> >>
> >>>> Signed-off-by: Randy MacLeod <Randy.MacLeod@windriver.com>
> >>>> ---
> >>>>    .../wolfssl/{wolfssl_3.15.7.bb => wolfssl_3.15.8.bb}         | 5
> >>>> ++---
> >>>>    1 file changed, 2 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..29e094783 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,8 @@ 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"
> >>>>
> >>> Oops, I forgot:
> >>> +S = "${WORKDIR}/git"
> >>>
> >>> v3 sent already.
> >>> ../Randy
> >>>>    inherit autotools
> >>>>
> >>>>
> >>>
> >>>
> >>> --
> >>> # Randy MacLeod
> >>> # Wind River Linux
> >>> --
> >>> _______________________________________________
> >>> Openembedded-devel mailing list
> >>> Openembedded-devel@lists.openembedded.org
> >>> http://lists.openembedded.org/mailman/listinfo/openembedded-devel
> >
> >
>
>
> --
> # Randy MacLeod
> # Wind River Linux


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

* Re: [meta-networking][PATCH v2] wolfssl: update to 3.15.8 and use github SRC_URI
  2019-04-02 15:34         ` Khem Raj
@ 2019-04-02 18:17           ` Randy MacLeod
  0 siblings, 0 replies; 7+ messages in thread
From: Randy MacLeod @ 2019-04-02 18:17 UTC (permalink / raw)
  To: Khem Raj; +Cc: openembeded-devel

On 4/2/19 11:34 AM, Khem Raj wrote:
> its v3

Huh.
I cleaned up my local builds and they build fine.

I cloned yoe-distro -b yoe/mut [1] and
it has the v3 update:
   git show e83dc5ed04a209d8c3055331a66e6b7d19496048

and I'm able to:
$ bitbake wolfssl
just fine.

It's a simple change so I'm not sure what to do to help...
../Randy


[1]
$ git log --oneline -3
961e203 (HEAD -> yoe/mut, origin/yoe/mut)
         Layer Updates: sources/openembedded-core
a559863 Layer Updates: sources/meta-atmel sources/openembedded-core
fef19ce Layer Updates: sources/meta-openembedded

> 
> 
> On Mon, Apr 1, 2019 at 7:38 PM Randy MacLeod
> <randy.macleod@windriver.com> wrote:
>>
>> On 4/1/19 10:33 PM, Randy MacLeod wrote:
>>> On 4/1/19 10:28 PM, Khem Raj wrote:
>>>> On Sat, Mar 30, 2019 at 12:56 PM Randy MacLeod
>>>> <randy.macleod@windriver.com> wrote:
>>>>>
>>>>> On 3/30/19 12:56 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.
>>>>>>
>>>>
>>>> https://errors.yoctoproject.org/Errors/Details/235000/
>>>
>>> That's odd.
>>>
>>> I built the update for all qemu targets and both glibc/musl.
>>> I may not have done sysvinit but I doubt that matters.
>>>
>>> Are you sure there wasn't something wrong on your end?
>>>
>>> I'll try the rpi tomorrow.
>>
>> You are replying on the v2 thread.
>> Did you see and use v3?
>> ../Randy
>>
>>>
>>> ../Randy
>>>
>>>>
>>>>
>>>>>> Signed-off-by: Randy MacLeod <Randy.MacLeod@windriver.com>
>>>>>> ---
>>>>>>     .../wolfssl/{wolfssl_3.15.7.bb => wolfssl_3.15.8.bb}         | 5
>>>>>> ++---
>>>>>>     1 file changed, 2 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..29e094783 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,8 @@ 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"
>>>>>>
>>>>> Oops, I forgot:
>>>>> +S = "${WORKDIR}/git"
>>>>>
>>>>> v3 sent already.
>>>>> ../Randy
>>>>>>     inherit autotools
>>>>>>
>>>>>>
>>>>>
>>>>>
>>>>> --
>>>>> # Randy MacLeod
>>>>> # Wind River Linux
>>>>> --
>>>>> _______________________________________________
>>>>> Openembedded-devel mailing list
>>>>> Openembedded-devel@lists.openembedded.org
>>>>> http://lists.openembedded.org/mailman/listinfo/openembedded-devel
>>>
>>>
>>
>>
>> --
>> # Randy MacLeod
>> # Wind River Linux


-- 
# Randy MacLeod
# Wind River Linux


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

end of thread, other threads:[~2019-04-02 18:17 UTC | newest]

Thread overview: 7+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2019-03-30 16:56 [meta-networking][PATCH v2] wolfssl: update to 3.15.8 and use github SRC_URI Randy MacLeod
2019-03-30 19:56 ` Randy MacLeod
2019-04-02  2:28   ` Khem Raj
2019-04-02  2:33     ` Randy MacLeod
2019-04-02  2:37       ` Randy MacLeod
2019-04-02 15:34         ` Khem Raj
2019-04-02 18:17           ` Randy MacLeod

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.