From bba0261cecd92978a194396ccd5a698d198307d7e641b7fb9bbaa794c1356028 Mon Sep 17 00:00:00 2001 From: Petr Gajdos Date: Thu, 25 Nov 2021 10:04:41 +0000 Subject: [PATCH] Accepting request 933591 from home:dirkmueller:Factory - update to 2.1.2: * Fixed a regression introduced by 2.1 beta1[13] that caused the remaining GAS implementations of AArch64 (Arm 64-bit) Neon SIMD functions (which are used by default with GCC for performance reasons) to be placed in the `.rodata` section rather than in the `.text` section. This caused the GNU linker to automatically place the `.rodata` section in an executable segment, which prevented libjpeg-turbo from working properly with other linkers and also represented a potential security risk. * Fixed an issue whereby the `tjTransform()` function incorrectly computed the MCU block size for 4:4:4 JPEG images with non-unary sampling factors and thus unduly rejected some cropping regions, even though those regions aligned with 8x8 MCU block boundaries. * Fixed a regression introduced by 2.1 beta1[13] that caused the build system to enable the Arm Neon SIMD extensions when targetting Armv6 and other legacy architectures that do not support Neon instructions. * libjpeg-turbo now performs run-time detection of AltiVec instructions on FreeBSD/PowerPC systems if AltiVec instructions are not enabled at compile time. This allows both AltiVec-equipped and non-AltiVec-equipped CPUs to be supported using the same build of libjpeg-turbo. * cjpeg now accepts a `-strict` argument similar to that of djpeg and jpegtran, which causes the compressor to abort if an LZW-compressed GIF input image contains incomplete or corrupt image data. OBS-URL: https://build.opensuse.org/request/show/933591 OBS-URL: https://build.opensuse.org/package/show/graphics/libjpeg-turbo?expand=0&rev=124 --- libjpeg-turbo-2.1.1.tar.gz | 3 --- libjpeg-turbo-2.1.1.tar.gz.sig | Bin 543 -> 0 bytes libjpeg-turbo-2.1.2.tar.gz | 3 +++ libjpeg-turbo-2.1.2.tar.gz.sig | Bin 0 -> 543 bytes libjpeg-turbo.changes | 26 ++++++++++++++++++++++++++ libjpeg-turbo.spec | 2 +- libjpeg62-turbo.spec | 2 +- 7 files changed, 31 insertions(+), 5 deletions(-) delete mode 100644 libjpeg-turbo-2.1.1.tar.gz delete mode 100644 libjpeg-turbo-2.1.1.tar.gz.sig create mode 100644 libjpeg-turbo-2.1.2.tar.gz create mode 100644 libjpeg-turbo-2.1.2.tar.gz.sig diff --git a/libjpeg-turbo-2.1.1.tar.gz b/libjpeg-turbo-2.1.1.tar.gz deleted file mode 100644 index 0f68a2a..0000000 --- a/libjpeg-turbo-2.1.1.tar.gz +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:b76aaedefb71ba882cbad4e9275b30c2ae493e3195be0a099425b5c6b99bd510 -size 2256321 diff --git a/libjpeg-turbo-2.1.1.tar.gz.sig b/libjpeg-turbo-2.1.1.tar.gz.sig deleted file mode 100644 index f1fbef2d63e15b1630378eaa1912d2a60c32f0b1a39d9316a6fe38556ab3a3d4..0000000000000000000000000000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 543 zcmV+)0^t3L0vrSY0RjL91p;9aeU$Vmw@`Ca#K60kOQDThi?b2@r1fF@=6_I+{+K5Y0eSWP+4hDnBj zQ5xi2z;gV;TrPedNf|yXvR4DQok;OEB2pEjg^^7Gp0Z{cv}w19*9^dSWimR)7buii zHI><(b!8?udlD5Y$B@0_C?jCv>efVDlUD?Mqei^X(C~EYfD4mXpDsfx#rvzzVN8SY z04+D`l$42e*X36xy19sU&K`aVmrrkJ#^qFVG@!;AW+cyJgY%SSjik^s`FSmq!p4#9 zK3Fayn?UBzO|1)?)Hf)vg7n{uU5=s`KY!qj;Y84q&&0&?v$1=AWrleA)z(X5;h~y6@^MXLBic*Hs-^_9Oa@2(s6=Nt9KOe%M4Tl6@Wc0*0q@_RZXa~fEM{LuFH=J z7*YVX&eJ)--vN8<_OI@us9AHsONBA>zW4Q!aR}j9zL`Q{r?JwZkEmrNKCZyjoTY>r zF_9)h8Dsgk4Q|iwgM6~j7P2eg>Mg&8@zS~xnnvZD)Buoz~C{rwz1w zB*aO7Ky_gZTUVUl2*2h&1Uc|=?zxggtk|q+Ht90b{uL&^34!A`9=uU{!Ji4feaODG zz`A65G<|840)W$-q3d`g)$*~H2A}i}f*SWyG!3!!$xsl9!5bxw*OZb$_bnSRR3C^Y z|A-APf zSyCjm`x@#@N|Sm`^e@58~?DiM9E15{6}+2;JA6OIt(! z4HGTTzC(8G31^}%p*#tjae$pIH$ru^Olq8~`#lTTm;!V9%N~G$*hp?NJ_rQ)2-UnV h473joz3H~&a(kQ|`u|a6xxk^b^Z!b&n)ssSIT8`S38(-7 literal 0 HcmV?d00001 diff --git a/libjpeg-turbo.changes b/libjpeg-turbo.changes index 7cc1996..2d275de 100644 --- a/libjpeg-turbo.changes +++ b/libjpeg-turbo.changes @@ -1,3 +1,29 @@ +------------------------------------------------------------------- +Wed Nov 24 21:39:14 UTC 2021 - Dirk Müller + +- update to 2.1.2: + * Fixed a regression introduced by 2.1 beta1[13] that caused the remaining + GAS implementations of AArch64 (Arm 64-bit) Neon SIMD functions (which are used + by default with GCC for performance reasons) to be placed in the `.rodata` + section rather than in the `.text` section. This caused the GNU linker to + automatically place the `.rodata` section in an executable segment, which + prevented libjpeg-turbo from working properly with other linkers and also + represented a potential security risk. + * Fixed an issue whereby the `tjTransform()` function incorrectly computed the + MCU block size for 4:4:4 JPEG images with non-unary sampling factors and thus + unduly rejected some cropping regions, even though those regions aligned with + 8x8 MCU block boundaries. + * Fixed a regression introduced by 2.1 beta1[13] that caused the build system + to enable the Arm Neon SIMD extensions when targetting Armv6 and other legacy + architectures that do not support Neon instructions. + * libjpeg-turbo now performs run-time detection of AltiVec instructions on + FreeBSD/PowerPC systems if AltiVec instructions are not enabled at compile + time. This allows both AltiVec-equipped and non-AltiVec-equipped CPUs to be + supported using the same build of libjpeg-turbo. + * cjpeg now accepts a `-strict` argument similar to that of djpeg and + jpegtran, which causes the compressor to abort if an LZW-compressed GIF input + image contains incomplete or corrupt image data. + ------------------------------------------------------------------- Wed Sep 29 13:03:15 UTC 2021 - pgajdos@suse.com diff --git a/libjpeg-turbo.spec b/libjpeg-turbo.spec index 7e5ff48..fa7ec23 100644 --- a/libjpeg-turbo.spec +++ b/libjpeg-turbo.spec @@ -18,7 +18,7 @@ %define asan_build 0 %define debug_build 0 -%define srcver 2.1.1 +%define srcver 2.1.2 %define major 8 %define minor 2 %define micro 2 diff --git a/libjpeg62-turbo.spec b/libjpeg62-turbo.spec index f5d53e0..0de575e 100644 --- a/libjpeg62-turbo.spec +++ b/libjpeg62-turbo.spec @@ -19,7 +19,7 @@ %define major 62 %define minor 3 %define micro 0 -%define srcver 2.1.1 +%define srcver 2.1.2 %define libver %{major}.%{minor}.%{micro} Name: libjpeg62-turbo Version: %{srcver}