Accepting request 490375 from KDE:Applications
KDE Applications 17.04.0 final OBS-URL: https://build.opensuse.org/request/show/490375 OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/kate?expand=0&rev=82
This commit is contained in:
commit
9d4dbfb740
31
enable-numericMode-in-filetree.patch
Normal file
31
enable-numericMode-in-filetree.patch
Normal file
@ -0,0 +1,31 @@
|
|||||||
|
From eb9cab2e55ba9b7f9b86577ba12f673c40e07e67 Mon Sep 17 00:00:00 2001
|
||||||
|
From: Wolfgang Bauer <wbauer@tmo.at>
|
||||||
|
Date: Fri, 14 Apr 2017 12:43:10 +0200
|
||||||
|
Subject: Enable numericMode for sorting document list in filetree
|
||||||
|
|
||||||
|
Turns on "natural" sorting for the document list in the filetree addon,
|
||||||
|
so that e.g. 10 comes after 9, not before.
|
||||||
|
That's how the KDE4 version behaved too.
|
||||||
|
|
||||||
|
BUG: 375676
|
||||||
|
FIXED-IN: 17.04.1
|
||||||
|
Differential Revision: https://phabricator.kde.org/D5448
|
||||||
|
---
|
||||||
|
addons/filetree/katefiletreeproxymodel.cpp | 1 +
|
||||||
|
1 file changed, 1 insertion(+)
|
||||||
|
|
||||||
|
diff --git a/addons/filetree/katefiletreeproxymodel.cpp b/addons/filetree/katefiletreeproxymodel.cpp
|
||||||
|
index 13a4d0e..206dfb8 100644
|
||||||
|
--- a/addons/filetree/katefiletreeproxymodel.cpp
|
||||||
|
+++ b/addons/filetree/katefiletreeproxymodel.cpp
|
||||||
|
@@ -49,6 +49,7 @@ bool KateFileTreeProxyModel::lessThan(const QModelIndex &left, const QModelIndex
|
||||||
|
|
||||||
|
QCollator collate;
|
||||||
|
collate.setCaseSensitivity(Qt::CaseInsensitive);
|
||||||
|
+ collate.setNumericMode(true);
|
||||||
|
|
||||||
|
switch (sortRole()) {
|
||||||
|
case Qt::DisplayRole: {
|
||||||
|
--
|
||||||
|
cgit v0.11.2
|
||||||
|
|
@ -1,3 +0,0 @@
|
|||||||
version https://git-lfs.github.com/spec/v1
|
|
||||||
oid sha256:19e8c40985392b5640c022ceb577aa16541fdd99d389645e38b22d621c6d79b9
|
|
||||||
size 1871900
|
|
3
kate-17.04.0.tar.xz
Normal file
3
kate-17.04.0.tar.xz
Normal file
@ -0,0 +1,3 @@
|
|||||||
|
version https://git-lfs.github.com/spec/v1
|
||||||
|
oid sha256:6c8d1936a2ec3a7c3c71e353da11e483251875f51846b9609667f9beee1a6042
|
||||||
|
size 5213352
|
108
kate.changes
108
kate.changes
@ -1,3 +1,45 @@
|
|||||||
|
-------------------------------------------------------------------
|
||||||
|
Sun Apr 16 23:15:49 UTC 2017 - wbauer@tmo.at
|
||||||
|
|
||||||
|
- Add enable-numericMode-in-filetree.patch to sort the file names
|
||||||
|
in the "Documents" pane naturally, i.e. 10 comes after 9
|
||||||
|
instead of before (kde#375676)
|
||||||
|
|
||||||
|
-------------------------------------------------------------------
|
||||||
|
Sun Apr 16 10:44:51 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:22 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
|
||||||
|
|
||||||
|
-------------------------------------------------------------------
|
||||||
|
Thu Mar 30 05:27:33 UTC 2017 - lbeltrame@kde.org
|
||||||
|
|
||||||
|
- Drop upstreamed patch: remove-popupapplet-servicetype.patch
|
||||||
|
|
||||||
|
-------------------------------------------------------------------
|
||||||
|
Sat Mar 25 23:10:16 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:
|
||||||
|
* Too many changes to list here
|
||||||
|
|
||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
Thu Mar 9 12:35:33 CET 2017 - lbeltrame@kde.org
|
Thu Mar 9 12:35:33 CET 2017 - lbeltrame@kde.org
|
||||||
|
|
||||||
@ -27,14 +69,14 @@ Thu Jan 19 19:19:16 UTC 2017 - fabian@ritter-vogt.de
|
|||||||
Sat Jan 14 08:52:14 UTC 2017 - lbeltrame@kde.org
|
Sat Jan 14 08:52:14 UTC 2017 - lbeltrame@kde.org
|
||||||
|
|
||||||
- Update to KDE Applications 16.12.1
|
- Update to KDE Applications 16.12.1
|
||||||
* KDE Applications 16.12.1
|
* KDE Applications 16.12.1
|
||||||
* https://www.kde.org/announcements/announce-applications-16.12.1.php
|
* https://www.kde.org/announcements/announce-applications-16.12.1.php
|
||||||
|
|
||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
Tue Dec 13 19:33:57 UTC 2016 - tittiatcoke@gmail.com
|
Tue Dec 13 19:33:57 UTC 2016 - tittiatcoke@gmail.com
|
||||||
|
|
||||||
- Update to KDE Applications 16.12.0
|
- Update to KDE Applications 16.12.0
|
||||||
* KDE Applications 16.12.0
|
* KDE Applications 16.12.0
|
||||||
* https://www.kde.org/announcements/announce-applications-16.12.0.php
|
* https://www.kde.org/announcements/announce-applications-16.12.0.php
|
||||||
|
|
||||||
|
|
||||||
@ -157,7 +199,7 @@ Mon Apr 11 06:34:14 UTC 2016 - tittiatcoke@gmail.com
|
|||||||
Sun Mar 13 15:37:08 UTC 2016 - tittiatcoke@gmail.com
|
Sun Mar 13 15:37:08 UTC 2016 - tittiatcoke@gmail.com
|
||||||
|
|
||||||
- Update to KDE Applications 15.12.3
|
- Update to KDE Applications 15.12.3
|
||||||
* KDE Applications 15.12.3
|
* KDE Applications 15.12.3
|
||||||
* https://www.kde.org/announcements/announce-applications-15.12.3.php
|
* https://www.kde.org/announcements/announce-applications-15.12.3.php
|
||||||
* boo#970855
|
* boo#970855
|
||||||
|
|
||||||
@ -166,7 +208,7 @@ Sun Mar 13 15:37:08 UTC 2016 - tittiatcoke@gmail.com
|
|||||||
Sat Feb 13 08:04:24 UTC 2016 - tittiatcoke@gmail.com
|
Sat Feb 13 08:04:24 UTC 2016 - tittiatcoke@gmail.com
|
||||||
|
|
||||||
- Update to KDE Applications 15.12.2
|
- Update to KDE Applications 15.12.2
|
||||||
* KDE Applications 15.12.2
|
* KDE Applications 15.12.2
|
||||||
* https://www.kde.org/announcements/announce-applications-15.12.2.php
|
* https://www.kde.org/announcements/announce-applications-15.12.2.php
|
||||||
* boo#966605
|
* boo#966605
|
||||||
|
|
||||||
@ -174,14 +216,14 @@ Sat Feb 13 08:04:24 UTC 2016 - tittiatcoke@gmail.com
|
|||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
Sun Feb 7 10:00:08 UTC 2016 - tittiatcoke@gmail.com
|
Sun Feb 7 10:00:08 UTC 2016 - tittiatcoke@gmail.com
|
||||||
|
|
||||||
- Kwrite does not require kate, so lets not put the kwrite icon in
|
- Kwrite does not require kate, so lets not put the kwrite icon in
|
||||||
the kate package.
|
the kate package.
|
||||||
|
|
||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
Sat Jan 9 18:13:08 UTC 2016 - tittiatcoke@gmail.com
|
Sat Jan 9 18:13:08 UTC 2016 - tittiatcoke@gmail.com
|
||||||
|
|
||||||
- Update to KDE Applications 15.12.1
|
- Update to KDE Applications 15.12.1
|
||||||
* KDE Applications 15.12.1
|
* KDE Applications 15.12.1
|
||||||
* https://www.kde.org/announcements/announce-applications-15.12.1.php
|
* https://www.kde.org/announcements/announce-applications-15.12.1.php
|
||||||
* boo#961265
|
* boo#961265
|
||||||
|
|
||||||
@ -190,7 +232,7 @@ Sat Jan 9 18:13:08 UTC 2016 - tittiatcoke@gmail.com
|
|||||||
Sun Dec 13 13:09:35 UTC 2015 - tittiatcoke@gmail.com
|
Sun Dec 13 13:09:35 UTC 2015 - tittiatcoke@gmail.com
|
||||||
|
|
||||||
- Update to KDE Applications 15.12.0
|
- Update to KDE Applications 15.12.0
|
||||||
* KDE Applications 15.12.0
|
* KDE Applications 15.12.0
|
||||||
* https://www.kde.org/announcements/announce-applications-15.12.0.php
|
* https://www.kde.org/announcements/announce-applications-15.12.0.php
|
||||||
* boo#958887
|
* boo#958887
|
||||||
|
|
||||||
@ -199,7 +241,7 @@ Sun Dec 13 13:09:35 UTC 2015 - tittiatcoke@gmail.com
|
|||||||
Tue Nov 10 19:56:32 UTC 2015 - tittiatcoke@gmail.com
|
Tue Nov 10 19:56:32 UTC 2015 - tittiatcoke@gmail.com
|
||||||
|
|
||||||
- Update to KDE Applications 15.08.3
|
- Update to KDE Applications 15.08.3
|
||||||
* KDE Applications 15.08.3
|
* KDE Applications 15.08.3
|
||||||
* https://www.kde.org/announcements/announce-applications-15.08.3.php
|
* https://www.kde.org/announcements/announce-applications-15.08.3.php
|
||||||
* boo#954531
|
* boo#954531
|
||||||
|
|
||||||
@ -208,7 +250,7 @@ Tue Nov 10 19:56:32 UTC 2015 - tittiatcoke@gmail.com
|
|||||||
Sun Oct 11 13:18:41 UTC 2015 - tittiatcoke@gmail.com
|
Sun Oct 11 13:18:41 UTC 2015 - tittiatcoke@gmail.com
|
||||||
|
|
||||||
- Update to KDE Applications 15.08.2
|
- Update to KDE Applications 15.08.2
|
||||||
* KDE Applications 15.08.2
|
* KDE Applications 15.08.2
|
||||||
* https://www.kde.org/announcements/announce-applications-15.08.2.php
|
* https://www.kde.org/announcements/announce-applications-15.08.2.php
|
||||||
|
|
||||||
|
|
||||||
@ -221,7 +263,7 @@ Tue Sep 22 22:30:37 UTC 2015 - alarrosa@suse.com
|
|||||||
Sun Sep 13 19:00:20 UTC 2015 - tittiatcoke@gmail.com
|
Sun Sep 13 19:00:20 UTC 2015 - tittiatcoke@gmail.com
|
||||||
|
|
||||||
- Update to KDE Applications 15.08.1
|
- Update to KDE Applications 15.08.1
|
||||||
* KDE Applications 15.08.1
|
* KDE Applications 15.08.1
|
||||||
* https://www.kde.org/announcements/announce-applications-15.08.1.php
|
* https://www.kde.org/announcements/announce-applications-15.08.1.php
|
||||||
|
|
||||||
|
|
||||||
@ -373,7 +415,7 @@ Fri Aug 15 08:23:54 UTC 2014 - tittiatcoke@gmail.com
|
|||||||
Wed Aug 13 11:34:33 UTC 2014 - toddrme2178@gmail.com
|
Wed Aug 13 11:34:33 UTC 2014 - toddrme2178@gmail.com
|
||||||
|
|
||||||
- Add subpackage for the python plugins
|
- Add subpackage for the python plugins
|
||||||
- Requires additional python requires for full functionality
|
- Requires additional python requires for full functionality
|
||||||
|
|
||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
Thu Jul 17 16:44:00 UTC 2014 - cgiboudeaux@gmx.com
|
Thu Jul 17 16:44:00 UTC 2014 - cgiboudeaux@gmx.com
|
||||||
@ -594,8 +636,8 @@ Wed Mar 13 09:54:26 UTC 2013 - hrvoje.senjan@gmail.com
|
|||||||
Sat Mar 2 15:34:10 UTC 2013 - tittiatcoke@gmail.com
|
Sat Mar 2 15:34:10 UTC 2013 - tittiatcoke@gmail.com
|
||||||
|
|
||||||
- Update to 4.10.1
|
- Update to 4.10.1
|
||||||
* Contains bug fixes. See http://www.kde.org/announcements/
|
* Contains bug fixes. See http://www.kde.org/announcements/
|
||||||
for more information
|
for more information
|
||||||
- Drop fix-plugin-loading.diff, applied upstream
|
- Drop fix-plugin-loading.diff, applied upstream
|
||||||
|
|
||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
@ -607,35 +649,35 @@ Mon Feb 11 20:12:44 UTC 2013 - hrvoje.senjan@gmail.com
|
|||||||
Thu Jan 31 17:44:43 UTC 2013 - tittiatcoke@gmail.com
|
Thu Jan 31 17:44:43 UTC 2013 - tittiatcoke@gmail.com
|
||||||
|
|
||||||
- Update to 4.10.0
|
- Update to 4.10.0
|
||||||
* This is the final release for 4.10. Contains bugfixes
|
* This is the final release for 4.10. Contains bugfixes
|
||||||
|
|
||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
Thu Jan 17 08:02:32 UTC 2013 - tittiatcoke@gmail.com
|
Thu Jan 17 08:02:32 UTC 2013 - tittiatcoke@gmail.com
|
||||||
|
|
||||||
- Update to 4.9.98
|
- Update to 4.9.98
|
||||||
* This is the third RC release for 4.10. Contains bugfixes
|
* This is the third RC release for 4.10. Contains bugfixes
|
||||||
|
|
||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
Thu Jan 3 21:06:39 UTC 2013 - tittiatcoke@gmail.com
|
Thu Jan 3 21:06:39 UTC 2013 - tittiatcoke@gmail.com
|
||||||
|
|
||||||
- Update to 4.9.97
|
- Update to 4.9.97
|
||||||
* This is the second RC release for 4.10. Contains bugfixes
|
* This is the second RC release for 4.10. Contains bugfixes
|
||||||
- Dropped patch fix_build_for_unicode_python.diff as this was
|
- Dropped patch fix_build_for_unicode_python.diff as this was
|
||||||
incorporated upstream
|
incorporated upstream
|
||||||
|
|
||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
Wed Dec 19 18:33:51 UTC 2012 - tittiatcoke@gmail.com
|
Wed Dec 19 18:33:51 UTC 2012 - tittiatcoke@gmail.com
|
||||||
|
|
||||||
- Update to 4.9.95
|
- Update to 4.9.95
|
||||||
* This is the first RC release for 4.10. Contains bugfixes
|
* This is the first RC release for 4.10. Contains bugfixes
|
||||||
- Added fix_build_for_unicode_python.diff patch, fixes 32bit
|
- Added fix_build_for_unicode_python.diff patch, fixes 32bit
|
||||||
compilation
|
compilation
|
||||||
|
|
||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
Sat Dec 1 20:00:24 UTC 2012 - tittiatcoke@gmail.com
|
Sat Dec 1 20:00:24 UTC 2012 - tittiatcoke@gmail.com
|
||||||
|
|
||||||
- Update to 4.9.90
|
- Update to 4.9.90
|
||||||
* This is the second Beta release for 4.10. Contains bugfixes
|
* This is the second Beta release for 4.10. Contains bugfixes
|
||||||
|
|
||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
Sat Nov 24 12:48:54 UTC 2012 - tittiatcoke@gmail.com
|
Sat Nov 24 12:48:54 UTC 2012 - tittiatcoke@gmail.com
|
||||||
@ -646,7 +688,7 @@ Sat Nov 24 12:48:54 UTC 2012 - tittiatcoke@gmail.com
|
|||||||
* Advanced gid(1) plugin using both ID files and etags
|
* Advanced gid(1) plugin using both ID files and etags
|
||||||
* Built-in quick open (Ctrl+Alt+o)
|
* Built-in quick open (Ctrl+Alt+o)
|
||||||
* New Project Plugin
|
* New Project Plugin
|
||||||
* Improved Scripting Support
|
* Improved Scripting Support
|
||||||
|
|
||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
Fri Nov 2 16:46:28 UTC 2012 - tittiatcoke@gmail.com
|
Fri Nov 2 16:46:28 UTC 2012 - tittiatcoke@gmail.com
|
||||||
@ -665,7 +707,7 @@ Wed Sep 5 12:02:32 UTC 2012 - dmueller@suse.com
|
|||||||
|
|
||||||
- update to 4.9.1
|
- update to 4.9.1
|
||||||
* see http://kde.org/announcements/4.9.1/ for details
|
* see http://kde.org/announcements/4.9.1/ for details
|
||||||
|
|
||||||
|
|
||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
Mon Jul 30 16:49:32 UTC 2012 - dmueller@suse.com
|
Mon Jul 30 16:49:32 UTC 2012 - dmueller@suse.com
|
||||||
@ -708,7 +750,7 @@ Wed Jan 18 20:56:34 CET 2012 - dmueller@suse.de
|
|||||||
- update to 4.8.0
|
- update to 4.8.0
|
||||||
* first stable release of KDE 4.8 (only critical fixes over 4.7.98)
|
* first stable release of KDE 4.8 (only critical fixes over 4.7.98)
|
||||||
* see http://kde.org/announcements/4.8/ for details
|
* see http://kde.org/announcements/4.8/ for details
|
||||||
|
|
||||||
|
|
||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
Tue Jan 10 16:32:04 CET 2012 - dmueller@suse.de
|
Tue Jan 10 16:32:04 CET 2012 - dmueller@suse.de
|
||||||
@ -716,7 +758,7 @@ Tue Jan 10 16:32:04 CET 2012 - dmueller@suse.de
|
|||||||
- update to 4.7.98
|
- update to 4.7.98
|
||||||
* RC2+ milestone release of KDE 4.8
|
* RC2+ milestone release of KDE 4.8
|
||||||
* see http://kde.org/announcements/4.8/ for details
|
* see http://kde.org/announcements/4.8/ for details
|
||||||
|
|
||||||
|
|
||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
Wed Dec 7 10:57:00 UTC 2011 - coolo@suse.com
|
Wed Dec 7 10:57:00 UTC 2011 - coolo@suse.com
|
||||||
@ -750,11 +792,11 @@ Thu Sep 1 23:14:13 CEST 2011 - dmueller@suse.de
|
|||||||
|
|
||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
Thu Aug 18 13:13:04 UTC 2011 - toddrme2178@gmail.com
|
Thu Aug 18 13:13:04 UTC 2011 - toddrme2178@gmail.com
|
||||||
|
|
||||||
- Split kwrite doc package (fix for RPMLINT warning)
|
- Split kwrite doc package (fix for RPMLINT warning)
|
||||||
- Removed redundant buildrequires
|
- Removed redundant buildrequires
|
||||||
- Cleaned up spec file formatting
|
- Cleaned up spec file formatting
|
||||||
|
|
||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
Mon Aug 8 07:56:03 UTC 2011 - mlin@suse.com
|
Mon Aug 8 07:56:03 UTC 2011 - mlin@suse.com
|
||||||
|
|
||||||
@ -766,7 +808,7 @@ Fri Jul 22 20:17:48 CEST 2011 - dmueller@suse.de
|
|||||||
- update to 4.7.0
|
- update to 4.7.0
|
||||||
* Small fixes over KDE 4.7 RC2
|
* Small fixes over KDE 4.7 RC2
|
||||||
* see http://kde.org/announcements/4.7 for details
|
* see http://kde.org/announcements/4.7 for details
|
||||||
|
|
||||||
|
|
||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
Sat Jul 9 09:51:34 CEST 2011 - dmueller@suse.de
|
Sat Jul 9 09:51:34 CEST 2011 - dmueller@suse.de
|
||||||
@ -1230,7 +1272,7 @@ Thu Jul 29 16:55:54 CEST 2010 - dmueller@suse.de
|
|||||||
|
|
||||||
- update to 4.5.0
|
- update to 4.5.0
|
||||||
* KDE 4.5.0 final (version bump over RC3)
|
* KDE 4.5.0 final (version bump over RC3)
|
||||||
|
|
||||||
|
|
||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
Sat Jul 24 00:04:44 CEST 2010 - dmueller@suse.de
|
Sat Jul 24 00:04:44 CEST 2010 - dmueller@suse.de
|
||||||
@ -1238,7 +1280,7 @@ Sat Jul 24 00:04:44 CEST 2010 - dmueller@suse.de
|
|||||||
- update to 4.4.95
|
- update to 4.4.95
|
||||||
* KDE 4.5 RC3 (not announced)
|
* KDE 4.5 RC3 (not announced)
|
||||||
* critical fixes for 4.5.0 release
|
* critical fixes for 4.5.0 release
|
||||||
|
|
||||||
|
|
||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
Fri Jul 16 18:21:13 CEST 2010 - dmueller@suse.de
|
Fri Jul 16 18:21:13 CEST 2010 - dmueller@suse.de
|
||||||
@ -1643,17 +1685,17 @@ Thu Nov 1 12:21:39 CET 2007 - dmueller@suse.de
|
|||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
Wed Oct 31 23:39:16 CET 2007 - dmueller@suse.de
|
Wed Oct 31 23:39:16 CET 2007 - dmueller@suse.de
|
||||||
|
|
||||||
- update to KDE 4.0 Beta4
|
- update to KDE 4.0 Beta4
|
||||||
|
|
||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
Sat Oct 20 17:58:01 CEST 2007 - dmueller@suse.de
|
Sat Oct 20 17:58:01 CEST 2007 - dmueller@suse.de
|
||||||
|
|
||||||
- update to 3.94.1
|
- update to 3.94.1
|
||||||
|
|
||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
Thu Oct 11 11:39:13 CEST 2007 - dmueller@suse.de
|
Thu Oct 11 11:39:13 CEST 2007 - dmueller@suse.de
|
||||||
|
|
||||||
- udpate to KDE 4.0 Beta3
|
- udpate to KDE 4.0 Beta3
|
||||||
|
|
||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
Tue Oct 2 16:10:31 CEST 2007 - stbinner@suse.de
|
Tue Oct 2 16:10:31 CEST 2007 - stbinner@suse.de
|
||||||
|
27
kate.spec
27
kate.spec
@ -15,22 +15,23 @@
|
|||||||
# Please submit bugfixes or comments via http://bugs.opensuse.org/
|
# Please submit bugfixes or comments via http://bugs.opensuse.org/
|
||||||
#
|
#
|
||||||
|
|
||||||
|
%bcond_without lang
|
||||||
|
|
||||||
%define _appstreamkpackage 0%(cat %{_kf5_libdir}/cmake/KF5Package/KF5PackageMacros.cmake | grep -q 'appstream-metainfo' && echo 1)
|
%define _appstreamkpackage 0%(cat %{_kf5_libdir}/cmake/KF5Package/KF5PackageMacros.cmake | grep -q 'appstream-metainfo' && echo 1)
|
||||||
Name: kate
|
Name: kate
|
||||||
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: Advanced Text Editor
|
Summary: Advanced Text Editor
|
||||||
License: GPL-2.0+
|
License: GPL-2.0+
|
||||||
# FIXME: use correct group, see "https://en.opensuse.org/openSUSE:Package_group_guidelines"
|
# FIXME: use correct group, see "https://en.opensuse.org/openSUSE:Package_group_guidelines"
|
||||||
Group: Productivity/Editors/Other
|
Group: Productivity/Editors/Other
|
||||||
Url: http://www.kde.org/
|
Url: http://www.kde.org
|
||||||
Source0: %{name}-%{version}.tar.xz
|
Source0: %{name}-%{version}.tar.xz
|
||||||
# PATCH-FIX-UPSTREAM remove-popupapplet-servicetype.patch -- Remove the depreciated Plasma PopupApplet servicetype
|
# PATCH-FIX-UPSTREAM
|
||||||
Patch1: remove-popupapplet-servicetype.patch
|
Patch: enable-numericMode-in-filetree.patch
|
||||||
BuildRequires: kactivities5-devel
|
BuildRequires: kactivities5-devel
|
||||||
BuildRequires: kconfig-devel
|
BuildRequires: kconfig-devel
|
||||||
BuildRequires: kcrash-devel
|
BuildRequires: kcrash-devel
|
||||||
@ -62,6 +63,7 @@ BuildRequires: pkgconfig(Qt5Widgets) >= 5.4.0
|
|||||||
Requires: %{name}-plugins = %{version}
|
Requires: %{name}-plugins = %{version}
|
||||||
Obsoletes: %{name}5 < %{version}
|
Obsoletes: %{name}5 < %{version}
|
||||||
Provides: %{name}5 = %{version}
|
Provides: %{name}5 = %{version}
|
||||||
|
Recommends: %{name}-lang
|
||||||
BuildRoot: %{_tmppath}/%{name}-%{version}-build
|
BuildRoot: %{_tmppath}/%{name}-%{version}-build
|
||||||
|
|
||||||
%description
|
%description
|
||||||
@ -87,9 +89,13 @@ Obsoletes: kate5-plugins < %{version}
|
|||||||
Kate is an advanced text editor for KDE. This package contains
|
Kate is an advanced text editor for KDE. This package contains
|
||||||
plugins and data files for Kate and KWrite editors.
|
plugins and data files for Kate and KWrite editors.
|
||||||
|
|
||||||
|
%if %{with lang}
|
||||||
|
%lang_package
|
||||||
|
%endif
|
||||||
|
|
||||||
%prep
|
%prep
|
||||||
%setup -q
|
%setup -q
|
||||||
%patch1 -p1
|
%patch -p1
|
||||||
|
|
||||||
%build
|
%build
|
||||||
%cmake_kf5 -d build
|
%cmake_kf5 -d build
|
||||||
@ -97,6 +103,10 @@ plugins and data files for Kate and KWrite editors.
|
|||||||
|
|
||||||
%install
|
%install
|
||||||
%kf5_makeinstall -C build
|
%kf5_makeinstall -C build
|
||||||
|
%if %{with lang}
|
||||||
|
%find_lang %{name} --with-man --all-name
|
||||||
|
%kf5_find_htmldocs
|
||||||
|
%endif
|
||||||
|
|
||||||
%post -p /sbin/ldconfig
|
%post -p /sbin/ldconfig
|
||||||
%postun -p /sbin/ldconfig
|
%postun -p /sbin/ldconfig
|
||||||
@ -138,4 +148,9 @@ plugins and data files for Kate and KWrite editors.
|
|||||||
%{_kf5_sharedir}/plasma/
|
%{_kf5_sharedir}/plasma/
|
||||||
%{_kf5_servicesdir}/
|
%{_kf5_servicesdir}/
|
||||||
|
|
||||||
|
%if %{with lang}
|
||||||
|
%files lang -f %{name}.lang
|
||||||
|
%doc COPYING*
|
||||||
|
%endif
|
||||||
|
|
||||||
%changelog
|
%changelog
|
||||||
|
@ -1,22 +0,0 @@
|
|||||||
From a1f8e09413465969d10b198a6c3bb01e90ca440d Mon Sep 17 00:00:00 2001
|
|
||||||
From: Raymond Wooninck <tittiatcoke@gmail.com>
|
|
||||||
Date: Wed, 21 Dec 2016 11:22:36 +0100
|
|
||||||
Subject: [PATCH] Remove the depreciated Plasma PopupApplet servicetype
|
|
||||||
|
|
||||||
---
|
|
||||||
addons/sessionapplet/applet/metadata.desktop | 2 +-
|
|
||||||
1 file changed, 1 insertion(+), 1 deletion(-)
|
|
||||||
|
|
||||||
Index: kate-16.12.1/addons/sessionapplet/applet/metadata.desktop
|
|
||||||
===================================================================
|
|
||||||
--- kate-16.12.1.orig/addons/sessionapplet/applet/metadata.desktop
|
|
||||||
+++ kate-16.12.1/addons/sessionapplet/applet/metadata.desktop
|
|
||||||
@@ -98,7 +98,7 @@ Comment[zh_TW]=Kate 工作階段啟動å™
|
|
||||||
|
|
||||||
Type=Service
|
|
||||||
Icon=kate
|
|
||||||
-X-KDE-ServiceTypes=Plasma/Applet,Plasma/PopupApplet
|
|
||||||
+X-KDE-ServiceTypes=Plasma/Applet
|
|
||||||
|
|
||||||
X-Plasma-API=declarativeappletscript
|
|
||||||
X-Plasma-MainScript=ui/katesessions.qml
|
|
Loading…
Reference in New Issue
Block a user