mailarchive of the ptxdist mailing list
 help / color / mirror / Atom feed
* [ptxdist] [PATCH 2/2] host-libjpeg: Follow target libjpeg-bump 3.1.4.1 -> 3.2.0
@ 2026-07-08 17:29 Christian Melki
  2026-07-08 17:29 ` [ptxdist] [PATCH 1/2] libjpeg: Version bump. 3.1.4.1 -> 3.2 Christian Melki
  2026-07-15 10:01 ` [ptxdist] [APPLIED] host-libjpeg: Follow target libjpeg-bump 3.1.4.1 -> 3.2.0 Michael Olbrich
  0 siblings, 2 replies; 4+ messages in thread
From: Christian Melki @ 2026-07-08 17:29 UTC (permalink / raw)
  To: ptxdist

* Adjust build options, seemed to be a bit off?

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

diff --git a/rules/host-libjpeg.make b/rules/host-libjpeg.make
index bea261825..5d2222b53 100644
--- a/rules/host-libjpeg.make
+++ b/rules/host-libjpeg.make
@@ -26,15 +26,14 @@ HOST_LIBJPEG_CONF_OPT := \
 	-DENABLE_STATIC=OFF \
 	-DFORCE_INLINE=ON \
 	-DREQUIRE_SIMD=OFF \
-	-DWITH_12BIT=OFF \
 	-DWITH_ARITH_DEC=ON \
 	-DWITH_ARITH_ENC=ON \
 	-DWITH_FUZZ=OFF \
-	-DWITH_JAVA=OFF \
 	-DWITH_JPEG7=ON \
 	-DWITH_JPEG8=ON \
-	-DWITH_MEM_SRCDST=ON \
 	-DWITH_SIMD=OFF \
-	-DWITH_TURBOJPEG=ON \
+	-DWITH_TESTS=OFF \
+	-DWITH_TOOLS=ON \
+	-DWITH_TURBOJPEG=ON
 
 # vim: syntax=make
-- 
2.43.0




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

* [ptxdist] [PATCH 1/2] libjpeg: Version bump. 3.1.4.1 -> 3.2
  2026-07-08 17:29 [ptxdist] [PATCH 2/2] host-libjpeg: Follow target libjpeg-bump 3.1.4.1 -> 3.2.0 Christian Melki
@ 2026-07-08 17:29 ` Christian Melki
  2026-07-15 10:01   ` [ptxdist] [APPLIED] " Michael Olbrich
  2026-07-15 10:01 ` [ptxdist] [APPLIED] host-libjpeg: Follow target libjpeg-bump 3.1.4.1 -> 3.2.0 Michael Olbrich
  1 sibling, 1 reply; 4+ messages in thread
From: Christian Melki @ 2026-07-08 17:29 UTC (permalink / raw)
  To: ptxdist

-ARM GAS NEON (GCC12+ for performance)
-MIPS SIMD
+RISCV SIMD
-JAVA API.

https://github.com/libjpeg-turbo/libjpeg-turbo/releases/tag/3.1.90
https://github.com/libjpeg-turbo/libjpeg-turbo/releases/tag/3.2.0

* License hash changed. Miniz Zero clause BSD license removed.

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

diff --git a/rules/libjpeg.make b/rules/libjpeg.make
index d26381b3e..ac06d7ee3 100644
--- a/rules/libjpeg.make
+++ b/rules/libjpeg.make
@@ -16,8 +16,8 @@ PACKAGES-$(PTXCONF_LIBJPEG) += libjpeg
 #
 # Paths and names
 #
-LIBJPEG_VERSION	:= 3.1.4.1
-LIBJPEG_SHA256	:= a7da42b640377c2a9a9665e2c4b0ea60cd5599afb48c2521e6df0c9dc9d15a25
+LIBJPEG_VERSION	:= 3.2.0
+LIBJPEG_SHA256	:= 980dd81f425082aa6d7c9e47fef27554ce7a9ffc8e2f6e863b97d263c5c50858
 LIBJPEG_SUFFIX	:= tar.gz
 LIBJPEG		:= libjpeg-turbo-$(LIBJPEG_VERSION)
 LIBJPEG_URL	:= https://github.com/libjpeg-turbo/libjpeg-turbo/archive/refs/tags/$(LIBJPEG_VERSION).$(LIBJPEG_SUFFIX)
@@ -25,7 +25,7 @@ LIBJPEG_SOURCE	:= $(SRCDIR)/$(LIBJPEG).$(LIBJPEG_SUFFIX)
 LIBJPEG_DIR	:= $(BUILDDIR)/$(LIBJPEG)
 LIBJPEG_LICENSE	:= IJG AND BSD-3-Clause
 LIBJPEG_LICENSE_FILES := \
-	file://LICENSE.md;md5=5e22220994831d7f0b91d09d94c89a63 \
+	file://LICENSE.md;md5=d21daef3b4b318f77062055059c72934 \
 	file://README.ijg;startline=113;endline=164;md5=89d5b942e03050d117f34e50b49c2c61 \
 	file://simd/nasm/jsimdext.inc;startline=13;endline=28;md5=100ad877b6a14ec137afd49a6e109624
 
@@ -55,7 +55,6 @@ LIBJPEG_CONF_OPT := \
 	-DWITH_ARITH_DEC=ON \
 	-DWITH_ARITH_ENC=ON \
 	-DWITH_FUZZ=OFF \
-	-DWITH_JAVA=OFF \
 	-DWITH_JPEG7=ON \
 	-DWITH_JPEG8=ON \
 	-DWITH_SIMD=$(call ptx/onoff,LIBJPEG_SIMD) \
-- 
2.43.0




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

* Re: [ptxdist] [APPLIED] libjpeg: Version bump. 3.1.4.1 -> 3.2
  2026-07-08 17:29 ` [ptxdist] [PATCH 1/2] libjpeg: Version bump. 3.1.4.1 -> 3.2 Christian Melki
@ 2026-07-15 10:01   ` Michael Olbrich
  0 siblings, 0 replies; 4+ messages in thread
From: Michael Olbrich @ 2026-07-15 10:01 UTC (permalink / raw)
  To: ptxdist; +Cc: Christian Melki

Thanks, applied as 6b293d0a553722c66225486ed7831293f78c4f82.

Michael

[sent from post-receive hook]

On Wed, 15 Jul 2026 12:01:52 +0200, Christian Melki <christian.melki@t2data.com> wrote:
> -ARM GAS NEON (GCC12+ for performance)
> -MIPS SIMD
> +RISCV SIMD
> -JAVA API.
> 
> https://github.com/libjpeg-turbo/libjpeg-turbo/releases/tag/3.1.90
> https://github.com/libjpeg-turbo/libjpeg-turbo/releases/tag/3.2.0
> 
> * License hash changed. Miniz Zero clause BSD license removed.
> 
> Signed-off-by: Christian Melki <christian.melki@t2data.com>
> Message-Id: <20260708172940.571001-2-christian.melki@t2data.com>
> Signed-off-by: Michael Olbrich <m.olbrich@pengutronix.de>
> 
> diff --git a/rules/libjpeg.make b/rules/libjpeg.make
> index d26381b3e012..ac06d7ee3fc2 100644
> --- a/rules/libjpeg.make
> +++ b/rules/libjpeg.make
> @@ -16,8 +16,8 @@ PACKAGES-$(PTXCONF_LIBJPEG) += libjpeg
>  #
>  # Paths and names
>  #
> -LIBJPEG_VERSION	:= 3.1.4.1
> -LIBJPEG_SHA256	:= a7da42b640377c2a9a9665e2c4b0ea60cd5599afb48c2521e6df0c9dc9d15a25
> +LIBJPEG_VERSION	:= 3.2.0
> +LIBJPEG_SHA256	:= 980dd81f425082aa6d7c9e47fef27554ce7a9ffc8e2f6e863b97d263c5c50858
>  LIBJPEG_SUFFIX	:= tar.gz
>  LIBJPEG		:= libjpeg-turbo-$(LIBJPEG_VERSION)
>  LIBJPEG_URL	:= https://github.com/libjpeg-turbo/libjpeg-turbo/archive/refs/tags/$(LIBJPEG_VERSION).$(LIBJPEG_SUFFIX)
> @@ -25,7 +25,7 @@ LIBJPEG_SOURCE	:= $(SRCDIR)/$(LIBJPEG).$(LIBJPEG_SUFFIX)
>  LIBJPEG_DIR	:= $(BUILDDIR)/$(LIBJPEG)
>  LIBJPEG_LICENSE	:= IJG AND BSD-3-Clause
>  LIBJPEG_LICENSE_FILES := \
> -	file://LICENSE.md;md5=5e22220994831d7f0b91d09d94c89a63 \
> +	file://LICENSE.md;md5=d21daef3b4b318f77062055059c72934 \
>  	file://README.ijg;startline=113;endline=164;md5=89d5b942e03050d117f34e50b49c2c61 \
>  	file://simd/nasm/jsimdext.inc;startline=13;endline=28;md5=100ad877b6a14ec137afd49a6e109624
>  
> @@ -55,7 +55,6 @@ LIBJPEG_CONF_OPT := \
>  	-DWITH_ARITH_DEC=ON \
>  	-DWITH_ARITH_ENC=ON \
>  	-DWITH_FUZZ=OFF \
> -	-DWITH_JAVA=OFF \
>  	-DWITH_JPEG7=ON \
>  	-DWITH_JPEG8=ON \
>  	-DWITH_SIMD=$(call ptx/onoff,LIBJPEG_SIMD) \



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

* Re: [ptxdist] [APPLIED] host-libjpeg: Follow target libjpeg-bump 3.1.4.1 -> 3.2.0
  2026-07-08 17:29 [ptxdist] [PATCH 2/2] host-libjpeg: Follow target libjpeg-bump 3.1.4.1 -> 3.2.0 Christian Melki
  2026-07-08 17:29 ` [ptxdist] [PATCH 1/2] libjpeg: Version bump. 3.1.4.1 -> 3.2 Christian Melki
@ 2026-07-15 10:01 ` Michael Olbrich
  1 sibling, 0 replies; 4+ messages in thread
From: Michael Olbrich @ 2026-07-15 10:01 UTC (permalink / raw)
  To: ptxdist; +Cc: Christian Melki

Thanks, applied as 6d62fc0093ddfb5593d39fd29fe97e442df5065c.

Michael

[sent from post-receive hook]

On Wed, 15 Jul 2026 12:01:53 +0200, Christian Melki <christian.melki@t2data.com> wrote:
> * Adjust build options, seemed to be a bit off?
> 
> Signed-off-by: Christian Melki <christian.melki@t2data.com>
> Message-Id: <20260708172940.571001-1-christian.melki@t2data.com>
> Signed-off-by: Michael Olbrich <m.olbrich@pengutronix.de>
> 
> diff --git a/rules/host-libjpeg.make b/rules/host-libjpeg.make
> index bea261825601..5d2222b536c4 100644
> --- a/rules/host-libjpeg.make
> +++ b/rules/host-libjpeg.make
> @@ -26,15 +26,14 @@ HOST_LIBJPEG_CONF_OPT := \
>  	-DENABLE_STATIC=OFF \
>  	-DFORCE_INLINE=ON \
>  	-DREQUIRE_SIMD=OFF \
> -	-DWITH_12BIT=OFF \
>  	-DWITH_ARITH_DEC=ON \
>  	-DWITH_ARITH_ENC=ON \
>  	-DWITH_FUZZ=OFF \
> -	-DWITH_JAVA=OFF \
>  	-DWITH_JPEG7=ON \
>  	-DWITH_JPEG8=ON \
> -	-DWITH_MEM_SRCDST=ON \
>  	-DWITH_SIMD=OFF \
> -	-DWITH_TURBOJPEG=ON \
> +	-DWITH_TESTS=OFF \
> +	-DWITH_TOOLS=ON \
> +	-DWITH_TURBOJPEG=ON
>  
>  # vim: syntax=make



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

end of thread, other threads:[~2026-07-15 10:02 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2026-07-08 17:29 [ptxdist] [PATCH 2/2] host-libjpeg: Follow target libjpeg-bump 3.1.4.1 -> 3.2.0 Christian Melki
2026-07-08 17:29 ` [ptxdist] [PATCH 1/2] libjpeg: Version bump. 3.1.4.1 -> 3.2 Christian Melki
2026-07-15 10:01   ` [ptxdist] [APPLIED] " Michael Olbrich
2026-07-15 10:01 ` [ptxdist] [APPLIED] host-libjpeg: Follow target libjpeg-bump 3.1.4.1 -> 3.2.0 Michael Olbrich

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