Script 'mail_helper' called by obssrc Hello community, here is the log from the commit of package utsushi for openSUSE:Factory checked in at 2021-05-03 22:08:18 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Comparing /work/SRC/openSUSE:Factory/utsushi (Old) and /work/SRC/openSUSE:Factory/.utsushi.new.2988 (New) ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "utsushi" Mon May 3 22:08:18 2021 rev:2 rq:890033 version:1610777387.ab70633 Changes: -------- --- /work/SRC/openSUSE:Factory/utsushi/utsushi.changes 2021-03-30 21:50:17.842907590 +0200 +++ /work/SRC/openSUSE:Factory/.utsushi.new.2988/utsushi.changes 2021-05-03 22:08:42.780352150 +0200 @@ -1,0 +2,6 @@ +Mon May 3 10:54:37 UTC 2021 - Jan Baier <[email protected]> + +- fix build for TW +- add 0003-fix-uint-deprecation.patch + +------------------------------------------------------------------- New: ---- 0003-fix-uint-deprecation.patch ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Other differences: ------------------ ++++++ utsushi.spec ++++++ --- /var/tmp/diff_new_pack.fKcmpY/_old 2021-05-03 22:08:43.284350000 +0200 +++ /var/tmp/diff_new_pack.fKcmpY/_new 2021-05-03 22:08:43.288349982 +0200 @@ -1,7 +1,7 @@ # # spec file for package utsushi # -# Copyright (c) 2020 SUSE LLC +# Copyright (c) 2021 SUSE LLC # # All modifications and additions to the file contributed by third parties # remain the property of their copyright owners, unless otherwise agreed @@ -26,6 +26,7 @@ Source1: %{name}-rpmlintrc Patch0: 0001-drivers-avoid-library-version-for-dynamically-loadab.patch Patch1: 0002-avoid-version-for-dynamic-libs.patch +Patch2: 0003-fix-uint-deprecation.patch BuildRequires: autoconf BuildRequires: autoconf-archive BuildRequires: automake @@ -71,6 +72,7 @@ %setup -q %patch0 -p1 %patch1 +%patch2 ./bootstrap %build @@ -99,7 +101,9 @@ # Headers are not needed outside this package rm -r %{buildroot}/%{_includedir} # Do not install libtool files -find %{buildroot} -name "*.la" -delete -print +find %{buildroot} -type f -name "*.la" -delete -print +# Remove unwanted link to libtool file +rm %{buildroot}/%{_libdir}/sane/libsane-utsushi.la %find_lang %{name} %files ++++++ 0003-fix-uint-deprecation.patch ++++++ >From aef8290ce7833885e5601d29677434101c41aa66 Mon Sep 17 00:00:00 2001 From: Jan Baier <[email protected]> Date: Mon, 3 May 2021 12:38:54 +0200 Subject: [PATCH] Fix uint deprecation --- outputs/tiff.cpp | 2 +- outputs/tiff.hpp | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git outputs/tiff.cpp outputs/tiff.cpp index c3b8cd1..21e7b74 100644 --- outputs/tiff.cpp +++ outputs/tiff.cpp @@ -273,7 +273,7 @@ tiff_odevice::boi (const context& ctx) TIFFSetField (tiff_, TIFFTAG_SAMPLESPERPIXEL, ctx.comps ()); - uint16 pm = 0; // uint16 is courtesy of tiffio.h + uint16_t pm = 0; // uint16 is courtesy of tiffio.h if (8 == ctx.depth()) { if (3 == ctx.comps()) diff --git outputs/tiff.hpp outputs/tiff.hpp index 8402174..8fcd30f 100644 --- outputs/tiff.hpp +++ outputs/tiff.hpp @@ -53,8 +53,8 @@ protected: private: TIFF *tiff_; - uint32 page_; - uint32 row_; + uint32_t page_; + uint32_t row_; boost::scoped_array< octet > partial_line_; streamsize partial_size_; -- 2.29.2
