From adf727e185cf25ea17ae4b1d0f8c80c59c04ae19d9bec1ae7353585a8d52f397 Mon Sep 17 00:00:00 2001 From: Christophe Marin Date: Thu, 9 Jan 2025 16:43:21 +0000 Subject: [PATCH] KDE release gear 24.12.1 OBS-URL: https://build.opensuse.org/package/show/KDE:Applications/kate?expand=0&rev=240 --- .gitattributes | 23 + .gitignore | 1 + 0001-Defuse-root-block.patch | 46 + applications.keyring | Bin 0 -> 5710 bytes kate-24.05.2.tar.xz | 3 + kate-24.05.2.tar.xz.sig | 16 + kate-24.08.0.tar.xz | 3 + kate-24.08.0.tar.xz.sig | 16 + kate-24.08.1.tar.xz | 3 + kate-24.08.1.tar.xz.sig | 16 + kate-24.08.3.tar.xz | 3 + kate-24.08.3.tar.xz.sig | 16 + kate-24.12.0.tar.xz | 3 + kate-24.12.0.tar.xz.sig | 16 + kate-24.12.1.tar.xz | 3 + kate-24.12.1.tar.xz.sig | 16 + kate.changes | 3358 ++++++++++++++++++++++++++++++++++ kate.spec | 133 ++ 18 files changed, 3675 insertions(+) create mode 100644 .gitattributes create mode 100644 .gitignore create mode 100644 0001-Defuse-root-block.patch create mode 100644 applications.keyring create mode 100644 kate-24.05.2.tar.xz create mode 100644 kate-24.05.2.tar.xz.sig create mode 100644 kate-24.08.0.tar.xz create mode 100644 kate-24.08.0.tar.xz.sig create mode 100644 kate-24.08.1.tar.xz create mode 100644 kate-24.08.1.tar.xz.sig create mode 100644 kate-24.08.3.tar.xz create mode 100644 kate-24.08.3.tar.xz.sig create mode 100644 kate-24.12.0.tar.xz create mode 100644 kate-24.12.0.tar.xz.sig create mode 100644 kate-24.12.1.tar.xz create mode 100644 kate-24.12.1.tar.xz.sig create mode 100644 kate.changes create mode 100644 kate.spec diff --git a/.gitattributes b/.gitattributes new file mode 100644 index 0000000..9b03811 --- /dev/null +++ b/.gitattributes @@ -0,0 +1,23 @@ +## Default LFS +*.7z filter=lfs diff=lfs merge=lfs -text +*.bsp filter=lfs diff=lfs merge=lfs -text +*.bz2 filter=lfs diff=lfs merge=lfs -text +*.gem filter=lfs diff=lfs merge=lfs -text +*.gz filter=lfs diff=lfs merge=lfs -text +*.jar filter=lfs diff=lfs merge=lfs -text +*.lz filter=lfs diff=lfs merge=lfs -text +*.lzma filter=lfs diff=lfs merge=lfs -text +*.obscpio filter=lfs diff=lfs merge=lfs -text +*.oxt filter=lfs diff=lfs merge=lfs -text +*.pdf filter=lfs diff=lfs merge=lfs -text +*.png filter=lfs diff=lfs merge=lfs -text +*.rpm filter=lfs diff=lfs merge=lfs -text +*.tbz filter=lfs diff=lfs merge=lfs -text +*.tbz2 filter=lfs diff=lfs merge=lfs -text +*.tgz filter=lfs diff=lfs merge=lfs -text +*.ttf filter=lfs diff=lfs merge=lfs -text +*.txz filter=lfs diff=lfs merge=lfs -text +*.whl filter=lfs diff=lfs merge=lfs -text +*.xz filter=lfs diff=lfs merge=lfs -text +*.zip filter=lfs diff=lfs merge=lfs -text +*.zst filter=lfs diff=lfs merge=lfs -text diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..57affb6 --- /dev/null +++ b/.gitignore @@ -0,0 +1 @@ +.osc diff --git a/0001-Defuse-root-block.patch b/0001-Defuse-root-block.patch new file mode 100644 index 0000000..f4f7e82 --- /dev/null +++ b/0001-Defuse-root-block.patch @@ -0,0 +1,46 @@ +From f1b20995d1fe309b32b090ef8667f2de2f1d9d02 Mon Sep 17 00:00:00 2001 +From: Luca Beltrame +Date: Sun, 26 Feb 2023 22:27:06 +0100 +Subject: [PATCH] Defuse root block + +While the main point is correct as any application running in the same +X session (not sandboxed) can use kate's capability to open a console, +we allow (even encourage) running YaST on X11 as root. +That way it's only an impact on usability. +--- + apps/lib/kateapp.cpp | 19 ++----------------- + 1 file changed, 2 insertions(+), 17 deletions(-) + +diff --git a/apps/lib/kateapp.cpp b/apps/lib/kateapp.cpp +index 2d1a66157..85079c356 100644 +--- a/apps/lib/kateapp.cpp ++++ b/apps/lib/kateapp.cpp +@@ -87,23 +87,8 @@ void KateApp::initPreApplicationCreation() + #if !defined(Q_OS_WIN) && !defined(Q_OS_HAIKU) + // Prohibit using sudo or kdesu (but allow using the root user directly) + if (getuid() == 0) { +- setlocale(LC_ALL, ""); +- bindtextdomain("kate", KDE_INSTALL_FULL_LOCALEDIR); +- if (!qEnvironmentVariableIsEmpty("SUDO_USER")) { +- auto message = kli18n( +- "Running this editor with sudo can cause bugs and expose you to security vulnerabilities. " +- "Instead use this editor normally and you will be prompted for elevated privileges when " +- "saving documents if needed."); +- std::cout << dgettext("kate", message.untranslatedText()) << std::endl; +- exit(EXIT_FAILURE); +- } else if (!qEnvironmentVariableIsEmpty("KDESU_USER")) { +- auto message = kli18n( +- "Running this editor with kdesu can cause bugs and expose you to security vulnerabilities. " +- "Instead use this editor normally and you will be prompted for elevated privileges when " +- "saving documents if needed."); +- std::cout << dgettext("kate", message.untranslatedText()) << std::endl; +- exit(EXIT_FAILURE); +- } ++ std::cout << "THIS IS POTENTIALLY INSECURE!\nTo edit files as root please use:" << std::endl; ++ std::cout << "SUDO_EDITOR=kwrite sudoedit " << std::endl; + } + #endif + +-- +2.39.2 + diff --git a/applications.keyring b/applications.keyring new file mode 100644 index 0000000000000000000000000000000000000000000000000000000000000000..299808814995a7df8af874c79c21b829723206c7161c5b8fa8cfe0dc780a9ae5 GIT binary patch literal 5710 zcma)z)8JV( zYvz~5-!F@6);^P4)=`?B55@80pGjj>5~KWPGaSx1L?{dV-p6g-rPS7NAss(X458wC zuJVXA9gvFPFggT#gSKF)jA@Srr^~_!+nVQ8DS@NWBft26`-&#W!YjAcY>bX>)W!ps+xZS+`5^fGmc zgUVNHxH<6HM}#`3(?*$qX>{{@JUSjyENsf&d5s4ujjznVU*O^83VbqY^`g0lm%qR> z_I*n7vpo#9(SjBK%1@DLq?gimB&JZP+9&VJ^NMdSp+U=|njJ*$ja`eedPI<>A;IA0f14g0>NP;$`i zmGdhLaj&6mTO~Dx!O-BE5DD%r$3P=PM?0+>=>!U`Ih6La#4>?+3&Gq7wk0BWQM9 z$GhI{Xhd(w&3$O$A4*qZ%+K?-?SnWn>O_=6`$l$WY#M(Nr&)Vi%_rXI%=FjH55^R8 zNE#hC8SFF>OzP*Ha(<`>_)oZzx!)|?n0uNg{yizF zJ*PBL%ic(ki}0}d&)r2_`tHcb$T-m!ZJpZ;L4a;q2~9AtFBi3(cd*u~6SEr1vv_Lm zO8c3K$AhTQt+d^3sX_HT_6B<4^DAMDxvamDtSntA+Xf=6bqTZ1MEKgRbm(%om$NgO z7j%ciwo4d(!j2x}gjj_~DHn-o0j=DVJEsZ=5Jj8_Iohk~)6}HpY`t)e+}WXyxgNxCtcGnSXHmi)`|%JH*6X z^jb#(*G@-_Mpg)f;Z0w>)5MdC|3H*uPs5sCQ6q#mzcznhaTNc8bAW|0mi#=xicBEa zi*6df3YPO@pzGk) z{eu_I-*{mF(6K3S0eJWX{|8{Z@}y|-R0fhnI^kKrPD;#Vis5oWz<3n6VaV+md0*SZ zfu@+e6xyGOZF2mwaujY}`lyci(JDk}F5U*DJm?CDwGr?x?_zHZ7*{W35GRY*O}SwY zANr`8S~OQx$gP-nvsdnr0rX@GOX74Fp?QDo?%49_GhTk1L2zv~P~xRh1$|r4+0c@| zP%YXo0vATm_izQ_;y%?C)UR~8E7Hu@MK+z6!Kr$=yW_ESJHidGZ}0Z5YX%Dy`RoTM zRhyd!UMD=qoPB#ZCib+OM#QvZ*2UP9R)l-DKFa(oslGST^5oJ~J?VsZhNCWf>Pg?e zNOIn3d9vMx|3C)vikiq(KudCMJ0PCUg_kK#@=G78a{P^Xd6**$LL|I7)(iQL@)Un= z(^Nor!%m4qtV8IP^=(QENY98USKL@Ac}+XgCv8tZ2d@nQ#ijl2tDSF9hVk$t7uVGo zJ5Je^RK>lhQMNzfG9Cwux~r`)L3`;$Zyn2!PcsLV!JnQ@J`v@A1Rdo{oY3Qr(a@^J z=kwN+*{EJ065!k8Kxv6|p^7x2$|>OLS<`GO445&Zbe(dQP*{4d4IYzq;pJg$&zO;2 z?6@nyNr-&r!Ur#LpA9UEP=Mb~1o3#Jl7KGf-=!5`u`DwBV+Y|EzE@g5f-L$px$bQr zf&4#2-!g;>m+6|I{PJrU{uiyuxY~dG^vRY7Z1cxx|6t1z`u}FjSBT^m`zw2^{^Akx zUCHwKinWYO%-Nfa%yQc8`;LVT8I+YugV$_^M}QgMEK}rMx|4+RQDe94k?6hQd zU}m!-nSfL+N@v>7=*;G~`xQk4 ziwE!))+p~WAcuvQ_Uf{7CvYq(Lh_cYOw}}ivlp7)O%NFm5;Tr1>t>rnf`w*=v~P$& zd_mk~Xv{Y?K=$E?<*yyDu0#^_4LfL(Dbd~&Pfp?Wh%e7#kmgap%2YFqLYUbV;FL7G z-6sBK0xI!3Xi5ZD;XahT2tYs!2a-tuX5GJUq+q-gqWefMDkk7Sf_0Eesn&3y6epA| zm9F+ssl?kQ0#*NAs6s{6(-0Bz^cw~V?FQBp6@*x;)Jfz2B-B?9>_Athcn|Hkv=Z{J z;wvdzJqRtMKT{}-r%5pHrX#aw=cS7L0m@ZSjup~lwDZt&A&0+k)y3dXPgCoJUcj2c ztf=)q6}y+!-y!|_$Ugvao3gnqHRl)(U;2I&1@5OO*rxIE-Y13`9}OB+1q9a0|p zzv8sFpkB3v}0*!BQT&T!qE{w)3-Ustu^i39PBytA=Yvh_o+FLxFnlNSZ zQWO2IM0LcUoi)mV%&CU-1>yEJ5Sii>uC8S4moJhL9@QEG-}jRur_fgGn}BY)dV^9`HG5+K7I5@>HKyAtB|w{mp=Kq*QZj7O)1{^Q!d5)@}u-_40+>`FXhXaQ%&fB zjX_o~n|3_Q8@a|jQjXe$`n#>t+c*VTTebj z+lV8Rd#|-Vzv}#~9X83W!jK`Qf@Bwsai?1FD|7b7>;|IXPh(go+ozc;gD>wV*1Vo^ zxX%g|KS;1f87UrkpUSd$;3raMulJuj;w^z7O4q_#G@*4!MZd>WO%_oV`>7$msksLg z(6Xo^sU)aibQgxyF%E!O5MkQx~3er&+fi|Rb z6*)^6+~s?rk>!ngxiIz|ZwHHYN;rq8SWh-a+7S{h(dzlVTQr)|aGkUG%uAxsoZk%d zandE$^gQ^=`a!zARq68@QS20kQw^J)d?TrK~3ryB9m_}G-E<p=_F^0h? zSnAK{Dw;$fw3XjlH{a=fc3B=qtMevP))hK}^7|sV53Cfho6W;48v>!2QS-^Nr#>B4 zwCJ0PDafURaUI1B1JzlcLvw2yU&C{byTTLA)TfQ{^BuJa`ZIQS{m%H-2l6x`x#UXT zof*jk>C72@3E3;kJ8;8qe@(KDU_DGHKc0p5MZ*Ljs9f+&xNXp2sg_m-LWu#^|Hbv_ zCT}S>Q1c9%VrRKwFAjItXMTqFnHw_RE8G}EN0d0y4OGa6l#;6B__fzcbd{8(i*t!jHtQQ4ErwU98nS$L2oq`Xyz5ND$Qw8 zOHB9;{)@13gN~k1kEcqwFzRKN!XsL%Z!fA&pP$E*qwn)!$DZI~Ly z58nGbHHqiPUa#2$Y|U`q(H$Rf*)Al`CqO79WZILEmmWal*&|vOcE>N?Mrdkgc#c8a zr@)6_n4x+MfMKnTYIkWF_Y@sbyb+O-bT-uAe0$aE>^uOBLw>2v<~ z=wgzESlN7Z1IoI(SwdWa@(y62gr%jm1Na}4OZQ)sOA0`T@t;+N`=@#TxvKuGu_0D2 zNZ^VFZ&idKhxmJq2C06=5G`I=e}Q;6fKLy`U^4O98d5Cp`o7-}uHijJCy&Rzv5iCGd(eUDAm7Z4~jd3W&x{(I0xZec6F5gG>0 zT;MGM`M91ZZ8_~%jl8N38MjX#%PQQA}NS|rXWhq&>}YYdT)W^h~fTbHUO8e z0?^SOsC7Y5w%bLGCZTc^K2=F~q;DsQ`PmmI$vszdN$qeE0@LzX}%qUS1WsR4U!in+|?1&Og6=)>lcDfDT31!FD(61BJlX8J@x?|_z5)AIfTh-~oQ74&?{5%xKY zjau{`x&m4>_%bTq+s$RS<#5E!P9OJzaOesy2l=~Q{%xXGZ%-U06cff9G>c7zt;p5Z z%X6*Wf*uKG#E8WWynIXtHmpmrH~pcSFr%});BKfdnV$hQY174KaQim9UM7a?oX_Ut zV1Hkk?`rfmD}8c>rip8tK7+wfSAX;2tIN8-maDCwD^p*rI&&qG=+Lt_q$$1j>Ki?> zh*Q824NyKJkGWCtp6%Mgx6CVjRog&C}}lM`%DwVjk} zmqtvpC#Mh7U)|mDKiXT zK)g2=$G+3CzhPn1b}Dyx@}>i_0NSDKiO4Mc{ym}+^9)0>-NrHY^h4+dupbf^m?O;s zhnP4LJ`7&MzRzGCWkKHx5bj% zn+fbUJ_@hRIqqcj!Yp7AnokZ8(oYgTyKJNKjIOIiy1nu#`DNEUebi*7%xU2k&h{3! zMApot!7!O`sZFSNYO*TZjUZ5N(FE@2wuxbVdIp#nL7OrUoKE};#x~CixG8qq@z&y9 z>cWyN&#t?6O~`M_z+JS)x~mQRH+$l_JM^Cu-0Xu>jr# zO&6Ht$4wxlrA;;S9s_%1Q%lT}-OLe^UHv@t|85tFKkb5x#`>pP{!g8l1Cc6Ncz7!Q zk^j_*ydTK}>yxV<*k}9$A&OI<(4tPgj0ku7CutE^jIbH7PW0z3~!=x!*%0)-*`U3(=Ju zN7n+@_6?N_5DOGvQd2eH!bPfRd4ySIAGfFL9%|LoZem~hi}G~PxJT*64Gu&a(wL); zxcZkY;sexc%IG%p&q_O+K=Bk3Q(EV+W64AhVHq`NE8sN8(pgaEmt*Ta3#Z%<;QhA; zRT|h305pIfxz^~?+aTvydLWYA2qKgn8dE05Uu+*)a;{fvcn<)DOMczb}f^Y zTwqk}=}LXrBN%2M zkC}AOru&YmvxDZ@$24H&E7sLaP~x->6|$+1jL*&+J@?jW5=Q8a^W9Dx7~obTJV60) z@q@R2xs6$bqfYlo9Mi)>-h@WuEE)TXoS$wn8-!?|RN`lEaIW45`*o6p(N(Iw-=;0I zze7IAohNcq%}AY~BjsOU+NlL^9K;Wh&ZyfBe2MkYFAUrMMvbpCm)c`|>hhumK?C|P DN;;+Q literal 0 HcmV?d00001 diff --git a/kate-24.05.2.tar.xz b/kate-24.05.2.tar.xz new file mode 100644 index 0000000..c9e4679 --- /dev/null +++ b/kate-24.05.2.tar.xz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:774f08b7d53db0b282164e930a0e0cd4709e75938dcb8b3cb430fedf0d5db020 +size 8149132 diff --git a/kate-24.05.2.tar.xz.sig b/kate-24.05.2.tar.xz.sig new file mode 100644 index 0000000..79fed94 --- /dev/null +++ b/kate-24.05.2.tar.xz.sig @@ -0,0 +1,16 @@ +-----BEGIN PGP SIGNATURE----- + +iQIzBAABCgAdFiEE2BwMs463Je9mkcOFu0YzUNbvMe8FAmaDmLoACgkQu0YzUNbv +Me/TIA/+OfXVmm4tlFpuk7gFfi+31yT8cqtghCog6VO89yX6VZhTinq63Jh1sA1T +3dqfEOcizQPmR/I3Rg3TtZBAk9qj7MaCHb0tyuoAghNUMgvK7EWJFe9f8pO77+7z +OVwT9uA4haaI1BtemXAXpaUJ9+yzIbLzh6w0XUgN3ZAnhIzRjH+CY01uPJKPWJtX +Id7ksThOFqjum7k/A3h1eHVQFtw90JvTLHU8g/CyXweRwWiwePOPE2+MP2xM9u+w +zifV/pAfLUnvoqnektqDGFD2bNq8PbM1cnRka7lBLuNPYMGA9F0jT3Wc4dRnIgY8 +hOAEmnB+VS5e2MldU9vKVcjwRev5PyRhtHjm2ZSESmlFabfP/R6ufbADpwpBzs99 +UeEMTl5QDQxZSqaQXBAC5MQpo1U1Vf5KraO7u5DLKiUhS39s6ce6wjSFj1Ia95b6 +ku2LIkycGw+z/XqczheqXgJT5Xi+4E+0MYHAa29vayB97LQl90HCc9frpKI17TVB +7B1OSVuOTeOIJ21yZ8xEJ+AeJq5136RzqZFH4/Nz30NhnQNfVt/I5ncNpPtXrS93 +Fw3XxKvcLlx9CXBJ77LJdqZNCLF1jqfL7khKY6+OGkOR6G4tdLMyHqoZZio537U5 +/FIBMcH0iUZbl6wYq9h1M2EOj15lo5id8KhtSK+CexoRV0BGGT8= +=aJef +-----END PGP SIGNATURE----- diff --git a/kate-24.08.0.tar.xz b/kate-24.08.0.tar.xz new file mode 100644 index 0000000..f3b85e2 --- /dev/null +++ b/kate-24.08.0.tar.xz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:85b20215e3ccfdbb1e615108a70673f1e6443ceca1948290eee3841a061173e9 +size 8202144 diff --git a/kate-24.08.0.tar.xz.sig b/kate-24.08.0.tar.xz.sig new file mode 100644 index 0000000..de88baf --- /dev/null +++ b/kate-24.08.0.tar.xz.sig @@ -0,0 +1,16 @@ +-----BEGIN PGP SIGNATURE----- + +iQIzBAABCgAdFiEE2BwMs463Je9mkcOFu0YzUNbvMe8FAma+3JAACgkQu0YzUNbv +Me8I6g/+ObO5pJk55mDaw2LWWmSx5IKsRlikqQo0AxVtbEZ+kMQUKevn02cL+fN6 +RtuUE5MrqbxEFHfYg+wWI+cbvqdnu/dCnGdOVihu2GFsXb59XpF8MD+iY3bQwiWh +ogJI8VJlBLQ/wNaJjdbHB0oewMUY3t3IdzsxMIbth4BRYz5YCIWN1KEgB4nBmvnn +GJ/hlrdWlEQNMBMU99o8pW2CNdLb57jj32DSQk8KueajpLxgiQ6gB/Lir0MpxWL8 +L8djG9ttGTJp6XBCK7J8h956h/csr/QdUQuT9zaUwsbumWBFXZgvPWSHpguv0JO8 +4H1LSkcNTvAft0kdtFmt/b+IjcYDQ05e9yq0m/Em+fejY1IRCdm6qzGcCbdOfIGY +JDKTMiWZQp0Pq3PcLpcIwNr0SgnfU/EBRYpaQywEuNn5i3OLvTH0+2e3TiclYt+4 +6RjWqCXdeb1hK25kl68BO98P7Ae+6J42udVQ+siOsaCVgLjx8QM52c98UpCf3/aE +1FIkBiP/2m/7p4vbhawpFXEA7kuASvluVpbc4WtBy9mcAdnPzzBiCmXdnx78KAdO +7l/uESd8Y6Tw8tOyfJTsI7kdo1YerHk0Y70yIUrIIMZiau2Z+m/6FZq+Exw/wi5T +WBUsasgQ2RtpT36kCX9Hvf4F6arRi4BiTO27CCXmv7gd8tf6GBo= +=xkqH +-----END PGP SIGNATURE----- diff --git a/kate-24.08.1.tar.xz b/kate-24.08.1.tar.xz new file mode 100644 index 0000000..572d8d6 --- /dev/null +++ b/kate-24.08.1.tar.xz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c10518b24386f1daf5f64723c25b3f4ed7e3446a70912abe5b6c965efd9b2dc6 +size 8207264 diff --git a/kate-24.08.1.tar.xz.sig b/kate-24.08.1.tar.xz.sig new file mode 100644 index 0000000..2f6e4f5 --- /dev/null +++ b/kate-24.08.1.tar.xz.sig @@ -0,0 +1,16 @@ +-----BEGIN PGP SIGNATURE----- + +iQIzBAABCgAdFiEE2BwMs463Je9mkcOFu0YzUNbvMe8FAmbf+LAACgkQu0YzUNbv +Me+PMw/+KBf/zusWb108GWopUbaBJTM/JymhfyAoZpta5LeNpP6lB2XU0T4ESCS7 +dgXndTdwf8ycJf92laxjCoLuRMMcHYYyE3I7Tgi1T7SDlYRIxXaIw/OL8R34ydVC +C0bYgGykGwSDm0/Z3D4CeUii6e3G5TwigqTA1kgcE6w1DdhXfQZvfYw6+L9GMTYk +7K++BHFNGSIC7mn5GrRuLBUjsBX6eZEz9+E0v0FcZupaak9990rzAnYyygPCuBVl +PL1LaPAlPcOcfImC+3QXXNCVQlBrh6UtK2b2JX1RDh2tCu53mxQiMtLNS2K7aLPG +SWHDs4A1ncujiDbRaLfO934rTAjGQwp5h+fV+DN6gD20/+W5BvnNO9TOyT7Pof5V +xM8gY+DbYSX1WrTnOyFQTekplKyh3X3GAxDaInZ1vj+VcrpRZPYP+8jaL1xNcBGf +Gip1xHVDc1i0SRTvblseG5djJfdBVvm3XYEh/aoLE+ypFJOgjeRKVo31kKygnVOj +wotrH25gy6lnctXhHvfCWQB4vm4VEQLbzQnYCQMftQhfK/NKQ6uLqXcNdNFDX+uF ++mxkeP8A3Nej/Vzky+B79cC2wxRZwlbF0gjbPy7XmJmbEJWW8LvOxIuIeuLlymS/ +yLRSGj10VZ6RAdB/8+xuzeWd84cfsI2R76OatmzpSz4jnSOTWKg= +=k562 +-----END PGP SIGNATURE----- diff --git a/kate-24.08.3.tar.xz b/kate-24.08.3.tar.xz new file mode 100644 index 0000000..57acc7d --- /dev/null +++ b/kate-24.08.3.tar.xz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ccb656435efc1fde0ae4c2d93400a2c05660bf299e6411714b9042422c50d4f2 +size 8248700 diff --git a/kate-24.08.3.tar.xz.sig b/kate-24.08.3.tar.xz.sig new file mode 100644 index 0000000..b25ff9b --- /dev/null +++ b/kate-24.08.3.tar.xz.sig @@ -0,0 +1,16 @@ +-----BEGIN PGP SIGNATURE----- + +iQIzBAABCgAdFiEE2BwMs463Je9mkcOFu0YzUNbvMe8FAmcpYHcACgkQu0YzUNbv +Me8LDxAAgdCboHio64mTUjxY4MNIvQpDUuYRbBvcHtZiGG3h0kPK6cYE3F3e+gzW +d3M4z0KUVYnos8MRYxNy09D9cZPZrPK9KY5aiplq2GzN0x+Ooln+nk8nzcvk1Azu +AtEE+bml2Tx1ZsI4EmxATYNC3tMNSjrxl8aN0kA4koluElPsP+NnTtufvXZfx7aX +DkwGrvJVaFtmpIfVb3LeqqgL7ecCpaUnuj5jNbx64JnRV4ie9RKmD3Y8qAtNrxWF ++Tkenu/Dc1FMQi92iGG9Dpz+/5YOcSVsLcWjbxsT3OkfraQHuCuERljHci0jT4oe +N4w+cEbDdiUrVhl1ZBY+5o9M4d91nxHdbAIxDmTP1TQmNx/I542NcF8myZdoujE0 +HIctOk1SvqYma6nxtRALMqisIpt4SJ437lSdDRWPZrIIOmmUPjYCgFpk6DnIqnBl +lke6Ax2G8GEn9pyAJYV6gAetJnpUaoKBP7Pc0nTV9LDbbeU94Q25MB39WaY2YfEw +xu04bfjY8JvYyCVPVFwXQLZfj9APmJRdcRn+nnXPKYyWhhfsjbW1X7R5fdBWjoL9 +LGMxw6kP3DOY9AYxW9TnGG3p0sK+GM2qX0hNPCJFTxZ1IQ/2fU8f/aMg/GSAAJQf +GwGW8F9KdhN+LnhuSBzXpmJj+4EVUclptMcaeT2RoaJIG9DhcZI= +=fc4T +-----END PGP SIGNATURE----- diff --git a/kate-24.12.0.tar.xz b/kate-24.12.0.tar.xz new file mode 100644 index 0000000..609b311 --- /dev/null +++ b/kate-24.12.0.tar.xz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a5926a0d85c69ca2cc34d87e567501e795e95050e16f896e39cd8cac4ced2348 +size 8300640 diff --git a/kate-24.12.0.tar.xz.sig b/kate-24.12.0.tar.xz.sig new file mode 100644 index 0000000..e4ec481 --- /dev/null +++ b/kate-24.12.0.tar.xz.sig @@ -0,0 +1,16 @@ +-----BEGIN PGP SIGNATURE----- + +iQIzBAABCgAdFiEE2BwMs463Je9mkcOFu0YzUNbvMe8FAmdSPxwACgkQu0YzUNbv +Me/LqA//Wlhk2y0CsAnObSpuc1UZhx0/jlVYfhvCrqOp5rnpQfOC/7ggDa6exB17 +WxhexoSe9TQNrvzc2tTTNoBHmda7P3hsgseQm5BvedESguh4kEL2eVmr6887kYK5 +Pm8WP1jmJVDSheq30knMO/rLdIBr647yuDIJr1QtXb0S9S5aZJwQ4N9F/avjIoHz +RsRtYm9+aCsnmJxMRtYVmnY2jDydtyNwC343dfJ9O88fFQUvr/5/2P5vpyp+YCR/ +FzuETsuHUQnHPXE0XmbH3YJMIP0hhhWVEl4cWsKnhYnccy3jhTdFnnTR5bbsXafG +od/lHZbCFZ6LBLoWUl7ZGP9CyWW4kBmtHmTHND2DeO+7pFhGPv9XTsXA8d6QRhZH +dX72YWbt1iKp62mBnOfcAVH800+J1cT3SxSeiflJly48nDqwgtvEgue02E78ngVF +QT3d01QyJj6jEQrR8YTPGqO+mzT2eCvxTWm5tde/jlTUENGf3xd+0YflGgxS9tQo +VBYBrzhCPvg633OodTns6wBvtkwxJImV+SYSCoKXA7MN8ucA9L+a3h7SkTB2UKoL +JH6ElgbqCoH33IN68OnOAul1WmxOInBL7Bwp5tmiZOyKUbg01+dsD0F5ZyYN5myl +w3Uahne5L57eK19VvKWlto9TsX7jqBQlmjyEVtwFclECrNPuiBE= +=q1GY +-----END PGP SIGNATURE----- diff --git a/kate-24.12.1.tar.xz b/kate-24.12.1.tar.xz new file mode 100644 index 0000000..12355d4 --- /dev/null +++ b/kate-24.12.1.tar.xz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ec4830a8a2ade45e9a90a219d8e1656e408d229c2005de109e69a5e27a0bfaba +size 8303660 diff --git a/kate-24.12.1.tar.xz.sig b/kate-24.12.1.tar.xz.sig new file mode 100644 index 0000000..e66365a --- /dev/null +++ b/kate-24.12.1.tar.xz.sig @@ -0,0 +1,16 @@ +-----BEGIN PGP SIGNATURE----- + +iQIzBAABCgAdFiEE2BwMs463Je9mkcOFu0YzUNbvMe8FAmd8zncACgkQu0YzUNbv +Me9Rvw//YOGayduZmicX8Li02dobmifisegNTJfD9ndVkCs208TEQqnKmOXInYnM +VPw6u58mnUrpHZxd2U4mCDvOeUd5PN+yxWY06y1f+gucmzzvix+7NRZhk7QVND7N +mVKv0vqjiNB2lK6SJwYnwjziHZalmDkUvql2Vr70/e4rlk/5ZMphdVBTNZ37kOm0 +9CTdV3J8dWRtVtLOabU5wbAoKQ9y1ck3zf9HfUcqy1oi/lOKZG0zJlxT1Pd/ug1B +3lQUkNJpt4E5ksdK0p9ThQU6iUA+CmUvS5GkqoCCbbOPiNmDRI62vXY1+nvP2Ywt +XPsEG9UCHP5XR0NzxWZ5IqSQPzf28ZX85bl/WRp1nE7/gKUTJPgYnIEvv9Jvj2OK +bAOLMGkQt2igCneWudVYZPeycJTulXH8jZcKcPkA8vlf99P/vMfd1Ks+RQHpMVC1 +CW2wgjhOZTJPPnrmawuPFOrTfSYaH+eHfnS2LMp6jR2U7Un5NJg+TOQHQFtI4faC +PuW+QyUodpmB62SjhwBIoHwHMmRwV/NYN5zoSLpcCYkoW8eNmG9X9kfMj//y0dUq +Nrz+TMHuNlt/R9QZ+1pqOOJX/bJp64DdJqhCwpfGUNpb3daWWrdwvidSS93127E8 +wa9ZQQVD0cari9tgK0ueAqCcRkMAmJovUHZBSf7nE8tKE8wBr20= +=VLa7 +-----END PGP SIGNATURE----- diff --git a/kate.changes b/kate.changes new file mode 100644 index 0000000..9103370 --- /dev/null +++ b/kate.changes @@ -0,0 +1,3358 @@ +------------------------------------------------------------------- +Tue Jan 7 18:52:41 UTC 2025 - Christophe Marin + +- Update to 24.12.1 + * New bugfix release + * For more details please see: + * https://kde.org/announcements/gear/24.12.1/ +- Changes since 24.12.0: + * snapcraft: Bring in fixes from release/24.08 + * Build plugin: Add the
 tag to all lines
+
+-------------------------------------------------------------------
+Thu Dec 26 20:20:14 UTC 2024 - Petr Vanek 
+
+- new Qt keychain dependency to re-enable SQL plugin build
+
+-------------------------------------------------------------------
+Sun Dec  8 09:27:17 UTC 2024 - Christophe Marin 
+
+- Update to 24.12.0
+  * New feature release
+  * For more details please see:
+  * https://kde.org/announcements/gear/24.12.0/
+- Changes since 24.11.90:
+  * Make placeholder text translatable
+  * Add Kate branding color
+
+-------------------------------------------------------------------
+Mon Dec  2 08:42:44 UTC 2024 - Christophe Marin 
+
+- Update to 24.11.90
+  * New feature release
+- Changes since 24.11.80:
+  * Add back distance check to hide tooltip
+  * Fix #496460: Match export not working with lookarounds (kde#496460)
+  * don't die if the arrays not only contain integers
+  * don't pass a nullptr to ::fromLatin1 (kde#496602)
+  * Update typescript-language-server url
+  * Avoid ctag indexing the home/root dir
+  * fix language ids for javascript derivates (kde#495805)
+  * Try to have a PATH on macos when not launched from terminal
+  * Build output improvements
+  * Build: Append html output
+  * try to properly use toLocalFile for local files
+  * Skip "Save macro recording" action when recording is going on (kde#494464)
+  * Ensure key press/release are sent to the same widget
+  * Fix active tab not being set inactive
+  * Fix snippet completion execution
+  * Fix snippets not working unless completion is hard invoked (kde#495416)
+  * Remove useless Qbytearray->QString conversion
+
+-------------------------------------------------------------------
+Sat Nov 16 17:29:21 UTC 2024 - Christophe Marin 
+
+- Update to 24.11.80
+  * New feature release
+- Too many changes to list here.
+
+-------------------------------------------------------------------
+Tue Nov  5 10:42:58 UTC 2024 - Christophe Marin 
+
+- Update to 24.08.3
+  * New bugfix release
+  * For more details please see:
+  * https://kde.org/announcements/gear/24.08.3/
+- Changes since 24.08.2:
+  * Fix sql copy/export is randomly ordered (kde#461419)
+  * formatting: Listen to all process signals properly
+  * KateViewSpace: Store session group name on save
+  * Fix QString.arg calls
+  * Add libffi8 needed by opensuse.
+  * snapcraft: Fix ld-library-config.
+
+-------------------------------------------------------------------
+Tue Oct  8 12:01:11 UTC 2024 - Christophe Marin 
+
+- Update to 24.08.2
+  * New bugfix release
+  * For more details please see:
+  * https://kde.org/announcements/gear/24.08.2/
+- Changes since 24.08.1:
+  * snapcraft: Add paths for libs in core22 to ld_library_path
+  * snapcraft: Ensure $SNAP path is first in LD_LIBRARY_PATH
+  * snapcraft: Patchelf dri files so we have graphics.
+  * fix strange behavior on document close after restore (kde#487034)
+  * add compat code to read old session config for views
+  * fix session restore of tabs/views of untitled documents (kde#464703)
+  * don't store pointer
+
+-------------------------------------------------------------------
+Tue Sep 10 14:10:20 UTC 2024 - Christophe Marin 
+
+- Update to 24.08.1
+  * New bugfix release
+  * For more details please see:
+  * https://kde.org/announcements/gear/24.08.1/
+- Changes since 24.08.0:
+  * snapcraft: Fix typo..
+  * snapcraft: Actually add the neon packages.
+  * snapcraft: Use neon packages to simplify build and runtime.
+  * snapcraft: New upstream release. Refresh prime cleanup.
+  * back to normal konsole
+  * Remove unneeded search result expanding limit (kde#491890)
+  * KateBuildView: Remove close button entirely
+  * Formatter: add formatting for Odin language
+  * Change the default LSP client for GLSL language to glsl_analyzer
+  * Fix tooltip hides on scrolling using scrollbar (kde#492092)
+  * Tooltip: Only highlight blocks that are marked BlockCodeLanguage (kde#492076)
+  * Dont insert line breaks in tooltip (kde#492062)
+  * Fix crash on window close
+  * Build release branch.
+
+-------------------------------------------------------------------
+Mon Aug 19 07:13:29 UTC 2024 - Christophe Marin 
+
+- Update to 24.08.0
+  * New feature release
+  * For more details please see:
+  * https://kde.org/announcements/gear/24.08.0/
+- Too many changes since 24.05.2, only listing bugfixes:
+  * Fix Show sidebar shortcut not being restored properly (kde#453715)
+  * Tabs: Wrap around to first on nextTab if current is last tab (kde#476565)
+  * Diff: Allow jumping to hunks with full context (kde#488418)
+  * Diff: Forward wheel event to editor (kde#490406)
+  * try to avoid to create parent less widgets (kde#490712)
+  * fix crash if no konsole installed (kde#490957)
+  * Allow removing multiple items from welcome page (kde#490308)
+  * plugin_kategdp: When breakpoint mark changes, toggle breakpoint for it (kde#481691)
+  * ensure we restore stashed documents with right encoding (kde#489360)
+  * use session file name as stash folder name (kde#485551)
+  * Fix katesql plugin build (kde#488694)
+  * Fix crash in urlbar (kde#489931)
+  * keep track of focus for widgets, too (kde#485209)
+  * ensure plugin actions are in front of context menu (kde#488336)
+  * update clangd homepage (kde#486939)
+  * Fix ruby method parsing and nested classes parsing (kde#480756)
+  * keep track of recent used files on saveAs & close (kde#486203)
+  * use kate from the right virtual desktop (kde#486066)
+  * S&R: Improve tab handling (kde#484231)
+
+-------------------------------------------------------------------
+Tue Jul  2 13:53:57 UTC 2024 - Christophe Marin 
+
+- Update to 24.05.2
+  * New bugfix release
+  * For more details please see:
+  * https://kde.org/announcements/gear/24.05.2/
+- No code change since 24.05.1
+
+-------------------------------------------------------------------
+Wed Jun 12 07:32:37 UTC 2024 - Christophe Marin 
+
+- Update to 24.05.1
+  * New bugfix release
+  * For more details please see:
+  * https://kde.org/announcements/gear/24.05.1/
+- Changes since 24.05.0:
+  * guard more dbus headers
+  * add missing KWindowSystem include
+  * guard fillinRunningKateAppInstances
+  * guard dbus header
+  * guard dbus app adaptor
+
+-------------------------------------------------------------------
+Sun May 19 09:55:24 UTC 2024 - Christophe Marin 
+
+- Update to 24.05.0
+  * New feature release
+  * For more details please see:
+  * https://kde.org/announcements/gear/24.05.0/
+- Changes since 24.04.80:
+  * KateSaveModifiedDialog: Use message box icon size from style
+  * UrlBar: Optimize showing a directory
+  * UrlBar: Fix filtering in treeview
+  * urlbar: Slightly optimize current symbol finding
+  * UrlBar: Fix symbol view
+  * Fix RBQL toolview remains after plugin is disabled
+  * Refer to qml language server binary by upstream name
+  * fix capture warnings
+  * fix capture warnings
+  * use 6.0 as minimal release and use C++20 like frameworks
+  * use new theme and style init functions
+  * keep track of recent used files on saveAs & close (kde#486203)
+  * make dbus optional is a start, needs more work
+  * don't force konsole master
+  * use kate from the right virtual desktop (kde#486066)
+
+-------------------------------------------------------------------
+Fri May  3 09:15:13 UTC 2024 - Christophe Marin 
+
+- Update to 24.04.80
+  * New feature release
+- Too many changes since 24.02.2, only listing bugfixes:
+  * Fix external tools get lost on modification (kde#456502)
+  * Fix crash on deleting the only file in view (kde#485738)
+  * project: Add ruff code analysis tool (kde#466175)
+  * Fix tooltip hides on trying to scroll using scrollbar (kde#485120)
+  * Documents: Fix sorting for directories (kde#476307)
+  * ColorPicker: connect to line wrap/unwrap signals (kde#475109)
+  * Add Rainbow CSV plugin (kde#451981)
+  * Fix tabbar visibility check (kde#455890)
+  * Fix session autosave deletes view session config (kde#482018)
+  * Restore last active toolview when closing file history (kde#474129)
+  * diag: Fix filtering after removing previous items (kde#481381)
+  * move lsp context menu actions to xmlgui (kde#477224)
+  * add size limit config option to search in files (kde#480489)
+  * don't acces member without checking (kde#482946)
+  * improve safefty, don't crash on non arrays (kde#482152)
+  * fix crash on close other with active widget (kde#481625)
+  * more descriptive label (kde#464065)
+  * fix Kate snippets: crash when editing a snippet repository (kde#478230)
+  * fix: terminal path automatically changes on launch even if the terminal setting is disabled (kde#480080)
+
+-------------------------------------------------------------------
+Tue Apr  9 18:07:36 UTC 2024 - Christophe Marin 
+
+- Update to 24.02.2
+  * New bugfix release
+  * For more details please see:
+  * https://kde.org/announcements/gear/24.02.2/
+- Changes since 24.02.1:
+  * Add job to publish to Microsoft Store
+  * Enable appx build for Windows
+  * add appimage ci
+  * [CI/CD] Add macOS jobs
+  * build Qt6 based Appx
+
+-------------------------------------------------------------------
+Tue Apr  2 12:37:04 UTC 2024 - Christophe Marin 
+
+- Add a couple recommended plugins to preview files in kate
+
+-------------------------------------------------------------------
+Tue Mar 19 15:25:45 UTC 2024 - Christophe Marin 
+
+- Update to 24.02.1
+  * New bugfix release
+  * For more details please see:
+  * https://kde.org/announcements/gear/24.02.1/
+- Changes since 24.02.0:
+  * Fix tooltip not hiding after context menu was opened
+  * diag: Trying to match cursor position instead of just line
+  * diag: Match severity when trying to find item for line
+  * diag: Fix severity filter
+  * diag: Fix relatedInfo and fix items are hidden after applying filter
+  * share code for url handling
+  * don't acces member without checking (kde#482946)
+  * improve safefty, don't crash on non arrays (kde#482152)
+  * flatpak: Switch to non-preview runtime
+  * Fix rainbow highlighting breaks on bracket removal
+  * tabswitcher: Do not emit if we're adding no documents
+  * Fix tabswitcher performance when large of docs are opened
+  * Avoid many proxy invalidations on close
+  * fix crash on close other with active widget (kde#481625)
+
+-------------------------------------------------------------------
+Fri Feb 23 13:58:43 UTC 2024 - Christophe Marin 
+
+- Update to 24.02.0
+  * New feature release
+- Changes since 24.01.95:
+  * Fix tabswitcher performance when large of docs are opened
+  * Avoid many proxy invalidations on close
+  * fix crash on close other with active widget (kde#481625)
+  * Fix crash
+  * Documents: Fix row numbers not updated after dnd
+  * Fix diagnostic count when removing diagnostics from a doc with multiple providers
+  * diag: Always allow diagnostics for active document
+
+-------------------------------------------------------------------
+Fri Feb  9 16:07:49 UTC 2024 - Christophe Marin 
+
+- Update to 24.01.95
+  * https://kde.org/announcements/megarelease/6/rc2/
+
+-------------------------------------------------------------------
+Fri Dec 15 21:29:47 UTC 2023 - Christophe Marin 
+
+- Require extra-cmake-modules at build time
+
+-------------------------------------------------------------------
+Tue Dec  5 14:19:16 UTC 2023 - Christophe Marin 
+
+- Update to 23.08.4
+  * New bugfix release
+  * For more details please see:
+  * https://kde.org/announcements/gear/23.08.4/
+- No code change since 23.08.3
+
+-------------------------------------------------------------------
+Tue Nov  7 17:04:19 UTC 2023 - Christophe Marin 
+
+- Update to 23.08.3
+  * New bugfix release
+  * For more details please see:
+  * https://kde.org/announcements/gear/23.08.3/
+- Changes since 23.08.2:
+  * snapcraft: Don't bundle c++ libs. (kde#476498)
+  * Reflect move of KActivities out of Frameworks to Plasma
+  * Update to reflect move of KUserFeedback to Frameworks
+  * snapcraft: Fix wayland installs by bundling qtwayland libs.
+  * Fix crash on dropping file in project (kde#476016)
+  * snapcraft: add missig build dep gettext.
+  * [flatpak] Use Qt5 branch for deps
+  * snapcraft: initial import snacraft files
+
+-------------------------------------------------------------------
+Tue Oct 10 18:27:07 UTC 2023 - Christophe Marin 
+
+- Update to 23.08.2
+  * New bugfix release
+  * For more details please see:
+  * https://kde.org/announcements/gear/23.08.2/
+- Changes since 23.08.1:
+  * ensure we don't crash if no item is selected (kde#475379)
+  * Fix prettier.resolveConfig.sync is not a function (kde#474722)
+  * Explicitly call QCoreApplication::exit()
+
+-------------------------------------------------------------------
+Tue Sep 12 11:55:35 UTC 2023 - Christophe Marin 
+
+- Update to 23.08.1
+  * New bugfix release
+  * For more details please see:
+  * https://kde.org/announcements/gear/23.08.1/
+- Changes since 23.08.0:
+  * lsp: Fix crash on clicking "Close dynamic reference tabs" (kde#474216)
+  * Fix assert when moving a widget to a new vertical viewspace
+  * Fix crash on viewspace close
+
+-------------------------------------------------------------------
+Sun Aug 20 13:59:10 UTC 2023 - Christophe Marin 
+
+- Update to 23.08.0
+  * New feature release
+  * For more details please see:
+  * https://kde.org/announcements/gear/23.08.0/
+- Changes since 23.07.90:
+  * Fix crash when adding/removing suppression
+  * Use QFontMetrics::lineSpacing to calculate the line y offset (kde#473362)
+
+-------------------------------------------------------------------
+Mon Aug 14 08:02:27 UTC 2023 - Christophe Marin 
+
+- Update to 23.07.90
+  * New feature release
+- Changes since 23.07.80:
+  * block session auto save in some more places
+  * File Browser plugin: make search string partial-matching (kde#472374)
+  * Fix diagnostics tab overlay
+  * check that blocking level is zero
+  * avoid that the session save timer messes up session saving (kde#470293)
+  * Add missing $ to fix installed translated documentation
+  * Add missing KI18n links
+  * handle tab deletion/creation
+  * diagnostics: Handle suppressions from multiple providers
+  * diagnostics: Refactor diagnostics removal
+  * Remove Designer's "." normaloff file data from icon properties in .ui files
+  * ensure we don't use m_quickOpen uninited
+  * remove deprecated Id
+  * ensure proper parent for dialog
+  * ensure proper parent for dialog
+
+-------------------------------------------------------------------
+Tue Aug  1 10:13:30 UTC 2023 - Christophe Marin 
+
+- Update to 23.07.80
+  * New feature release
+- Too many changes since 23.04.3, only listing bugfixes:
+  * lsp: always honor server when using Completion.textEdit.newText (kde#468130)
+  * Add open action to tabbar context menu (kde#471471)
+  * use word-completion-minimal-word-length as configured (kde#470494)
+  * Allow opening new tab in front of currently active tab optionally (kde#471225)
+  * Fix double drive letters on "Run Current Doc" (kde#469340)
+  * ensure sidebars are properly collapsed (kde#460160)
+  * Don't ask user if he wants to save modified document when deleting (kde#448861)
+  * Fix --version, --help, -h, -v not working (kde#468318)
+  * CompilerExplorer: Fix crash when minimizing (kde#468294)
+  * Fix preview for markdown files not loaded on mode change (kde#384972)
+  * Include markdownpart in flatpak builds (kde#466349)
+  * Fix asking to save untitled empty doc on close (kde#462347)
+  * Intoduce open links plugin (kde#93087)
+  * Konsole: Show error when konsole not found (kde#438308)
+  * Intoduce KateTextHintManager (kde#467322)
+  * Use internal diff view in KateMWonHDDialog (kde#441120)
+  * ensure projects view is focused (kde#465786)
+  * Allow opening multiple files from welcome view (kde#467097)
+  * Cleanup/improve MWModOnHDDialog (kde#464088)
+  * Search: Fix crash on clicking clear (kde#467255)
+
+-------------------------------------------------------------------
+Tue Jul  4 10:19:28 UTC 2023 - Christophe Marin 
+
+- Update to 23.04.3
+  * New bugfix release
+  * For more details please see:
+  * https://kde.org/announcements/gear/23.04.3/
+- Changes since 23.04.2:
+  * Improve code action invocation with no selection
+  * Fix LSP inlay hint deserialization
+  * lsp: Use label as insertText as a last resort
+
+-------------------------------------------------------------------
+Tue Jun  6 20:00:46 UTC 2023 - Christophe Marin 
+
+- Update to 23.04.2
+  * New bugfix release
+  * For more details please see:
+  * https://kde.org/announcements/gear/23.04.2/
+- Changes since 23.04.1:
+  * Fix double drive letters on "Run Current Doc" (kde#469340)
+
+-------------------------------------------------------------------
+Tue May  9 10:46:42 UTC 2023 - Christophe Marin 
+
+- Update to 23.04.1
+  * New bugfix release
+  * For more details please see:
+  * https://kde.org/announcements/gear/23.04.1/
+- Changes since 23.04.0:
+  * ensure sidebars are properly collapsed (kde#460160)
+
+-------------------------------------------------------------------
+Sat Apr 15 08:45:30 UTC 2023 - Christophe Marin 
+
+- Update to 23.04.0
+  * New feature release
+  * For more details please see:
+  * https://kde.org/announcements/gear/23.04.0/
+
+-------------------------------------------------------------------
+Fri Mar 31 16:41:46 UTC 2023 - Christophe Marin 
+
+- Update to 23.03.90
+  * New feature release
+
+-------------------------------------------------------------------
+Fri Mar 17 20:43:11 UTC 2023 - Christophe Marin 
+
+- Update to 23.03.80
+  * New feature release
+- Rebase patch:
+  * 0001-Defuse-root-block.patch
+
+-------------------------------------------------------------------
+Thu Mar 16 08:55:23 UTC 2023 - Christophe Marin 
+
+- Use the %ldconfig_scriptlets macro
+
+-------------------------------------------------------------------
+Tue Feb 28 09:45:43 UTC 2023 - Christophe Marin 
+
+- Update to 22.12.3
+  * New bugfix release
+  * For more details please see:
+  * https://kde.org/announcements/gear/22.12.3/
+
+-------------------------------------------------------------------
+Tue Jan 31 10:33:19 UTC 2023 - Christophe Marin 
+
+- Update to 22.12.2
+  * New bugfix release
+  * For more details please see:
+  * https://kde.org/announcements/gear/22.12.2/
+- Drop patch, merged upstream:
+  * 0001-Fix-settings-saving-regression-in-CTags-plugin.patch
+
+-------------------------------------------------------------------
+Mon Jan  9 21:05:14 UTC 2023 - Fabian Vogt 
+
+- Add patch to fix the save button in the ctags configuration
+  (kde#463993, boo#1206984):
+  * 0001-Fix-settings-saving-regression-in-CTags-plugin.patch
+
+-------------------------------------------------------------------
+Tue Jan  3 10:19:41 UTC 2023 - Christophe Marin 
+
+- Update to 22.12.1
+  * New bugfix release
+  * For more details please see:
+  * https://kde.org/announcements/gear/22.12.1/
+
+-------------------------------------------------------------------
+Fri Dec  2 12:24:56 UTC 2022 - Christophe Marin 
+
+- Update to 22.12.0
+  * New feature release
+  * For more details please see:
+  * https://kde.org/announcements/gear/22.12.0/
+
+-------------------------------------------------------------------
+Sat Nov 26 16:44:37 UTC 2022 - Christophe Giboudeaux 
+
+- Update to 22.11.90
+  * New feature release
+
+-------------------------------------------------------------------
+Sat Nov 12 08:53:44 UTC 2022 - Christophe Giboudeaux 
+
+- Update to 22.11.80
+  * New feature release
+
+-------------------------------------------------------------------
+Tue Nov  1 11:20:06 UTC 2022 - Christophe Giboudeaux 
+
+- Update to 22.08.3
+  * New bugfix release
+  * For more details please see:
+  * https://kde.org/announcements/gear/22.08.3/
+
+-------------------------------------------------------------------
+Tue Oct 11 14:32:10 UTC 2022 - Christophe Giboudeaux 
+
+- Update to 22.08.2
+  * New bugfix release
+  * For more details please see:
+  * https://kde.org/announcements/gear/22.08.2/
+
+-------------------------------------------------------------------
+Tue Sep  6 15:19:16 UTC 2022 - Christophe Giboudeaux 
+
+- Update to 22.08.1
+  * New bugfix release
+  * For more details please see:
+  * https://kde.org/announcements/gear/22.08.1/
+
+-------------------------------------------------------------------
+Sun Aug 14 09:41:59 UTC 2022 - Christophe Giboudeaux 
+
+- Update to 22.08.0
+  * New feature release
+  * For more details please see:
+  * https://kde.org/announcements/gear/22.08.0/
+
+-------------------------------------------------------------------
+Fri Aug  5 12:10:34 UTC 2022 - Christophe Giboudeaux 
+
+- Update to 22.07.90
+  * New feature release
+
+-------------------------------------------------------------------
+Sat Jul 16 08:27:47 UTC 2022 - Christophe Giboudeaux 
+
+- Update to 22.07.80
+  * New feature release
+- Rebase 0001-Defuse-root-block.patch
+
+-------------------------------------------------------------------
+Tue Jul  5 17:03:00 UTC 2022 - Christophe Giboudeaux 
+
+- Update to 22.04.3
+  * New bugfix release
+  * For more details please see:
+  * https://kde.org/announcements/gear/22.04.3/
+
+-------------------------------------------------------------------
+Wed Jun  8 09:53:15 UTC 2022 - Christophe Giboudeaux 
+
+- Update to 22.04.2
+  * New bugfix release
+  * For more details please see:
+  * https://kde.org/announcements/gear/22.04.2/
+
+-------------------------------------------------------------------
+Tue May 10 16:29:43 UTC 2022 - Christophe Giboudeaux 
+
+- Update to 22.04.1
+  * New bugfix release
+  * For more details please see:
+  * https://kde.org/announcements/gear/22.04.1/
+
+-------------------------------------------------------------------
+Mon Apr 18 07:51:18 UTC 2022 - Christophe Giboudeaux 
+
+- Update to 22.04.0
+  * New feature release
+  * For more details please see:
+  * https://kde.org/announcements/gear/22.04.0/
+
+-------------------------------------------------------------------
+Fri Apr  8 18:17:57 UTC 2022 - Christophe Giboudeaux 
+
+- Update to 22.03.90
+  * New feature release
+
+-------------------------------------------------------------------
+Wed Mar 23 08:13:48 UTC 2022 - Christophe Giboudeaux 
+
+- Update to 22.03.80
+  * New feature release
+- Too many changes since 21.12.3, only listing bugfixes:
+  * show documents as loaded from config (kde#353373)
+  * ensure some proper initial size (kde#450686)
+  * make config dialog scrollable (kde#445541)
+  * Handle SIGINT/SIGTERM to prevent accidental data loss (kde#445016)
+  * Fix crash when closing multiple tabs if limited number of tabs is enabled (kde#450873)
+  * Sort by url instead of comparing strings (kde#435334)
+  * Fix tab jumping with unlimited tabs (kde#440585, kde#435780)
+  * Fix LRU tab behaviour (kde#434062)
+  * S&R: Fix Look-ahead & behind highlighting & replace (kde#449545)
+  * Fix stashing not working when Kate is quit using Ctrl+Q (kde#449229)
+  * lspclient: also support some alternative WorkspaceEdit replies (kde#447640)
+  * Allow DND of tabs among viewspaces (kde#426768)
+  * Dont bring kate to front when files externally modified (kde#353712)
+  * Fix the check to also handle 0 doc views (kde#448847)
+  * Improve views closing in split view behaviour (kde#344374)
+  * Fix terminal focus action text when focusing/defocusing (kde#409813)
+  * step down warning level when LSP not found (kde#448549)
+  * filetree: Fix folders collapse after opening new file (kde#410143)
+  * Clear highlights if text field becomes empty (kde#436674)
+  * lspclient: only allow symbol view header toggle sort when applicable (kde#447653)
+  * Search: Utilize context lengths more efficiently (kde#438094)
+  * Fix search for unsaved files (kde#434287)
+  * Ignore rename if newName == oldName (kde#447951)
+  * SemanticTokens: Use size_t as argument for type (kde#447553)
+  * GDB: Use debug-run theme icon in stead of custom icon (kde#444670)
+  * do nothing if use canceled project open (kde#447194)
+  * fix sessions segfault because of invalid iterator (kde#446863)
+  * enable/disable project actions (kde#445494)
+- Use GCC 10 for building kate on Leap 15.
+
+-------------------------------------------------------------------
+Tue Mar  1 09:56:51 UTC 2022 - Christophe Giboudeaux 
+
+- Update to 21.12.3
+  * New bugfix release
+  * For more details please see:
+  * https://kde.org/announcements/gear/21.12.3/
+- Changes since 21.12.2:
+  * Fix stashing not working when Kate is quit using Ctrl+Q (kde#449229)
+
+-------------------------------------------------------------------
+Tue Feb  1 13:02:40 UTC 2022 - Christophe Giboudeaux 
+
+- Update to 21.12.2
+  * New bugfix release
+  * For more details please see:
+  * https://kde.org/announcements/gear/21.12.2/
+- Changes since 21.12.1:
+  * improve QProcess handling
+  * avoid that we execute LSP binaries from cwd (CVE-2022-23853)
+  * step down warning level when LSP not found (kde#448549)
+  * lspclient: send didSave notification if so requested
+  * lspclient: consider some additional server capabilities
+
+-------------------------------------------------------------------
+Tue Jan  4 10:25:18 UTC 2022 - Christophe Giboudeaux 
+
+- Update to 21.12.1
+  * New bugfix release
+  * For more details please see:
+  * https://kde.org/announcements/gear/21.12.1/
+- Changes since 21.12.0:
+  * lsp: Do not HTML escape markdown text
+  * Fix blame not visible after switching to a 'diff view'
+  * SemanticTokens: Use size_t as argument for type (kde#447553)
+  * lsp: Handle client/RegisterCapability
+  * Fix incorrect blame info parsing when summary has '\t'
+  * ColorBrackets: Fix disconnecting wrong view
+  * Fix 2 second delays for everything semantic highlighting related
+  * do nothing if use canceled project open (kde#447194)
+  * Ensure to clean up saved ranges when docs close
+  * enable/disable project actions (kde#445494)
+  * Fix segfault on session change
+  * try to fix compile on FreeBSD
+  * build 'Colored brackets for readability' plugin in master
+  * fix sessions segfault because of invalid iterator (kde#446863)
+  * appstream: Remove duplicated release info
+  * Fix LSPTooltip sizing
+
+-------------------------------------------------------------------
+Fri Dec  3 19:21:41 UTC 2021 - Christophe Giboudeaux 
+
+- Update to 21.12.0
+  * New feature release
+  * For more details please see:
+  * https://kde.org/announcements/gear/21.12.0/
+- Changes since 21.11.90:
+  * Fix git blame for git submodules
+  * Fix blame fails when opening a single file
+  * git-blame: Fix commit summary not available
+  * Introducing Colored Brackets plugin
+
+-------------------------------------------------------------------
+Sat Nov 27 10:10:34 UTC 2021 - Christophe Giboudeaux 
+
+- Update to 21.11.90
+  * New feature release
+- Changes since 21.11.80:
+  * Add more options for clangd
+
+-------------------------------------------------------------------
+Sat Nov 13 17:54:42 UTC 2021 - Christophe Giboudeaux 
+
+- Update to 21.11.80
+  * New feature release
+- Too many changes since 21.08.3, only listing bugfixes:
+  * LSP Completion: use textEdit.newText as a workaround (kde#445085)
+  * Fix compile cpp when path has spaces (kde#443618)
+  * Show LspClient after positioning (kde#443895)
+  * fixes reload dialog on wayland (kde#440583)
+  * avoid crash on session rename (kde#443267)
+  * fix view differences (kde#441120)
+  * save 'Show output view for message type' setting (kde#442707)
+  * Fix infinite recursion in project filter model (kde#443026)
+  * Fix replicode plugin not deleting its toolview (kde#441859)
+  * Delete unfilled entries in tool config group (kde#437419)
+  * KWrite: use KStandardAction::preferences (kde#441505)
+  * Escape shortcut mnemonic markers (&) in tab texts (kde#441340)
+  * Allow multiple tabs for Konsole plugin(s) (kde#437922, kde#419710, kde#435398, kde#200322, kde#145203)
+  * handle nullptr return of screenAt() (kde#439804)
+  * Expand tool view sidebars when they are collapsed (kde#439535)
+  * avoid that tool view split view collapse (kde#439535)
+
+-------------------------------------------------------------------
+Tue Nov  2 21:33:36 UTC 2021 - Christophe Giboudeaux 
+
+- Update to 21.08.3
+  * New bugfix release
+  * For more details please see:
+  * https://kde.org/announcements/gear/21.08.3/
+- No code change since 21.08.2
+
+-------------------------------------------------------------------
+Tue Oct  5 16:27:53 UTC 2021 - Christophe Giboudeaux 
+
+- Update to 21.08.2
+  * New bugfix release
+  * For more details please see:
+  * https://kde.org/announcements/gear/21.08.2/
+- Changes since 21.08.1:
+  * Fix replicode plugin not deleting its toolview (kde#441859)
+  * Fix commit dialog width
+- Change the license tag to LGPL-2.0-only AND LGPL-2.1-or-later.
+  There are no GPL-3.0 files.
+
+-------------------------------------------------------------------
+Wed Sep  1 12:38:00 UTC 2021 - Christophe Giboudeaux 
+
+- Update to 21.08.1
+  * New bugfix release
+  * For more details please see:
+  * https://kde.org/announcements/gear/21.08.1
+- Changes since 21.08.0:
+  * semantic highlighter: Use a timer to reduce amount of requests being sent
+
+-------------------------------------------------------------------
+Fri Aug  6 09:36:12 UTC 2021 - Christophe Giboudeaux 
+
+- Update to 21.08.0
+  * New feature release
+  * For more details please see:
+  * https://kde.org/announcements/gear/21.08.0
+- Changes since 21.07.90:
+  * improve kate on haiku os
+  * avoid double branch name computation
+- Rebase 0001-Defuse-root-block.patch
+
+-------------------------------------------------------------------
+Fri Jul 30 10:04:41 UTC 2021 - Christophe Giboudeaux 
+
+- Update to 21.07.90
+  * New feature release
+- Changes since 21.07.80:
+  * LocHistory: When limiting size, also rewind currentLocation
+  * Location history improvements
+  * handle nullptr return of screenAt() (kde#439804)
+
+-------------------------------------------------------------------
+Sat Jul 17 20:05:46 UTC 2021 - Christophe Giboudeaux 
+
+- Update to 21.07.80
+  * New feature release
+- Too many changes since 21.04.3, only listing bugfixes:
+  * ensure we unify line endings (kde#436753)
+  * add missing name for hot new stuff (kde#438018)
+  * lspclient: bypass shutdown delay if not needed and cleanup defunct code (kde#438790)
+  * ensure to not crash on missing context menu (kde#426939)
+  * lspclient: add action to request and apply quick fix code action (kde#437746)
+  * Work around conflicting shortcuts in preview plugin (kde#386265)
+  * S&R: Fix matching ^ and $ in multi-line expressions (kde#318232)
+  * Prevent storing diff files in recent files history (kde#436906)
+- Only install the license files once
+
+-------------------------------------------------------------------
+Wed Jul  7 08:57:08 UTC 2021 - Christophe Giboudeaux 
+
+- Update to 21.04.3
+  * New bugfix release
+  * For more details please see:
+  * https://kde.org/announcements/gear/21.04.3
+- Changes since 21.04.2:
+  * Make sure we only have one button for 'Enable Indexing'
+
+-------------------------------------------------------------------
+Tue Jun  8 12:39:23 UTC 2021 - Christophe Giboudeaux 
+
+- Update to 21.04.2
+  * New bugfix release
+  * For more details please see:
+  * https://kde.org/announcements/gear/21.04.2
+- Changes since 21.04.1:
+  * Prevent crash in git-blame for HUGE git commits (kde#437683)
+  * Fix crash when turning on "bg shading" for Documents plugin
+  * deactivate Kate command bar if KXMLGui command bar is there
+
+-------------------------------------------------------------------
+Wed May 12 06:07:10 UTC 2021 - Christophe Giboudeaux 
+
+- Update to 21.04.1
+  * New bugfix release
+  * For more details please see:
+  * https://kde.org/announcements/releases/21.04.1
+- Changes since 21.04.0:
+  * Fix possible leak when commiting
+  * Fix branch change not reflected if projectbase != dotGit
+  * git: Don't report error if git not found
+  * Fix changing branch doesn't update the branch button
+  * Try to fix of a rare crash with Ctrl + Click in LSP
+  * show new mascot in about dialog
+  * Html escape lsptooltip text
+  * Downgrade .git not found warning to info message (kde#435945)
+
+-------------------------------------------------------------------
+Fri Apr 16 16:11:27 UTC 2021 - Christophe Giboudeaux 
+
+- Update to 21.04.0
+  * New feature release
+  * For more details please see:
+  * https://kde.org/announcements/gear/21.04
+- Changes since 21.03.90:
+  * Fix S&R not recovering from canceled folder search (kde#435689)
+- Stop owning directories provided by the filesystem package (boo#1184786)
+
+-------------------------------------------------------------------
+Fri Apr  9 17:39:53 UTC 2021 - Christophe Giboudeaux 
+
+- Update to 21.03.90
+  * New feature release
+- Too many changes to list here.
+
+-------------------------------------------------------------------
+Sun Mar 21 13:27:34 UTC 2021 - Christophe Giboudeaux 
+
+- Update to 21.03.80
+  * New feature release
+- Too many changes to list here.
+- Rebase 0001-Defuse-root-block.patch
+
+-------------------------------------------------------------------
+Thu Mar  4 06:09:53 UTC 2021 - Luca Beltrame 
+
+- Update to 20.12.3
+  * New bugfix release
+  * For more details please see:
+  * https://kde.org/announcements/releases/20.12.3
+- No code change since 20.12.2
+
+-------------------------------------------------------------------
+Wed Feb  3 08:28:11 UTC 2021 - Christophe Giboudeaux 
+
+- Update to 20.12.2
+  * New bugfix release
+  * For more details please see:
+  * https://kde.org/announcements/releases/2021-02-apps-update
+- No code change since 20.12.1
+
+-------------------------------------------------------------------
+Tue Jan  5 12:25:07 UTC 2021 - Luca Beltrame 
+
+- Update to 20.12.1
+  * New bugfix release
+  * For more details please see:
+  * https://kde.org/announcements/releases/2021-01-apps-update
+- No code change since 20.12.0
+
+-------------------------------------------------------------------
+Sat Dec  5 23:15:48 UTC 2020 - Luca Beltrame 
+
+- Update to 20.12.0
+  * New feature release
+  * For more details please see:
+  * https://kde.org/announcements/releases/2020-12-apps-update
+- No code change since 20.11.90
+
+-------------------------------------------------------------------
+Fri Nov 27 15:16:03 UTC 2020 - Christophe Giboudeaux 
+
+- Update to 20.11.90
+  * New feature release
+- No code change since 20.11.80
+
+-------------------------------------------------------------------
+Sat Nov 14 00:00:57 UTC 2020 - Christophe Giboudeaux 
+
+- Update to 20.11.80
+  * New feature release
+- Too many changes since 20.08.3, only listing bugfixes:
+  * lspclient: also secretly accept LocationLink in some replies (kde#427270)
+  * implement optional limit for number of tabs and LRU replacement (kde#426520)
+
+-------------------------------------------------------------------
+Thu Nov  5 22:45:48 UTC 2020 - Luca Beltrame 
+
+- Update to 20.08.3
+  * New bugfix release
+  * For more details please see:
+  * https://kde.org/announcements/releases/2020-11-apps-update
+- Changes since 20.08.2:
+  * lspclient: only consider user configuration contents changes as change (kde#427084)
+  * lspclient: correctly unregister the registered TextHintProvider (kde#427338)
+
+-------------------------------------------------------------------
+Fri Oct  9 05:43:20 UTC 2020 - Luca Beltrame 
+
+- Update to 20.08.2
+  * New bugfix release
+  * For more details please see:
+  * https://kde.org/announcements/releases/2020-10-apps-update
+- Changes since 20.08.1:
+  * ensure that even if the url is empty, we create some parent
+    to avoid accessing nullptr parent (kde#427270)
+  * addons/externaltools: Really respect BUILD_TESTING
+  * close tabs again with middle mouse button click (kde#426042)
+  * avoid that the KTextEditor::View XMLGUI elements are lost
+    after a tab is closed (kde#426605)
+
+-------------------------------------------------------------------
+Tue Sep  1 20:49:25 UTC 2020 - Luca Beltrame 
+
+- Update to 20.08.1
+  * New bugfix release
+  * For more details please see:
+  * https://kde.org/announcements/releases/2020-09-apps-update
+- No code change since 20.08.0
+
+-------------------------------------------------------------------
+Sun Aug  9 09:08:37 UTC 2020 - Christophe Giboudeaux 
+
+- Update to 20.08.0
+  * New feature release
+  * For more details please see:
+  * https://kde.org/announcements/releases/2020-08-apps-update
+- No code change since 20.07.90
+
+-------------------------------------------------------------------
+Sun Aug  2 07:58:57 UTC 2020 - Christophe Giboudeaux 
+
+- Update to 20.07.90
+  * New feature release
+- Changes since 20.07.80:
+  * Highlight documentation: add feature of comment position
+  * apply make clang-format
+  * cleanup internal handling of tabs
+  * Use camelcase includes (scripted)
+
+-------------------------------------------------------------------
+Sun Jul 19 10:04:07 UTC 2020 - Christophe Giboudeaux 
+
+- Update to 20.07.80
+  * New feature release
+- Too many changes since 20.04.3, only listing bugfixes:
+  * register files not only at recently opened files menu but globally, too (kde#420504)
+  * Properly port away from deprecated QProcess::start() (kde#420794)
+  * Fix crash if search command is used while searching (kde#419719)
+
+-------------------------------------------------------------------
+Thu Jul  9 20:08:57 UTC 2020 - Luca Beltrame 
+
+- Update to 20.04.3
+  * New bugfix release
+  * For more details please see:
+  * https://kde.org/announcements/releases/2020-07-apps-update
+- No code change since 20.04.2
+
+-------------------------------------------------------------------
+Tue Jun  9 12:14:26 UTC 2020 - Christophe Giboudeaux 
+
+- Update to 20.04.2
+  * New bugfix release
+  * For more details please see:
+  * https://kde.org/announcements/releases/2020-06-apps-update
+- No code change since 20.04.1
+
+-------------------------------------------------------------------
+Fri May 15 15:41:10 UTC 2020 - Luca Beltrame 
+
+- Update to 20.04.1
+  * New bugfix release
+  * For more details please see:
+  * https://kde.org/announcements/releases/2020-05-apps-update
+- Changes since 20.04.0:
+  * Properly port away from deprecated QProcess::start() (kde#420794)
+
+-------------------------------------------------------------------
+Thu Apr 23 12:22:06 UTC 2020 - Luca Beltrame 
+
+- Update to 20.04.0
+  * New feature release
+  * For more details please see:
+  * https://kde.org/announcements/releases/2020-04-apps-update
+- Changes since 20.03.90:
+  * Revert premature porting
+
+-------------------------------------------------------------------
+Sun Apr  5 20:29:49 UTC 2020 - Luca Beltrame 
+
+- Update to 20.03.90
+  * New feature release
+- No code change since 20.03.80
+
+-------------------------------------------------------------------
+Sun Mar 22 09:16:44 UTC 2020 - Luca Beltrame 
+
+- Update to 20.03.80
+  * New feature release
+- Too many changes since 19.12.3, only listing bugfixes:
+  * Fix External Tool "Google Selected Text" (kde#416509)
+  * lspclient: avoid repeated restart of failing LSP server (kde#415847)
+  * try to fix embedding of icon for windows (kde#415260)
+  * document that the version is important for the choice of the syntax definition to load (kde#414997)
+  * Open/close and focus/defocus terminal using the same shortcuts as Dolphin (kde#414587)
+
+-------------------------------------------------------------------
+Thu Mar  5 20:35:52 UTC 2020 - Luca Beltrame 
+
+- Update to 19.12.3
+  * New bugfix release
+  * For more details please see:
+  * https://kde.org/announcements/releases/2020-03-apps-update
+- Changes since 19.12.2:
+  * appdata: improve URLs
+  * try to add enough large icons for Windows (256/512 px)
+
+-------------------------------------------------------------------
+Fri Feb  7 08:37:08 UTC 2020 - Christophe Giboudeaux 
+
+- Replace %make_jobs with %cmake_build.
+
+-------------------------------------------------------------------
+Wed Feb  5 06:28:54 UTC 2020 - Luca Beltrame 
+
+- Update to 19.12.2
+  * New bugfix release
+  * For more details please see:
+  * https://kde.org/announcements/releases/2020-02-apps-update
+- Too many changes since 19.12.1, only listing bugfixes:
+  * only allow the new pass through policy for windows (kde#416078)
+  * try to fix embedding of icon for windows (kde#415260)
+
+-------------------------------------------------------------------
+Tue Jan  7 10:00:14 UTC 2020 - Christophe Giboudeaux 
+
+- Update to 19.12.1
+  * New bugfix release
+  * For more details please see:
+  * https://www.kde.org/announcements/releases/19.12.1
+- Changes since 19.12.0:
+  * Unbreak build with cmake < 3.7 (VERSION_GREATER_EQUAL only avail >= 3.7)
+  * Update Appstream for new release
+  * Fix crash when pressing ESC after external tools plugin was un/reloaded
+  * sort settings file by language id
+  * initial support for javascript + typescript LSP
+  * lsp: update info of OCaml server
+  * lspclient: aid compilation on older version by explicit json object conversion
+  * relax ocaml regex
+  * allow highlighting mode => language id mapping to be configured in the JSON config
+  * Add icons to metadata of plugins supporting KDevelop/Plugin
+
+-------------------------------------------------------------------
+Tue Dec 10 06:38:18 UTC 2019 - Luca Beltrame 
+
+- Update to 19.12.0
+  * New feature release
+  * For more details please see:
+  * https://www.kde.org/announcements/releases/19.12
+- Changes since 19.11.90:
+  * Update Appstream for new release
+  * Make the strings translatable, fix typo
+  * Fix translation of external tools (kde#181528)
+  * Fix: Do not translate KActionCollection identifier
+
+-------------------------------------------------------------------
+Sat Nov 30 09:11:39 UTC 2019 - Luca Beltrame 
+
+- Update to 19.11.90
+  * New feature release
+  * For more details please see:
+  * https://kde.org/announcements/releases/19.12-rc
+- Changes since 19.11.80:
+  * Read the user visible name of the default color scheme
+  * Fix tyop in find_package call
+  * Respect KF5_MIN_VER and QT_MIN_VER
+  * Search for KF5I18n and KF5DocTools
+  * Search for Qt5Widgets to make a version comparison work
+- Dropped patches, now upstream:
+  * search-for-kf5i18n-kdoctools.patch
+
+-------------------------------------------------------------------
+Sun Nov 24 13:29:10 UTC 2019 - Luca Beltrame 
+
+- Update to 19.11.80
+  * New feature release
+- Too many changes since 19.08.3, only listing bugfixes:
+  * handle build path as relative to project path (kde#413306)
+  * disable ctags indexing per default (kde#412351)
+  * fix message extraction (kde#412358)
+  * External Tools: Support adding actions to toolbar (kde#261210)
+  * ensure view stack gets focus on startup (kde#412227)
+  * Added a line to set default sort order for the Symbolviewer. (kde#405895)
+  * allow ESC to be used as global application shortcut and still exit the quick open (kde#409856)
+  * fix dbus session registration (kde#410742)
+- Add upstream patch to fix build:
+  * search-for-kf5i18n-kdoctools.patch
+
+-------------------------------------------------------------------
+Thu Nov  7 23:12:43 UTC 2019 - Luca Beltrame 
+
+- Update to 19.08.3
+  * New bugfix release
+  * For more details please see:
+  * https://www.kde.org/announcements/announce-applications-19.08.3.php
+- Changes since 19.08.2:
+  * ensure outer layout set
+  * try to avoid nested layouts that we don't need
+
+-------------------------------------------------------------------
+Fri Oct 11 07:42:33 UTC 2019 - Luca Beltrame 
+
+- Update to 19.08.2
+  * New bugfix release
+  * For more details please see:
+  * https://www.kde.org/announcements/announce-applications-19.08.2.php
+- Changes since 19.08.1:
+  * Reasonable sub-toolbar sizes, like normal QPushButton sizes
+  * Load terminal on demand to have some parent widget for WINDOWID computation
+  * Tab bar: use tab-close icon again
+  * Fix hi-dpi rendering of tab buttons
+  * Fix hi-dpi rendering of toolview buttons
+  * Tab bar: Fix close button in right-to-left layout
+  * Fix HiDPI support for KWrite + Kate
+  * Fix fortran symbol viewer for new highlighting names
+- Refreshed patches:
+  * 0001-Defuse-root-block.patch
+
+-------------------------------------------------------------------
+Thu Sep  5 14:00:12 UTC 2019 - Luca Beltrame 
+
+- Update to 19.08.1
+  * New bugfix release
+  * For more details please see:
+  * https://www.kde.org/announcements/announce-applications-19.08.1.php
+- Changes since 19.08.0:
+  * fix stop button of search and replace plugin
+
+-------------------------------------------------------------------
+Fri Aug  9 14:15:07 UTC 2019 - Christophe Giboudeaux 
+
+- Update to 19.08.0
+  * New feature release
+  * For more details please see:
+  * https://www.kde.org/announcements/announce-applications-19.08.0.php
+- Changes since 19.07.90:
+  * Fix dbus session registration (kde#410742)
+
+-------------------------------------------------------------------
+Tue Aug 06 16:50:48 UTC 2019 - lbeltrame@kde.org
+
+- Update to 19.07.90
+  * New bugfix release
+  * For more details please see:
+  * https://www.kde.org/announcements/announce-applications-19.08-rc.php
+- No code changes since 19.07.80
+
+-------------------------------------------------------------------
+Tue Jul 23 11:58:57 UTC 2019 - lbeltrame@kde.org
+
+- Update to 19.07.80
+  * New feature release
+  * For more details please see:
+  * https://www.kde.org/announcements/announce-applications-19.08-beta.php
+- Changes since 19.04.3:
+  * Too many changes to list here
+
+-------------------------------------------------------------------
+Sat Jul 13 07:26:33 UTC 2019 - lbeltrame@kde.org
+
+- Update to 19.04.3
+  * New bugfix release
+  * For more details please see:
+  * https://www.kde.org/announcements/announce-applications-19.04.3.php
+- No code changes since 19.04.2
+
+-------------------------------------------------------------------
+Fri Jun 07 12:51:52 UTC 2019 - lbeltrame@kde.org
+
+- Update to 19.04.2
+  * New bugfix release
+  * For more details please see:
+  * https://www.kde.org/announcements/announce-applications-19.04.2.php
+- No code changes since 19.04.1
+
+-------------------------------------------------------------------
+Fri May 10 05:37:12 UTC 2019 - lbeltrame@kde.org
+
+- Update to 19.04.1
+  * New bugfix release
+  * For more details please see:
+  * https://www.kde.org/announcements/announce-applications-19.04.1.php
+- Changes since 19.04.0:
+  * tabswitcher_test: pass correct binary name to add_test()
+  * Use add_test signature where target command gets resolved to binary path
+
+-------------------------------------------------------------------
+Sat Apr 20 06:51:53 UTC 2019 - lbeltrame@kde.org
+
+- Update to 19.04.0
+  * New feature release
+  * For more details please see:
+  * https://www.kde.org/announcements/announce-applications-19.04.0.php
+- Changes since 19.03.90:
+  * improve comment
+  * fix handling of sub modules in git rely on ls-files --recurse-submodules, there since end of 2016
+
+-------------------------------------------------------------------
+Tue Apr 09 20:54:39 UTC 2019 - lbeltrame@kde.org
+
+- Update to 19.03.90
+  * New feature release
+  * For more details please see:
+  * https://kde.org/announcements/announce-applications-19.04-rc.php
+- Changes since 19.03.80:
+  * No code changes since 19.03.80
+
+-------------------------------------------------------------------
+Wed Mar 27 06:40:58 UTC 2019 - lbeltrame@kde.org
+
+- Update to 19.03.80
+  * New feature release
+  * For more details please see:
+  * https://kde.org/announcements/announce-applications-19.04-beta.php
+- Changes since 18.12.3:
+  * Too many changes to list here
+- Refreshed patches:
+  * 0001-Defuse-root-block.patch
+
+-------------------------------------------------------------------
+Sat Mar 09 08:03:13 UTC 2019 - lbeltrame@kde.org
+
+- Update to 18.12.3
+  * New bugfix release
+  * For more details please see:
+  * https://www.kde.org/announcements/announce-applications-18.12.3.php
+- Changes since 18.12.2:
+  * No code changes since 18.12.2
+
+-------------------------------------------------------------------
+Sat Feb 09 08:24:57 UTC 2019 - lbeltrame@kde.org
+
+- Update to 18.12.2
+  * New bugfix release
+  * For more details please see:
+  * https://www.kde.org/announcements/announce-applications-18.12.2.php
+- Changes since 18.12.1:
+  * No code changes since 18.12.1
+
+-------------------------------------------------------------------
+Fri Jan 11 05:42:01 UTC 2019 - lbeltrame@kde.org
+
+- Update to 18.12.1
+  * New bugfix release
+  * For more details please see:
+  * https://www.kde.org/announcements/announce-applications-18.12.1.php
+- Changes since 18.12.0:
+  * [projectplugin] Correct code index widget show
+  * [kateproject tool] Fine tune cppcheck
+  * [kateproject] Gracefully exit when analyzer is not finished
+  * ViewManager: Fix I18n_ARGUMENT_MISSING hint in message box when open a very large file
+
+-------------------------------------------------------------------
+Fri Dec 14 06:09:01 UTC 2018 - lbeltrame@kde.org
+
+- Update to 18.12.0
+  * New bugfix release
+  * For more details please see:
+  * https://www.kde.org/announcements/announce-applications-18.12.0.php
+- Changes since 18.11.90:
+  * No code changes since 18.11.90
+
+-------------------------------------------------------------------
+Wed Dec  5 23:01:14 UTC 2018 - Jan Engelhardt 
+
+- Remove ldconfig calls as there are no libraries.
+
+-------------------------------------------------------------------
+Mon Dec 03 20:55:51 UTC 2018 - lbeltrame@kde.org
+
+- Update to 18.11.90
+  * New bugfix release
+  * For more details please see:
+  * https://www.kde.org/announcements/announce-applications-18.12-rc.php
+- Changes since 18.11.80:
+  * No code changes since 18.11.80
+
+-------------------------------------------------------------------
+Tue Nov 20 06:22:02 UTC 2018 - Luca Beltrame 
+
+- Run spec-cleaner
+
+-------------------------------------------------------------------
+Tue Nov 20 05:56:48 UTC 2018 - lbeltrame@kde.org
+
+- Update to 18.11.80
+  * New feature release
+  * For more details please see:
+  * https://www.kde.org/announcements/announce-applications-18.12-beta.php
+- Changes since 18.08.3:
+  * Too many changes to list here
+
+-------------------------------------------------------------------
+Thu Nov 08 20:43:31 UTC 2018 - lbeltrame@kde.org
+
+- Update to 18.08.3
+  * New bugfix release
+  * For more details please see:
+  * https://www.kde.org/announcements/announce-applications-18.08.3.php
+- Changes since 18.08.2:
+  * Open document before using it's checksum to load metainfos (kde#384087)
+
+-------------------------------------------------------------------
+Thu Oct 11 20:06:48 UTC 2018 - lbeltrame@kde.org
+
+- Update to 18.08.2
+  * New bugfix release
+  * For more details please see:
+  * https://www.kde.org/announcements/announce-applications-18.08.2.php
+- Changes since 18.08.1:
+  * None
+
+-------------------------------------------------------------------
+Thu Sep 06 18:42:53 UTC 2018 - lbeltrame@kde.org
+
+- Update to 18.08.1
+  * New bugfix release
+  * For more details please see:
+  * https://www.kde.org/announcements/announce-applications-18.08.1.php
+- Changes since 18.08.0:
+  * Explicitly include 
+
+-------------------------------------------------------------------
+Thu Aug 16 22:02:17 UTC 2018 - christophe@krop.fr
+
+- Update to 18.08.0
+  * New feature release
+  * For more details please see:
+  * https://www.kde.org/announcements/announce-applications-18.08.0.php
+- Changes since 18.07.80:
+  * Honor BUILD_TESTING
+
+-------------------------------------------------------------------
+Thu Aug  2 13:39:40 UTC 2018 - fabian@ritter-vogt.de
+
+- Use %license
+- License is actually GPL-3.0-or-later
+
+-------------------------------------------------------------------
+Thu Jul 26 13:00:33 UTC 2018 - lbeltrame@kde.org
+
+- Update to 18.07.80
+  * New feature release
+  * For more details please see:
+  * https://www.kde.org/announcements/announce-applications-18.08-beta.php
+- Changes since 18.04.3:
+  * Too many changes to list here
+- Refreshed patches:
+  * 0001-Defuse-root-block.patch
+- Drop custom lang package definition
+
+-------------------------------------------------------------------
+Fri Jul 13 04:49:51 UTC 2018 - lbeltrame@kde.org
+
+- Update to 18.04.3
+  * New bugfix release
+  * For more details please see:
+  * https://www.kde.org/announcements/announce-applications-18.04.3.php
+- Changes since 18.04.2:
+  * Fix if to actually have a comparison
+  * Fix QuickOpen with Qt 5.11 (kde#395039)
+- Dropped patches, now upstream:
+  * 0002-Fix-QuickOpen-with-Qt-5.11.patch
+- Refreshed patches:
+  * 0001-Defuse-root-block.patch
+
+-------------------------------------------------------------------
+Thu Jun 14 09:51:26 UTC 2018 - marius.kittler@suse.com
+
+- Add 0002-Fix-QuickOpen-with-Qt-5.11.patch for kde#395039
+  to make quick-open work again after Qt 5.11.0 update.
+
+-------------------------------------------------------------------
+Fri Jun 08 05:06:39 UTC 2018 - lbeltrame@kde.org
+
+- Update to 18.04.2
+  * New bugfix release
+  * For more details please see:
+  * https://www.kde.org/announcements/announce-applications-18.04.2.php
+- Changes since 18.04.1:
+  * None
+
+-------------------------------------------------------------------
+Fri May 11 05:17:47 UTC 2018 - lbeltrame@kde.org
+
+- Update to 18.04.1
+  * New bugfix release
+  * For more details please see:
+  * https://www.kde.org/announcements/announce-applications-18.04.1.php
+- Changes since 18.04.0:
+  * None
+
+-------------------------------------------------------------------
+Wed Apr 18 07:48:51 CEST 2018 - lbeltrame@kde.org
+
+- Update to 18.04.0
+  * New feature release
+  * For more details please see:
+  * https://www.kde.org/announcements/announce-applications-18.04.0.php
+- Changes since 18.03.90:
+  * None
+
+-------------------------------------------------------------------
+Fri Apr 06 07:09:01 CEST 2018 - lbeltrame@kde.org
+
+- Update to 18.03.90
+  * New feature release
+  * For more details please see:
+  * https://www.kde.org/announcements/announce-applications-18.04-rc.php
+- Changes since 17.12.3:
+  * Too many changes to list here
+
+-------------------------------------------------------------------
+Thu Mar 08 23:51:16 CET 2018 - lbeltrame@kde.org
+
+- Update to 17.12.3
+  * New bugfix release
+  * For more details please see:
+  * https://www.kde.org/announcements/announce-applications-17.12.3.php
+- Changes since 17.12.2:
+  * None
+
+-------------------------------------------------------------------
+Wed Feb 07 08:47:34 CET 2018 - lbeltrame@kde.org
+
+- Update to 17.12.2
+  * New bugfix release
+  * For more details please see:
+  * https://www.kde.org/announcements/announce-applications-17.12.2.php
+- Changes since 17.12.1:
+  * Revert "Clear konsole command-line before directory change"
+  * Make connection unique to not trigger flood of slot calls.
+  * Fix a couple of regressions in the conversion to modern connect() (kde#388752)
+
+-------------------------------------------------------------------
+Thu Jan 11 23:41:00 CET 2018 - lbeltrame@kde.org
+
+- Update to 17.12.1
+  * New bugfix release
+  * For more details please see:
+  * https://www.kde.org/announcements/announce-applications-17.12.1.php
+- Changes since 17.12.0:
+  * Clear konsole command-line before directory change
+
+-------------------------------------------------------------------
+Sat Dec 09 14:59:03 CET 2017 - lbeltrame@kde.org
+
+- Update to 17.12.0
+  * New feature release
+  * For more details please see:
+  * https://www.kde.org/announcements/announce-applications-17.12.0.php
+- Changes since 17.11.90:
+  * None
+
+-------------------------------------------------------------------
+Sat Dec 02 10:12:35 CET 2017 - lbeltrame@kde.org
+
+- Update to 17.11.90
+  * New feature release
+  * For more details please see:
+  * https://www.kde.org/announcements/announce-applications-17.12-rc.php
+- Changes since 17.11.80:
+  * Fix crash on re-enabling "Document Preview" plugin (kde#387233)
+
+-------------------------------------------------------------------
+Mon Nov 20 06:59:00 CET 2017 - lbeltrame@kde.org
+
+- Update to 17.11.80
+  * New feature release
+  * For more details please see:
+  * https://www.kde.org/announcements/announce-applications-17.12-beta.php
+- Changes since 17.08.3:
+  * Too many changes to list here
+
+-------------------------------------------------------------------
+Thu Nov 09 23:11:00 CET 2017 - lbeltrame@kde.org
+
+- Update to 17.08.3
+  * New bugfix release
+  * For more details please see:
+  * https://www.kde.org/announcements/announce-applications-17.08.3.php
+- Changes since 17.08.2:
+  * None
+
+-------------------------------------------------------------------
+Tue Oct 17 00:31:32 CEST 2017 - lbeltrame@kde.org
+
+- Update to 17.08.2
+  * New bugfix release
+  * For more details please see:
+  * https://www.kde.org/announcements/announce-applications-17.08.2.php
+- Changes since 17.08.1:
+  * None
+
+-------------------------------------------------------------------
+Thu Sep 07 07:01:35 CEST 2017 - lbeltrame@kde.org
+
+- Update to 17.08.1
+  * New bugfix release
+  * For more details please see:
+  * https://www.kde.org/announcements/announce-applications-17.08.1.php
+- Changes since 17.08.0:
+  * None
+
+-------------------------------------------------------------------
+Fri Aug 11 22:45:08 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 :
+- Too many changes to list here
+
+-------------------------------------------------------------------
+Sat Aug  5 18:17:07 UTC 2017 - christophe@krop.fr
+
+- Update to KDE Applications 17.07.90
+  * KDE Applications 17.07.90
+  * https://www.kde.org/announcements/announce-applications-17.08-rc.php
+
+
+-------------------------------------------------------------------
+Sat Jul 15 22:59:17 CEST 2017 - lbeltrame@kde.org
+
+- Update to 17.04.3
+  * New bugfix release
+  * For more details please see:
+  * https://www.kde.org/announcements/announce-applications-17.04.3.php
+- Changes since 17.04.2:
+  * None
+
+-------------------------------------------------------------------
+Wed Jun 07 17:42:43 CEST 2017 - lbeltrame@kde.org
+
+- Update to 17.04.2
+  * New bugfix release
+  * For more details please see:
+  * https://www.kde.org/announcements/announce-applications-17.04.2.php
+- Changes since 17.04.1:
+  * None
+
+-------------------------------------------------------------------
+Thu May 18 18:29:45 UTC 2017 - fabian@ritter-vogt.de
+
+- Add patch to defuse root block:
+  * 0001-Defuse-root-block.patch
+
+-------------------------------------------------------------------
+Wed May 17 20:35:54 CEST 2017 - lbeltrame@kde.org
+
+- Update to 17.04.1
+  * New bugfix release
+  * For more details please see:
+  * https://www.kde.org/announcements/announce-applications-17.04.1.php
+- Changes since 17.04.0:
+  * Don't repeat work of KAboutData::setupCommandLine()
+  * Don't repeat work of KAboutData::setApplicationData()
+  * Enable numericMode for sorting document list in filetree (kde#375676)
+- Drop upstreamed patches:
+  * enable-numericMode-in-filetree.patch
+
+-------------------------------------------------------------------
+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.04-beta.php
+- Changes since 16.12.3:
+  * Too many changes to list here
+
+-------------------------------------------------------------------
+Thu Mar  9 12:35:33 CET 2017 - lbeltrame@kde.org
+
+- Update to 16.12.3
+  * New bugfix release
+  * For more details please see:
+  * https://www.kde.org/announcements/announce-applications-16.12.3.php
+- Changes since 16.12.2:
+  * Add shortcut (Ctrl+Alt+f) for Search and Replace (kde#368377)
+
+
+-------------------------------------------------------------------
+Thu Feb  9 06:46:37 UTC 2017 - lbeltrame@kde.org
+
+- Update to KDE Applications 16.12.2
+   * KDE Applications 16.12.2
+   * https://www.kde.org/announcements/announce-applications-16.12.2.php
+
+
+-------------------------------------------------------------------
+Thu Jan 19 19:19:16 UTC 2017 - fabian@ritter-vogt.de
+
+- Add upstream patch to fix build with plasma-framework >= 5.30
+  * remove-popupapplet-servicetype.patch
+
+-------------------------------------------------------------------
+Sat Jan 14 08:52:14 UTC 2017 - lbeltrame@kde.org
+
+- Update to KDE Applications 16.12.1
+   * KDE Applications 16.12.1
+   * https://www.kde.org/announcements/announce-applications-16.12.1.php
+
+-------------------------------------------------------------------
+Tue Dec 13 19:33:57 UTC 2016 - tittiatcoke@gmail.com
+
+- Update to KDE Applications 16.12.0
+   * KDE Applications 16.12.0
+   * https://www.kde.org/announcements/announce-applications-16.12.0.php
+
+
+-------------------------------------------------------------------
+Sat Dec  3 16:10:26 UTC 2016 - tittiatcoke@gmail.com
+
+- Update to KDE Applications 16.11.90
+   * KDE Applications 16.12.0 RC
+   * https://www.kde.org/announcements/announce-applications-16.12-rc.php
+
+
+-------------------------------------------------------------------
+Tue Nov 29 12:21:36 UTC 2016 - tittiatcoke@gmail.com
+
+- Update to KDE Applications 16.11.80
+   * KDE Applications 16.12.0 Beta
+   * https://www.kde.org/announcements/announce-applications-16.12-beta.php
+
+
+-------------------------------------------------------------------
+Wed Nov  9 20:54:35 UTC 2016 - wbauer@tmo.at
+
+- Remove unnecessary build requirements
+
+-------------------------------------------------------------------
+Wed Nov  9 06:13:55 UTC 2016 - lbeltrame@kde.org
+
+- Update to KDE Applications 16.08.3
+  * KDE Applications 16.08.3
+  * https://www.kde.org/announcements/announce-applications-16.08.3.php
+
+-------------------------------------------------------------------
+Tue Oct 11 20:51:41 UTC 2016 - lbeltrame@kde.org
+
+- KDE Applications 16.08.2
+https://www.kde.org/announcements/announce-applications-16.08.2.php
+
+-------------------------------------------------------------------
+Mon Oct 10 21:36:22 UTC 2016 - hrvoje.senjan@gmail.com
+
+- Try to fix build on Leap 42.1 with newer KF5
+
+-------------------------------------------------------------------
+Mon Sep 26 20:05:02 UTC 2016 - toddrme2178@gmail.com
+
+- Update year
+- Enable git integration
+- Fix building on Leap 42.1
+
+-------------------------------------------------------------------
+Fri Sep  9 08:13:05 UTC 2016 - tittiatcoke@gmail.com
+
+- Update to KDE Applications 16.08.1
+   * KDE Applications 16.08.1
+   * https://www.kde.org/announcements/announce-applications-16.08.1.php
+
+
+-------------------------------------------------------------------
+Wed Aug 24 07:34:24 UTC 2016 - fabian@ritter-vogt.de
+
+- Adjust filelist for the plasmoid appdata, installed with KF > 5.25.0
+
+-------------------------------------------------------------------
+Fri Aug 12 10:09:58 UTC 2016 - tittiatcoke@gmail.com
+
+- Update to KDE Applications 16.08.0
+   * KDE Applications 16.08.0
+   * https://www.kde.org/announcements/announce-applications-16.08.0.php
+
+
+-------------------------------------------------------------------
+Mon Aug  8 14:47:17 UTC 2016 - tittiatcoke@gmail.com
+
+- Update to KDE Applications 16.07.90
+   * KDE Applications 16.07.90 (16.08-RC)
+   * https://www.kde.org/announcements/announce-applications-16.08-rc.php
+
+
+-------------------------------------------------------------------
+Thu Jul  7 23:36:07 UTC 2016 - tittiatcoke@gmail.com
+
+- Update to KDE Applications 16.04.3
+   * KDE Applications 16.04.3
+   * https://www.kde.org/announcements/announce-applications-16.04.3.php
+
+
+-------------------------------------------------------------------
+Fri Jun 10 17:51:58 UTC 2016 - tittiatcoke@gmail.com
+
+- Update to KDE Applications 16.04.2
+   * KDE Applications 16.04.2
+   * https://www.kde.org/announcements/announce-applications-16.04.2.php
+
+
+-------------------------------------------------------------------
+Sat May  7 10:17:24 UTC 2016 - tittiatcoke@gmail.com
+
+- Update to KDE Applications 16.04.1
+   * KDE Applications 16.04.1
+   * https://www.kde.org/announcements/announce-applications-16.04.1.php
+
+
+-------------------------------------------------------------------
+Sun Apr 17 05:56:39 UTC 2016 - tittiatcoke@gmail.com
+
+- Update to KDE Applications 16.04.0
+   * KDE Applications 16.04.0
+   * https://www.kde.org/announcements/announce-applications-16.04.0.php
+
+
+-------------------------------------------------------------------
+Mon Apr 11 06:34:14 UTC 2016 - tittiatcoke@gmail.com
+
+- Update to KDE Applications 16.03.90
+   * KDE Applications 16.04.0 RC
+   * https://www.kde.org/announcements/announce-applications-16.04-rc.php
+
+
+-------------------------------------------------------------------
+Sun Mar 13 15:37:08 UTC 2016 - tittiatcoke@gmail.com
+
+- Update to KDE Applications 15.12.3
+   * KDE Applications 15.12.3
+   * https://www.kde.org/announcements/announce-applications-15.12.3.php
+   * boo#970855
+
+
+-------------------------------------------------------------------
+Sat Feb 13 08:04:24 UTC 2016 - tittiatcoke@gmail.com
+
+- Update to KDE Applications 15.12.2
+   * KDE Applications 15.12.2
+   * https://www.kde.org/announcements/announce-applications-15.12.2.php
+   * boo#966605
+
+
+-------------------------------------------------------------------
+Sun Feb  7 10:00:08 UTC 2016 - tittiatcoke@gmail.com
+
+- Kwrite does not require kate, so lets not put the kwrite icon in
+  the kate package.
+
+-------------------------------------------------------------------
+Sat Jan  9 18:13:08 UTC 2016 - tittiatcoke@gmail.com
+
+- Update to KDE Applications 15.12.1
+   * KDE Applications 15.12.1
+   * https://www.kde.org/announcements/announce-applications-15.12.1.php
+   * boo#961265
+
+
+-------------------------------------------------------------------
+Sun Dec 13 13:09:35 UTC 2015 - tittiatcoke@gmail.com
+
+- Update to KDE Applications 15.12.0
+   * KDE Applications 15.12.0
+   * https://www.kde.org/announcements/announce-applications-15.12.0.php
+   * boo#958887
+
+
+-------------------------------------------------------------------
+Tue Nov 10 19:56:32 UTC 2015 - tittiatcoke@gmail.com
+
+- Update to KDE Applications 15.08.3
+   * KDE Applications 15.08.3
+   * https://www.kde.org/announcements/announce-applications-15.08.3.php
+   * boo#954531
+
+
+-------------------------------------------------------------------
+Sun Oct 11 13:18:41 UTC 2015 - tittiatcoke@gmail.com
+
+- Update to KDE Applications 15.08.2
+   * KDE Applications 15.08.2
+   * https://www.kde.org/announcements/announce-applications-15.08.2.php
+
+
+-------------------------------------------------------------------
+Tue Sep 22 22:30:37 UTC 2015 - alarrosa@suse.com
+
+- Fixed a "directories not owned by a package" error
+
+-------------------------------------------------------------------
+Sun Sep 13 19:00:20 UTC 2015 - tittiatcoke@gmail.com
+
+- Update to KDE Applications 15.08.1
+   * KDE Applications 15.08.1
+   * https://www.kde.org/announcements/announce-applications-15.08.1.php
+
+
+-------------------------------------------------------------------
+Wed Aug 19 19:42:45 UTC 2015 - cgiboudeaux@gmx.com
+
+- Update to KDE Applications 15.08.0
+   * KDE Applications 15.08.0
+   * https://www.kde.org/announcements/announce-applications-15.08.0.php
+
+-------------------------------------------------------------------
+Fri Aug  7 07:08:07 UTC 2015 - tittiatcoke@gmail.com
+
+- Update to KDE Applications 15.07.90
+   * KDE Applications 15.08.0 RC1
+   * https://www.kde.org/announcements/announce-applications-15.08-rc.php
+
+
+-------------------------------------------------------------------
+Mon Jul  6 06:03:48 UTC 2015 - tittiatcoke@gmail.com
+
+- Update to KDE Applications 15.04.3
+   * KDE Applications 15.04.3
+   * https://www.kde.org/announcements/announce-applications-15.04.3.php
+
+
+-------------------------------------------------------------------
+Sat May 30 14:58:26 UTC 2015 - tittiatcoke@gmail.com
+
+- Update to KDE Applications 15.04.2
+   * KDE Applications 15.04.2
+   * https://www.kde.org/announcements/announce-applications-15.04.2.php
+
+
+-------------------------------------------------------------------
+Mon May 11 11:29:36 UTC 2015 - tittiatcoke@gmail.com
+
+- Update to KDE Applications 15.04.1
+   * KDE Applications 15.04.1
+   * https://www.kde.org/announcements/announce-applications-15.04.1.php
+
+
+-------------------------------------------------------------------
+Sat Apr 11 13:55:32 UTC 2015 - tittiatcoke@gmail.com
+
+- Update to KDE Applications 15.04.0
+   * KDE Applications 15.04.0
+   * https://www.kde.org/announcements/announce-applications-15.04.0.php
+
+
+-------------------------------------------------------------------
+Sat Mar 21 18:58:37 UTC 2015 - tittiatcoke@gmail.com
+
+- Update to KDE Applications 15.03.95
+   * KDE Applications 15.04 RC
+
+
+-------------------------------------------------------------------
+Sun Mar  8 12:59:10 UTC 2015 - tittiatcoke@gmail.com
+
+- Update to KDE Applications 15.03.80
+   * KDE Applications 15.04 Beta
+
+
+-------------------------------------------------------------------
+Tue Mar  3 10:50:21 UTC 2015 - tittiatcoke@gmail.com
+
+- Update to KDE Applications 14.12.3
+   * KDE Applications 14.12.3
+   * See https://www.kde.org/announcements/announce-applications-14.12.3.php
+
+-------------------------------------------------------------------
+Wed Feb 25 18:25:17 UTC 2015 - hrvoje.senjan@gmail.com
+
+- Added katefix.diff: Register with dbus to wake up KRun, and
+  unregister then (kde#339094)
+
+-------------------------------------------------------------------
+Sun Feb  1 11:26:08 UTC 2015 - tittiatcoke@gmail.com
+
+- Update to KDE Applications 14.12.2
+   * KDE Applications 14.12.2
+   * See https://www.kde.org/announcements/announce-applications-14.12.2.php
+
+-------------------------------------------------------------------
+Mon Jan 12 20:16:31 UTC 2015 - tittiatcoke@gmail.com
+
+- Update to KDE Applications 14.12.1
+   * KDE Applications 14.12.1
+   * See https://www.kde.org/announcements/announce-applications-14.12.1.php
+
+-------------------------------------------------------------------
+Wed Dec 17 20:44:03 UTC 2014 - tittiatcoke@gmail.com
+
+- Update to KDE Applications 14.12.0
+   * KDE Applications 14.12.0
+   * See https://www.kde.org/announcements/announce-applications-14.12.0.php
+
+-------------------------------------------------------------------
+Wed Dec 17 20:18:20 UTC 2014 - tittiatcoke@gmail.com
+
+- Update to KDE Applications 14.12.0
+   * KDE Applications 14.12.0
+   * See https://www.kde.org/announcements/announce-applications-14.12.0.php
+
+-------------------------------------------------------------------
+Wed Dec  3 07:51:43 UTC 2014 - tittiatcoke@gmail.com
+
+Update to KDE Applications 14.11.97
+   * KDE Applications 14.12 Release Candidate
+   * See http://www.kde.org/announcements/announce-applications-14.12-rc.php
+   * Kate is now KDE Frameworks based
+
+-------------------------------------------------------------------
+Sun Nov  9 20:25:29 UTC 2014 - tittiatcoke@gmail.com
+
+- Update to 4.14.3
+   * KDE 4.14.3 SC Bugfix Release
+   * See http://www.kde.org/announcements/announce-4.14.3.php
+
+-------------------------------------------------------------------
+Sun Oct 12 11:59:52 UTC 2014 - tittiatcoke@gmail.com
+
+- Update to 4.14.2
+   * KDE 4.14.2 SC Bugfix Release
+   * See http://www.kde.org/announcements/announce-4.14.2.php
+
+-------------------------------------------------------------------
+Sat Sep 13 16:21:49 UTC 2014 - tittiatcoke@gmail.com
+
+- Update to 4.14.1
+   * KDE 4.14.1 SC Bugfix Release
+   * See http://www.kde.org/announcements/announce-4.14.1.php
+
+-------------------------------------------------------------------
+Fri Sep  5 19:37:25 UTC 2014 - hrvoje.senjan@gmail.com
+
+- Use suplements: packageand(IPython:kate), instead of recommending
+  IPython as that deliver an installation of 4 digit number of packages
+
+-------------------------------------------------------------------
+Fri Aug 15 08:23:54 UTC 2014 - tittiatcoke@gmail.com
+
+- Update to 4.14.0
+   * KDE 4.14.0 SC Final Release
+   * See http://www.kde.org/announcements/4.14/
+
+-------------------------------------------------------------------
+Wed Aug 13 11:34:33 UTC 2014 - toddrme2178@gmail.com
+
+- Add subpackage for the python plugins
+  - Requires additional python requires for full functionality
+
+-------------------------------------------------------------------
+Thu Jul 17 16:44:00 UTC 2014 - cgiboudeaux@gmx.com
+
+- Update to 4.13.90
+   * KDE 4.14 Beta 2 release
+   * See http://www.kde.org/announcements/announce-4.14-beta2.php
+
+-------------------------------------------------------------------
+Thu Jul 10 22:16:31 UTC 2014 - cgiboudeaux@gmx.com
+
+- Update to 4.13.80
+   * KDE 4.14 Beta 1 release
+   * See http://www.kde.org/announcements/announce-4.14-beta1.php
+
+-------------------------------------------------------------------
+Sun Jul  6 22:32:20 UTC 2014 - hrvoje.senjan@gmail.com
+
+- Use create_subdir_filelists macro for putting files where they
+  belong
+- Drop some ancient obsoletes
+- Drop fdupes usage: this is dangerous on multiple binary packages
+  from one source
+
+-------------------------------------------------------------------
+Sun Jun  8 18:28:55 UTC 2014 - tittiatcoke@gmail.com
+
+- Update to 4.13.2
+   * KDE 4.13  release
+   * See http://www.kde.org/announcements/announce-4.13.2.php
+
+-------------------------------------------------------------------
+Fri May  9 16:41:00 UTC 2014 - tittiatcoke@gmail.com
+
+- Update to 4.13.1
+   * KDE 4.13.1  bug fix release
+   * See http://www.kde.org/announcements/announce-4.13.1.php
+
+-------------------------------------------------------------------
+Fri Apr 11 16:44:21 UTC 2014 - tittiatcoke@gmail.com
+
+- Update to 4.13.0
+   * KDE 4.13  release
+   * See http://www.kde.org/announcements/4.13/
+
+-------------------------------------------------------------------
+Thu Mar 27 17:38:11 UTC 2014 - tittiatcoke@gmail.com
+
+- Update to 4.12.97
+   * KDE 4.13 RC  release
+   * See http://www.kde.org/announcements/announce-4.13-rc.php
+
+-------------------------------------------------------------------
+Thu Mar 20 18:04:18 UTC 2014 - tittiatcoke@gmail.com
+
+- Update to 4.12.95
+   * KDE 4.13 Beta 3  release
+   * See http://www.kde.org/announcements/announce-4.13-beta3.php
+
+-------------------------------------------------------------------
+Thu Mar 13 20:08:23 UTC 2014 - tittiatcoke@gmail.com
+
+- Update to 4.12.90
+   * KDE 4.13 Beta 2  release
+   * See http://www.kde.org/announcements/announce-4.13-beta2.php
+
+-------------------------------------------------------------------
+Fri Mar  7 09:57:31 UTC 2014 - tittiatcoke@gmail.com
+
+- Update to 4.12.80
+   * KDE 4.13 Beta 1  release
+   * See http://www.kde.org/announcements/announce-4.13-beta1.php
+
+-------------------------------------------------------------------
+Sat Feb  1 10:08:25 UTC 2014 - tittiatcoke@gmail.com
+
+- Update to 4.12.2
+   * KDE 4.12.2  release
+   * See http://www.kde.org/announcements/announce-4.12.2.php
+
+-------------------------------------------------------------------
+Sat Jan 11 15:33:42 UTC 2014 - tittiatcoke@gmail.com
+
+- Update to 4.12.1
+   * KDE 4.12.1  release
+   * See http://www.kde.org/announcements/announce-4.12.1.php
+
+-------------------------------------------------------------------
+Sat Dec 14 18:01:24 UTC 2013 - tittiatcoke@gmail.com
+
+- Update to 4.12.0
+   * KDE 4.12.0  release
+   * See http://www.kde.org/announcements/4.12.php
+
+-------------------------------------------------------------------
+Fri Nov 29 07:01:21 UTC 2013 - tittiatcoke@gmail.com
+
+- Update to 4.11.97
+   * KDE 4.12 RC 1 release
+   * See http://www.kde.org/announcements/announce-4.12-rc.php
+
+-------------------------------------------------------------------
+Sat Nov 23 22:16:04 UTC 2013 - tittiatcoke@gmail.com
+
+- Update to 4.11.95
+   * KDE 4.12 Beta 3 release
+   * See http://www.kde.org/announcements/announce-4.12-beta3.php
+
+-------------------------------------------------------------------
+Sat Nov 16 17:49:00 UTC 2013 - tittiatcoke@gmail.com
+
+- Update to 4.11.90
+   * KDE 4.12 Beta 2 release
+   * See http://www.kde.org/announcements/announce-4.12-beta2.php
+
+-------------------------------------------------------------------
+Sat Nov  9 22:49:54 UTC 2013 - tittiatcoke@gmail.com
+
+- Update to 4.11.80
+   * KDE 4.12 Beta 1 release
+   * See http://www.kde.org/announcements/announce-4.12-beta1.php
+
+-------------------------------------------------------------------
+Sat Nov  2 15:03:43 UTC 2013 - tittiatcoke@gmail.com
+
+- Update to 4.11.3
+   * KDE 4.11.3 bugfix release
+   * See http://www.kde.org/announcements/announce-4.11.3.php
+
+-------------------------------------------------------------------
+Sat Sep 28 15:06:27 UTC 2013 - tittiatcoke@gmail.com
+
+- Update to 4.11.2
+   * KDE 4.11.2 bugfix release
+   * See http://www.kde.org/announcements/announce-4.11.2.php
+
+-------------------------------------------------------------------
+Sun Sep  1 09:57:12 UTC 2013 - tittiatcoke@gmail.com
+
+- Update to 4.11.1
+   * KDE 4.11.1 bugfix release
+   * See http://www.kde.org/announcements/announce-4.11.1.php
+
+-------------------------------------------------------------------
+Thu Aug  8 14:58:25 UTC 2013 - tittiatcoke@gmail.com
+
+- Update to 4.11.0
+   * KDE 4.11 Final release
+   * See http://www.kde.org/announcements/4.11/
+
+-------------------------------------------------------------------
+Thu Jul 25 22:27:52 UTC 2013 - hrvoje.senjan@gmail.com
+
+- Update to 4.10.97
+  * KDE 4.11 RC 2 release
+  * See http://www.kde.org/announcements/announce-4.11-rc2.php
+
+-------------------------------------------------------------------
+Mon Jul 15 08:12:38 UTC 2013 - cgiboudeaux@gmx.com
+
+- Update to 4.10.95
+ * KDE 4.11 RC 1 release
+ * See http://www.kde.org/announcements/announce-4.11-rc1.php
+
+-------------------------------------------------------------------
+Thu Jun 27 18:09:39 UTC 2013 - tittiatcoke@gmail.com
+
+- Update to 4.10.90
+   * KDE 4.11 Beta 1 release
+   * See http://www.kde.org/announcements/announce-4.11-beta2.php
+
+-------------------------------------------------------------------
+Thu Jun 13 19:11:02 UTC 2013 - tittiatcoke@gmail.com
+
+- Update to 4.10.80
+   * KDE 4.11 Beta 1 release
+   * See http://www.kde.org/announcements/announce-4.11-beta1.php
+
+-------------------------------------------------------------------
+Sat Jun  1 09:21:30 UTC 2013 - tittiatcoke@gmail.com
+
+- Update to 4.10.4
+   * Bugfix release
+   * See http://www.kde.org/announcements/announce-4.10.4.php
+   * resolves bnc#8122760
+
+-------------------------------------------------------------------
+Sat May  4 16:52:09 UTC 2013 - tittiatcoke@gmail.com
+
+- Update to 4.10.3
+   * Bugfix release
+   * See http://www.kde.org/announcements/announce-4.10.3.php
+   * resolves bnc#818500
+
+-------------------------------------------------------------------
+Mon Apr  1 19:11:47 UTC 2013 - tittiatcoke@gmail.com
+
+- Update to 4.10.2
+  * Bugfixes
+- Drop fix-braindead-logic-in-PyQt-version-detection.diff and
+  use-a-numeric-comparision.patch, they are included upstream
+
+-------------------------------------------------------------------
+Thu Mar 21 08:27:22 UTC 2013 - hrvoje.senjan@gmail.com
+
+- Added fix-braindead-logic-in-PyQt-version-detection.diff, fixes
+  build with PyQT >= 4.10
+- Add provides/obsoletes for go-kate in libktexteditor, both packages
+  ship the same syntax file
+
+-------------------------------------------------------------------
+Wed Mar 13 09:54:26 UTC 2013 - hrvoje.senjan@gmail.com
+
+- Added use-a-numeric-comparision.patch from upstream, fixes
+  building with python-qt 4.10
+
+-------------------------------------------------------------------
+Sat Mar  2 15:34:10 UTC 2013 - tittiatcoke@gmail.com
+
+- Update to 4.10.1
+ * Contains bug fixes. See http://www.kde.org/announcements/
+   for more information
+- Drop fix-plugin-loading.diff, applied upstream
+
+-------------------------------------------------------------------
+Mon Feb 11 20:12:44 UTC 2013 - hrvoje.senjan@gmail.com
+
+- Added upstream fix-plugin-loading.diff, fixes kde#314530
+
+-------------------------------------------------------------------
+Thu Jan 31 17:44:43 UTC 2013 - tittiatcoke@gmail.com
+
+- Update to 4.10.0
+ * This is the final release for 4.10. Contains bugfixes
+
+-------------------------------------------------------------------
+Thu Jan 17 08:02:32 UTC 2013 - tittiatcoke@gmail.com
+
+- Update to 4.9.98
+ * This is the third RC release for 4.10. Contains bugfixes
+
+-------------------------------------------------------------------
+Thu Jan  3 21:06:39 UTC 2013 - tittiatcoke@gmail.com
+
+- Update to 4.9.97
+ * This is the second RC release for 4.10. Contains bugfixes
+- Dropped patch fix_build_for_unicode_python.diff as this was
+  incorporated upstream
+
+-------------------------------------------------------------------
+Wed Dec 19 18:33:51 UTC 2012 - tittiatcoke@gmail.com
+
+- Update to 4.9.95
+ * This is the first RC release for 4.10. Contains bugfixes
+- Added fix_build_for_unicode_python.diff patch, fixes 32bit
+  compilation
+
+-------------------------------------------------------------------
+Sat Dec  1 20:00:24 UTC 2012 - tittiatcoke@gmail.com
+
+- Update to 4.9.90
+ * This is the second Beta release for 4.10. Contains bugfixes
+
+-------------------------------------------------------------------
+Sat Nov 24 12:48:54 UTC 2012 - tittiatcoke@gmail.com
+
+- Update to 4.9.80
+  * see http://www.kde.org/announcements/announce-4.10-beta1.php
+  * Support for Python plugins
+  * Advanced gid(1) plugin using both ID files and etags
+  * Built-in quick open (Ctrl+Alt+o)
+  * New Project Plugin
+  * Improved Scripting Support
+
+-------------------------------------------------------------------
+Fri Nov  2 16:46:28 UTC 2012 - tittiatcoke@gmail.com
+
+- Update to 4.9.3
+  * see http://kde.org/announcements/announce-4.9.3.php for details
+
+-------------------------------------------------------------------
+Sat Sep 29 09:54:51 UTC 2012 - tittiatcoke@gmail.com
+
+- Update to 4.9.2
+  * see http://kde.org/announcements/announce-4.9.2.php for details
+
+-------------------------------------------------------------------
+Wed Sep  5 12:02:32 UTC 2012 - dmueller@suse.com
+
+- update to 4.9.1
+  * see http://kde.org/announcements/4.9.1/ for details
+
+
+-------------------------------------------------------------------
+Mon Jul 30 16:49:32 UTC 2012 - dmueller@suse.com
+
+- update to 4.8.5
+  * see http://kde.org/announcements/changelogs/changelog4_8_4to4_8_5.php for details
+
+-------------------------------------------------------------------
+Fri Jun  1 13:50:36 UTC 2012 - dmueller@suse.com
+
+- update to 4.8.4
+  * see http://kde.org/announcements/changelogs/changelog4_8_3to4_8_4.php for details
+
+-------------------------------------------------------------------
+Sun Apr 29 20:55:22 UTC 2012 - dmueller@suse.com
+
+- update to 4.8.3
+  * see http://kde.org/announcements/changelogs/changelog4_8_2to4_8_3.php for details
+
+-------------------------------------------------------------------
+Sat Mar 31 11:04:44 UTC 2012 - wstephenson@suse.com
+
+- Add xz to BuildRequires
+
+-------------------------------------------------------------------
+Fri Mar 30 01:10:08 CEST 2012 - dmueller@suse.de
+
+- update to 4.8.2
+  * see http://kde.org/announcements/changelogs/changelog4_8_1to4_8_2.php for details
+
+-------------------------------------------------------------------
+Fri Mar  2 23:12:52 CET 2012 - dmueller@suse.de
+
+- update to 4.8.1
+  * see http://kde.org/announcements/changelogs/changelog4_8_0to4_8_1.php for details
+
+-------------------------------------------------------------------
+Wed Jan 18 20:56:34 CET 2012 - dmueller@suse.de
+
+- update to 4.8.0
+  * first stable release of KDE 4.8 (only critical fixes over 4.7.98)
+  * see http://kde.org/announcements/4.8/ for details
+
+
+-------------------------------------------------------------------
+Tue Jan 10 16:32:04 CET 2012 - dmueller@suse.de
+
+- update to 4.7.98
+  * RC2+ milestone release of KDE 4.8
+  *  see http://kde.org/announcements/4.8/ for details
+
+
+-------------------------------------------------------------------
+Wed Dec  7 10:57:00 UTC 2011 - coolo@suse.com
+
+- fix license to be in spdx.org format
+
+-------------------------------------------------------------------
+Fri Dec  2 01:57:03 CET 2011 - dmueller@suse.de
+
+- update to 4.7.4
+  * see http://kde.org/announcements/changelogs/changelog4_7_3to4_7_4.php for details
+
+-------------------------------------------------------------------
+Wed Nov  2 20:19:05 CET 2011 - dmueller@suse.de
+
+- update to 4.7.3
+  * see http://kde.org/announcements/changelogs/changelog4_7_2to4_7_3.php for details
+
+-------------------------------------------------------------------
+Sun Oct  2 16:37:46 CEST 2011 - dmueller@suse.de
+
+- update to 4.7.2
+  * see http://kde.org/announcements/changelogs/changelog4_7_1to4_7_2.php for details
+
+-------------------------------------------------------------------
+Thu Sep  1 23:14:13 CEST 2011 - dmueller@suse.de
+
+- update to 4.7.1
+  * Bugfixes over KDE 4.7.0
+  *  see http://kde.org/announcements/changelogs/changelog4_7_0to4_7_1.php for details
+
+-------------------------------------------------------------------
+Thu Aug 18 13:13:04 UTC 2011 - toddrme2178@gmail.com
+
+- Split kwrite doc package (fix for RPMLINT warning)
+- Removed redundant buildrequires
+- Cleaned up spec file formatting
+
+-------------------------------------------------------------------
+Mon Aug  8 07:56:03 UTC 2011 - mlin@suse.com
+
+- Fixed group for devel package (fix for RPMLINT warning)
+
+-------------------------------------------------------------------
+Fri Jul 22 20:17:48 CEST 2011 - dmueller@suse.de
+
+- update to 4.7.0
+  * Small fixes over KDE 4.7 RC2
+  *  see http://kde.org/announcements/4.7 for details
+
+
+-------------------------------------------------------------------
+Sat Jul  9 09:51:34 CEST 2011 - dmueller@suse.de
+
+- update to 4.6.95
+
+-------------------------------------------------------------------
+Tue Jun 28 14:11:38 CEST 2011 - dmueller@suse.de
+
+- update to 4.6.90
+
+-------------------------------------------------------------------
+Sat May 21 01:32:09 CEST 2011 - dmueller@suse.de
+
+- update to 4.6.80
+
+-------------------------------------------------------------------
+Sun May  8 05:56:30 UTC 2011 - tittiatcoke@gmail.com
+
+- Update to 4.6.41_20110508
+
+-------------------------------------------------------------------
+Mon May  2 16:08:02 UTC 2011 - tittiatcoke@gmail.com
+
+- Update to 4.6.41_20110502
+
+-------------------------------------------------------------------
+Sat Apr 23 07:44:30 UTC 2011 - tittiatcoke@gmail.com
+
+- Update to 4.6.41_20110423
+
+-------------------------------------------------------------------
+Wed Apr 20 16:08:22 UTC 2011 - tittiatcoke@gmail.com
+
+- Update to 4.6.41_20110420
+
+-------------------------------------------------------------------
+Mon Apr 18 19:31:53 UTC 2011 - tittiatcoke@gmail.com
+
+- Update to 4.6.41_20110418
+
+-------------------------------------------------------------------
+Sun Apr 10 14:52:09 UTC 2011 - tittiatcoke@gmail.com
+
+- Update to 4.6.41_20110410
+
+-------------------------------------------------------------------
+Sun Apr  3 07:17:48 UTC 2011 - tittiatcoke@gmail.com
+
+- Update to 4.6.41_20110403
+
+-------------------------------------------------------------------
+Fri Apr  1 14:16:27 UTC 2011 - tittiatcoke@gmail.com
+
+- Update to 4.6.41_20110401
+
+-------------------------------------------------------------------
+Thu Mar 31 17:39:44 UTC 2011 - tittiatcoke@gmail.com
+
+- Update to 4.6.41_20110331
+
+-------------------------------------------------------------------
+Wed Mar 30 17:26:24 UTC 2011 - tittiatcoke@gmail.com
+
+- Update to 4.6.41_20110330
+
+-------------------------------------------------------------------
+Tue Mar 29 16:29:40 UTC 2011 - tittiatcoke@gmail.com
+
+- Update to 4.6.41_20110329
+
+-------------------------------------------------------------------
+Mon Mar 28 13:49:18 UTC 2011 - tittiatcoke@gmail.com
+
+- Update to 4.6.41_20110328
+
+-------------------------------------------------------------------
+Mon Mar 28 12:43:13 UTC 2011 - tittiatcoke@gmail.com
+
+- Update to 4.6.41_20110328
+
+-------------------------------------------------------------------
+Thu Mar 24 18:57:14 UTC 2011 - tittiatcoke@gmail.com
+
+- Update to 4.6.41_20110324
+
+-------------------------------------------------------------------
+Wed Mar 23 17:50:28 UTC 2011 - tittiatcoke@gmail.com
+
+- Update to 4.6.41_20110323
+
+-------------------------------------------------------------------
+Mon Mar 21 18:56:42 UTC 2011 - tittiatcoke@gmail.com
+
+- Update to 4.6.41_20110321
+
+-------------------------------------------------------------------
+Mon Mar 21 07:06:05 UTC 2011 - tittiatcoke@gmail.com
+
+- Update to 4.6.41_20110321
+
+-------------------------------------------------------------------
+Sat Mar 19 16:04:40 UTC 2011 - tittiatcoke@gmail.com
+
+- Update to 4.6.41_20110319
+
+-------------------------------------------------------------------
+Fri Mar 18 18:00:38 UTC 2011 - tittiatcoke@gmail.com
+
+- Update to 4.6.41_20110318
+
+-------------------------------------------------------------------
+Thu Mar 17 17:27:59 UTC 2011 - tittiatcoke@gmail.com
+
+- Update to 4.6.41_20110317
+
+-------------------------------------------------------------------
+Wed Mar 16 17:55:34 UTC 2011 - tittiatcoke@gmail.com
+
+- Update to 4.6.41_20110316
+
+-------------------------------------------------------------------
+Tue Mar 15 11:58:44 UTC 2011 - tittiatcoke@gmail.com
+
+- Update to 4.6.41_20110315
+
+-------------------------------------------------------------------
+Tue Mar 15 07:12:31 UTC 2011 - tittiatcoke@gmail.com
+
+- Update to 4.6.41_20110315
+
+-------------------------------------------------------------------
+Mon Mar 14 17:49:12 UTC 2011 - tittiatcoke@gmail.com
+
+- Update to 4.6.41_20110314
+
+-------------------------------------------------------------------
+Sun Mar 13 17:55:26 UTC 2011 - tittiatcoke@gmail.com
+
+- Update to 4.6.41_20110313
+
+-------------------------------------------------------------------
+Sat Mar 12 06:56:27 UTC 2011 - tittiatcoke@gmail.com
+
+- Update to 4.6.41_20110312
+
+-------------------------------------------------------------------
+Fri Mar 11 10:51:26 UTC 2011 - tittiatcoke@gmail.com
+
+- Update to 4.6.41_20110311
+
+-------------------------------------------------------------------
+Fri Mar 11 08:02:02 UTC 2011 - tittiatcoke@gmail.com
+
+- Update to 4.6.41_20110311
+
+-------------------------------------------------------------------
+Thu Mar 10 21:23:29 UTC 2011 - tittiatcoke@gmail.com
+
+- Update to 4.6.41_20110310
+
+-------------------------------------------------------------------
+Thu Mar 10 18:11:13 UTC 2011 - tittiatcoke@gmail.com
+
+- Update to 4.6.41_20110310
+
+-------------------------------------------------------------------
+Wed Mar  9 18:59:49 UTC 2011 - tittiatcoke@gmail.com
+
+- Update to 4.6.41_20110309
+
+-------------------------------------------------------------------
+Tue Mar  8 18:46:33 UTC 2011 - tittiatcoke@gmail.com
+
+- Update to 4.6.41_20110308
+
+-------------------------------------------------------------------
+Mon Mar  7 16:28:31 UTC 2011 - tittiatcoke@gmail.com
+
+- Update to 4.6.41_20110307
+
+-------------------------------------------------------------------
+Sun Mar  6 15:42:04 UTC 2011 - tittiatcoke@gmail.com
+
+- Update to 4.6.41_20110306
+
+-------------------------------------------------------------------
+Sat Mar  5 18:48:51 UTC 2011 - tittiatcoke@gmail.com
+
+- Update to 4.6.41_20110305
+
+-------------------------------------------------------------------
+Fri Mar  4 22:02:20 UTC 2011 - tittiatcoke@gmail.com
+
+- Update to 4.6.41_20110304
+
+-------------------------------------------------------------------
+Fri Mar  4 17:38:27 UTC 2011 - tittiatcoke@gmail.com
+
+- Update to 4.6.41_20110304
+
+-------------------------------------------------------------------
+Fri Mar  4 06:47:36 UTC 2011 - tittiatcoke@gmail.com
+
+- Update to 4.6.41_20110304
+
+-------------------------------------------------------------------
+Thu Mar  3 20:06:02 UTC 2011 - tittiatcoke@gmail.com
+
+- Update to 4.6.41_20110303
+
+-------------------------------------------------------------------
+Thu Mar  3 15:22:24 UTC 2011 - tittiatcoke@gmail.com
+
+- Update to 4.6.41_20110303
+
+-------------------------------------------------------------------
+Wed Mar  2 18:29:31 UTC 2011 - tittiatcoke@gmail.com
+
+- Update to 4.6.41_20110302
+
+-------------------------------------------------------------------
+Tue Mar  1 17:11:01 UTC 2011 - tittiatcoke@gmail.com
+
+- Update to 4.6.41_20110301
+
+-------------------------------------------------------------------
+Mon Feb 28 19:36:06 UTC 2011 - tittiatcoke@gmail.com
+
+- Update to 4.6.41_20110228
+
+-------------------------------------------------------------------
+Mon Feb 28 09:25:22 UTC 2011 - tittiatcoke@gmail.com
+
+- Update to 4.6.41_20110228
+
+-------------------------------------------------------------------
+Sun Feb 27 21:30:07 UTC 2011 - tittiatcoke@gmail.com
+
+- Update to 4.6.41_20110227
+
+-------------------------------------------------------------------
+Sun Feb 27 08:43:50 UTC 2011 - tittiatcoke@gmail.com
+
+- Update to 4.6.41_20110227
+
+-------------------------------------------------------------------
+Sat Feb 26 13:21:01 UTC 2011 - tittiatcoke@gmail.com
+
+- Update to 4.6.41_20110226
+
+-------------------------------------------------------------------
+Fri Feb 25 21:00:24 UTC 2011 - tittiatcoke@gmail.com
+
+- Update to 4.6.41_20110225
+
+-------------------------------------------------------------------
+Thu Feb 24 20:13:31 UTC 2011 - tittiatcoke@gmail.com
+
+- Update to 4.6.41_20110224
+
+-------------------------------------------------------------------
+Tue Feb 22 07:52:30 UTC 2011 - tittiatcoke@gmail.com
+
+- Update to 4.6.41_20110222
+
+-------------------------------------------------------------------
+Tue Feb 22 00:01:17 UTC 2011 - tittiatcoke@gmail.com
+
+- Update to 4.6.41_20110222
+
+-------------------------------------------------------------------
+Sun Feb 20 20:46:42 UTC 2011 - tittiatcoke@gmail.com
+
+- Update to 4.6.41_20110220
+
+-------------------------------------------------------------------
+Sat Feb 19 19:39:53 UTC 2011 - tittiatcoke@gmail.com
+
+- Update to 4.6.41_20110219
+
+-------------------------------------------------------------------
+Fri Feb 18 16:38:46 UTC 2011 - tittiatcoke@gmail.com
+
+- Update to 4.6.41_20110218
+
+-------------------------------------------------------------------
+Thu Feb 17 20:12:12 UTC 2011 - tittiatcoke@gmail.com
+
+- Update to 4.6.41_20110217
+
+-------------------------------------------------------------------
+Wed Feb 16 23:16:52 UTC 2011 - tittiatcoke@gmail.com
+
+- Update to 4.6.41_20110217
+
+-------------------------------------------------------------------
+Wed Feb 16 17:18:11 UTC 2011 - tittiatcoke@gmail.com
+
+- Update to 4.6.41_20110216
+
+-------------------------------------------------------------------
+Tue Feb 15 23:37:46 UTC 2011 - tittiatcoke@gmail.com
+
+- Update to 4.6.41_20110216
+
+-------------------------------------------------------------------
+Tue Feb 15 05:55:59 UTC 2011 - tittiatcoke@gmail.com
+
+- Update to 4.6.41_20110215
+
+-------------------------------------------------------------------
+Mon Feb 14 18:25:25 UTC 2011 - tittiatcoke@gmail.com
+
+- Update to 4.6.41_20110214
+
+-------------------------------------------------------------------
+Sun Feb 13 18:07:00 UTC 2011 - tittiatcoke@gmail.com
+
+- Update to 4.6.41_20110213
+
+-------------------------------------------------------------------
+Sat Feb 12 13:30:46 UTC 2011 - tittiatcoke@gmail.com
+
+- Update to 4.6.41_20110212
+
+-------------------------------------------------------------------
+Sat Feb 12 08:41:58 UTC 2011 - tittiatcoke@gmail.com
+
+- Update to 4.6.41_20110212
+
+-------------------------------------------------------------------
+Thu Feb 10 18:19:11 UTC 2011 - tittiatcoke@gmail.com
+
+- Update to 4.6.41_20110210
+
+-------------------------------------------------------------------
+Wed Feb  9 20:50:37 UTC 2011 - tittiatcoke@gmail.com
+
+- Update to 4.6.41_20110209
+
+-------------------------------------------------------------------
+Wed Feb  9 07:06:04 UTC 2011 - tittiatcoke@gmail.com
+
+- Update to 4.6.41_20110209
+
+-------------------------------------------------------------------
+Mon Feb  7 17:50:57 UTC 2011 - tittiatcoke@gmail.com
+
+- Update to 4.6.41_20110207
+
+-------------------------------------------------------------------
+Sun Feb  6 15:35:23 UTC 2011 - tittiatcoke@gmail.com
+
+- Update to 4.6.41_20110206
+
+-------------------------------------------------------------------
+Sat Feb  5 18:28:30 UTC 2011 - tittiatcoke@gmail.com
+
+- Update to 4.6.41_20110205
+
+-------------------------------------------------------------------
+Fri Feb  4 07:07:07 UTC 2011 - tittiatcoke@gmail.com
+
+- Update to 4.6.41_20110204
+
+-------------------------------------------------------------------
+Thu Feb  3 22:16:01 UTC 2011 - tittiatcoke@gmail.com
+
+- Update to 4.6.41_20110203
+
+-------------------------------------------------------------------
+Wed Feb  2 20:05:05 UTC 2011 - tittiatcoke@gmail.com
+
+- Update to 4.6.41_20110202
+
+-------------------------------------------------------------------
+Tue Feb  1 18:19:18 UTC 2011 - tittiatcoke@gmail.com
+
+- Update to 4.6.41_20110201
+
+-------------------------------------------------------------------
+Mon Jan 31 18:25:53 UTC 2011 - tittiatcoke@gmail.com
+
+- Update to 4.6.41_20110131
+
+-------------------------------------------------------------------
+Sun Jan 30 12:44:41 UTC 2011 - tittiatcoke@gmail.com
+
+- Update to 4.6.41_20110130
+
+-------------------------------------------------------------------
+Sun Jan 30 12:19:29 UTC 2011 - tittiatcoke@gmail.com
+
+- Update to 4.6.41_20110130
+
+-------------------------------------------------------------------
+Fri Jan  7 11:28:22 CET 2011 - dmueller@suse.de
+
+- update to 4.6.41_20110106
+
+-------------------------------------------------------------------
+Sun Dec 19 16:39:15 UTC 2010 - tittiatcoke@gmail.com
+
+- Update to 4.5.86svn1207757
+
+-------------------------------------------------------------------
+Fri Dec 10 17:46:20 CET 2010 - dmueller@suse.de
+
+- update to 4.5.86svn1205247
+
+-------------------------------------------------------------------
+Thu Dec  2 00:48:20 CET 2010 - dmueller@suse.de
+
+- update to 4.5.82svn1202688
+
+-------------------------------------------------------------------
+Mon Nov 29 17:48:20 UTC 2010 - tittiatcoke@gmail.com
+
+- Update to 4.5.81svn1202101
+
+-------------------------------------------------------------------
+Fri Nov 19 17:19:35 CET 2010 - dmueller@suse.de
+
+- update to 4.5.80
+  * KDE 4.6 Beta1
+  * no upstream changelog available.
+   * KBugBuster was dropped because it was broken and unmaintained
+
+-------------------------------------------------------------------
+Thu Nov 11 10:05:31 UTC 2010 - coolo@novell.com
+
+- fix file list
+
+-------------------------------------------------------------------
+Thu Oct 28 22:13:50 CEST 2010 - dmueller@suse.de
+
+- update to 4.5.3
+  * see http://kde.org/announcements/changelogs/changelog4_5_2to4_5_3.php for details
+
+-------------------------------------------------------------------
+Fri Oct  1 00:06:43 CEST 2010 - dmueller@suse.de
+
+- update to 4.5.2
+  * see http://kde.org/announcements/changelogs/changelog4_5_1to4_5_2.php for details
+
+-------------------------------------------------------------------
+Sun Aug 29 20:15:20 UTC 2010 - tittiatcoke@gmail.com
+
+- Added additional build requirement for Antlr package. This will
+  now allow the build of the po2xml binary (bnc#630625)
+
+-------------------------------------------------------------------
+Fri Aug 27 15:46:48 CEST 2010 - dmueller@suse.de
+
+- update to 4.5.1
+  * see http://kde.org/announcements/changelogs/changelog4_5_0to4_5_1.php for details
+
+-------------------------------------------------------------------
+Thu Jul 29 16:55:54 CEST 2010 - dmueller@suse.de
+
+- update to 4.5.0
+  * KDE 4.5.0 final (version bump over RC3)
+
+
+-------------------------------------------------------------------
+Sat Jul 24 00:04:44 CEST 2010 - dmueller@suse.de
+
+- update to 4.4.95
+  * KDE 4.5 RC3 (not announced)
+  * critical fixes for 4.5.0 release
+
+
+-------------------------------------------------------------------
+Fri Jul 16 18:21:13 CEST 2010 - dmueller@suse.de
+
+- update to 4.4.93svn1149349
+
+-------------------------------------------------------------------
+Thu Jul  8 01:25:16 CEST 2010 - dmueller@suse.de
+
+- update to 4.4.5
+  * bugfixes over 4.4.4
+  * see http://kde.org/announcements/changelogs/changelog4_4_4to4_4_5.php for details
+
+-------------------------------------------------------------------
+Fri Jun 18 17:23:45 CEST 2010 - dmueller@suse.de
+
+- update to 4.4.4
+  * bugfixes over 4.4.3
+  * see http://kde.org/announcements/changelogs/changelog4_4_3to4_4_ 4.php for details
+  * for most modules only version number as a change (4_4_BRANCH.diff already contained the diff
+
+-------------------------------------------------------------------
+Mon May 17 13:14:07 UTC 2010 - llunak@novell.com
+
+- update 4_4_BRANCH.diff: various fixes, translation updates
+
+-------------------------------------------------------------------
+Thu Apr 29 22:42:02 CEST 2010 - dmueller@suse.de
+
+- update to 4.4.3
+  * bugfixes over 4.4.2
+  * see http://kde.org/announcements/changelogs/changelog4_4_2to4_4_3.php for details
+
+-------------------------------------------------------------------
+Fri Mar 26 19:37:06 CET 2010 - dmueller@suse.de
+
+- update to 4.4.2
+  * bugfixes over 4.4.1
+  * see http://kde.org/announcements/changelogs/changelog4_4_1to4_4_2.php for details
+
+-------------------------------------------------------------------
+Fri Feb 26 20:57:52 CET 2010 - dmueller@suse.de
+
+- update to 4.4.1
+  * bugfixes over 4.4.0
+  * see http://kde.org/announcements/changelogs/changelog4_4_0to4_4_1.php for details
+
+-------------------------------------------------------------------
+Thu Feb  4 12:55:43 CET 2010 - dmueller@suse.de
+
+- update to 4.4.0
+  * Critical bugfixes only over 4.3.98
+  * see http://www.kde.org/announcements/4.4/ for general overview
+
+-------------------------------------------------------------------
+Sun Jan 31 22:24:37 CET 2010 - dmueller@suse.de
+
+- update to 4.3.98
+  * see http://www.kde.org/announcements/announce-4.4-rc3.php for details
+
+-------------------------------------------------------------------
+Wed Jan 20 02:13:22 CET 2010 - dmueller@suse.de
+
+- update to 4.3.95
+  * see http://www.kde.org/announcements/announce-4.4-rc2.php for details
+
+-------------------------------------------------------------------
+Wed Jan  6 19:10:54 CET 2010 - dmueller@suse.de
+
+- update to 4.3.90
+  * see http://www.kde.org/announcements/announce-4.4-rc1.php for details
+
+-------------------------------------------------------------------
+Fri Dec 18 13:49:37 CET 2009 - dmueller@suse.de
+
+- update to 4.3.85
+  * see http://www.kde.org/announcements/announce-4.4-beta2.php for details
+
+-------------------------------------------------------------------
+Fri Dec  4 19:02:24 CET 2009 - dmueller@suse.de
+
+- update to 4.3.80 (KDE 4.4 Beta1):
+  * see http://techbase.kde.org/Schedules/KDE4/4.4_Feature_Plan
+
+-------------------------------------------------------------------
+Mon Nov  2 22:05:23 CET 2009 - dmueller@suse.de
+
+- update to 4.3.3
+  * see http://kde.org/announcements/changelogs/changelog4_3_2to4_3_3.php for details
+
+-------------------------------------------------------------------
+Thu Sep 24 19:35:40 UTC 2009 - beineri@opensuse.org
+
+- update 4_3_BRANCH.diff: icon fixes and translation updates
+
+-------------------------------------------------------------------
+Fri Aug 28 14:01:24 CEST 2009 - dmueller@suse.de
+
+- update to 4.3.1
+  * see http://kde.org/announcements/changelogs/changelog4_3_0to4_3_1.php for details
+
+-------------------------------------------------------------------
+Sun Aug 23 14:56:56 UTC 2009 - tittiatcoke@gmail.com
+
+- Added a patch to enable build by resolving two
+       void-return-in-non-void-function errors
+
+-------------------------------------------------------------------
+Thu Aug 20 07:46:13 CEST 2009 - beineri@opensuse.org
+
+- kompare is no real VCS, don't have Development/ in default install
+
+-------------------------------------------------------------------
+Fri Jul 31 14:05:44 CEST 2009 - llunak@suse.cz
+
+- suggest ctags for kate (bnc#527074)
+
+-------------------------------------------------------------------
+Wed Jul 29 18:11:55 CEST 2009 - dmueller@suse.de
+
+- update to 4.3.0
+  * see http://kde.org/announcements/4.3 for details
+
+-------------------------------------------------------------------
+Tue Jul 21 22:38:11 CEST 2009 - dmueller@suse.de
+
+- update to 4.2.98
+
+-------------------------------------------------------------------
+Thu Jul  9 12:23:28 CEST 2009 - dmueller@suse.de
+
+- update to 4.2.96
+
+-------------------------------------------------------------------
+Thu Jul  2 09:44:46 CEST 2009 - beineri@opensuse.org
+
+- make lokalize require python-kde4 (bnc#517869)
+
+-------------------------------------------------------------------
+Wed Jun 24 21:18:23 CEST 2009 - dmueller@suse.de
+
+- update to 4.2.95
+
+-------------------------------------------------------------------
+Sat Jun 20 15:52:21 CEST 2009 - beineri@opensuse.org
+
+- drop kde4- package prefixes
+
+-------------------------------------------------------------------
+Wed Jun  3 18:30:21 CEST 2009 - dmueller@suse.de
+
+- update to 4.2.90
+
+-------------------------------------------------------------------
+Wed May 27 22:14:46 CEST 2009 - dmueller@suse.de
+
+- update to 4.2.88svn973768
+
+-------------------------------------------------------------------
+Tue May 19 14:39:01 CEST 2009 - dmueller@suse.de
+
+- update to 4.2.87svn969966
+
+-------------------------------------------------------------------
+Mon May 18 21:45:09 CEST 2009 - dmueller@suse.de
+
+- update to 4.2.86svn967995
+
+-------------------------------------------------------------------
+Thu May 14 19:31:22 CEST 2009 - dmueller@suse.de
+
+- update to 4.2.85 (KDE 4.3 Beta1)
+
+-------------------------------------------------------------------
+Thu Apr 30 21:33:43 CEST 2009 - dmueller@suse.de
+
+- update to 4.2.3
+  * see http://kde.org/announcements/changelogs/changelog4_2_2to4_2_3.php
+
+-------------------------------------------------------------------
+Fri Mar 27 00:45:19 CET 2009 - dmueller@suse.de
+
+- update to 4.2.2
+  * see http://kde.org/announcements/changelogs/changelog4_2_1to4_2_2.php
+
+-------------------------------------------------------------------
+Fri Feb 27 01:45:39 CET 2009 - dmueller@suse.de
+
+- update to 4.2.1
+  * see http://kde.org/announcements/changelogs/changelog4_2_0to4_2_1.php
+
+-------------------------------------------------------------------
+Wed Feb 19 15:12:16 CET 2009 - dmueller@suse.de
+
+- update branch diff
+
+-------------------------------------------------------------------
+Thu Jan 22 02:36:28 CET 2009 - dmueller@suse.de
+
+- update to 4.2.0
+
+-------------------------------------------------------------------
+Fri Jan 16 16:39:39 CET 2009 - dmueller@suse.de
+
+- remove unnecessary patch
+
+-------------------------------------------------------------------
+Tue Jan 13 18:49:03 CET 2009 - dmueller@suse.de
+
+- update to 4.1.96
+
+-------------------------------------------------------------------
+Fri Jan  9 14:56:11 CET 2009 - dmueller@suse.de
+
+- update to 4.1.87 (KDE 4.2 Januar snapshot)
+
+-------------------------------------------------------------------
+Tue Dec 16 16:58:10 CET 2008 - dmueller@suse.de
+
+- libical-devel isalready included by kdepimlibs-devel
+
+-------------------------------------------------------------------
+Tue Dec 16 13:39:36 CET 2008 - stbinner@suse.de
+
+- versionized split-provides are not supported
+
+-------------------------------------------------------------------
+Sat Nov 29 17:23:09 CET 2008 - stbinner@suse.de
+
+- fix build after removal of libical copy from kdepimlibs
+
+-------------------------------------------------------------------
+Thu Nov 20 19:32:41 CET 2008 - stbinner@suse.de
+
+- add SLE provides
+
+-------------------------------------------------------------------
+Fri Oct 31 11:13:29 CET 2008 - dmueller@suse.de
+
+- update to 4.1.3
+  * see http://kde.org/announcements/changelogs/changelog4_1_2to4_1_3.php
+
+-------------------------------------------------------------------
+Thu Sep 25 19:01:15 CEST 2008 - dmueller@suse.de
+
+- update to 4.1.2
+  * see http://kde.org/announcements/changelogs/changelog4_1_1to4_1_2.php
+
+-------------------------------------------------------------------
+Thu Aug 28 12:36:33 CEST 2008 - dmueller@suse.de
+
+- update to 4.1.1
+  * see http://kde.org/announcements/changelogs/changelog4_1to4_1_1.php
+
+-------------------------------------------------------------------
+Wed Aug 13 11:12:32 CEST 2008 - dmueller@suse.de
+
+- branch diff update
+
+-------------------------------------------------------------------
+Wed Jul 23 12:50:55 CEST 2008 - dmueller@suse.de
+
+- update to 4.1.0
+
+-------------------------------------------------------------------
+Fri Jul 18 02:00:37 CEST 2008 - dmueller@suse.de
+
+- update to 4.0.99
+
+-------------------------------------------------------------------
+Fri Jul 11 12:37:44 CEST 2008 - dmueller@suse.de
+
+- update to 4.0.98
+
+-------------------------------------------------------------------
+Fri Jul  4 00:22:57 CEST 2008 - dmueller@suse.de
+
+- update to 4.0.85
+
+-------------------------------------------------------------------
+Tue Jul  1 01:33:09 CEST 2008 - dmueller@suse.de
+
+- add directory ownerships
+
+-------------------------------------------------------------------
+Thu Jun 26 17:49:57 CEST 2008 - dmueller@suse.de
+
+- update to 4.0.84
+
+-------------------------------------------------------------------
+Wed Jun 18 21:23:18 CEST 2008 - dmueller@suse.de
+
+- update to 4.0.83
+
+-------------------------------------------------------------------
+Sat Jun 14 09:29:20 CEST 2008 - schwab@suse.de
+
+- Use -mminimal-toc on ppc64.
+
+-------------------------------------------------------------------
+Tue Jun 10 14:28:21 CEST 2008 - dmueller@suse.de
+
+- update to 4.0.82
+
+-------------------------------------------------------------------
+Mon Jun  9 23:38:45 CEST 2008 - dmueller@suse.de
+
+- update to 4.0.81
+
+-------------------------------------------------------------------
+Thu May  1 18:44:07 CEST 2008 - dmueller@suse.de
+
+- update to 4.0.4
+   * http://www.kde.org/announcements/changelogs/changelog4_0_3to4_0_4.php
+
+-------------------------------------------------------------------
+Mon Apr 21 16:20:16 CEST 2008 - dmueller@suse.de
+
+- branch diff update
+  * fix time parsing in cervisia
+
+-------------------------------------------------------------------
+Thu Mar 27 23:00:00 CET 2008 - dmueller@suse.de
+
+- update to 4.0.3
+
+-------------------------------------------------------------------
+Wed Feb 27 16:21:03 CET 2008 - dmueller@suse.de
+
+- update to 4.0.2
+
+-------------------------------------------------------------------
+Fri Feb 15 11:47:08 CET 2008 - dmueller@suse.de
+
+- update 4_0_BRANCH.diff
+
+-------------------------------------------------------------------
+Thu Jan 31 02:33:03 CET 2008 - dmueller@suse.de
+
+- update to 4.0.1
+
+-------------------------------------------------------------------
+Sun Jan 20 10:16:25 CET 2008 - stbinner@suse.de
+
+- update KDE_4_0_BRANCH.diff
+
+-------------------------------------------------------------------
+Sat Jan  5 21:48:51 CET 2008 - dmueller@suse.de
+
+- update to 4.0
+
+-------------------------------------------------------------------
+Wed Jan  2 16:13:19 CET 2008 - stbinner@suse.de
+
+- update to 3.97.2
+
+-------------------------------------------------------------------
+Sun Dec 16 15:22:33 CET 2007 - dmueller@suse.de
+
+- update to 3.97.1
+
+-------------------------------------------------------------------
+Wed Dec  8 19:08:37 CET 2007 - dmueller@suse.de
+
+- update to 3.97.0
+
+-------------------------------------------------------------------
+Sat Dec  8 13:27:56 CET 2007 - stbinner@suse.de
+
+- fix build
+
+-------------------------------------------------------------------
+Tue Dec  4 16:38:35 CET 2007 - dmueller@suse.de
+
+- update to 3.96.3
+
+-------------------------------------------------------------------
+Wed Nov 28 11:26:21 CET 2007 - dmueller@suse.de
+
+- update to 3.96.2
+
+-------------------------------------------------------------------
+Wed Nov 21 18:58:20 CET 2007 - dmueller@suse.de
+
+- update to 3.96.1
+
+-------------------------------------------------------------------
+Wed Nov 14 17:37:22 CET 2007 - dmueller@suse.de
+
+- update to 3.96.0
+
+-------------------------------------------------------------------
+Wed Nov  7 10:42:24 CET 2007 - dmueller@suse.de
+
+- update to 3.95.2
+
+-------------------------------------------------------------------
+Thu Nov  1 12:21:39 CET 2007 - dmueller@suse.de
+
+- update to 3.95.1
+
+-------------------------------------------------------------------
+Wed Oct 31 23:39:16 CET 2007 - dmueller@suse.de
+
+- update to KDE 4.0 Beta4
+
+-------------------------------------------------------------------
+Sat Oct 20 17:58:01 CEST 2007 - dmueller@suse.de
+
+- update to 3.94.1
+
+-------------------------------------------------------------------
+Thu Oct 11 11:39:13 CEST 2007 - dmueller@suse.de
+
+- udpate to KDE 4.0 Beta3
+
+-------------------------------------------------------------------
+Tue Oct  2 16:10:31 CEST 2007 - stbinner@suse.de
+
+- update to 3.93.0.svn720133
+
+-------------------------------------------------------------------
+Wed Sep 26 14:57:22 CEST 2007 - stbinner@suse.de
+
+- update to 3.93.0.svn717255
+
+-------------------------------------------------------------------
+Thu Sep 13 15:16:18 CEST 2007 - stbinner@suse.de
+
+- update to 3.93.0.svn712063
+
+-------------------------------------------------------------------
+Sat Sep  1 19:11:52 CEST 2007 - stbinner@suse.de
+
+- update to KDE 4.0 Beta 2
+
+-------------------------------------------------------------------
+Thu Aug 23 18:08:34 CEST 2007 - stbinner@suse.de
+
+- update to 3.92.0.svn703915
+
+-------------------------------------------------------------------
+Thu Aug 16 14:03:55 CEST 2007 - stbinner@suse.de
+
+- update to 3.92.0.svn700768
+
+-------------------------------------------------------------------
+Thu Aug  9 10:19:17 CEST 2007 - stbinner@suse.de
+
+- update to 3.92.0.svn697375
+- fix file conflict
+
+-------------------------------------------------------------------
+Tue Aug  7 09:01:18 CEST 2007 - stbinner@suse.de
+
+- fix build after strigi update
+
+-------------------------------------------------------------------
+Sun Jul 29 04:57:46 CEST 2007 - stbinner@suse.de
+
+- update to KDE 4.0 Beta 1
+
+-------------------------------------------------------------------
+Thu Jul 12 15:52:31 CEST 2007 - stbinner@suse.de
+
+- update to 3.91.0.svn685971
+
+-------------------------------------------------------------------
+Sat Jun 23 15:53:12 CEST 2007 - stbinner@suse.de
+
+- update to 3.90.1.svn679147
+
+-------------------------------------------------------------------
+Fri Jun  8 09:28:22 CEST 2007 - stbinner@suse.de
+
+- update to 3.90.1.svn670093
+
+-------------------------------------------------------------------
+Fri Jun  1 13:31:58 CEST 2007 - coolo@suse.de
+
+- simplify spec file by using macros from kde4-filesystem
+
+-------------------------------------------------------------------
+Thu May 24 17:41:49 CEST 2007 - stbinner@suse.de
+
+- initial package in abuild
+
diff --git a/kate.spec b/kate.spec
new file mode 100644
index 0000000..f0c3358
--- /dev/null
+++ b/kate.spec
@@ -0,0 +1,133 @@
+#
+# spec file for package kate
+#
+# Copyright (c) 2024 SUSE LLC
+#
+# All modifications and additions to the file contributed by third parties
+# remain the property of their copyright owners, unless otherwise agreed
+# upon. The license for this file, and modifications and additions to the
+# file, is the same license as for the pristine package itself (unless the
+# license for the pristine package is not an Open Source License, in which
+# case the license is the MIT License). An "Open Source License" is a
+# license that conforms to the Open Source Definition (Version 1.9)
+# published by the Open Source Initiative.
+
+# Please submit bugfixes or comments via https://bugs.opensuse.org/
+#
+
+
+%define kf6_version 6.6.0
+%define plasma6_version 5.27.80
+%define qt6_version 6.6.0
+
+%bcond_without released
+Name:           kate
+Version:        24.12.1
+Release:        0
+Summary:        Advanced Text Editor
+License:        GPL-3.0-or-later
+URL:            https://kate-editor.org
+Source0:        https://download.kde.org/stable/release-service/%{version}/src/%{name}-%{version}.tar.xz
+%if %{with released}
+Source1:        https://download.kde.org/stable/release-service/%{version}/src/%{name}-%{version}.tar.xz.sig
+Source2:        applications.keyring
+%endif
+# PATCH-FIX-OPENSUSE
+Patch0:         0001-Defuse-root-block.patch
+BuildRequires:  kf6-extra-cmake-modules >= %{kf6_version}
+BuildRequires:  qt6-gui-private-devel >= %{qt6_version}
+BuildRequires:  cmake(KF6CoreAddons) >= %{kf6_version}
+BuildRequires:  cmake(KF6Crash) >= %{kf6_version}
+BuildRequires:  cmake(KF6DBusAddons) >= %{kf6_version}
+BuildRequires:  cmake(KF6DocTools) >= %{kf6_version}
+BuildRequires:  cmake(KF6GuiAddons) >= %{kf6_version}
+BuildRequires:  cmake(KF6I18n) >= %{kf6_version}
+BuildRequires:  cmake(KF6IconThemes) >= %{kf6_version}
+BuildRequires:  cmake(KF6KIO) >= %{kf6_version}
+BuildRequires:  cmake(KF6NewStuff) >= %{kf6_version}
+BuildRequires:  cmake(KF6TextEditor) >= %{kf6_version}
+BuildRequires:  cmake(KF6UserFeedback) >= %{kf6_version}
+BuildRequires:  cmake(KF6Wallet) >= %{kf6_version}
+BuildRequires:  cmake(KF6WindowSystem) >= %{kf6_version}
+BuildRequires:  cmake(PlasmaActivities) >= %{plasma6_version}
+BuildRequires:  cmake(Qt6Concurrent) >= %{qt6_version}
+BuildRequires:  cmake(Qt6Keychain)
+BuildRequires:  cmake(Qt6Sql) >= %{qt6_version}
+BuildRequires:  cmake(Qt6Test) >= %{qt6_version}
+BuildRequires:  cmake(Qt6Widgets) >= %{qt6_version}
+Requires:       kate-plugins = %{version}
+Recommends:     kuiviewer
+Recommends:     markdownpart
+Recommends:     svgpart
+Obsoletes:      kate5 < %{version}
+Provides:       kate5 = %{version}
+
+%description
+Kate is an advanced text editor by KDE.
+
+%package -n kwrite
+Summary:        KDE Text Editor
+Requires:       kate-plugins = %{version}
+Obsoletes:      kwrite5 < %{version}
+
+%description -n kwrite
+KWrite is a text editor by KDE.
+
+%package plugins
+Summary:        KDE Text Editor plugins
+Obsoletes:      kate5-plugins < %{version}
+Provides:       ktexteditorpreviewplugin = %{version}
+Obsoletes:      ktexteditorpreviewplugin < %{version}
+
+%description plugins
+Kate is an advanced text editor by KDE. This package contains
+plugins and data files for Kate and KWrite editors.
+
+%lang_package
+
+%prep
+%autosetup -p1
+
+%build
+%cmake_kf6
+
+%kf6_build
+
+%install
+%kf6_install
+
+# Remove exotic icon sizes
+rm -r %{buildroot}%{_kf6_iconsdir}/hicolor/{150x150,310x310,44x44}
+
+%find_lang %{name} --with-man --with-html --all-name
+
+%ldconfig_scriptlets
+
+%files
+%doc README.md
+%doc %lang(en) %{_kf6_htmldir}/en/kate/
+%doc %lang(en) %{_kf6_htmldir}/en/katepart/
+%doc %{_kf6_mandir}/man1/kate.1%{?ext_man}
+%{_kf6_applicationsdir}/org.kde.kate.desktop
+%{_kf6_appstreamdir}/org.kde.kate.appdata.xml
+%{_kf6_bindir}/kate
+%{_kf6_iconsdir}/hicolor/*/apps/kate.*
+%{_kf6_libdir}/libkateprivate.so.*
+
+%files -n kwrite
+%doc README.md
+%{_kf6_applicationsdir}/org.kde.kwrite.desktop
+%{_kf6_appstreamdir}/org.kde.kwrite.appdata.xml
+%{_kf6_bindir}/kwrite
+%{_kf6_iconsdir}/hicolor/*/apps/kwrite.*
+
+%files plugins
+%{_kf6_plugindir}/kf6/ktexteditor/
+%{_kf6_sharedir}/kateproject/
+%{_kf6_sharedir}/katexmltools/
+
+%files lang -f %{name}.lang
+%exclude %{_kf6_htmldir}/en/kate/
+%exclude %{_kf6_htmldir}/en/katepart/
+
+%changelog