From d01cf922f3c1681632ab2ef1051478b2cd7c0cd8f7d036649a028c63b5df4217 Mon Sep 17 00:00:00 2001 From: David Anes Date: Thu, 19 Jan 2023 09:31:13 +0000 Subject: [PATCH] Accepting request 1059511 from home:ohollmann:branches:graphics - Drop patch big-endian.patch, already in upstream since 10.87.00 OBS-URL: https://build.opensuse.org/request/show/1059511 OBS-URL: https://build.opensuse.org/package/show/graphics/netpbm?expand=0&rev=141 --- big-endian.patch | 16 ---------------- netpbm.changes | 5 +++++ netpbm.spec | 4 +--- 3 files changed, 6 insertions(+), 19 deletions(-) delete mode 100644 big-endian.patch diff --git a/big-endian.patch b/big-endian.patch deleted file mode 100644 index e09dc9c..0000000 --- a/big-endian.patch +++ /dev/null @@ -1,16 +0,0 @@ -Index: netpbm-10.88.1/converter/pbm/pbmtozinc.c -=================================================================== ---- netpbm-10.88.1.orig/converter/pbm/pbmtozinc.c 2019-12-20 12:48:08.981181384 +0100 -+++ netpbm-10.88.1/converter/pbm/pbmtozinc.c 2019-12-20 12:48:58.121462453 +0100 -@@ -110,7 +110,10 @@ packer_putitem(Packer * const packe - - ++packerP->itemsperline; - -- printf ("0x%02x%02x", hi, lo); -+ if (BYTE_ORDER == LITTLE_ENDIAN) -+ printf ("0x%02x%02x", hi, lo); -+ else -+ printf ("0x%02x%02x", lo, hi); - - } - diff --git a/netpbm.changes b/netpbm.changes index ada2e55..021d072 100644 --- a/netpbm.changes +++ b/netpbm.changes @@ -1,3 +1,8 @@ +------------------------------------------------------------------- +Thu Jan 19 09:15:10 UTC 2023 - Otto Hollmann + +- Drop patch big-endian.patch, already in upstream since 10.87.00 + ------------------------------------------------------------------- Sun Sep 18 09:15:29 UTC 2022 - Andreas Schwab diff --git a/netpbm.spec b/netpbm.spec index e6b8465..d2eb06d 100644 --- a/netpbm.spec +++ b/netpbm.spec @@ -1,7 +1,7 @@ # # spec file for package netpbm # -# Copyright (c) 2022 SUSE LLC +# Copyright (c) 2023 SUSE LLC # # All modifications and additions to the file contributed by third parties # remain the property of their copyright owners, unless otherwise agreed @@ -43,8 +43,6 @@ Patch4: %{name}-gcc-warnings.patch Patch5: makeman-py3.patch # PATCH-FIX-UPSTREAM fix bad use of plain char Patch6: signed-char.patch -# PATCH-FIX-UPSTREAM fix dependency on byte order -Patch7: big-endian.patch # bsc#1144255 disable jpeg2k support due to removal of jasper Patch8: netpbm-disable-jasper.patch # PATCH-FIX-UPSTREAM fix arithmetic overflow in ppmforge (https://sourceforge.net/p/netpbm/code/4428/)