Accepting request 623280 from KDE:Frameworks5

KDE Frameworks 5.48.0 (forwarded request 623248 from luca_b)

OBS-URL: https://build.opensuse.org/request/show/623280
OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/kfilemetadata5?expand=0&rev=60
This commit is contained in:
Dominique Leuenberger 2018-07-21 08:12:39 +00:00 committed by Git OBS Bridge
commit ddddd3ca12
4 changed files with 33 additions and 11 deletions

View File

@ -1,3 +0,0 @@
version https://git-lfs.github.com/spec/v1
oid sha256:758b0b741a1f1b79365cf4bae3bb0054504cae71f3ab538e9f0cd83d5521977b
size 254044

View File

@ -0,0 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:aefc53d26491254dd4991f41d25c9f2425c761b9aa3d80d272a0242dd428364f
size 258080

View File

@ -1,3 +1,24 @@
-------------------------------------------------------------------
Mon Jul 16 04:37:39 UTC 2018 - lbeltrame@kde.org
- Update to 5.48.0
* New feature release
* For more details please see:
* https://www.kde.org/announcements/kde-frameworks-5.48.0.php
- Changes since 5.47.0:
* Avoid compiler warnings for taglib headers
* PopplerExtractor: use directly QByteArray() args instead of 0 pointers
* Use more nullptr
* taglibextractor: Restore extracting audio props without tags existing
* OdfExtractor: deal with non-common prefix names
* Don't add -ltag to the public link interface.
* implement the lyrics tag for taglibextractor
* OdfExtractor: fix typo with dc:language
* automatic tests: do not embed EmbeddedImageData already in the library
* add ability to read embedded cover files
* implement reading of rating tag
* check for needed version of libavcode, libavformat and libavutil
------------------------------------------------------------------- -------------------------------------------------------------------
Tue Jun 12 21:26:04 UTC 2018 - lbeltrame@kde.org Tue Jun 12 21:26:04 UTC 2018 - lbeltrame@kde.org

View File

@ -16,16 +16,16 @@
# #
%bcond_without ffmpeg
%bcond_without lang %bcond_without lang
%define _tar_path 5.47 %define _tar_path 5.48
# 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)
%{!?_kf5_bugfix_version: %global _kf5_bugfix_version %(echo %{_kf5_version} | awk -F. '{print $1"."$2}')} %{!?_kf5_bugfix_version: %define _kf5_bugfix_version %(echo %{_kf5_version} | awk -F. '{print $1"."$2}')}
Name: kfilemetadata5 Name: kfilemetadata5
Version: 5.47.0 Version: 5.48.0
Release: 0 Release: 0
%define kf5_version %{version}
Summary: Extract Metadata Summary: Extract 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
Group: Development/Libraries/KDE Group: Development/Libraries/KDE
@ -33,6 +33,11 @@ Url: http://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
BuildRequires: extra-cmake-modules >= %{_kf5_bugfix_version} BuildRequires: extra-cmake-modules >= %{_kf5_bugfix_version}
%if %{with ffmpeg}
BuildRequires: pkgconfig(libavcodec)
BuildRequires: pkgconfig(libavformat)
BuildRequires: pkgconfig(libavutil)
%endif
BuildRequires: karchive-devel >= %{_kf5_bugfix_version} BuildRequires: karchive-devel >= %{_kf5_bugfix_version}
BuildRequires: kf5-filesystem BuildRequires: kf5-filesystem
BuildRequires: ki18n-devel >= %{_kf5_bugfix_version} BuildRequires: ki18n-devel >= %{_kf5_bugfix_version}
@ -43,9 +48,6 @@ BuildRequires: taglib-devel >= 1.9
BuildRequires: cmake(Qt5Multimedia) >= 5.6.0 BuildRequires: cmake(Qt5Multimedia) >= 5.6.0
BuildRequires: cmake(Qt5Test) >= 5.6.0 BuildRequires: cmake(Qt5Test) >= 5.6.0
BuildRequires: cmake(Qt5Xml) >= 5.6.0 BuildRequires: cmake(Qt5Xml) >= 5.6.0
BuildRequires: pkgconfig(libavcodec)
BuildRequires: pkgconfig(libavformat)
BuildRequires: pkgconfig(libavutil)
BuildRequires: pkgconfig(poppler-qt5) BuildRequires: pkgconfig(poppler-qt5)
Recommends: catdoc Recommends: catdoc
Recommends: %{name}-lang Recommends: %{name}-lang
@ -65,7 +67,6 @@ Requires: cmake(Qt5Core) >= 5.6.0
A library for extracting file metadata. Development files A library for extracting file metadata. Development files
%lang_package %lang_package
%prep %prep
%setup -q -n kfilemetadata-%{version} %setup -q -n kfilemetadata-%{version}