All of lore.kernel.org
 help / color / mirror / Atom feed
* [meta-oe][PATCH] [v3] lz4: update to latest version
@ 2014-07-15  5:31 Armin Kuster
  2014-07-15  9:08 ` Koen Kooi
  2014-07-15 13:15 ` Martin Jansa
  0 siblings, 2 replies; 9+ messages in thread
From: Armin Kuster @ 2014-07-15  5:31 UTC (permalink / raw)
  To: openembedded-devel

update to version r119
Use github instead of svn
LICENSE md5sum changed since it was updated in r117
FIxes CVE-2014-4611

Signed-off-by: Armin Kuster <akuster@mvista.com>
---
 meta/recipes-support/lz4/{lz4_svn.bb => lz4_git.bb} | 11 ++++-------
 1 file changed, 4 insertions(+), 7 deletions(-)
 rename meta/recipes-support/lz4/{lz4_svn.bb => lz4_git.bb} (68%)

diff --git a/meta/recipes-support/lz4/lz4_svn.bb b/meta/recipes-support/lz4/lz4_git.bb
similarity index 68%
rename from meta/recipes-support/lz4/lz4_svn.bb
rename to meta/recipes-support/lz4/lz4_git.bb
index 38e36d8..3978d76 100644
--- a/meta/recipes-support/lz4/lz4_svn.bb
+++ b/meta/recipes-support/lz4/lz4_git.bb
@@ -2,15 +2,12 @@ SUMMARY = "Extremely Fast Compression algorithm"
 DESCRIPTION = "LZ4 is a very fast lossless compression algorithm, providing compression speed at 400 MB/s per core, scalable with multi-cores CPU. It also features an extremely fast decoder, with speed in multiple GB/s per core, typically reaching RAM speed limits on multi-core systems."
 
 LICENSE = "BSD"
-LIC_FILES_CHKSUM = "file://LICENSE;md5=2008d2325e11691e17fcaa3a6046f850"
+LIC_FILES_CHKSUM = "file://LICENSE;md5=0b0d063f37a4477b54af2459477dcafd"
 
-# Upstream names releases after SVN revs
-SRCREV = "112"
-PV = "r${SRCREV}"
+SRCREV = "28fd251bc7b42e5cde15f9a2d78fc53b3b575558"
+SRC_URI= "git://github.com/Cyan4973/lz4.git;branch=master"
 
-SRC_URI = "svn://lz4.googlecode.com/svn/;module=trunk;protocol=http"
-
-S = "${WORKDIR}/trunk"
+S = "${WORKDIR}/git"
 
 EXTRA_OEMAKE = "PREFIX=${prefix} CC='${CC}' DESTDIR=${D} LIBDIR=${libdir} INCLUDEDIR=${includedir}"
 
-- 
1.9.1



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

* Re: [meta-oe][PATCH] [v3] lz4: update to latest version
  2014-07-15  5:31 [meta-oe][PATCH] [v3] lz4: update to latest version Armin Kuster
@ 2014-07-15  9:08 ` Koen Kooi
  2014-07-15 13:55   ` akuster
  2014-07-15 13:15 ` Martin Jansa
  1 sibling, 1 reply; 9+ messages in thread
From: Koen Kooi @ 2014-07-15  9:08 UTC (permalink / raw)
  To: openembedded-devel

-----BEGIN PGP SIGNED MESSAGE-----
Hash: SHA1

Armin Kuster schreef op 15-07-14 07:31:
> update to version r119 Use github instead of svn LICENSE md5sum changed
> since it was updated in r117

Good to know when it was changed, but I'm more interested in *what* changed.

> FIxes CVE-2014-4611
> 
> Signed-off-by: Armin Kuster <akuster@mvista.com> --- 
> meta/recipes-support/lz4/{lz4_svn.bb => lz4_git.bb} | 11 ++++------- 1
> file changed, 4 insertions(+), 7 deletions(-) rename
> meta/recipes-support/lz4/{lz4_svn.bb => lz4_git.bb} (68%)
> 
> diff --git a/meta/recipes-support/lz4/lz4_svn.bb
> b/meta/recipes-support/lz4/lz4_git.bb similarity index 68% rename from
> meta/recipes-support/lz4/lz4_svn.bb rename to
> meta/recipes-support/lz4/lz4_git.bb index 38e36d8..3978d76 100644 ---
> a/meta/recipes-support/lz4/lz4_svn.bb +++
> b/meta/recipes-support/lz4/lz4_git.bb @@ -2,15 +2,12 @@ SUMMARY =
> "Extremely Fast Compression algorithm" DESCRIPTION = "LZ4 is a very fast
> lossless compression algorithm, providing compression speed at 400 MB/s
> per core, scalable with multi-cores CPU. It also features an extremely
> fast decoder, with speed in multiple GB/s per core, typically reaching
> RAM speed limits on multi-core systems."
> 
> LICENSE = "BSD" -LIC_FILES_CHKSUM =
> "file://LICENSE;md5=2008d2325e11691e17fcaa3a6046f850" +LIC_FILES_CHKSUM =
> "file://LICENSE;md5=0b0d063f37a4477b54af2459477dcafd"
> 
> -# Upstream names releases after SVN revs -SRCREV = "112" -PV =
> "r${SRCREV}" +SRCREV = "28fd251bc7b42e5cde15f9a2d78fc53b3b575558" 
> +SRC_URI= "git://github.com/Cyan4973/lz4.git;branch=master"
> 
> -SRC_URI = "svn://lz4.googlecode.com/svn/;module=trunk;protocol=http" - 
> -S = "${WORKDIR}/trunk" +S = "${WORKDIR}/git"
> 
> EXTRA_OEMAKE = "PREFIX=${prefix} CC='${CC}' DESTDIR=${D} LIBDIR=${libdir}
> INCLUDEDIR=${includedir}"
> 
> 

-----BEGIN PGP SIGNATURE-----
Version: GnuPG v1.4.5 (Darwin)
Comment: GPGTools - http://gpgtools.org

iD8DBQFTxO+KMkyGM64RGpERAnrdAJ9H8ZZGNxbZ7hGQd3sL8xKMhJ6v6wCdGKcf
r8Kx6H0IJOr+2LDz7XAKVzo=
=CNTg
-----END PGP SIGNATURE-----



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

* Re: [meta-oe][PATCH] [v3] lz4: update to latest version
  2014-07-15  5:31 [meta-oe][PATCH] [v3] lz4: update to latest version Armin Kuster
  2014-07-15  9:08 ` Koen Kooi
@ 2014-07-15 13:15 ` Martin Jansa
  1 sibling, 0 replies; 9+ messages in thread
From: Martin Jansa @ 2014-07-15 13:15 UTC (permalink / raw)
  To: openembedded-devel

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

On Mon, Jul 14, 2014 at 10:31:25PM -0700, Armin Kuster wrote:
> update to version r119
> Use github instead of svn
> LICENSE md5sum changed since it was updated in r117
> FIxes CVE-2014-4611

This belongs to oe-core as you have originally posted it :)

> 
> Signed-off-by: Armin Kuster <akuster@mvista.com>
> ---
>  meta/recipes-support/lz4/{lz4_svn.bb => lz4_git.bb} | 11 ++++-------
>  1 file changed, 4 insertions(+), 7 deletions(-)
>  rename meta/recipes-support/lz4/{lz4_svn.bb => lz4_git.bb} (68%)
> 
> diff --git a/meta/recipes-support/lz4/lz4_svn.bb b/meta/recipes-support/lz4/lz4_git.bb
> similarity index 68%
> rename from meta/recipes-support/lz4/lz4_svn.bb
> rename to meta/recipes-support/lz4/lz4_git.bb
> index 38e36d8..3978d76 100644
> --- a/meta/recipes-support/lz4/lz4_svn.bb
> +++ b/meta/recipes-support/lz4/lz4_git.bb
> @@ -2,15 +2,12 @@ SUMMARY = "Extremely Fast Compression algorithm"
>  DESCRIPTION = "LZ4 is a very fast lossless compression algorithm, providing compression speed at 400 MB/s per core, scalable with multi-cores CPU. It also features an extremely fast decoder, with speed in multiple GB/s per core, typically reaching RAM speed limits on multi-core systems."
>  
>  LICENSE = "BSD"
> -LIC_FILES_CHKSUM = "file://LICENSE;md5=2008d2325e11691e17fcaa3a6046f850"
> +LIC_FILES_CHKSUM = "file://LICENSE;md5=0b0d063f37a4477b54af2459477dcafd"
>  
> -# Upstream names releases after SVN revs
> -SRCREV = "112"
> -PV = "r${SRCREV}"
> +SRCREV = "28fd251bc7b42e5cde15f9a2d78fc53b3b575558"
> +SRC_URI= "git://github.com/Cyan4973/lz4.git;branch=master"
>  
> -SRC_URI = "svn://lz4.googlecode.com/svn/;module=trunk;protocol=http"
> -
> -S = "${WORKDIR}/trunk"
> +S = "${WORKDIR}/git"
>  
>  EXTRA_OEMAKE = "PREFIX=${prefix} CC='${CC}' DESTDIR=${D} LIBDIR=${libdir} INCLUDEDIR=${includedir}"
>  
> -- 
> 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] 9+ messages in thread

* [meta-oe][PATCH] [v3] lz4: update to latest version
@ 2014-07-15 13:28 Armin Kuster
  2014-07-15 15:06 ` Saul Wold
  0 siblings, 1 reply; 9+ messages in thread
From: Armin Kuster @ 2014-07-15 13:28 UTC (permalink / raw)
  To: openembedded-core

update to version r119
Use github instead of svn
LICENSE md5sum changed since it was updated in r117
FIxes CVE-2014-4611

Signed-off-by: Armin Kuster <akuster@mvista.com>
---
 meta/recipes-support/lz4/{lz4_svn.bb => lz4_git.bb} | 11 ++++-------
 1 file changed, 4 insertions(+), 7 deletions(-)
 rename meta/recipes-support/lz4/{lz4_svn.bb => lz4_git.bb} (68%)

diff --git a/meta/recipes-support/lz4/lz4_svn.bb b/meta/recipes-support/lz4/lz4_git.bb
similarity index 68%
rename from meta/recipes-support/lz4/lz4_svn.bb
rename to meta/recipes-support/lz4/lz4_git.bb
index 38e36d8..3978d76 100644
--- a/meta/recipes-support/lz4/lz4_svn.bb
+++ b/meta/recipes-support/lz4/lz4_git.bb
@@ -2,15 +2,12 @@ SUMMARY = "Extremely Fast Compression algorithm"
 DESCRIPTION = "LZ4 is a very fast lossless compression algorithm, providing compression speed at 400 MB/s per core, scalable with multi-cores CPU. It also features an extremely fast decoder, with speed in multiple GB/s per core, typically reaching RAM speed limits on multi-core systems."
 
 LICENSE = "BSD"
-LIC_FILES_CHKSUM = "file://LICENSE;md5=2008d2325e11691e17fcaa3a6046f850"
+LIC_FILES_CHKSUM = "file://LICENSE;md5=0b0d063f37a4477b54af2459477dcafd"
 
-# Upstream names releases after SVN revs
-SRCREV = "112"
-PV = "r${SRCREV}"
+SRCREV = "28fd251bc7b42e5cde15f9a2d78fc53b3b575558"
+SRC_URI= "git://github.com/Cyan4973/lz4.git;branch=master"
 
-SRC_URI = "svn://lz4.googlecode.com/svn/;module=trunk;protocol=http"
-
-S = "${WORKDIR}/trunk"
+S = "${WORKDIR}/git"
 
 EXTRA_OEMAKE = "PREFIX=${prefix} CC='${CC}' DESTDIR=${D} LIBDIR=${libdir} INCLUDEDIR=${includedir}"
 
-- 
1.9.1



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

* Re: [meta-oe][PATCH] [v3] lz4: update to latest version
  2014-07-15  9:08 ` Koen Kooi
@ 2014-07-15 13:55   ` akuster
  0 siblings, 0 replies; 9+ messages in thread
From: akuster @ 2014-07-15 13:55 UTC (permalink / raw)
  To: Koen Kooi; +Cc: openembedded-devel


On 07/15/2014 02:08 AM, Koen Kooi wrote:
> -----BEGIN PGP SIGNED MESSAGE-----
> Hash: SHA1
>
> Armin Kuster schreef op 15-07-14 07:31:
>> update to version r119 Use github instead of svn LICENSE md5sum changed
>> since it was updated in r117
> Good to know when it was changed, but I'm more interested in *what* changed.

Copyright was updated.

-Copyright (c) 2013, Yann Collet
+Copyright (c) 2011-2014, Yann Collet



- Armin


>
>> FIxes CVE-2014-4611
>>
>> Signed-off-by: Armin Kuster <akuster@mvista.com> ---
>> meta/recipes-support/lz4/{lz4_svn.bb => lz4_git.bb} | 11 ++++------- 1
>> file changed, 4 insertions(+), 7 deletions(-) rename
>> meta/recipes-support/lz4/{lz4_svn.bb => lz4_git.bb} (68%)
>>
>> diff --git a/meta/recipes-support/lz4/lz4_svn.bb
>> b/meta/recipes-support/lz4/lz4_git.bb similarity index 68% rename from
>> meta/recipes-support/lz4/lz4_svn.bb rename to
>> meta/recipes-support/lz4/lz4_git.bb index 38e36d8..3978d76 100644 ---
>> a/meta/recipes-support/lz4/lz4_svn.bb +++
>> b/meta/recipes-support/lz4/lz4_git.bb @@ -2,15 +2,12 @@ SUMMARY =
>> "Extremely Fast Compression algorithm" DESCRIPTION = "LZ4 is a very fast
>> lossless compression algorithm, providing compression speed at 400 MB/s
>> per core, scalable with multi-cores CPU. It also features an extremely
>> fast decoder, with speed in multiple GB/s per core, typically reaching
>> RAM speed limits on multi-core systems."
>>
>> LICENSE = "BSD" -LIC_FILES_CHKSUM =
>> "file://LICENSE;md5=2008d2325e11691e17fcaa3a6046f850" +LIC_FILES_CHKSUM =
>> "file://LICENSE;md5=0b0d063f37a4477b54af2459477dcafd"
>>
>> -# Upstream names releases after SVN revs -SRCREV = "112" -PV =
>> "r${SRCREV}" +SRCREV = "28fd251bc7b42e5cde15f9a2d78fc53b3b575558"
>> +SRC_URI= "git://github.com/Cyan4973/lz4.git;branch=master"
>>
>> -SRC_URI = "svn://lz4.googlecode.com/svn/;module=trunk;protocol=http" -
>> -S = "${WORKDIR}/trunk" +S = "${WORKDIR}/git"
>>
>> EXTRA_OEMAKE = "PREFIX=${prefix} CC='${CC}' DESTDIR=${D} LIBDIR=${libdir}
>> INCLUDEDIR=${includedir}"
>>
>>
> -----BEGIN PGP SIGNATURE-----
> Version: GnuPG v1.4.5 (Darwin)
> Comment: GPGTools - http://gpgtools.org
>
> iD8DBQFTxO+KMkyGM64RGpERAnrdAJ9H8ZZGNxbZ7hGQd3sL8xKMhJ6v6wCdGKcf
> r8Kx6H0IJOr+2LDz7XAKVzo=
> =CNTg
> -----END PGP SIGNATURE-----
>



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

* Re: [meta-oe][PATCH] [v3] lz4: update to latest version
  2014-07-15 13:28 Armin Kuster
@ 2014-07-15 15:06 ` Saul Wold
  2014-07-15 15:22   ` akuster
  0 siblings, 1 reply; 9+ messages in thread
From: Saul Wold @ 2014-07-15 15:06 UTC (permalink / raw)
  To: Armin Kuster, openembedded-core

On 07/15/2014 06:28 AM, Armin Kuster wrote:
> update to version r119
> Use github instead of svn
> LICENSE md5sum changed since it was updated in r117

What exactly changed in r117?  Same License different working or ??

Sau!

> FIxes CVE-2014-4611
>
> Signed-off-by: Armin Kuster <akuster@mvista.com>
> ---
>   meta/recipes-support/lz4/{lz4_svn.bb => lz4_git.bb} | 11 ++++-------
>   1 file changed, 4 insertions(+), 7 deletions(-)
>   rename meta/recipes-support/lz4/{lz4_svn.bb => lz4_git.bb} (68%)
>
> diff --git a/meta/recipes-support/lz4/lz4_svn.bb b/meta/recipes-support/lz4/lz4_git.bb
> similarity index 68%
> rename from meta/recipes-support/lz4/lz4_svn.bb
> rename to meta/recipes-support/lz4/lz4_git.bb
> index 38e36d8..3978d76 100644
> --- a/meta/recipes-support/lz4/lz4_svn.bb
> +++ b/meta/recipes-support/lz4/lz4_git.bb
> @@ -2,15 +2,12 @@ SUMMARY = "Extremely Fast Compression algorithm"
>   DESCRIPTION = "LZ4 is a very fast lossless compression algorithm, providing compression speed at 400 MB/s per core, scalable with multi-cores CPU. It also features an extremely fast decoder, with speed in multiple GB/s per core, typically reaching RAM speed limits on multi-core systems."
>
>   LICENSE = "BSD"
> -LIC_FILES_CHKSUM = "file://LICENSE;md5=2008d2325e11691e17fcaa3a6046f850"
> +LIC_FILES_CHKSUM = "file://LICENSE;md5=0b0d063f37a4477b54af2459477dcafd"
>
> -# Upstream names releases after SVN revs
> -SRCREV = "112"
> -PV = "r${SRCREV}"
> +SRCREV = "28fd251bc7b42e5cde15f9a2d78fc53b3b575558"
> +SRC_URI= "git://github.com/Cyan4973/lz4.git;branch=master"
>
> -SRC_URI = "svn://lz4.googlecode.com/svn/;module=trunk;protocol=http"
> -
> -S = "${WORKDIR}/trunk"
> +S = "${WORKDIR}/git"
>
>   EXTRA_OEMAKE = "PREFIX=${prefix} CC='${CC}' DESTDIR=${D} LIBDIR=${libdir} INCLUDEDIR=${includedir}"
>
>


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

* Re: [meta-oe][PATCH] [v3] lz4: update to latest version
  2014-07-15 15:06 ` Saul Wold
@ 2014-07-15 15:22   ` akuster
  2014-07-15 15:37     ` Saul Wold
  0 siblings, 1 reply; 9+ messages in thread
From: akuster @ 2014-07-15 15:22 UTC (permalink / raw)
  To: Saul Wold, openembedded-core


On 07/15/2014 08:06 AM, Saul Wold wrote:
> On 07/15/2014 06:28 AM, Armin Kuster wrote:
>> update to version r119
>> Use github instead of svn
>> LICENSE md5sum changed since it was updated in r117
>
> What exactly changed in r117?  Same License different working or ??

They updated the copyright date.

- Armin
>
> Sau!
>
>> FIxes CVE-2014-4611
>>
>> Signed-off-by: Armin Kuster <akuster@mvista.com>
>> ---
>>   meta/recipes-support/lz4/{lz4_svn.bb => lz4_git.bb} | 11 ++++-------
>>   1 file changed, 4 insertions(+), 7 deletions(-)
>>   rename meta/recipes-support/lz4/{lz4_svn.bb => lz4_git.bb} (68%)
>>
>> diff --git a/meta/recipes-support/lz4/lz4_svn.bb 
>> b/meta/recipes-support/lz4/lz4_git.bb
>> similarity index 68%
>> rename from meta/recipes-support/lz4/lz4_svn.bb
>> rename to meta/recipes-support/lz4/lz4_git.bb
>> index 38e36d8..3978d76 100644
>> --- a/meta/recipes-support/lz4/lz4_svn.bb
>> +++ b/meta/recipes-support/lz4/lz4_git.bb
>> @@ -2,15 +2,12 @@ SUMMARY = "Extremely Fast Compression algorithm"
>>   DESCRIPTION = "LZ4 is a very fast lossless compression algorithm, 
>> providing compression speed at 400 MB/s per core, scalable with 
>> multi-cores CPU. It also features an extremely fast decoder, with 
>> speed in multiple GB/s per core, typically reaching RAM speed limits 
>> on multi-core systems."
>>
>>   LICENSE = "BSD"
>> -LIC_FILES_CHKSUM = 
>> "file://LICENSE;md5=2008d2325e11691e17fcaa3a6046f850"
>> +LIC_FILES_CHKSUM = 
>> "file://LICENSE;md5=0b0d063f37a4477b54af2459477dcafd"
>>
>> -# Upstream names releases after SVN revs
>> -SRCREV = "112"
>> -PV = "r${SRCREV}"
>> +SRCREV = "28fd251bc7b42e5cde15f9a2d78fc53b3b575558"
>> +SRC_URI= "git://github.com/Cyan4973/lz4.git;branch=master"
>>
>> -SRC_URI = "svn://lz4.googlecode.com/svn/;module=trunk;protocol=http"
>> -
>> -S = "${WORKDIR}/trunk"
>> +S = "${WORKDIR}/git"
>>
>>   EXTRA_OEMAKE = "PREFIX=${prefix} CC='${CC}' DESTDIR=${D} 
>> LIBDIR=${libdir} INCLUDEDIR=${includedir}"
>>
>>



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

* Re: [meta-oe][PATCH] [v3] lz4: update to latest version
  2014-07-15 15:22   ` akuster
@ 2014-07-15 15:37     ` Saul Wold
  2014-07-15 19:37       ` akuster
  0 siblings, 1 reply; 9+ messages in thread
From: Saul Wold @ 2014-07-15 15:37 UTC (permalink / raw)
  To: akuster, openembedded-core

On 07/15/2014 08:22 AM, akuster wrote:
>
> On 07/15/2014 08:06 AM, Saul Wold wrote:
>> On 07/15/2014 06:28 AM, Armin Kuster wrote:
>>> update to version r119
>>> Use github instead of svn
>>> LICENSE md5sum changed since it was updated in r117
>>
>> What exactly changed in r117?  Same License different working or ??
>
> They updated the copyright date.
>

That's what we need in the commit message then, please update your 
commit message.

Is there a valid PV that you can set for lz4, seems like they are still 
calling them rXXX, so PV should be "r119"

Thanks
	Sau!

> - Armin
>>
>> Sau!
>>
>>> FIxes CVE-2014-4611
>>>
>>> Signed-off-by: Armin Kuster <akuster@mvista.com>
>>> ---
>>>   meta/recipes-support/lz4/{lz4_svn.bb => lz4_git.bb} | 11 ++++-------
>>>   1 file changed, 4 insertions(+), 7 deletions(-)
>>>   rename meta/recipes-support/lz4/{lz4_svn.bb => lz4_git.bb} (68%)
>>>
>>> diff --git a/meta/recipes-support/lz4/lz4_svn.bb
>>> b/meta/recipes-support/lz4/lz4_git.bb
>>> similarity index 68%
>>> rename from meta/recipes-support/lz4/lz4_svn.bb
>>> rename to meta/recipes-support/lz4/lz4_git.bb
>>> index 38e36d8..3978d76 100644
>>> --- a/meta/recipes-support/lz4/lz4_svn.bb
>>> +++ b/meta/recipes-support/lz4/lz4_git.bb
>>> @@ -2,15 +2,12 @@ SUMMARY = "Extremely Fast Compression algorithm"
>>>   DESCRIPTION = "LZ4 is a very fast lossless compression algorithm,
>>> providing compression speed at 400 MB/s per core, scalable with
>>> multi-cores CPU. It also features an extremely fast decoder, with
>>> speed in multiple GB/s per core, typically reaching RAM speed limits
>>> on multi-core systems."
>>>
>>>   LICENSE = "BSD"
>>> -LIC_FILES_CHKSUM =
>>> "file://LICENSE;md5=2008d2325e11691e17fcaa3a6046f850"
>>> +LIC_FILES_CHKSUM =
>>> "file://LICENSE;md5=0b0d063f37a4477b54af2459477dcafd"
>>>
>>> -# Upstream names releases after SVN revs
>>> -SRCREV = "112"
>>> -PV = "r${SRCREV}"
>>> +SRCREV = "28fd251bc7b42e5cde15f9a2d78fc53b3b575558"
>>> +SRC_URI= "git://github.com/Cyan4973/lz4.git;branch=master"
>>>
>>> -SRC_URI = "svn://lz4.googlecode.com/svn/;module=trunk;protocol=http"
>>> -
>>> -S = "${WORKDIR}/trunk"
>>> +S = "${WORKDIR}/git"
>>>
>>>   EXTRA_OEMAKE = "PREFIX=${prefix} CC='${CC}' DESTDIR=${D}
>>> LIBDIR=${libdir} INCLUDEDIR=${includedir}"
>>>
>>>
>
>


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

* Re: [meta-oe][PATCH] [v3] lz4: update to latest version
  2014-07-15 15:37     ` Saul Wold
@ 2014-07-15 19:37       ` akuster
  0 siblings, 0 replies; 9+ messages in thread
From: akuster @ 2014-07-15 19:37 UTC (permalink / raw)
  To: Saul Wold, openembedded-core


On 07/15/2014 08:37 AM, Saul Wold wrote:
> On 07/15/2014 08:22 AM, akuster wrote:
>>
>> On 07/15/2014 08:06 AM, Saul Wold wrote:
>>> On 07/15/2014 06:28 AM, Armin Kuster wrote:
>>>> update to version r119
>>>> Use github instead of svn
>>>> LICENSE md5sum changed since it was updated in r117
>>>
>>> What exactly changed in r117?  Same License different working or ??
>>
>> They updated the copyright date.
>>
>
> That's what we need in the commit message then, please update your 
> commit message.

done

>
> Is there a valid PV that you can set for lz4, seems like they are 
> still calling them rXXX, so PV should be "r119"

done.

Thanks,
Armin
>
> Thanks
>     Sau!
>
>> - Armin
>>>
>>> Sau!
>>>
>>>> FIxes CVE-2014-4611
>>>>
>>>> Signed-off-by: Armin Kuster <akuster@mvista.com>
>>>> ---
>>>>   meta/recipes-support/lz4/{lz4_svn.bb => lz4_git.bb} | 11 ++++-------
>>>>   1 file changed, 4 insertions(+), 7 deletions(-)
>>>>   rename meta/recipes-support/lz4/{lz4_svn.bb => lz4_git.bb} (68%)
>>>>
>>>> diff --git a/meta/recipes-support/lz4/lz4_svn.bb
>>>> b/meta/recipes-support/lz4/lz4_git.bb
>>>> similarity index 68%
>>>> rename from meta/recipes-support/lz4/lz4_svn.bb
>>>> rename to meta/recipes-support/lz4/lz4_git.bb
>>>> index 38e36d8..3978d76 100644
>>>> --- a/meta/recipes-support/lz4/lz4_svn.bb
>>>> +++ b/meta/recipes-support/lz4/lz4_git.bb
>>>> @@ -2,15 +2,12 @@ SUMMARY = "Extremely Fast Compression algorithm"
>>>>   DESCRIPTION = "LZ4 is a very fast lossless compression algorithm,
>>>> providing compression speed at 400 MB/s per core, scalable with
>>>> multi-cores CPU. It also features an extremely fast decoder, with
>>>> speed in multiple GB/s per core, typically reaching RAM speed limits
>>>> on multi-core systems."
>>>>
>>>>   LICENSE = "BSD"
>>>> -LIC_FILES_CHKSUM =
>>>> "file://LICENSE;md5=2008d2325e11691e17fcaa3a6046f850"
>>>> +LIC_FILES_CHKSUM =
>>>> "file://LICENSE;md5=0b0d063f37a4477b54af2459477dcafd"
>>>>
>>>> -# Upstream names releases after SVN revs
>>>> -SRCREV = "112"
>>>> -PV = "r${SRCREV}"
>>>> +SRCREV = "28fd251bc7b42e5cde15f9a2d78fc53b3b575558"
>>>> +SRC_URI= "git://github.com/Cyan4973/lz4.git;branch=master"
>>>>
>>>> -SRC_URI = "svn://lz4.googlecode.com/svn/;module=trunk;protocol=http"
>>>> -
>>>> -S = "${WORKDIR}/trunk"
>>>> +S = "${WORKDIR}/git"
>>>>
>>>>   EXTRA_OEMAKE = "PREFIX=${prefix} CC='${CC}' DESTDIR=${D}
>>>> LIBDIR=${libdir} INCLUDEDIR=${includedir}"
>>>>
>>>>
>>
>>



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

end of thread, other threads:[~2014-07-15 19:37 UTC | newest]

Thread overview: 9+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2014-07-15  5:31 [meta-oe][PATCH] [v3] lz4: update to latest version Armin Kuster
2014-07-15  9:08 ` Koen Kooi
2014-07-15 13:55   ` akuster
2014-07-15 13:15 ` Martin Jansa
  -- strict thread matches above, loose matches on Subject: below --
2014-07-15 13:28 Armin Kuster
2014-07-15 15:06 ` Saul Wold
2014-07-15 15:22   ` akuster
2014-07-15 15:37     ` Saul Wold
2014-07-15 19:37       ` akuster

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.