1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132 1133 1134 1135 1136 1137 1138 1139 1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 1150 1151 1152 1153 1154 1155 1156 1157 1158 1159 1160 1161 1162 1163 1164 1165 1166 1167 1168 1169 1170 1171 1172 1173 1174 1175 1176 1177 1178 1179 1180 1181 1182 1183 1184 1185 1186 1187 1188 1189 1190 1191 1192 1193 1194 1195 1196 1197 1198 1199 1200 1201 1202 1203 1204 1205 1206 1207 1208 1209 1210 1211 1212 1213 1214 1215 1216 1217 1218 1219 1220 1221 1222 1223 1224 1225 1226 1227 1228 1229 1230 1231 1232 1233 1234 1235 1236 1237 1238 1239 1240 1241 1242 1243 1244 1245 1246 1247 1248 1249 1250 1251 1252 1253 1254 1255 1256 1257
|
kate (4:20.12.2-1) unstable; urgency=medium
* New upstream release (20.12.2): only translation updates.
* Update uploaders:
- Remove Modestas and Max from uploaders, thanks for your work.
- Add myself to uploaders.
-- Norbert Preining <norbert@preining.info> Fri, 12 Feb 2021 19:49:39 +0900
kate (4:20.12.0-1) unstable; urgency=medium
* Team upload.
* New upstream release (20.12.0).
* Update build-deps and deps with the info from cmake
* Bump Standards-Version to 4.5.1, no changes required.
-- Norbert Preining <norbert@preining.info> Sun, 13 Dec 2020 00:25:10 +0900
kate (4:20.08.3-1) unstable; urgency=medium
* Team upload.
* Use more concise URL for upstream Bug-Database metadata.
* New upstream release (20.08.3).
-- Aurélien COUDERC <coucouf@debian.org> Mon, 09 Nov 2020 11:24:55 +0100
kate (4:20.08.2-1) unstable; urgency=medium
* Team upload.
[ Aurélien COUDERC ]
* New upstream release (20.08.2).
* Drop overrides for postinst-must-call-ldconfig removed from lintian.
* Update the build dependencies according to the upstream build system:
- add kuserfeedback-dev
* Review copyright information.
* Remove l10n migration rules, not required anymore after 2 stable releases.
* Remove older breaks / replaces against KDE4 packages.
* Build with hardening=+all build hardening flag.
* Borrow minimal upstream signing key from k3b.
* Refresh upstream metadata.
-- Aurélien COUDERC <coucouf@debian.org> Tue, 27 Oct 2020 15:15:41 +0100
kate (4:20.08.0-1) unstable; urgency=medium
* Team upload.
* New upstream release.
* Bump the debhelper compatibility to 13:
- switch the debhelper-compat build dependency to 13
- stop passing --fail-missing to dh_missing, as it is the default
* Update lintian overrides.
-- Pino Toscano <pino@debian.org> Thu, 13 Aug 2020 22:56:16 +0200
kate (4:20.04.1-1) unstable; urgency=medium
* Team upload.
* New upstream release:
- properly start the ctags process (Closes: #959957)
* Add Rules-Requires-Root: no.
-- Pino Toscano <pino@debian.org> Sat, 06 Jun 2020 21:31:35 +0200
kate (4:20.04.0-1) unstable; urgency=medium
* Team upload.
* New upstream release.
* Update the build dependencies according to the upstream build system:
- add libkf5syntaxhighlighting-dev
* Switch from dhmk to the dh sequencer:
- invoke the dh sequencer using the kf5 addon
- explicitly link in as-needed mode
- call the right debhelper command instead of $(overridden_command)
- manually force the generation of the substvars for the kde-l10n breaks
* Bump the debhelper compatibility to 12:
- switch the debhelper build dependency to debhelper-compat 12
- remove debian/compat
- switch from dh_install to dh_missing for --fail-missing
* Update install files.
* Bump Standards-Version to 4.5.0, no changes required.
* Use https for the Homepage.
-- Pino Toscano <pino@debian.org> Sat, 25 Apr 2020 13:54:01 +0200
kate (4:19.12.0-1) unstable; urgency=medium
* Team upload.
* New upstream release:
- the LSP plugin is enabled by default (Closes: #941255)
* Update watch file to the new release-service location.
* Update the build dependencies according to the upstream build system:
- bump cmake to 3.1
- bump Qt to 5.10.0
- bump libkf5dbusaddons-dev to the same version of other KF packages
* Update install files.
-- Pino Toscano <pino@debian.org> Sun, 22 Dec 2019 17:08:26 +0100
kate (4:19.08.2-1) unstable; urgency=medium
* Team upload.
* New upstream release.
* Bump Standards-Version to 4.4.1, no changes required.
* Add the configuration for the CI on salsa.
-- Pino Toscano <pino@debian.org> Sun, 13 Oct 2019 11:53:48 +0200
kate (4:19.08.1-1) unstable; urgency=medium
* Team upload.
* New upstream release.
* Update the build dependencies according to the upstream build system:
- bump all the KF5 packages to 5.40.0
- explicitly add gettext, and libkf5service-dev
* Drop the migration from kate-dbg, no more needed after two Debian stable
releases.
* Pass -DBUILD_TESTING=OFF to cmake to disable the build of tests, as they
are not run at build time anyway.
* Drop the 'testsuite' autopkgtest, as it does not test the installed
packages.
* Bump Standards-Version to 4.4.0, no changes required.
* Update install files.
-- Pino Toscano <pino@debian.org> Thu, 26 Sep 2019 08:50:28 +0200
kate (4:18.08.0-1) unstable; urgency=medium
* Team upload.
* New upstream release.
* Bump Standards-Version to 4.2.1, no changes required.
-- Pino Toscano <pino@debian.org> Wed, 05 Sep 2018 07:22:28 +0200
kate (4:18.04.0-1) unstable; urgency=medium
* Team upload.
* New upstream release.
* Remove the undeed qtscript5-dev build dependency.
* Switch Vcs-* fields to salsa.debian.org.
* Bump the debhelper compatibility to 11:
- bump the debhelper build dependency to 11~
- bump compat to 11
* Bump Standards-Version to 4.1.4, no changes required.
* Update install files.
* Use https for Format in copyright.
-- Pino Toscano <pino@debian.org> Sun, 22 Apr 2018 09:44:51 +0200
kate (4:17.08.3-3) unstable; urgency=medium
* Team upload.
* Bump Standards-Version to 4.1.2, no changes required.
* Switch the transitional plasma-framework-dev build dependency with
libkf5plasma-dev.
* Ship also the translated man pages of kate.
* Ship the desktop file to enable the Plasma applet katesessions.
* Do not pass -DPYTHON_LIBRARY=etc anymore to cmake, since it is not used.
* Remove unused library stuff from debian/rules.
* Add the "allow-stderr" restriction to the "testsuite" autopkgtest, since
the tools that run produce output also on stderr.
* Move the translations and icons of kwrite from kate5-data to kwrite
- add proper breaks/replaces
* Move the kate documentation from kate to kate5-data
- add proper breaks/replaces
* Remove debian/not-installed, no more useful now.
* Remove the kde-l10n breaks/replaces from kate, since there is no translated
material there.
* Invoke dh_install with --fail-missing, so there is no risk of forgetting
files.
* Switch from the libgit2 library to the external git executable for the
project plugin, since the code using libgit2 was deemed flaky, and removed
in newer upstream versions
- remove the libgit2-dev build dependency
- add the git suggest in kate
* Add more suggests for tools optionally used in kate: subversion, mercurial,
darcs, and exuberant-ctags
-- Pino Toscano <pino@debian.org> Sun, 10 Dec 2017 10:52:12 +0100
kate (4:17.08.3-2) unstable; urgency=medium
* Team upload.
* Adjust again l10npkgs_firstversion_ok to the fixed version of kde-
l10n. (Closes: #883102)
-- Pino Toscano <pino@debian.org> Sat, 02 Dec 2017 07:51:36 +0100
kate (4:17.08.3-1) unstable; urgency=medium
* Team upload.
* Upload to unstable. (Closes: #880173)
[ Pino Toscano ]
* New upstream release.
* Adjust l10npkgs_firstversion_ok to the version where kde-l10n will
drop translations.
* Bump Standards-Version to 4.1.1, no changes required.
* Simplify watch file, and switch it to https.
* Switch the transitional kdoctools-dev build dependency to
libkf5doctools-dev.
* Remove unused build dependencies: kio-dev, libkf5notifications-dev, and
libkf5service-dev.
* Update lintian overrides.
* Drop rules to remove files from debian/tmp, since the references files do
not exist anymore in this source.
* Update the relationships for spell checking:
- recommend sonnet-plugins (Closes: #880800)
- drop the aspell | ispell | hspell suggest
-- Pino Toscano <pino@debian.org> Sun, 26 Nov 2017 13:52:39 +0100
kate (4:17.08.1-1) experimental; urgency=medium
* New upstream release (17.08.1)
* Bump Standards-Version to 4.1.0.
* Update upstream metadata
* Update build-deps and deps with the info from cmake
* Add breaks/replaces against the kde-l10n packages
* Release to experimental
-- Maximiliano Curia <maxy@debian.org> Tue, 12 Sep 2017 15:35:53 +0200
kate (4:17.08.1-0neon) xenial; urgency=medium
* New release
-- Neon CI <neon@kde.org> Tue, 05 Sep 2017 13:58:38 +0000
kate (4:17.08.0-0neon) xenial; urgency=medium
* New release
-- Neon CI <neon@kde.org> Thu, 17 Aug 2017 09:32:42 +0000
kate (4:17.04.3-0neon) xenial; urgency=medium
* New release
-- Neon CI <neon@kde.org> Wed, 12 Jul 2017 10:18:34 +0000
kate (4:17.04.2-0neon) xenial; urgency=medium
* New release
-- Neon CI <neon@kde.org> Wed, 07 Jun 2017 12:20:26 +0000
kate (4:17.04.1-0neon) xenial; urgency=medium
* New release
-- Neon CI <neon@kde.org> Thu, 11 May 2017 18:12:37 +0000
kate (4:17.04.0-0neon) xenial; urgency=medium
* New release
-- Neon CI <neon@kde.org> Wed, 19 Apr 2017 13:02:58 +0000
kate (4:16.12.3-0neon) xenial; urgency=medium
* New release
-- Neon CI <neon@kde.org> Wed, 08 Mar 2017 13:46:54 +0000
kate (4:16.12.2-0neon) xenial; urgency=medium
* New release
-- Neon CI <neon@kde.org> Wed, 08 Feb 2017 16:57:07 +0000
kate (4:16.12.1-0neon) xenial; urgency=medium
* New release
-- Neon CI <neon@kde.org> Wed, 11 Jan 2017 13:15:48 +0000
kate (4:16.12.0-0neon) xenial; urgency=medium
* New release
-- Neon CI <neon@kde.org> Wed, 14 Dec 2016 16:24:32 +0000
kate (4:16.08.3-1) unstable; urgency=medium
* New upstream release (16.08.3)
-- Maximiliano Curia <maxy@debian.org> Wed, 23 Nov 2016 20:55:36 +0100
kate (4:16.08.3-0neon) xenial; urgency=medium
* New release
-- Neon CI <neon@kde.org> Mon, 21 Nov 2016 13:52:14 +0000
kate (4:16.08.2-1) unstable; urgency=medium
[ Maximiliano Curia ]
* New upstream release (16.08.2)
* Update install files
[ Automatic packaging ]
* Update build-deps and deps with the info from cmake
-- Maximiliano Curia <maxy@debian.org> Mon, 17 Oct 2016 23:13:09 +0200
kate (4:16.08.2-0neon) xenial; urgency=medium
* New release
-- Neon CI <neon@kde.org> Fri, 14 Oct 2016 13:39:16 +0000
kate (4:16.08.1-0neon) xenial; urgency=medium
* New release
-- Neon CI <neon@kde.org> Fri, 16 Sep 2016 13:05:39 +0000
kate (4:16.08.0-0neon) xenial; urgency=medium
* New release
-- Neon CI <neon@kde.org> Wed, 24 Aug 2016 15:16:34 +0000
kate (4:16.04.3-0neon) xenial; urgency=medium
* New release
-- Neon CI <neon@kde.org> Tue, 12 Jul 2016 11:39:03 +0000
kate (4:16.04.2-1) unstable; urgency=medium
* New upstream release.
-- Maximiliano Curia <maxy@debian.org> Thu, 23 Jun 2016 10:05:41 +0200
kate (4:16.04.2-0neon) xenial; urgency=medium
* New release
-- Neon CI <neon@kde.org> Wed, 15 Jun 2016 14:45:59 +0000
kate (4:16.04.1-1) unstable; urgency=medium
[ Automatic packaging ]
* Bump Standards-Version to 3.9.8
[ Maximiliano Curia ]
* New upstream release (15.12.2).
* Improve the testsuite script
* Replace the "Historical name" ddeb-migration by its "Modern, clearer" replacement dbgsym-migration.
* Add upstream metadata (DEP-12)
* debian/control: Update Vcs-Browser and Vcs-Git fields
-- Maximiliano Curia <maxy@debian.org> Sat, 28 May 2016 01:31:49 +0200
kate (4:16.04.1-0neon) xenial; urgency=medium
* New release
-- Neon CI <neon@kde.org> Fri, 20 May 2016 14:20:45 +0000
kate (4:16.04.1-0neon) xenial; urgency=medium
* New release
-- Neon CI <neon@kde.org> Wed, 18 May 2016 18:12:36 +0200
kate (4:16.04.0-0neon) xenial; urgency=medium
* New release
-- Neon CI <neon@kde.org> Mon, 09 May 2016 14:26:43 +0000
kate (4:15.12.1-1) experimental; urgency=medium
* New upstream release (15.12.0).
* Update install files.
* New upstream release (15.12.1).
-- Maximiliano Curia <maxy@debian.org> Mon, 01 Feb 2016 10:22:13 +0100
kate (4:15.08.3-1) unstable; urgency=medium
* New upstream release (15.08.3).
-- Maximiliano Curia <maxy@debian.org> Wed, 02 Dec 2015 12:38:32 +0100
kate (4:15.08.2-1) unstable; urgency=medium
* Add copyright information about the current license of the linkable
code. (Closes: #799431)
* New upstream release (15.08.2).
-- Maximiliano Curia <maxy@debian.org> Fri, 16 Oct 2015 08:06:43 +0200
kate (4:15.08.1-1) unstable; urgency=medium
* Drop fake katepart dependency, it wasnt really needed. (Closes:
799294) Thanks to Ralf Jung
* New upstream release (15.08.1).
-- Maximiliano Curia <maxy@debian.org> Sat, 19 Sep 2015 02:44:53 +0200
kate (4:15.08.0-1) unstable; urgency=medium
* New upstream release (15.08.0).
* Add fake dependency for the kde4 katepapart package.
-- Maximiliano Curia <maxy@debian.org> Tue, 08 Sep 2015 17:18:25 +0200
kate (4:15.08.0-0ubuntu1) wily; urgency=medium
* new upstream release
-- Clive Johnston <clivejo@aol.com> Wed, 26 Aug 2015 17:08:02 +0100
kate (4:15.07.90-0ubuntu1) wily; urgency=medium
* New upstream release
* Add missing QML dependencies
* new upstream beta release
-- Jonathan Riddell <jriddell@ubuntu.com> Tue, 18 Aug 2015 09:34:00 +0100
kate (4:15.04.3-1) experimental; urgency=medium
* New upstream release (15.04.0).
* Remove upstream applied patch: upstream_find-IconThemes.diff
* New upstream release (15.04.1).
* New upstream release (15.04.2).
* Update copyright information.
* New upstream release (15.04.3).
-- Maximiliano Curia <maxy@debian.org> Fri, 03 Jul 2015 16:07:50 +0200
kate (4:15.04.2-0ubuntu1) wily; urgency=medium
[ Felix Geyer ]
* Fix "KDEInit could not launch Kate" error when opening second file with Kate
in Dolphin. (LP: #1449029)
- Add upstream_Register_with_dbus_to_wake_up_KRun.patch
[ Scarlett Clark ]
* Fix merge conflict (changelog version discrepancy)
* manual merge.
* manual merge backports.
* Remove upstream_find-IconThemes.diff from series file.
The patch does not exist in directory.
* and remove upstream_Register_with_dbus_to_wake_up_KRun.patch
it has already been applied to this backport.
[ Jonathan Riddell ]
* New upstream release
-- Jonathan Riddell <jriddell@ubuntu.com> Tue, 09 Jun 2015 18:37:40 +0200
kate (4:14.12.3-1) experimental; urgency=medium
* New upstream release (14.12.3).
-- Maximiliano Curia <maxy@debian.org> Sun, 29 Mar 2015 15:12:54 +0200
kate (4:14.12.3-0ubuntu2) vivid; urgency=medium
* Add upstream_find-IconThemes.diff to fix compile
-- Jonathan Riddell <jriddell@ubuntu.com> Wed, 15 Apr 2015 16:16:22 +0200
kate (4:14.12.3-0ubuntu1) vivid; urgency=medium
[ Scarlett Clark ]
* New upstream release
[ Jonathan Riddell ]
* Don't install applet file, broken in 14.12
-- Jonathan Riddell <jriddell@ubuntu.com> Fri, 13 Mar 2015 13:18:13 -0700
kate (4:14.12.2-1) experimental; urgency=medium
* New upstream release (14.12.2).
* Update copyright information.
-- Maximiliano Curia <maxy@debian.org> Mon, 23 Feb 2015 22:39:13 +0100
kate (4:14.12.2-0ubuntu1) vivid; urgency=medium
* New upstream release
-- Scarlett Clark <sgclark@kubuntu.org> Tue, 10 Feb 2015 07:12:54 -0800
kate (4:14.12.0-0ubuntu3) vivid; urgency=medium
* add missing epoch to breaks/replaces
-- Jonathan Riddell <jriddell@ubuntu.com> Mon, 19 Jan 2015 18:22:56 +0100
kate (4:14.12.0-0ubuntu2) vivid; urgency=medium
* Update testsuite.xsession to use kdeinit5
-- Jonathan Riddell <jriddell@ubuntu.com> Wed, 17 Dec 2014 12:20:37 +0100
kate (4:14.12.0-0ubuntu1) vivid; urgency=medium
* New upstream release
-- Scarlett Clark <sgclark@kubuntu.org> Mon, 15 Dec 2014 15:38:19 +0100
kate (4:14.11.97-0ubuntu1) vivid; urgency=medium
* New upstream release
* Update build-deps and use pkg-kde v3 for Qt 5 build
* kate-data now kate5-data for co-installability
-- Jonathan Riddell <jriddell@ubuntu.com> Thu, 04 Dec 2014 16:49:41 +0100
kate (4:4.14.3-0ubuntu3) vivid; urgency=medium
* Fix autopkgtest run by making sure DEB_HOST_MULTIARCH is defined in the
testsuite
-- Philip Muškovac <yofel@kubuntu.org> Thu, 27 Nov 2014 21:12:08 +0100
kate (4:4.14.3-0ubuntu2) vivid; urgency=medium
* kate-data breaks/replaces katepart << 4:4.14.3-0ubuntu2~ (LP: #1395466)
* Remove files from kate that conflict with kate-data
* kate-data breaks/replaces kate << 4:4.14.3-0ubuntu2~
-- Philip Muškovac <yofel@kubuntu.org> Tue, 25 Nov 2014 19:42:45 +0100
kate (4:4.14.3-0ubuntu1) vivid; urgency=medium
* Merge with debian unstable, remaining changes:
- add appropriate breaks/replaces
- build pate:
+ build-depend on python
+ point dh_auto_configure to the correct libpython location
* Update Vcs urls for the new repository location.
* Bump Standards-Version to 3.9.6, no changes needed.
* Update the maintainer
* New upstream bugfix release
-- Philip Muškovac <yofel@kubuntu.org> Sat, 22 Nov 2014 21:07:44 +0100
kate (4:4.14.2-0ubuntu1) vivid; urgency=medium
* New upstream release
-- Scarlett Clark <sgclark@kubuntu.org> Fri, 10 Oct 2014 04:04:06 -0700
kate (4:4.14.1-0ubuntu1) utopic; urgency=medium
* New upstream release
* Add missing file to katepart.
* wrap-and-sort
-- Scarlett Clark <scarlett@scarlettgatelyclark.com> Mon, 22 Sep 2014 16:32:18 +0200
kate (4:4.14.0-0ubuntu1) utopic; urgency=medium
* New upstream release
-- Jonathan Riddell <jriddell@ubuntu.com> Wed, 20 Aug 2014 12:35:44 +0200
kate (4:4.13.97-0ubuntu2) utopic; urgency=medium
* Bump breaks/replaces for Kubuntu versions
-- Jonathan Riddell <jriddell@ubuntu.com> Fri, 08 Aug 2014 17:52:37 +0200
kate (4:4.13.97-0ubuntu1) utopic; urgency=medium
[ Scarlett Clark ]
* New upstream beta release RC
[ Jonathan Riddell ]
* Update kate-data install file
* Add hacky second build for pate build failure
-- Scarlett Clark <scarlett@scarlettgatelyclark.com> Fri, 01 Aug 2014 16:18:22 +0200
kate (4:4.13.95-0ubuntu1) utopic; urgency=medium
* New upstream beta release
-- Scarlett Clark <scarlett@scarlettgatelyclark.com> Wed, 30 Jul 2014 17:30:23 +0200
kate (4:4.13.90-0ubuntu1) utopic; urgency=medium
[ Scarlett Clark ]
* New upstream beta release
* Remove version from libkactivities-dev depend as it has not had
a new release.
* Commented out install file that is missing in i386, needs research.
[ Jonathan Riddell ]
* Add pate files back to kate-data.install
-- Scarlett Clark <scarlett@scarlettgatelyclark.com> Thu, 24 Jul 2014 17:38:34 +0200
kate (4:4.13.2-0ubuntu1) utopic; urgency=medium
* new upstream release
-- Jonathan Riddell <jriddell@ubuntu.com> Wed, 18 Jun 2014 11:44:15 +0100
kate (4:4.13.1-2ubuntu2) utopic; urgency=medium
* Fix install files
-- Rohan Garg <rohangarg@kubuntu.org> Thu, 05 Jun 2014 15:50:23 +0200
kate (4:4.13.1-2ubuntu1) utopic; urgency=medium
* Merge with Debian, remaining changes:
- Add appropriate Breaks/Replaces
-- Rohan Garg <rohangarg@kubuntu.org> Thu, 05 Jun 2014 13:22:43 +0200
kate (4:4.13.1-2) unstable; urgency=medium
* Team upload.
* Disable pate, since it introduces a build-dependency loop (see also
https://bugs.debian.org/729215#10).
* Do not really install (even if renamed) the go.xml syntax file, since
it is already provided by kate-syntax-go (see #628161).
* Remove the files we must not install for real, so this should help not
installing them accidentally again.
* Disable the build of tests, since they are not (and cannot be) run;
patch debian-disable-tests.diff.
-- Pino Toscano <pino@debian.org> Sat, 31 May 2014 16:26:09 +0200
kate (4:4.13.1-1) unstable; urgency=medium
* New upstream release.
* Add pate plugin, sync with kubuntu package.
* Update install files.
* New patch: sideeffects_in_asserts_are_evil.patch
* Add lintian-override to for the js_lint.py file.
-- Maximiliano Curia <maxy@debian.org> Mon, 26 May 2014 14:13:35 +0200
kate (4:4.13.0-0ubuntu1) trusty; urgency=medium
* New upstream KDE Software Compilation release
-- Jonathan Riddell <jriddell@ubuntu.com> Thu, 10 Apr 2014 21:40:02 +0100
kate (4:4.12.97-0ubuntu1) trusty; urgency=medium
* New upstream release candidate
-- Philip Muškovac <yofel@kubuntu.org> Wed, 02 Apr 2014 11:11:31 +0200
kate (4:4.12.95-0ubuntu1) trusty; urgency=medium
* New upstream beta release
-- Rohan Garg <rohangarg@kubuntu.org> Sun, 23 Mar 2014 11:58:21 +0100
kate (4:4.12.90-0ubuntu1) trusty; urgency=medium
[ Rohan Garg ]
* Update install files
[ Jonathan Riddell ]
* New upstream beta release
[ Philip Muškovac ]
* Override license-problem-json-evil for js_lint.py as the file only
references the evil file
-- Jonathan Riddell <jriddell@ubuntu.com> Wed, 19 Mar 2014 10:38:16 +0000
kate (4:4.12.4-1) unstable; urgency=medium
* New upstream release.
-- Maximiliano Curia <maxy@debian.org> Mon, 28 Apr 2014 12:23:45 +0200
kate (4:4.12.3-1) experimental; urgency=medium
* New upstream release.
-- Maximiliano Curia <maxy@debian.org> Tue, 04 Mar 2014 00:05:24 +0100
kate (4:4.12.3-0ubuntu1) trusty; urgency=medium
* New upstream bugfix release
-- Rohan Garg <rohangarg@kubuntu.org> Tue, 04 Mar 2014 20:31:12 +0100
kate (4:4.12.2-1) experimental; urgency=medium
* New upstream release.
* Bump kde4libs b-d version.
* Update install files.
* Bump kde-sc-dev-latest build dependency.
-- Maximiliano Curia <maxy@debian.org> Mon, 10 Feb 2014 11:31:28 +0100
kate (4:4.12.2-0ubuntu1) trusty; urgency=medium
* New upstream bugfix release
-- Rohan Garg <rohangarg@kubuntu.org> Tue, 04 Feb 2014 23:39:36 +0000
kate (4:4.12.1-0ubuntu1) trusty; urgency=low
* New upstream bugfix release
-- Rohan Garg <rohangarg@kubuntu.org> Thu, 16 Jan 2014 07:58:46 +0000
kate (4:4.12.0-0ubuntu1) trusty; urgency=low
* New upstream release
-- Jonathan Riddell <jriddell@ubuntu.com> Wed, 18 Dec 2013 16:28:23 +0000
kate (4:4.11.97-0ubuntu1) trusty; urgency=low
* New upstream RC release
-- Jonathan Riddell <jriddell@ubuntu.com> Fri, 29 Nov 2013 12:34:43 +0000
kate (4:4.11.95-0ubuntu1) trusty; urgency=low
* New upstream beta release
-- Rohan Garg <rohangarg@kubuntu.org> Mon, 25 Nov 2013 17:46:09 +0100
kate (4:4.11.80-0ubuntu1) trusty; urgency=low
[ Rohan Garg ]
* New upstream beta release
[ Ovidiu-Florin Bogdan ]
* Update the katepart install file, added the new files to it
-- Rohan Garg <rohangarg@kubuntu.org> Sat, 23 Nov 2013 17:28:40 +0100
kate (4:4.11.5-1) unstable; urgency=low
* New upstream release.
[ Sune Vuorela ]
* Update package descriptions. (Closes: #731894)
[ Maximiliano Curia ]
* Build the auto tests.
* Bump Standards-Version to 3.9.5, no changes needed.
* Add autopkgtests.
-- Maximiliano Curia <maxy@debian.org> Sun, 26 Jan 2014 12:25:42 +0100
kate (4:4.11.3-2) unstable; urgency=low
* Team upload.
* Do not install (again) the go.xml and nesc.xml highlighting files, as they
are already provided by other packages. (Closes: #726756)
-- Pino Toscano <pino@debian.org> Sat, 30 Nov 2013 15:13:26 +0100
kate (4:4.11.3-1) unstable; urgency=low
* New upstream release.
* Update build dependencies.
-- Maximiliano Curia <maxy@debian.org> Fri, 08 Nov 2013 14:07:22 +0100
kate (4:4.11.2a-0ubuntu1) saucy; urgency=low
[ Jonathan Riddell ]
* New upstream bugfix release
* Set PYTHON_LIBRARY manually, fixes LP: #1233215 Python plugins fail
to load
-- Rohan Garg <rohangarg@kubuntu.org> Mon, 30 Sep 2013 13:59:34 +0100
kate (4:4.11.2-2) experimental; urgency=low
* Bump kdelibs5-dev build dependency.
-- Maximiliano Curia <maxy@debian.org> Mon, 07 Oct 2013 15:02:41 +0200
kate (4:4.11.2-1) experimental; urgency=low
* New upstream release.
[ Maximiliano Curia ]
* Update install files.
[ Pino Toscano ]
* Fix section of libkatepartinterfaces4 to be "libs".
-- Maximiliano Curia <maxy@debian.org> Sat, 05 Oct 2013 13:20:22 +0200
kate (4:4.11.1-0ubuntu1) saucy; urgency=low
* New upstream bugfix release.
-- Howard Chan <smartboyhw@gmail.com> Fri, 06 Sep 2013 22:07:03 +0100
kate (4:4.11.0-0ubuntu1) saucy; urgency=low
[ Howard Chan ]
* New upstream release
[ Jonathan Riddell ]
* New upstream release
-- Jonathan Riddell <jriddell@ubuntu.com> Tue, 13 Aug 2013 23:59:54 +0100
kate (4:4.10.97-0ubuntu1) saucy; urgency=low
* New upstream RC 2 release
* New upstream RC 2 release
-- Jonathan Riddell <jriddell@ubuntu.com> Fri, 26 Jul 2013 19:07:46 +0100
kate (4:4.10.95-0ubuntu1) saucy; urgency=low
[ Rohan Garg ]
* New upstream RC release
[ Philip Muškovac ]
* Add new syntax files to kate-data
-- Rohan Garg <rohangarg@kubuntu.org> Fri, 19 Jul 2013 12:31:54 +0000
kate (4:4.10.90-0ubuntu1) saucy; urgency=low
* New upstream bet release
-- Michał Zając <quintasan@kubuntu.org> Fri, 28 Jun 2013 18:00:49 +0100
kate (4:4.10.80-0ubuntu2) saucy; urgency=low
* kate-data breaks/replaces kate << 4:4.10.80 for moved pate files
-- Philip Muškovac <yofel@kubuntu.org> Sat, 22 Jun 2013 15:51:54 +0200
kate (4:4.10.80-0ubuntu1) saucy; urgency=low
[ Rohan Garg ]
* New upstream release
- Update and sort install files
- Drop kubuntu_pate_find_python.diff, kubuntu_kate_initial_preference.patch,
kubuntu_find_python.diff from debian/patches , not required
[ Jonathan Riddell ]
* New upstream release
-- Jonathan Riddell <jriddell@ubuntu.com> Fri, 21 Jun 2013 00:48:29 +0100
kate (4:4.10.5-2) unstable; urgency=low
* Team upload.
* Drop the nesc.xml kate syntax highlighting, as nescc provides it already.
(Closes: #716942)
* Update lintian overrides.
-- Pino Toscano <pino@debian.org> Mon, 22 Jul 2013 10:12:45 +0200
kate (4:4.10.5-1) unstable; urgency=low
* New upstream release.
-- Maximiliano Curia <maxy@debian.org> Thu, 11 Jul 2013 23:05:44 +0200
kate (4:4.10.4-1) experimental; urgency=low
* New upstream release.
* Bump debhelper build-dep and compat to 9.
* Bump Standards-Version to 3.9.4.
* Update vcs fields.
* Add myself to uploaders.
-- Maximiliano Curia <maxy@debian.org> Fri, 14 Jun 2013 09:31:57 +0200
kate (4:4.10.4-0ubuntu1) saucy-proposed; urgency=low
* New upstream bugfix release
-- Rohan Garg <rohangarg@kubuntu.org> Thu, 06 Jun 2013 23:37:25 +0100
kate (4:4.10.3-0ubuntu1) saucy; urgency=low
* New upstream release
* Merge with Debian, remaining changes:
- Add patches kubuntu_find_python.diff,
kubuntu_kate_initial_preference.patch,
kubuntu_pate_find_python.diff
- build-dep on python and libqt4-opengl-dev and libqtwebkit-dev
- in debian/rules Move go.xml to go-lang.xml in rules and
kate-data.install to prevent clash with golang kate-syntax-go (LP:
#968734)
-- Jonathan Riddell <jriddell@ubuntu.com> Wed, 08 May 2013 16:08:44 +0000
kate (4:4.10.2-2) experimental; urgency=low
[ Pino Toscano ]
* Add the pkg-config build dependency.
[ Sune Vuorela ]
* Update uploaders.
-- Sune Vuorela <sune@debian.org> Mon, 29 Apr 2013 01:30:04 +0200
kate (4:4.10.2-1) experimental; urgency=low
* New upstream release.
[ José Manuel Santamaría Lema ]
* Bump kdelibs5-dev build dependency to version 4:4.10.
* Add build depends:
- libkactivities-dev
- libqjson-dev
* Update installed files.
* Add lintian override for hardening-no-fortify-functions.
* Merge 4:4.7.4-3 changelog entry into 4:4.8.3-1, because the former was
never uploaded to debian.
* In debian/rules, create an ${allLibraries} variable for kate-dbg instead of
kdepimlibs-dbg; it was a typo.
[ Josep Febrer ]
* Update installed files.
* Update not-installed files.
* Bump kde-sc-dev-latest build dependency to version 4:4.10.1.
* Update copyright file.
[ Sune Vuorela ]
* Add me to uploaders
-- Sune Vuorela <sune@debian.org> Wed, 03 Apr 2013 06:43:08 +0000
kate (4:4.10.2-0ubuntu1) raring; urgency=low
* New upstream bugfix release
-- Philip Muškovac <yofel@kubuntu.org> Sun, 31 Mar 2013 14:37:50 +0200
kate (4:4.10.1-0ubuntu1) raring-proposed; urgency=low
* New upstream bugfix release
* refresh kate-data.install
-- Philip Muškovac <yofel@kubuntu.org> Tue, 05 Mar 2013 15:14:47 +0000
kate (4:4.10.0-0ubuntu1) raring-proposed; urgency=low
* New upstream release
-- Rohan Garg <rohangarg@kubuntu.org> Wed, 06 Feb 2013 11:32:37 +0000
kate (4:4.9.98-0ubuntu1) raring-proposed; urgency=low
* New upstream release candidate
-- Jonathan Riddell <jriddell@ubuntu.com> Fri, 18 Jan 2013 14:58:53 +0000
kate (4:4.9.97-0ubuntu1~ubuntu13.04) raring; urgency=low
[ Philip Muškovac ]
* New upstream release candidate
[ Rohan Garg ]
* Add kubuntu_pate_find_python.diff
-- Philip Muškovac <yofel@kubuntu.org> Thu, 03 Jan 2013 22:25:27 +0100
kate (4:4.9.95-0ubuntu1) raring; urgency=low
* New upstream RC release
* Add build-dep on libpython2.7-dev
* Add kubuntu_multiarch_python.diff to work around multiarch python
-- Jonathan Riddell <jriddell@ubuntu.com> Tue, 18 Dec 2012 23:17:40 +0000
kate (4:4.9.90-0ubuntu1) raring-proposed; urgency=low
* New upstream beta release
* Remove fix_pate_includes.diff now upstream
* Remove kubuntu_kate_initial_preference.patch now upstream
* Update .install file
-- Jonathan Riddell <jriddell@ubuntu.com> Fri, 07 Dec 2012 17:37:41 +0000
kate (4:4.9.80-0ubuntu1) raring; urgency=low
[ Jonathan Riddell ]
* New upstream beta release
* Add build-dep on python-dev packages and add pate files to kate.install
[ Scott Kitterman ]
* Add libkactivities-dev, libqtwebkit-dev, and libqt4-opengl-dev to
build-depends
* Add debian/patches/fix_pate_includes.diff to add Qt webkit includes for
pate
* Update kate, kate-part, and kate-data install files for upstream additions
and deletions
-- Scott Kitterman <scott@kitterman.com> Wed, 21 Nov 2012 02:42:57 -0500
kate (4:4.9.3-0ubuntu1) raring; urgency=low
[ Philip Muškovac ]
* New upstream release (LP: #1074747)
[ Harald Sitter ]
* Restore kubuntu_kate_initial_preference.patch lost in the split from
kdesdk (LP: #1062086). It ensures that kate is chosen over other text
processing apps (namely libreoffice-writer) for the file types kate
is associated with (such as text/*)
-- Harald Sitter <apachelogger@ubuntu.com> Tue, 06 Nov 2012 22:23:17 +0100
kate (4:4.9.2-0ubuntu1) quantal-proposed; urgency=low
* New upstream bugfix release
-- Jonathan Riddell <jriddell@ubuntu.com> Tue, 02 Oct 2012 15:11:48 +0100
kate (4:4.9.1-0ubuntu1) quantal; urgency=low
[ Harald Sitter ]
* New upstream release
[ Philip Muškovac ]
* Change sonames from 4.9.0 to 4.9.*
-- Harald Sitter <apachelogger@ubuntu.com> Mon, 10 Sep 2012 18:17:04 +0530
kate (4:4.9.0-0ubuntu2) quantal; urgency=low
* Build-dep on kdelibs 4.9.0a, adjust .install files to new library
version no
-- Jonathan Riddell <jriddell@ubuntu.com> Thu, 02 Aug 2012 11:57:47 +0100
kate (4:4.9.0-0ubuntu1) quantal; urgency=low
* Use direct build-depends versions rather than kde-sc-dev-latest
* New upstream release
-- Jonathan Riddell <jriddell@ubuntu.com> Thu, 26 Jul 2012 17:02:37 +0100
kate (4:4.8.90-0ubuntu1) quantal; urgency=low
[ Felix Geyer ]
* New upstream beta release.
[ Jonathan Riddell ]
* Move go.xml to go-lang.xml in rules and kate-data.install to prevent
clash with golang kate-syntax-go (LP: #968734)
-- Felix Geyer <debfx@ubuntu.com> Mon, 11 Jun 2012 22:05:23 +0200
kate (4:4.8.80a-0ubuntu1) quantal; urgency=low
* New upstream beta release:
- Update .install files
* Merge with Debian Qt/KDE Git, remaining changes:
- Drop kate-dev package
-- Jonathan Thomas <echidnaman@kubuntu.org> Fri, 25 May 2012 19:46:22 -0400
kate (4:4.8.4-1) unstable; urgency=low
* New upstream version.
* Team upload.
[ Eshat Cakar ]
* Add watch file.
* Bump kde-sc-dev-latest build dependency to version 4:4.8.4.
* Update installed files.
-- Modestas Vainius <modax@debian.org> Sun, 10 Jun 2012 15:25:16 +0300
kate (4:4.8.3-1) experimental; urgency=low
* New upstream release.
* Team upload.
[ Pino Toscano ]
* Drop README.Debian, wrongly copied from kde4libs.
[ Eshat Cakar ]
* Update installed files.
* Update not-installed files.
* Bump kdelibs5-dev build dependency to version 4:4.8.
* Bump kde-sc-dev-latest build dependency to version 4:4.8.3.
* Bump Standards-Version to 3.9.3, no changes needed.
[ Modestas Vainius ]
* Add myself to Uploaders.
* Drop dh_makeshlibs override: not needed as there are no symbol files.
* Override lintian "kate: package-name-doesnt-match-sonames".
* Enable strict shlibs for libraries.
* Get rid of all traces of kate-dev.
-- Modestas Vainius <modax@debian.org> Sun, 27 May 2012 17:13:18 +0300
kate (4:4.8.3-0ubuntu1) quantal; urgency=low
* New upstream release
-- Jonathan Kolberg <bulldog98@kubuntu.org> Mon, 30 Apr 2012 23:32:27 +0200
kate (4:4.8.2-0ubuntu1) precise; urgency=low
* New upstream release
-- Philip Muškovac <yofel@kubuntu.org> Fri, 30 Mar 2012 20:38:48 +0200
kate (4:4.8.3-0r1) raring; urgency=low
* New upstream release.
[ Eshat Cakar ]
* Update installed files.
* Update not-installed files.
* Bump kdelibs5-dev build dependency to version 4:4.8.
* Bump kde-sc-dev-latest build dependency to version 4:4.8.3.
* Bump Standards-Version to 3.9.3, no changes needed.
-- Eshat Cakar <info@eshat.de> Thu, 08 Mar 2012 18:29:52 +0100
kate (4:4.7.4-3) raring; urgency=low
[ Pino Toscano ]
* Drop README.Debian, wrongly copied from kde4libs.
-- Debian Qt/KDE Maintainers <debian-qt-kde@lists.debian.org> Thu, 08 Mar 2012 12:13:57 +0100
kate (4:4.8.1-0ubuntu1) precise; urgency=low
* New upstream release
-- Philip Muškovac <yofel@kubuntu.org> Wed, 07 Mar 2012 17:51:28 +0100
kate (4:4.7.4-2) unstable; urgency=low
* Team upload. Upload to unstable.
-- Ana Beatriz Guerrero Lopez <ana@debian.org> Tue, 06 Mar 2012 10:00:51 +0100
kate (4:4.8.0-0ubuntu1) precise; urgency=low
* New upstream release
-- Jonathan Riddell <jriddell@ubuntu.com> Thu, 19 Jan 2012 12:01:25 +0000
kate (4:4.7.97-0ubuntu1) precise; urgency=low
* New upstream RC release
-- Jonathan Riddell <jriddell@ubuntu.com> Wed, 04 Jan 2012 13:15:00 +0000
kate (4:4.7.95-0ubuntu1) precise; urgency=low
* New upstream release candidate
- update kate-data.install
-- Philip Muškovac <yofel@kubuntu.org> Sat, 24 Dec 2011 15:38:02 +0100
kate (4:4.7.90-0ubuntu2) precise; urgency=low
* Kill the kate-dev package. It doesn't have any reverse-dependencies so
we can't test the package.
* Remove the libkatepartinterfaces4 and libkateinterfaces4 symbol files.
-- Felix Geyer <debfx@ubuntu.com> Thu, 22 Dec 2011 14:19:07 +0100
kate (4:4.7.4-1) experimental; urgency=low
* New upstream release.
[ Pino Toscano ]
* kate-dbg:
- fix kdelibs-dbg -> kdelibs5-dbg typo (Closes: #652196)
- remove extra dependency on libqt4-dbg
-- Debian Qt/KDE Maintainers <debian-qt-kde@lists.debian.org> Sun, 18 Dec 2011 01:35:02 +0100
kate (4:4.7.90-0ubuntu1) precise; urgency=low
* New upstream beta release
-- Jonathan Riddell <jriddell@ubuntu.com> Wed, 14 Dec 2011 13:28:06 +0000
kate (4:4.7.3-0ubuntu1) precise; urgency=low
* New upstream release
* Merge with Debian packaging from Git, changes:
- reenable kate-dev (smokekde should use it)
- Add .symbols files
-- Jonathan Riddell <jriddell@ubuntu.com> Wed, 23 Nov 2011 14:02:22 +0000
kate (4:4.7.2-1) experimental; urgency=low
* Initial release. Start from the Ubuntu packaging, thanks!
-- Debian Qt/KDE Maintainers <debian-qt-kde@lists.debian.org> Sat, 03 Dec 2011 10:43:09 -0300
kate (4:4.7.2-0ubuntu1) oneiric-proposed; urgency=low
* New upstream release (LP: #872506)
-- Philip Muškovac <yofel@kubuntu.org> Thu, 13 Oct 2011 13:56:40 +0200
kate (4:4.7.1-0ubuntu2) oneiric; urgency=low
* No-change rebuild so translations aren't stripped from .desktop
files anymore.
-- Felix Geyer <debfx-pkg@fobos.de> Thu, 15 Sep 2011 23:13:18 +0200
kate (4:4.7.1-0ubuntu1) oneiric; urgency=low
* New upstream release
- update libkatepartinterfaces4.symbols
-- Jonathan Kolberg <bulldog98@kubuntu-de.org> Wed, 07 Sep 2011 18:33:38 +0200
kate (4:4.7.0-0ubuntu1) oneiric; urgency=low
[ Philip Muškovac ]
* New upstream release
- update libkatepartinterfaces4.symbols
* move katepart.desktop from kate to katepart
-- Philip Muškovac <yofel@kubuntu.org> Sat, 23 Jul 2011 02:50:33 +0200
kate (4:4.6.90+repack-0ubuntu1) oneiric; urgency=low
[ Rohan Garg ]
* Initial release
[ Felix Geyer ]
* Include copy of the BSD license rather than refering to the deprecated
/usr/share/common-licenses/BSD.
* Add katepart package which contains the KPart and ktexteditor plugins.
* Repackage upstream tarball:
- Add COPYING.DOC and COPYING.GPL2
- Drop part/syntax/data/cmake-gen.sh,
part/syntax/data/find-trivial-regexpr.sh,
part/syntax/data/list-keywords-ldif.sh and part/tests/hl/highlight.sh
because of unclear licensing.
-- Felix Geyer <debfx-pkg@fobos.de> Wed, 20 Jul 2011 19:56:03 +0200
|