forked from pool/khangman
Accepting request 490418 from KDE:Applications
KDE Applications 17.04.0 final OBS-URL: https://build.opensuse.org/request/show/490418 OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/khangman?expand=0&rev=77
This commit is contained in:
commit
2a358dbf31
@ -1,3 +0,0 @@
|
|||||||
version https://git-lfs.github.com/spec/v1
|
|
||||||
oid sha256:3fe04b8ddd85c52cbcb5dc4acc6573ea06f778e2acd3a38254c31a95f28bce0d
|
|
||||||
size 4272212
|
|
3
khangman-17.04.0.tar.xz
Normal file
3
khangman-17.04.0.tar.xz
Normal file
@ -0,0 +1,3 @@
|
|||||||
|
version https://git-lfs.github.com/spec/v1
|
||||||
|
oid sha256:2d2d143531bf10a07dd2f92fa5d0e853055341061116ba0a5a9cd30a3756ad91
|
||||||
|
size 6297092
|
@ -1,3 +1,34 @@
|
|||||||
|
-------------------------------------------------------------------
|
||||||
|
Sun Apr 16 10:44:58 CEST 2017 - lbeltrame@kde.org
|
||||||
|
|
||||||
|
- Update to 17.04.0
|
||||||
|
* New feature release
|
||||||
|
* For more details please see:
|
||||||
|
* https://www.kde.org/announcements/announce-applications-17.04.0.php
|
||||||
|
- Changes since 17.03.90:
|
||||||
|
* None
|
||||||
|
|
||||||
|
-------------------------------------------------------------------
|
||||||
|
Wed Apr 12 20:25:35 CEST 2017 - lbeltrame@kde.org
|
||||||
|
|
||||||
|
- Update to 17.03.90
|
||||||
|
* New bugfix release
|
||||||
|
* For more details please see:
|
||||||
|
* https://www.kde.org/announcements/announce-applications-17.04-rc.php
|
||||||
|
- Changes since 17.03.80:
|
||||||
|
* None
|
||||||
|
|
||||||
|
-------------------------------------------------------------------
|
||||||
|
Sat Mar 25 23:10:27 CET 2017 - lbeltrame@kde.org
|
||||||
|
|
||||||
|
- Update to 17.03.80
|
||||||
|
* New feature release
|
||||||
|
* For more details please see:
|
||||||
|
* https://www.kde.org/announcements/announce-applications-17.03.80.php
|
||||||
|
- Changes since 16.12.3:
|
||||||
|
* Fix terminology: "by KDE", not "for KDE"
|
||||||
|
* Remove two unused compile options
|
||||||
|
|
||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
Thu Mar 9 12:37:59 CET 2017 - lbeltrame@kde.org
|
Thu Mar 9 12:37:59 CET 2017 - lbeltrame@kde.org
|
||||||
|
|
||||||
|
@ -15,12 +15,13 @@
|
|||||||
# Please submit bugfixes or comments via http://bugs.opensuse.org/
|
# Please submit bugfixes or comments via http://bugs.opensuse.org/
|
||||||
#
|
#
|
||||||
|
|
||||||
|
%bcond_without lang
|
||||||
|
|
||||||
Name: khangman
|
Name: khangman
|
||||||
Version: 16.12.3
|
Version: 17.04.0
|
||||||
Release: 0
|
Release: 0
|
||||||
%define kf5_version 5.26.0
|
%define kf5_version 5.26.0
|
||||||
# Latest stable Applications (e.g. 16.08 in KA, but 16.12.3 in KUA)
|
# Latest stable Applications (e.g. 16.08 in KA, but 16.11.80 in KUA)
|
||||||
%{!?_kapp_version: %global _kapp_version %(echo %{version}| awk -F. '{print $1"."$2}')}
|
%{!?_kapp_version: %global _kapp_version %(echo %{version}| awk -F. '{print $1"."$2}')}
|
||||||
Summary: Hangman Game
|
Summary: Hangman Game
|
||||||
License: GPL-2.0+
|
License: GPL-2.0+
|
||||||
@ -55,11 +56,16 @@ Provides: %{name}5 = %{version}
|
|||||||
Obsoletes: khangman5 < %{version}
|
Obsoletes: khangman5 < %{version}
|
||||||
Obsoletes: khangman-devel < %{version}
|
Obsoletes: khangman-devel < %{version}
|
||||||
Obsoletes: libkhangmanengine5 < %{version}
|
Obsoletes: libkhangmanengine5 < %{version}
|
||||||
|
Recommends: %{name}-lang
|
||||||
BuildRoot: %{_tmppath}/%{name}-%{version}-build
|
BuildRoot: %{_tmppath}/%{name}-%{version}-build
|
||||||
|
|
||||||
%description
|
%description
|
||||||
Classical hangman game for KDE.
|
Classical hangman game for KDE.
|
||||||
|
|
||||||
|
%if %{with lang}
|
||||||
|
%lang_package
|
||||||
|
%endif
|
||||||
|
|
||||||
%prep
|
%prep
|
||||||
%setup -q
|
%setup -q
|
||||||
|
|
||||||
@ -69,6 +75,10 @@ Classical hangman game for KDE.
|
|||||||
|
|
||||||
%install
|
%install
|
||||||
%kf5_makeinstall -C build
|
%kf5_makeinstall -C build
|
||||||
|
%if %{with lang}
|
||||||
|
%find_lang %{name} --with-man --all-name
|
||||||
|
%kf5_find_htmldocs
|
||||||
|
%endif
|
||||||
|
|
||||||
%files
|
%files
|
||||||
%defattr(-,root,root)
|
%defattr(-,root,root)
|
||||||
@ -84,4 +94,9 @@ Classical hangman game for KDE.
|
|||||||
%{_kf5_appstreamdir}/
|
%{_kf5_appstreamdir}/
|
||||||
%{_kf5_iconsdir}/hicolor/*/apps/khangman.*
|
%{_kf5_iconsdir}/hicolor/*/apps/khangman.*
|
||||||
|
|
||||||
|
%if %{with lang}
|
||||||
|
%files lang -f %{name}.lang
|
||||||
|
%doc COPYING*
|
||||||
|
%endif
|
||||||
|
|
||||||
%changelog
|
%changelog
|
||||||
|
Loading…
Reference in New Issue
Block a user