This commit is contained in:
parent
4aa2e62948
commit
d30c39bdcf
@ -1,3 +1,16 @@
|
||||
-------------------------------------------------------------------
|
||||
Fri Aug 11 22:46:18 UTC 2017 - christophe@krop.fr
|
||||
|
||||
- Update to KDE Applications 17.08.0
|
||||
* New feature release
|
||||
* https://www.kde.org/announcements/announce-applications-17.08.0.php
|
||||
- Changes since 17.04.3 :
|
||||
* Remove the last references to kDebug (even if commented)
|
||||
* Revert "Fix export of inherited inline functions"
|
||||
* Fix export of inherited inline functions
|
||||
* Add include of qt_windows.h on Windows
|
||||
* Use Q_DECL_OVERRIDE
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Sat Aug 5 18:19:17 UTC 2017 - christophe@krop.fr
|
||||
|
||||
|
@ -1,7 +1,7 @@
|
||||
#
|
||||
# spec file for package libkdegames
|
||||
#
|
||||
# Copyright (c) 2016 SUSE LINUX GmbH, Nuernberg, Germany.
|
||||
# Copyright (c) 2017 SUSE LINUX GmbH, Nuernberg, Germany.
|
||||
#
|
||||
# All modifications and additions to the file contributed by third parties
|
||||
# remain the property of their copyright owners, unless otherwise agreed
|
||||
@ -15,13 +15,14 @@
|
||||
# Please submit bugfixes or comments via http://bugs.opensuse.org/
|
||||
#
|
||||
|
||||
|
||||
%bcond_without lang
|
||||
|
||||
Name: libkdegames
|
||||
Version: 17.07.90
|
||||
Release: 0
|
||||
%define kf5_version 5.26.0
|
||||
# Latest stable Applications (e.g. 16.08 in KA, but 16.11.80 in KUA)
|
||||
# Latest stable Applications (e.g. 17.08 in KA, but 17.11.80 in KUA)
|
||||
%{!?_kapp_version: %global _kapp_version %(echo %{version}| awk -F. '{print $1"."$2}')}
|
||||
Summary: General Data for KDE Games
|
||||
License: GPL-2.0+
|
||||
@ -67,7 +68,9 @@ BuildRequires: pkgconfig(Qt5Test)
|
||||
BuildRequires: pkgconfig(Qt5Widgets)
|
||||
Obsoletes: %{name}-kf5 < %{version}
|
||||
Provides: %{name}-kf5 = %{version}
|
||||
%if %{with lang}
|
||||
Recommends: %{name}-lang
|
||||
%endif
|
||||
BuildRoot: %{_tmppath}/%{name}-%{version}-build
|
||||
|
||||
%description
|
||||
@ -95,11 +98,6 @@ rm -rf carddecks/svg-konqi-modern
|
||||
%endif
|
||||
%fdupes -s %{buildroot}
|
||||
|
||||
%files
|
||||
%defattr(-,root,root)
|
||||
%doc COPYING COPYING.DOC README
|
||||
%{_kf5_sharedir}/kconf_update/
|
||||
|
||||
%package -n libkf5kdegames6
|
||||
Summary: Library for KDE Games
|
||||
License: LGPL-2.1+
|
||||
@ -112,14 +110,6 @@ This package contains the KDE games library.
|
||||
%post -n libkf5kdegames6 -p /sbin/ldconfig
|
||||
%postun -n libkf5kdegames6 -p /sbin/ldconfig
|
||||
|
||||
%files -n libkf5kdegames6
|
||||
%defattr(-,root,root)
|
||||
%doc COPYING COPYING.DOC README
|
||||
%{_kf5_libdir}/libKF5KDEGamesPrivate.so.*
|
||||
%{_kf5_libdir}/libKF5KDEGames.so.*
|
||||
%dir %{_kf5_sharedir}/kconf_update
|
||||
%{_kf5_qmldir}/
|
||||
|
||||
%package devel
|
||||
Summary: Library for KDE Games: Build Environment
|
||||
License: LGPL-2.1+
|
||||
@ -144,14 +134,6 @@ Provides: %{name}-kf5-devel = %{version}
|
||||
This package contains all necessary files and libraries needed to
|
||||
develop KDE games.
|
||||
|
||||
%files devel
|
||||
%defattr(-,root,root)
|
||||
%doc COPYING COPYING.DOC README
|
||||
%{_kf5_includedir}/KF5KDEGames/
|
||||
%{_kf5_libdir}/cmake/KF5KDEGames/
|
||||
%{_kf5_libdir}/libKF5KDEGamesPrivate.so
|
||||
%{_kf5_libdir}/libKF5KDEGames.so
|
||||
|
||||
%package -n kdegames-carddecks-other
|
||||
Summary: Further Card Decks for KDE Games
|
||||
License: LGPL-2.1+
|
||||
@ -164,23 +146,44 @@ BuildArch: noarch
|
||||
%description -n kdegames-carddecks-other
|
||||
This package contains several further card deck set for KDE games.
|
||||
|
||||
%package -n kdegames-carddecks-default
|
||||
Summary: Default Card Decks for KDE Games
|
||||
#don't obsolete kdegames4-carddecks-default yet, lskat is still KDE4 based and is broken without it
|
||||
#Obsoletes: kdegames4-carddecks-default < %{version}
|
||||
License: LGPL-2.1+
|
||||
Group: System/GUI/KDE
|
||||
BuildArch: noarch
|
||||
|
||||
%description -n kdegames-carddecks-default
|
||||
This package contains the default card deck set for KDE games.
|
||||
|
||||
%files
|
||||
%defattr(-,root,root)
|
||||
%doc COPYING* README
|
||||
%{_kf5_sharedir}/kconf_update/
|
||||
|
||||
%files -n libkf5kdegames6
|
||||
%defattr(-,root,root)
|
||||
%doc COPYING* README
|
||||
%dir %{_kf5_sharedir}/kconf_update
|
||||
%{_kf5_libdir}/libKF5KDEGames.so.*
|
||||
%{_kf5_libdir}/libKF5KDEGamesPrivate.so.*
|
||||
%{_kf5_qmldir}/
|
||||
|
||||
%files devel
|
||||
%defattr(-,root,root)
|
||||
%doc COPYING* README
|
||||
%{_kf5_cmakedir}/KF5KDEGames/
|
||||
%{_kf5_includedir}/KF5KDEGames/
|
||||
%{_kf5_libdir}/libKF5KDEGames.so
|
||||
%{_kf5_libdir}/libKF5KDEGamesPrivate.so
|
||||
|
||||
%files -n kdegames-carddecks-other
|
||||
%defattr(-,root,root)
|
||||
%doc COPYING README
|
||||
%exclude %{_kf5_sharedir}/carddecks/svg-oxygen-air
|
||||
%{_kf5_sharedir}/carddecks
|
||||
|
||||
%package -n kdegames-carddecks-default
|
||||
Summary: Default Card Decks for KDE Games
|
||||
License: LGPL-2.1+
|
||||
Group: System/GUI/KDE
|
||||
#don't obsolete kdegames4-carddecks-default yet, lskat is still KDE4 based and is broken without it
|
||||
#Obsoletes: kdegames4-carddecks-default < %{version}
|
||||
BuildArch: noarch
|
||||
|
||||
%description -n kdegames-carddecks-default
|
||||
This package contains the default card deck set for KDE games.
|
||||
|
||||
%files -n kdegames-carddecks-default
|
||||
%defattr(-,root,root)
|
||||
%doc COPYING README
|
||||
|
Loading…
Reference in New Issue
Block a user