All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCHv3 1/2] libjpeg-turbo: update to 1.3.0 release (svn r988)
@ 2013-10-15 12:54 Fathi Boudra
  2013-10-15 12:54 ` [PATCHv3 2/2] libjpeg-turbo: fix variables spacing Fathi Boudra
  2013-10-15 13:48 ` [PATCHv3 1/2] libjpeg-turbo: update to 1.3.0 release (svn r988) Martin Jansa
  0 siblings, 2 replies; 3+ messages in thread
From: Fathi Boudra @ 2013-10-15 12:54 UTC (permalink / raw)
  To: openembedded-devel; +Cc: Koen Kooi

License files changes:
 + * This file was part of the Independent JPEG Group's software:
   * Copyright (C) 1991-1998, Thomas G. Lane.
   * Modified 2002-2009 by Guido Vollbeding.
 - * Copyright (C) 2009-2011, D. R. Commander.
 - * This file is part of the Independent JPEG Group's software.
 + * Modifications:
 + * Copyright (C) 2009-2011, 2013, D. R. Commander.

Update SRC_URI to match new SF layout.

Signed-off-by: Fathi Boudra <fathi.boudra@linaro.org>
---
 meta-oe/recipes-core/jpeg/libjpeg-turbo_svn.bb | 11 +++++------
 1 file changed, 5 insertions(+), 6 deletions(-)

diff --git a/meta-oe/recipes-core/jpeg/libjpeg-turbo_svn.bb b/meta-oe/recipes-core/jpeg/libjpeg-turbo_svn.bb
index 4fd258f..cb3693f 100644
--- a/meta-oe/recipes-core/jpeg/libjpeg-turbo_svn.bb
+++ b/meta-oe/recipes-core/jpeg/libjpeg-turbo_svn.bb
@@ -3,13 +3,12 @@ HOMEPAGE = "http://libjpeg-turbo.org/"
 
 LICENSE ="BSD-3-Clause"
 LIC_FILES_CHKSUM = "file://cdjpeg.h;endline=12;md5=78fa8dbac547bb5b2a0e6457a6cfe21d \
-                    file://jpeglib.h;endline=14;md5=7bb9a39828a1b1e84acd4e8aec1e5532 \
-                    file://djpeg.c;endline=13;md5=e85613b52f2906c5dfc0e21ec902cb33 \
+                    file://jpeglib.h;endline=14;md5=a08bb0a80f782a9f8da313cc4015ed6f \
+                    file://djpeg.c;endline=13;md5=03db065044529233c296324be85530ab \
 "
-PV = "8d+1.2.1"
-PR = "r2"
-SRCREV = "837"
-SRC_URI = "svn://libjpeg-turbo.svn.sourceforge.net/svnroot/libjpeg-turbo;protocol=https;module=trunk"
+PV = "8d+1.3.0"
+SRCREV = "988"
+SRC_URI = "svn://svn.code.sf.net/p/libjpeg-turbo/code/trunk;protocol=https;module=trunk"
 
 S = "${WORKDIR}/trunk"
 
-- 
1.8.1.2



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

* [PATCHv3 2/2] libjpeg-turbo: fix variables spacing
  2013-10-15 12:54 [PATCHv3 1/2] libjpeg-turbo: update to 1.3.0 release (svn r988) Fathi Boudra
@ 2013-10-15 12:54 ` Fathi Boudra
  2013-10-15 13:48 ` [PATCHv3 1/2] libjpeg-turbo: update to 1.3.0 release (svn r988) Martin Jansa
  1 sibling, 0 replies; 3+ messages in thread
From: Fathi Boudra @ 2013-10-15 12:54 UTC (permalink / raw)
  To: openembedded-devel; +Cc: Koen Kooi

Signed-off-by: Fathi Boudra <fathi.boudra@linaro.org>
---
 meta-oe/recipes-core/jpeg/libjpeg-turbo_svn.bb | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/meta-oe/recipes-core/jpeg/libjpeg-turbo_svn.bb b/meta-oe/recipes-core/jpeg/libjpeg-turbo_svn.bb
index cb3693f..607d9de 100644
--- a/meta-oe/recipes-core/jpeg/libjpeg-turbo_svn.bb
+++ b/meta-oe/recipes-core/jpeg/libjpeg-turbo_svn.bb
@@ -1,7 +1,7 @@
 DESCRIPTION = "libjpeg-turbo is a derivative of libjpeg that uses SIMD instructions (MMX, SSE2, NEON) to accelerate baseline JPEG compression and decompression"
 HOMEPAGE = "http://libjpeg-turbo.org/"
 
-LICENSE ="BSD-3-Clause"
+LICENSE = "BSD-3-Clause"
 LIC_FILES_CHKSUM = "file://cdjpeg.h;endline=12;md5=78fa8dbac547bb5b2a0e6457a6cfe21d \
                     file://jpeglib.h;endline=14;md5=a08bb0a80f782a9f8da313cc4015ed6f \
                     file://djpeg.c;endline=13;md5=03db065044529233c296324be85530ab \
@@ -25,7 +25,7 @@ EXTRA_OECONF = "--with-jpeg8 "
 PACKAGES =+ "jpeg-tools libturbojpeg"
 
 DESCRIPTION_jpeg-tools = "The jpeg-tools package includes the client programs for access libjpeg functionality.  These tools allow for the compression, decompression, transformation and display of JPEG files."
-FILES_jpeg-tools =  "${bindir}/*"
+FILES_jpeg-tools = "${bindir}/*"
 
 FILES_libturbojpeg = "${libdir}/libturbojpeg.so"
 INSANE_SKIP_libturbojpeg = "dev-so"
-- 
1.8.1.2



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

* Re: [PATCHv3 1/2] libjpeg-turbo: update to 1.3.0 release (svn r988)
  2013-10-15 12:54 [PATCHv3 1/2] libjpeg-turbo: update to 1.3.0 release (svn r988) Fathi Boudra
  2013-10-15 12:54 ` [PATCHv3 2/2] libjpeg-turbo: fix variables spacing Fathi Boudra
@ 2013-10-15 13:48 ` Martin Jansa
  1 sibling, 0 replies; 3+ messages in thread
From: Martin Jansa @ 2013-10-15 13:48 UTC (permalink / raw)
  To: Fathi Boudra; +Cc: Koen Kooi, openembedded-devel

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

On Tue, Oct 15, 2013 at 03:54:27PM +0300, Fathi Boudra wrote:
> License files changes:
>  + * This file was part of the Independent JPEG Group's software:
>    * Copyright (C) 1991-1998, Thomas G. Lane.
>    * Modified 2002-2009 by Guido Vollbeding.
>  - * Copyright (C) 2009-2011, D. R. Commander.
>  - * This file is part of the Independent JPEG Group's software.
>  + * Modifications:
>  + * Copyright (C) 2009-2011, 2013, D. R. Commander.
> 
> Update SRC_URI to match new SF layout.
> 
> Signed-off-by: Fathi Boudra <fathi.boudra@linaro.org>
> ---
>  meta-oe/recipes-core/jpeg/libjpeg-turbo_svn.bb | 11 +++++------
>  1 file changed, 5 insertions(+), 6 deletions(-)
> 
> diff --git a/meta-oe/recipes-core/jpeg/libjpeg-turbo_svn.bb b/meta-oe/recipes-core/jpeg/libjpeg-turbo_svn.bb
> index 4fd258f..cb3693f 100644
> --- a/meta-oe/recipes-core/jpeg/libjpeg-turbo_svn.bb
> +++ b/meta-oe/recipes-core/jpeg/libjpeg-turbo_svn.bb
> @@ -3,13 +3,12 @@ HOMEPAGE = "http://libjpeg-turbo.org/"
>  
>  LICENSE ="BSD-3-Clause"
>  LIC_FILES_CHKSUM = "file://cdjpeg.h;endline=12;md5=78fa8dbac547bb5b2a0e6457a6cfe21d \
> -                    file://jpeglib.h;endline=14;md5=7bb9a39828a1b1e84acd4e8aec1e5532 \
> -                    file://djpeg.c;endline=13;md5=e85613b52f2906c5dfc0e21ec902cb33 \
> +                    file://jpeglib.h;endline=14;md5=a08bb0a80f782a9f8da313cc4015ed6f \
> +                    file://djpeg.c;endline=13;md5=03db065044529233c296324be85530ab \
>  "
> -PV = "8d+1.2.1"
> -PR = "r2"
> -SRCREV = "837"
> -SRC_URI = "svn://libjpeg-turbo.svn.sourceforge.net/svnroot/libjpeg-turbo;protocol=https;module=trunk"
> +PV = "8d+1.3.0"
> +SRCREV = "988"
> +SRC_URI = "svn://svn.code.sf.net/p/libjpeg-turbo/code/trunk;protocol=https;module=trunk"

looks like there is "trunk" twice now:

NOTE: recipe libjpeg-turbo-8d+1.3.0-r0: task do_fetch: Started
WARNING: Failed to fetch URL
svn://svn.code.sf.net/p/libjpeg-turbo/code/trunk;protocol=https;module=trunk,
attempting MIRRORS if available
ERROR: Fetcher failure: Fetch command failed with exit code 1, output:
svn: E170000: URL
'https://svn.code.sf.net/p/libjpeg-turbo/code/trunk/trunk' doesn't exist

ERROR: Function failed: Fetcher failure for URL:
'svn://svn.code.sf.net/p/libjpeg-turbo/code/trunk;protocol=https;module=trunk'.
Unable to fetch URL from any source.


>  
>  S = "${WORKDIR}/trunk"
>  
> -- 
> 1.8.1.2
> 

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

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

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

end of thread, other threads:[~2013-10-15 13:48 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2013-10-15 12:54 [PATCHv3 1/2] libjpeg-turbo: update to 1.3.0 release (svn r988) Fathi Boudra
2013-10-15 12:54 ` [PATCHv3 2/2] libjpeg-turbo: fix variables spacing Fathi Boudra
2013-10-15 13:48 ` [PATCHv3 1/2] libjpeg-turbo: update to 1.3.0 release (svn r988) Martin Jansa

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.