SHA256
1
0
forked from pool/krita

Accepting request 999457 from home:darix:branches:graphics

- Replace add-missing-so-version.patch with upstream patch
  6734e02fa9.patch

- Added add-missing-so-version.patch: (boo#1202795)
  One of the newly added libraries had no so-version set and
  therefor ended up in the devel package

OBS-URL: https://build.opensuse.org/request/show/999457
OBS-URL: https://build.opensuse.org/package/show/KDE:Extra/krita?expand=0&rev=169
This commit is contained in:
Christophe Giboudeaux 2022-08-26 21:04:25 +00:00 committed by Git OBS Bridge
parent b1b78d333f
commit d0d357cb2c
3 changed files with 41 additions and 0 deletions

View File

@ -0,0 +1,27 @@
From 6734e02fa93d3cb3d4a162bc707649f7d3172386 Mon Sep 17 00:00:00 2001
From: "L. E. Segovia" <amy@amyspark.me>
Date: Fri, 26 Aug 2022 11:23:17 -0300
Subject: [PATCH] TIFF: fix missing SOVERSION for the TIFF PSD library
---
plugins/impex/tiff/CMakeLists.txt | 4 ++++
1 file changed, 4 insertions(+)
diff --git a/plugins/impex/tiff/CMakeLists.txt b/plugins/impex/tiff/CMakeLists.txt
index bc392c3750..7cffc5da5c 100644
--- a/plugins/impex/tiff/CMakeLists.txt
+++ b/plugins/impex/tiff/CMakeLists.txt
@@ -9,6 +9,10 @@ if (TIFF_HAS_PSD_TAGS)
kis_add_library(kritatiffpsd SHARED ${libkritatiffpsd_SRCS})
generate_export_header(kritatiffpsd)
+ set_target_properties(kritatiffpsd PROPERTIES
+ VERSION ${GENERIC_KRITA_LIB_VERSION} SOVERSION ${GENERIC_KRITA_LIB_SOVERSION}
+ )
+
target_link_libraries(kritatiffpsd kritapsd ${TIFF_LIBRARIES})
install(TARGETS kritatiffpsd DESTINATION ${INSTALL_TARGETS_DEFAULT_ARGS})
--
GitLab

View File

@ -1,3 +1,16 @@
-------------------------------------------------------------------
Fri Aug 26 16:59:21 UTC 2022 - Marcus Rueckert <mrueckert@suse.de>
- Replace add-missing-so-version.patch with upstream patch
https://invent.kde.org/graphics/krita/-/commit/6734e02fa93d3cb3d4a162bc707649f7d3172386.patch
-------------------------------------------------------------------
Fri Aug 26 01:22:03 UTC 2022 - Marcus Rueckert <mrueckert@suse.de>
- Added add-missing-so-version.patch: (boo#1202795)
One of the newly added libraries had no so-version set and
therefor ended up in the devel package
------------------------------------------------------------------- -------------------------------------------------------------------
Tue Aug 23 15:25:29 UTC 2022 - Wolfgang Bauer <wbauer@tmo.at> Tue Aug 23 15:25:29 UTC 2022 - Wolfgang Bauer <wbauer@tmo.at>

View File

@ -29,6 +29,7 @@ Source0: https://download.kde.org/stable/krita/%{version}/krita-%{version
Source1: https://download.kde.org/stable/krita/%{version}/krita-%{version}.tar.xz.sig Source1: https://download.kde.org/stable/krita/%{version}/krita-%{version}.tar.xz.sig
Source2: krita.keyring Source2: krita.keyring
%endif %endif
Patch1: https://invent.kde.org/graphics/krita/-/commit/6734e02fa93d3cb3d4a162bc707649f7d3172386.patch
BuildRequires: OpenEXR-devel BuildRequires: OpenEXR-devel
BuildRequires: extra-cmake-modules BuildRequires: extra-cmake-modules
BuildRequires: fftw3-devel BuildRequires: fftw3-devel