mailarchive of the ptxdist mailing list
 help / color / mirror / Atom feed
* [ptxdist] [PATCH] libjpeg: Version bump. 2.1.4 -> 2.1.5.
@ 2023-02-02 12:46 Christian Melki
  2023-02-10 14:17 ` [ptxdist] [APPLIED] " Michael Olbrich
  0 siblings, 1 reply; 2+ messages in thread
From: Christian Melki @ 2023-02-02 12:46 UTC (permalink / raw)
  To: ptxdist

Bugfix release. Nothing overly relevant to most users.
https://github.com/libjpeg-turbo/libjpeg-turbo/releases/tag/2.1.5

* License file year changes. Fix hash.
* Add altivec optimizations since ptxdist now supports it.

Signed-off-by: Christian Melki <christian.melki@t2data.com>
---
 rules/libjpeg.make | 9 ++++++---
 1 file changed, 6 insertions(+), 3 deletions(-)

diff --git a/rules/libjpeg.make b/rules/libjpeg.make
index 60125b77d..29cc563ef 100644
--- a/rules/libjpeg.make
+++ b/rules/libjpeg.make
@@ -16,8 +16,8 @@ PACKAGES-$(PTXCONF_LIBJPEG) += libjpeg
 #
 # Paths and names
 #
-LIBJPEG_VERSION	:= 2.1.4
-LIBJPEG_MD5	:= 3241b54016c445e5d8f0ebb0ad9294ed
+LIBJPEG_VERSION	:= 2.1.5
+LIBJPEG_MD5	:= 1c6e9f8550a82c6d4cd30b370c22a5fd
 LIBJPEG_SUFFIX	:= tar.gz
 LIBJPEG		:= libjpeg-turbo-$(LIBJPEG_VERSION)
 LIBJPEG_TARBALL	:= $(LIBJPEG).$(LIBJPEG_SUFFIX)
@@ -26,7 +26,7 @@ LIBJPEG_SOURCE	:= $(SRCDIR)/$(LIBJPEG_TARBALL)
 LIBJPEG_DIR	:= $(BUILDDIR)/$(LIBJPEG)
 LIBJPEG_LICENSE	:= IJG, BSD-3-Clause, Zlib
 LIBJPEG_LICENSE_FILES := \
-	file://LICENSE.md;md5=a75feaa2de6d8942f50d412241fca1f1 \
+	file://LICENSE.md;md5=2a8e0d8226a102f07ab63ed7fd6ce155 \
 	file://README.ijg;startline=112;endline=174;md5=9fcb5339d9de46b31309aeef52d7deb1 \
 	file://simd/nasm/jsimdext.inc;startline=13;endline=28;md5=839b9ed7df5168976efc071bee29a76e
 
@@ -42,6 +42,9 @@ endif
 ifdef PTXCONF_ARCH_ARM_NEON
 LIBJPEG_SIMD := y
 endif
+ifdef PTXCONF_ARCH_PPC_ALTIVEC
+LIBJPEG_SIMD := y
+endif
 
 LIBJPEG_CONF_TOOL := cmake
 LIBJPEG_CONF_OPT := \
-- 
2.34.1




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

* Re: [ptxdist] [APPLIED] libjpeg: Version bump. 2.1.4 -> 2.1.5.
  2023-02-02 12:46 [ptxdist] [PATCH] libjpeg: Version bump. 2.1.4 -> 2.1.5 Christian Melki
@ 2023-02-10 14:17 ` Michael Olbrich
  0 siblings, 0 replies; 2+ messages in thread
From: Michael Olbrich @ 2023-02-10 14:17 UTC (permalink / raw)
  To: ptxdist; +Cc: Christian Melki

Thanks, applied as 8308034c10107fc6449c7f904fe2a168bcdc9d8b.

Michael

[sent from post-receive hook]

On Fri, 10 Feb 2023 15:17:07 +0100, Christian Melki <christian.melki@t2data.com> wrote:
> Bugfix release. Nothing overly relevant to most users.
> https://github.com/libjpeg-turbo/libjpeg-turbo/releases/tag/2.1.5
> 
> * License file year changes. Fix hash.
> * Add altivec optimizations since ptxdist now supports it.
> 
> Signed-off-by: Christian Melki <christian.melki@t2data.com>
> Message-Id: <20230202124608.1164456-1-christian.melki@t2data.com>
> Signed-off-by: Michael Olbrich <m.olbrich@pengutronix.de>
> 
> diff --git a/rules/libjpeg.make b/rules/libjpeg.make
> index 60125b77d145..29cc563ef44d 100644
> --- a/rules/libjpeg.make
> +++ b/rules/libjpeg.make
> @@ -16,8 +16,8 @@ PACKAGES-$(PTXCONF_LIBJPEG) += libjpeg
>  #
>  # Paths and names
>  #
> -LIBJPEG_VERSION	:= 2.1.4
> -LIBJPEG_MD5	:= 3241b54016c445e5d8f0ebb0ad9294ed
> +LIBJPEG_VERSION	:= 2.1.5
> +LIBJPEG_MD5	:= 1c6e9f8550a82c6d4cd30b370c22a5fd
>  LIBJPEG_SUFFIX	:= tar.gz
>  LIBJPEG		:= libjpeg-turbo-$(LIBJPEG_VERSION)
>  LIBJPEG_TARBALL	:= $(LIBJPEG).$(LIBJPEG_SUFFIX)
> @@ -26,7 +26,7 @@ LIBJPEG_SOURCE	:= $(SRCDIR)/$(LIBJPEG_TARBALL)
>  LIBJPEG_DIR	:= $(BUILDDIR)/$(LIBJPEG)
>  LIBJPEG_LICENSE	:= IJG, BSD-3-Clause, Zlib
>  LIBJPEG_LICENSE_FILES := \
> -	file://LICENSE.md;md5=a75feaa2de6d8942f50d412241fca1f1 \
> +	file://LICENSE.md;md5=2a8e0d8226a102f07ab63ed7fd6ce155 \
>  	file://README.ijg;startline=112;endline=174;md5=9fcb5339d9de46b31309aeef52d7deb1 \
>  	file://simd/nasm/jsimdext.inc;startline=13;endline=28;md5=839b9ed7df5168976efc071bee29a76e
>  
> @@ -42,6 +42,9 @@ endif
>  ifdef PTXCONF_ARCH_ARM_NEON
>  LIBJPEG_SIMD := y
>  endif
> +ifdef PTXCONF_ARCH_PPC_ALTIVEC
> +LIBJPEG_SIMD := y
> +endif
>  
>  LIBJPEG_CONF_TOOL := cmake
>  LIBJPEG_CONF_OPT := \



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

end of thread, other threads:[~2023-02-10 14:17 UTC | newest]

Thread overview: 2+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2023-02-02 12:46 [ptxdist] [PATCH] libjpeg: Version bump. 2.1.4 -> 2.1.5 Christian Melki
2023-02-10 14:17 ` [ptxdist] [APPLIED] " Michael Olbrich

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox