Accepting request 686738 from KDE:Frameworks5
KDE Frameworks 5.56.0 OBS-URL: https://build.opensuse.org/request/show/686738 OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/kfilemetadata5?expand=0&rev=70
This commit is contained in:
commit
14add2903e
@ -1,29 +0,0 @@
|
|||||||
From 1632a6972279d150aeb8de9e1cf0000ba1c3c380 Mon Sep 17 00:00:00 2001
|
|
||||||
From: Wolfgang Bauer <wbauer@tmo.at>
|
|
||||||
Date: Tue, 12 Feb 2019 10:31:01 +0100
|
|
||||||
Subject: Fix build with cmake 3.5
|
|
||||||
|
|
||||||
VERSION_GREATER_EQUAL requires cmake 3.7 or higher.
|
|
||||||
So use NOT VERSION_LESS instead, which is logically equivalent and also
|
|
||||||
works with older cmake versions.
|
|
||||||
Differential Revision: https://phabricator.kde.org/D18941
|
|
||||||
---
|
|
||||||
src/extractors/CMakeLists.txt | 2 +-
|
|
||||||
1 file changed, 1 insertion(+), 1 deletion(-)
|
|
||||||
|
|
||||||
diff --git a/src/extractors/CMakeLists.txt b/src/extractors/CMakeLists.txt
|
|
||||||
index 8795b48..6b4859c 100644
|
|
||||||
--- a/src/extractors/CMakeLists.txt
|
|
||||||
+++ b/src/extractors/CMakeLists.txt
|
|
||||||
@@ -36,7 +36,7 @@ if(LibExiv2_FOUND)
|
|
||||||
KF5::FileMetaData
|
|
||||||
LibExiv2::LibExiv2
|
|
||||||
)
|
|
||||||
- if(${LibExiv2_VERSION} VERSION_GREATER_EQUAL 0.26)
|
|
||||||
+ if(NOT ${LibExiv2_VERSION} VERSION_LESS 0.26)
|
|
||||||
target_compile_definitions(kfilemetadata_exiv2extractor PRIVATE "-DHAVE_WEBP_SUPPORT")
|
|
||||||
endif()
|
|
||||||
|
|
||||||
--
|
|
||||||
cgit v1.1
|
|
||||||
|
|
@ -1,3 +0,0 @@
|
|||||||
version https://git-lfs.github.com/spec/v1
|
|
||||||
oid sha256:b1a62f1d62ad0e45f523cbf96b872d3617a65c193483f7a5cbc6b8e48c11123b
|
|
||||||
size 302672
|
|
3
kfilemetadata-5.56.0.tar.xz
Normal file
3
kfilemetadata-5.56.0.tar.xz
Normal file
@ -0,0 +1,3 @@
|
|||||||
|
version https://git-lfs.github.com/spec/v1
|
||||||
|
oid sha256:269db442adef2409ccf6b2078e3b644eb504b36f84c33c2809b1ff739c68f512
|
||||||
|
size 400024
|
@ -1,3 +1,33 @@
|
|||||||
|
-------------------------------------------------------------------
|
||||||
|
Sun Mar 10 20:15:36 UTC 2019 - lbeltrame@kde.org
|
||||||
|
|
||||||
|
- Update to 5.56.0
|
||||||
|
* New feature release
|
||||||
|
* For more details please see:
|
||||||
|
* https://www.kde.org/announcements/kde-frameworks-5.56.0.php
|
||||||
|
- Changes since 5.55.0:
|
||||||
|
* cleanup and slightly enhance display formatting test
|
||||||
|
* Fix typo in exiv extractor
|
||||||
|
* [Extractor] Add metadata to extractors
|
||||||
|
* add test which checks the property types
|
||||||
|
* Add extractor for AppImage files
|
||||||
|
* Cleanup ffmpeg extractor
|
||||||
|
* Add a test for ffmpeg extractor
|
||||||
|
* [ExternalExtractor] Provide more helpful output when extractor fails
|
||||||
|
* Fix minor typo
|
||||||
|
* Format EXIF photo flash data
|
||||||
|
* Fix build with cmake 3.5
|
||||||
|
* Avoid side effects due to stale errno value
|
||||||
|
* Try to fix test on windows
|
||||||
|
* Use Kformat for bit and sample rate
|
||||||
|
* Add units to framerate and gps data
|
||||||
|
* Add string formatting function to property info
|
||||||
|
* Avoid leaking a QObject in ExternalExtractor
|
||||||
|
* Handle <a> as container element in SVG
|
||||||
|
* Check Exiv2::ValueType::typeId before converting it to rational
|
||||||
|
- Dropped patches, now upstream:
|
||||||
|
* fix-build-with-cmake-3.5.patch
|
||||||
|
|
||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
Fri Feb 15 09:25:42 UTC 2019 - alarrosa@suse.com
|
Fri Feb 15 09:25:42 UTC 2019 - alarrosa@suse.com
|
||||||
|
|
||||||
|
@ -16,7 +16,7 @@
|
|||||||
#
|
#
|
||||||
|
|
||||||
|
|
||||||
%define _tar_path 5.55
|
%define _tar_path 5.56
|
||||||
# Full KF5 version (e.g. 5.33.0)
|
# Full KF5 version (e.g. 5.33.0)
|
||||||
%{!?_kf5_version: %global _kf5_version %{version}}
|
%{!?_kf5_version: %global _kf5_version %{version}}
|
||||||
# Last major and minor KF5 version (e.g. 5.33)
|
# Last major and minor KF5 version (e.g. 5.33)
|
||||||
@ -24,7 +24,7 @@
|
|||||||
%bcond_without ffmpeg
|
%bcond_without ffmpeg
|
||||||
%bcond_without lang
|
%bcond_without lang
|
||||||
Name: kfilemetadata5
|
Name: kfilemetadata5
|
||||||
Version: 5.55.0
|
Version: 5.56.0
|
||||||
Release: 0
|
Release: 0
|
||||||
Summary: Library for extracting Metadata
|
Summary: Library for extracting Metadata
|
||||||
License: GPL-2.0-or-later AND LGPL-2.1-or-later AND LGPL-3.0-only
|
License: GPL-2.0-or-later AND LGPL-2.1-or-later AND LGPL-3.0-only
|
||||||
@ -32,10 +32,9 @@ Group: Development/Libraries/KDE
|
|||||||
URL: https://www.kde.org
|
URL: https://www.kde.org
|
||||||
Source: http://download.kde.org/stable/frameworks/%{_tar_path}/kfilemetadata-%{version}.tar.xz
|
Source: http://download.kde.org/stable/frameworks/%{_tar_path}/kfilemetadata-%{version}.tar.xz
|
||||||
Source1: baselibs.conf
|
Source1: baselibs.conf
|
||||||
# PATCH-FIX-UPSTREAM
|
|
||||||
Patch0: fix-build-with-cmake-3.5.patch
|
|
||||||
BuildRequires: extra-cmake-modules >= %{_kf5_bugfix_version}
|
BuildRequires: extra-cmake-modules >= %{_kf5_bugfix_version}
|
||||||
BuildRequires: karchive-devel >= %{_kf5_bugfix_version}
|
BuildRequires: karchive-devel >= %{_kf5_bugfix_version}
|
||||||
|
BuildRequires: kcoreaddons-devel >= %{_kf5_bugfix_version}
|
||||||
BuildRequires: kf5-filesystem
|
BuildRequires: kf5-filesystem
|
||||||
BuildRequires: ki18n-devel >= %{_kf5_bugfix_version}
|
BuildRequires: ki18n-devel >= %{_kf5_bugfix_version}
|
||||||
BuildRequires: libattr-devel
|
BuildRequires: libattr-devel
|
||||||
@ -71,7 +70,6 @@ A library for extracting file metadata. Development files
|
|||||||
|
|
||||||
%prep
|
%prep
|
||||||
%setup -q -n kfilemetadata-%{version}
|
%setup -q -n kfilemetadata-%{version}
|
||||||
%autopatch -p1
|
|
||||||
%if 0%{?suse_version} == 1500
|
%if 0%{?suse_version} == 1500
|
||||||
sed -i -e "s/^set *(REQUIRED_QT_VERSION 5.10.0)$/set(REQUIRED_QT_VERSION 5.9.0)/" CMakeLists.txt
|
sed -i -e "s/^set *(REQUIRED_QT_VERSION 5.10.0)$/set(REQUIRED_QT_VERSION 5.9.0)/" CMakeLists.txt
|
||||||
%endif
|
%endif
|
||||||
|
Loading…
Reference in New Issue
Block a user