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
|
ktorrent (5.1.1-1) unstable; urgency=medium
* Team upload.
* New upstream release:
- fixes build with Qt >= 5.11 (Closes: #907328)
* Update the patches:
- upstream_QTimer-may-not-be-an-incomplete-type-as-it-is-used-a.patch:
drop, backported from upstream
* Remove the libkf5service-dev build dependency, no more needed.
* Update Vcs-* fields.
* Bump Standards-Version to 4.2.1, no changes required.
-- Pino Toscano <pino@debian.org> Tue, 04 Sep 2018 07:31:46 +0200
ktorrent (5.1.0-3) unstable; urgency=medium
* Team upload.
* Backport the upstream commit 672c5076de7e3a526d9bdbb484a69e9386bc49f8 to
include <QTimer> where needed; patch
upstream_QTimer-may-not-be-an-incomplete-type-as-it-is-used-a.patch.
(Closes: #897113)
* Switch Vcs-* fields to salsa.debian.org.
* Bump the debhelper compatibility to 11:
- bump the debhelper build dependency to 11~
- bump compat to 11
- remove --parallel for dh, as now done by default
* Switch from dh_install to dh_missing for --fail-missing.
* Remove trailing whitespaces in changelog.
* Bump Standards-Version to 4.1.4, no changes required.
* Switch watch file to https.
-- Pino Toscano <pino@debian.org> Sat, 28 Apr 2018 18:08:38 +0200
ktorrent (5.1.0-2) unstable; urgency=medium
* Team upload.
* Upload to unstable.
-- Pino Toscano <pino@debian.org> Tue, 05 Sep 2017 21:06:30 +0200
ktorrent (5.1.0-1) experimental; urgency=medium
* Team upload.
* New upstream release: (Closes: #821180)
- the plugin system of Frameworks does not use sycoca anymore
(Closes: #504271)
- fixes a download order bug in queue (Closes: #763902)
- the ipfilter plugin updates correctly from compressed files
(Closes: #767218) (LP: #1207589)
- switches from Qt4 (using QtWebKit) to Frameworks (Closes: #784487)
- the switch to KF5 makes the scripting plugin work again, as krosspython
was already switched to KF5 (Closes: #832547)
- the search line edit is reset when closing it (Closes: #859250)
* Update the build dependencies following the port to Frameworks:
- remove libqt4-dev, kdelibs5-dev, libphonon-dev, kdepimlibs5-dev, and
libqtwebkit-dev
- add extra-cmake-modules, qtbase5-dev, qtscript5-dev, libphonon4qt5-dev,
libphonon4qt5experimental-dev, libkf5archive-dev, libkf5completion-dev,
libkf5config-dev, libkf5configwidgets-dev, libkf5coreaddons-dev,
libkf5crash-dev, libkf5dbusaddons-dev, libkf5dnssd-dev,
libkf5doctools-dev, libkf5i18n-dev, libkf5iconthemes-dev, libkf5kio-dev,
libkf5itemviews-dev, libkf5notifications-dev, libkf5notifyconfig-dev,
libkf5kcmutils-dev, libkf5parts-dev, libkf5plotting-dev,
libkf5service-dev, libkf5solid-dev, libkf5textwidgets-dev,
libkf5widgetsaddons-dev, libkf5windowsystem-dev, libkf5xmlgui-dev,
libkf5webkit-dev, kross-dev, and libkf5syndication-dev
* Update the patches:
- dont_link_with_kutils.patch: drop, obsolete
- upstream_Properly-support-x-scheme-handler-magnet-mimetype-an.patch:
drop, backported from upstream
- upstream_webinterface-rename-major-minor-to-major_version-min.patch:
drop, backported from upstream
* Use the right dh addon:
- switch from kde to kf5 dh addon
- bump the pkg-kde-tools build dependency to >= 0.15.16
* Bump the libktorrent-dev build dependency to >= 2.1.
* Update install files.
* Update Vcs-Browser field.
* Switch Homepage away from the dead ktorrent.org. (Closes: #837216)
* Call dh_install with --fail-missing, so nothing is accidentally left
uninstalled.
* Update lintian overrides.
* Remove obsolete not-installed file.
* Suggest geoip-database, even if libgeoip1 already recommends it.
(Closes: #778813)
* Update the flags for cmake:
- drop -DCMAKE_USE_RELATIVE_PATHS=ON, obsolete since cmake 3.2
- switch -DKDE4_BUILD_TESTS=false to -DBUILD_TESTING=OFF, which is what
ECM provides
* Remove the libx11-dev build dependency, no more needed.
* Drop all the pre-Jessie replaces/breaks.
* Bump the cmake build dependency to >= 2.8.12.
* Bump Standards-Version to 4.1.0, no changes required.
-- Pino Toscano <pino@debian.org> Fri, 01 Sep 2017 23:22:02 +0200
ktorrent (4.3.1-5) unstable; urgency=medium
* Team upload.
* Remove ktorrent-dbg in favour of the -dbgsym packages.
* Bump Standards-Version to 3.9.8, no changes required.
* Update watch file.
-- Pino Toscano <pino@debian.org> Tue, 07 Jun 2016 16:47:22 +0200
ktorrent (4.3.1-4) unstable; urgency=medium
* Team upload.
* Remove obsolete and unused installgen file.
* Update Vcs-* fields.
* Drop menu file and its pixmap, since ktorrent already provides a .desktop
file.
* Remove the README.Debian file, since all the information it contains are
long obsolete.
* Restore the krosspython suggest in ktorrent, removed in 4.3.1-3.
* Backport upstream commit e22c887b55ec5e83db959c3b98d448947c886cc0 to fix
build with GCC 6; patch
upstream_webinterface-rename-major-minor-to-major_version-min.patch.
(Closes: #811942)
* Link in as-needed mode.
* Remove manual CPPFLAGS handling, no more needed in debhelper compat 9.
* Remove extra libsoprano-dev build dependency, which was added as workaround
for a bug in kdelibs5-dev.
* Replace kubuntu_magnet-mimetype.diff with part of the upstream commit
f090d11e8837d944dedb40f873713abe4e15d4b4; patch
upstream_Properly-support-x-scheme-handler-magnet-mimetype-an.patch.
-- Pino Toscano <pino@debian.org> Sun, 14 Feb 2016 17:34:29 +0100
ktorrent (4.3.1-3) unstable; urgency=medium
* Team upload.
[ Jonathan Riddell ]
* Remove build-dep on kde-workspace, soon to be removed from the archive
* Remove shutdown plugin from .install file which required kde-workspace
* Add kubuntu_magnet-mimetype.diff to open magnet links
* Remove obsolete build-dep on nepomuk-core-dev
[ Scott Kitterman ]
* Remove plasma-widget-ktorrent package as it is not compatible with
Plasma 5
* Remove obsolete ktorrent suggests
* Remove ancient build-conflicts
* Backport Ubuntu changes to Debian
* Add build-depends on libsoprano-dev
* Bump standards version to 3.9.6 without further change
-- Scott Kitterman <scott@kitterman.com> Mon, 31 Aug 2015 12:48:22 -0400
ktorrent (4.3.1-2) unstable; urgency=low
* Do not build tests like before KDE 4.10. Fixes FTBFS (Closes: #722628)
* Do not link with deprecated kutils library. (Closes: #717010)
Patch: dont_link_with_kutils.patch
* Build with hardening flags. (Closes: #663524)
* Bump Standards-Version to 3.9.5: no further changes needed.
* Update Vcs URLs to canonical ones.
* Upload to unstable. (Closes: #721049)
* Disable KIO Magnet. It is considered obsolete (and might be buggy).
* Require nepomuk-core-dev for KDE 4.9 or above (requirement of
kdepimlibs).
-- Modestas Vainius <modax@debian.org> Tue, 05 Nov 2013 21:27:06 +0200
ktorrent (4.3.1-1) experimental; urgency=low
* New upstream release.
* Bump dependency on libktorrent to 1.3.1.
-- Modestas Vainius <modax@debian.org> Sun, 27 Jan 2013 11:51:28 +0200
ktorrent (4.3.0-1) experimental; urgency=low
* New upstream release.
* Require libktorrent 1.3.0 for building.
* Require Qt 4.7 and KDE Platform 4.7 for building.
* Bump Standards-Version to 3.9.4: no changes needed.
-- Modestas Vainius <modax@debian.org> Sun, 30 Sep 2012 01:03:59 +0300
ktorrent (4.2.1-1) unstable; urgency=low
* New upstream release.
* Require libktorrent 1.2.1 for building.
* Drop unused override menu-icon-missing.
-- Modestas Vainius <modax@debian.org> Thu, 21 Jun 2012 22:11:37 +0300
ktorrent (4.2.0-1) unstable; urgency=low
* New upstream release.
* Bump Standards-Version to 3.9.3: no changes needed.
* Require libktorrent 1.2.0 to build.
* Build depend on debhelper 9 as lintian insists.
* Enable kio-magnet (pass -DENABLE_KIO_MAGNET=1 to cmake).
-- Modestas Vainius <modax@debian.org> Sat, 10 Mar 2012 22:55:41 +0200
ktorrent (4.1.3-1) unstable; urgency=low
* New upstream release.
* Bump debhelper compat level to 9 and require debhelper 8.9.0 in order to
gain transparent support for dpkg-buildflags in dh/dh_auto_*.
* Reorder dh options in compat=8 compatible way.
-- Modestas Vainius <modax@debian.org> Tue, 06 Dec 2011 00:25:09 +0200
ktorrent (4.1.2-1) unstable; urgency=low
* New upstream release.
* Add krosspython to ktorrent Suggests.
* Require libktorrent-dev 1.1.2.
-- Modestas Vainius <modax@debian.org> Thu, 18 Aug 2011 01:15:58 +0300
ktorrent (4.1.1-2) unstable; urgency=low
* Add kdebase-workspace-dev (<< 4:4.6) to Build-Conflicts temporary. Needed
for KDE SC 4.6 transition.
* Upload to unstable.
-- Modestas Vainius <modax@debian.org> Sat, 28 May 2011 01:49:14 +0300
ktorrent (4.1.1-1) experimental; urgency=low
* New upstream release.
* Require libktorrent-dev 1.1.1.
* Bump Standards-Version to 3.9.2: no changes needed.
* Correct menu-icon-missing override.
-- Modestas Vainius <modax@debian.org> Tue, 03 May 2011 01:25:00 +0300
ktorrent (4.1.0-1) experimental; urgency=low
* New upstream release.
* Require libktorrent-dev 1.1.0.
* Drop upstream_kde4.4_compat.diff patch, merged upstream.
* Build depend on libqtwebkit-dev | libqt4-dev (<< 4:4.7.0).
-- Modestas Vainius <modax@debian.org> Wed, 23 Mar 2011 02:24:35 +0200
ktorrent (4.1~rc1-1) experimental; urgency=low
* New upstream release.
* Require libktorrent 1.1~rc1.
* Add upstream_kde4.4_compat.diff patch in order to restore compatibility
with KDE Devel Platform 4.4.
* Update install files.
-- Modestas Vainius <modax@debian.org> Sat, 19 Feb 2011 02:53:14 +0200
ktorrent (4.0.5-3) unstable; urgency=low
* Release to unstable.
-- Modestas Vainius <modax@debian.org> Tue, 01 Feb 2011 00:40:46 +0200
ktorrent (4.0.5-2) experimental; urgency=low
* Reupload because previous upload was screwed.
-- Modestas Vainius <modax@debian.org> Thu, 30 Dec 2010 12:32:26 +0200
ktorrent (4.0.5-1) experimental; urgency=low
* New upstream release.
* Require libktorrent 1.0.5.
-- Modestas Vainius <modax@debian.org> Thu, 30 Dec 2010 12:16:35 +0200
ktorrent (4.0.4-1) experimental; urgency=low
* New upstream release.
* Bump libktorrent-dev build dependency to 1.0.4.
-- Modestas Vainius <modax@debian.org> Wed, 20 Oct 2010 14:52:03 +0300
ktorrent (4.0.3-1) experimental; urgency=low
* New upstream release.
* Bump Standards-Version to 3.9.1: no changes needed.
* Require libktorrent 1.0.3 per upstream recommendation.
-- Modestas Vainius <modax@debian.org> Wed, 29 Sep 2010 00:40:16 +0300
ktorrent (4.0.2-1) unstable; urgency=low
* New upstream release.
* Bump libktorrent-dev build dependency to 1.0.2.
* Bump Standards-Version to 3.9.0: add Breaks next to Replaces where needed.
* No longer reference BSD from common-licenses in debian/copyright, replace
it with copyright/license blob.
* Fix indentation style in debian/copyright.
-- Modestas Vainius <modax@debian.org> Thu, 08 Jul 2010 23:31:43 +0300
ktorrent (4.0.1-1) unstable; urgency=low
* New upstream release:
- Make sure that there are no uncaught exceptions (Closes: #585803).
* Bump build dependency on libktorrent-dev to >= 1.0.1.
-- Modestas Vainius <modax@debian.org> Tue, 15 Jun 2010 01:38:47 +0300
ktorrent (4.0.0-1) unstable; urgency=low
* New upstream release:
- "Pause KTorrent" was renamed to avoid confusion (Closes: #536319);
- Statistics are updated dynamically in the system tray (Closes: #526775);
- Torrent state is updated even when it isn't started (Closes: #575878).
* Fix spelling error in ktorrent-data description (Closes: #557893).
* Add patch general/drop_excess_dependencies.diff - drop excess build
dependency requirements from CMakeLists.txt, adjust required versions of Qt
and KDE.
* Changes for KTorrent split:
- build depend on libktorrent-dev (>= 1.0.0);
- remove libgmp3-dev, libqca2-dev from build depends;
- drop libbtcore from ktorrent.install file;
- replace libboost-serialization-dev with libboost-dev.
* Bump Standards-Version to 3.8.4: no changes needed.
* Add libktorrent-l10n to ktorrent Depends.
* Add libktorrent-dbg to ktorrent-dbg Depends.
* Drop topgit support from debian/rules.
* Rewrite debian/README.source: no more topgit.
* Drop all patches. They have been applied upstream.
* Drop extra debian/copyright.* files. No longer used in the workflow.
-- Modestas Vainius <modax@debian.org> Fri, 28 May 2010 21:08:04 +0300
ktorrent (4.0~beta2-1) experimental; urgency=low
* New upstream release.
* Enable parallel building: pass --parallel option to dh.
* Merge changes from debian 3.3.{3,4} packages.
* Drop hunk 1 from the general/fix_target_link_libraries.diff patch - merged
upstream.
* Bump libqt4-dev build dependency to 4:4.6 - needed by plasmoid. As a
result, drop Build-Conflicts with libqt4-dev 4:4.5.2.
* Update install files.
* Do not use asterisks in debian/NEWS.
-- Modestas Vainius <modax@debian.org> Mon, 05 Apr 2010 17:36:52 +0300
ktorrent (4.0~beta1-1) experimental; urgency=low
* New upstream development release.
* DFSG offensive files removed upstream, using vanilla tarball from now on:
- drop prune-nonfree target from debian/rules;
- no longer pass -DWITH_BUILTIN_COUNTRY_FLAGS:BOOL=OFF to cmake.
* Update install files.
* Adapt general/fix_target_link_libraries.diff to upstream changes.
* Skip test suite.
-- Modestas Vainius <modax@debian.org> Mon, 28 Dec 2009 14:51:55 +0200
ktorrent (3.3.4+dfsg.1-1) unstable; urgency=low
* New upstream release (Closes: #568850).
-- Modestas Vainius <modax@debian.org> Wed, 10 Feb 2010 23:19:48 +0200
ktorrent (3.3.3+dfsg.1-1) unstable; urgency=low
* New upstream release (Closes: #565678).
* Update general/fix_target_link_libraries.diff patch.
-- Modestas Vainius <modax@debian.org> Mon, 18 Jan 2010 02:04:07 +0200
ktorrent (3.3.2+dfsg.1-1) unstable; urgency=low
* New upstream release.
* Sync ktorrent Debian menu icon with current upstream version.
* Remove DMUA field from debian/control. I'm a DD now.
* Use "KDE platform" in the ktorrent package description rather than "KDE 4
technology platform".
* Use my @debian.org address in the Uploaders field.
-- Modestas Vainius <modax@debian.org> Mon, 28 Dec 2009 13:56:00 +0200
ktorrent (3.3.1+dfsg.1-1) unstable; urgency=low
* New upstream release.
* Fix typo in ktorrent-data description (Closes: #557371).
* Refresh patch general/fix_target_link_libraries.
-- Modestas Vainius <modestas@vainius.eu> Tue, 24 Nov 2009 14:11:18 +0200
ktorrent (3.3+dfsg.1-1) unstable; urgency=low
* New upstream release.
* Fix debian/watch to properly name stable tarballs.
-- Modestas Vainius <modestas@vainius.eu> Sun, 08 Nov 2009 23:39:57 +0200
ktorrent (3.3~rc1+svn1043995+dfsg.1-1) experimental; urgency=low
* New upstream development snapshot (3.3rc1+svn1043995):
* Fixes a couple of crashes.
- Last Changed Author: guisson
- Last Changed Rev: 1043995
- Last Changed Date: 2009-11-02 22:00:03 +0200
- Translations from 3.3rc1 tarball.
-- Modestas Vainius <modestas@vainius.eu> Sat, 07 Nov 2009 01:30:38 +0200
ktorrent (3.3~rc1+svn1041897+dfsg.1-1) experimental; urgency=low
* New upstream development snapshot (3.3rc1+svn1041897):
* Fixes very high CPU usage with DHT.
- Last Changed Author: guisson
- Last Changed Rev: 1041897
- Last Changed Date: 2009-10-28 21:31:36 +0200
* Refresh patches.
* Switch to dpkg-source Format: 3.0 (quilt):
- set debian/source/format to "3.0 (quilt)";
- drop quilt from Build-Depends, no longer needed;
- do not use quilt dh addon anymore;
- adjust debian/README.source accordingly.
-- Modestas Vainius <modestas@vainius.eu> Wed, 28 Oct 2009 23:18:58 +0200
ktorrent (3.3~rc1+dfsg.1-1) experimental; urgency=low
* New upstream development release.
- sends proper "downloaded" data to tracker (Closes: #534576).
* Merge 3.2.3.1+dfsg.1-1, 3.2.4+dfsg.1-1 and 3.2.5+dfsg.1-1 packaging.
* Adapt general/fix_target_link_libraries patch to upstream changes.
-- Modestas Vainius <modestas@vainius.eu> Sun, 25 Oct 2009 17:11:37 +0200
ktorrent (3.3~beta1+dfsg.1-1) experimental; urgency=low
* New upstream development release.
* Merge 3.2.3+dfsg.1-1 packaging.
-- Modestas Vainius <modestas@vainius.eu> Tue, 11 Aug 2009 12:21:06 +0300
ktorrent (3.3~~svn975833-1) experimental; urgency=low
* New upstream development snapshot:
- Last Changed Author: guisson
- Last Changed Rev: 975833
- Last Changed Date: 2009-05-31 14:16:26 +0300
* Change ktorrent-dbg section to debug.
* Bump debhelper build depend to 7.0.50.
* Bump Standards-Version to 3.8.1 (no changes needed).
* Clean up prune-tarball: some files were removed upstream,
there is no need to rm them.
* Update ktorrent.install: add a shutdown plugin.
-- Modestas Vainius <modestas@vainius.eu> Mon, 01 Jun 2009 03:47:07 +0300
ktorrent (3.2.5+dfsg.1-1) unstable; urgency=low
* New upstream release.
* Build conflict with Qt 4.5.2 and drop patch
debian/qt_4.5.2-1_phonon_ftbfs_fix.diff. The bug is fixed in Qt 4:4.5.3
and later.
* Merge old 3.1.x changelog entries from lenny: 3.1.2+dfsg.1-1,
3.1.3+dfsg.1-1, 3.1.3+dfsg.2-1 and 3.1.4+dfsg.1-1.
-- Modestas Vainius <modestas@vainius.eu> Sun, 25 Oct 2009 16:15:03 +0200
ktorrent (3.2.4+dfsg.1-1) unstable; urgency=low
* New upstream release.
* Switch debian/rules to use kde dh addons. Update build dependencies
accordingly.
* Bump Standards-Version to 3.8.3, no changes needed.
* Fix syntax problems in debian/watch.
* Refresh patches.
* Add ${misc:Depends} to Depends fields.
* Add patch general/fix_target_link_libraries: do not link with excess
libraries.
-- Modestas Vainius <modestas@vainius.eu> Sun, 27 Sep 2009 17:27:52 +0300
ktorrent (3.2.3.1+dfsg.1-1) unstable; urgency=low
* New upstream patch release:
- fixes crash.
-- Modestas Vainius <modestas@vainius.eu> Thu, 13 Aug 2009 11:31:45 +0300
ktorrent (3.2.3+dfsg.1-1) unstable; urgency=low
* New upstream release.
* Make use of debhelper 7.3 cmake support:
- build depend on debhelper 7.3;
- build depend on pkg-kde-tools 0.4.11 (for debhelper/kde.mk);
- drop custom debian/debhelper snippets;
- adjust debian/rules accordingly.
* Drop quilt from build depends: unused at the moment.
* Bump Standards-Version to 3.8.2. No changed needed.
* Add patch debian/qt_4.5.2-1_phonon_ftbfs_fix which workarounds a FTBFS
against Qt 4.5.2-1 (Closes: #537023).
* Enable quilt.
-- Modestas Vainius <modestas@vainius.eu> Tue, 11 Aug 2009 10:19:52 +0300
ktorrent (3.2.2+dfsg.2-1) unstable; urgency=low
* New upstream tarball for 3.2.2 (3.2.2-1).
* Remove general/qt_tracker_default_https_port_fix.diff, fixed upstream.
-- Modestas Vainius <modestas@vainius.eu> Wed, 03 Jun 2009 21:47:18 +0300
ktorrent (3.2.2+dfsg.1-1) unstable; urgency=low
* New upstream release.
- Messages.sh is included in the tarball (Closes: #526067).
* Change ktorrent-dbg section to debug.
* Bump debhelper build depend to 7.0.50.
* Bump Standards-Version to 3.8.1 (no changes needed).
* Update to newer version of build snippets (and add topgit support).
* Add a patch to fix default port for https in Qt based tracker announces.
-- Modestas Vainius <modestas@vainius.eu> Mon, 01 Jun 2009 23:39:57 +0300
ktorrent (3.2.1+dfsg.1-1) unstable; urgency=low
* New upstream release.
* Upload to unstable.
* Build depend on libtag1-dev.
-- Modestas Vainius <modestas@vainius.eu> Mon, 06 Apr 2009 19:15:48 +0300
ktorrent (3.2+dfsg.1-2) experimental; urgency=low
* Rename plasma-applet-ktorrent to plasma-widget-ktorrent, add
conflicts/replaces with plasma-applet-ktorrent.
* Change debian sections:
- source package, ktorrent, ktorrent-data: net
- plasma-widget-ktorrent: kde
- ktorrent-dbg: devel
* Bump kdebase-workspace-dev build depend to 4:4.2.0.
* Drop libstreamanalyzer-dev build depend, not needed.
-- Modestas Vainius <modestas@vainius.eu> Mon, 16 Feb 2009 13:46:18 +0200
ktorrent (3.2+dfsg.1-1) experimental; urgency=low
* New upstream release (3.2).
* Remove 02_appear_as_kde3.2rc1.diff, no longer relevant.
* Fix issues with debian/watch (lintian warning etc.).
-- Modestas Vainius <modestas@vainius.eu> Mon, 16 Feb 2009 03:00:44 +0200
ktorrent (3.2~rc1+svn923353-1) experimental; urgency=low
* New upstream development snapshot:
- revision 923353 on 2009-02-08 18:32:38 +0200;
- translations from 3.2 RC1 tarball;
* Another attempt to fix "stalled torrents until client restart" problem.
* Keep disguising as 3.2 RC1 to the rest of the torrent world.
-- Modestas Vainius <modestas@vainius.eu> Mon, 09 Feb 2009 01:24:07 +0200
ktorrent (3.2~rc1+svn919439-1) experimental; urgency=low
* New upstream development snapshot based on the new development release
(3.2 RC1):
- includes changes from ktorrent trunk up to r919439 which include
the fix for annoying "torrent is stalled all the time until client
restart bug";
- includes translations from official 3.2 RC1 release tarball;
- no longer crashes when removing a torrent (Closes: #511451);
* Bump build depends on KDE 4.2:
- remove libplasma-dev build depend, rebuild against libplasma3;
- add build depend on libphonon-dev 4:4.3.0;
- bump build depends on strigi to 0.6.3.
* Add 02_appear_as_kde3.2rc1.diff patch to make this snapshot appear as
3.2 RC1 to the trackers.
* Disable 01_libbtcore_scramble_soname.diff patch. Pointless.
* Small update to debian/debhelper/kde4.mk (sync with
plasma-applet-networkmanager).
* Install zeroconf plugin.
-- Modestas Vainius <modestas@vainius.eu> Sun, 01 Feb 2009 04:25:27 +0200
ktorrent (3.2~beta1+svn902175-1) experimental; urgency=low
* New upstream development snapshot:
- Revision 902175 by scripty.
- Date: 2008-12-27 18:21:46 +0200.
- Translations as of Sun, 28 Dec 2008 12:00:25 +0200 are included.
* Do not suggest php5-cli. No longer needed.
* Update install files.
* Improve descriptions.
* Update debian/not-installed.
* Split off ktorrent plasma applet to plasma-applet-ktorrent package:
- this "moves" kdebase-workspace-libs4+5 and libplasma dependencies to
plasma-applet-ktorrent package;
- make ktorrent package suggest plasma-applet-ktorrent;
- plasma-applet-ktorrent replaces earlier ktorrent package.
* Split off architecture independent files to ktorrent-data package.
* Add debian/installgen file.
* Update debian/copyright.
* Update lintian overrides.
* Add debian/watch file.
-- Modestas Vainius <modestas@vainius.eu> Sun, 28 Dec 2008 14:20:08 +0200
ktorrent (3.2~beta1+svn894712-1) experimental; urgency=low
* New upstream development snapshot:
- Revision 894712 by guisson;
- Date: 2008-12-09 10:59:23 +0200 (An, 09 Grd 2008).
- Translation as of Wed, 10 Dec 2008 01:22:21 +0200 are included.
* Replace libboost1.35-dev build dependency with libboost-serialization-dev.
-- Modestas Vainius <modestas@vainius.eu> Wed, 10 Dec 2008 01:20:36 +0200
ktorrent (3.2~beta1+dfsg.1-1) experimental; urgency=low
* New upstream development snapshot:
- Working SyndicationPlugin (RSS).
- A lot faster loading of torrents with many files.
- Lots of other improvements.
* Resync custom debhelper scripts with amarok. Make necessary (small)
adjustments to packaging.
* Update debian/non-installed.
* Tighten KDE4 related build depends to 4.1.1 or later.
* Make quilt build dependency versionless again. Tweak README.source.
* Build depend on pkg-kde-tools >= 0.2. Use variables.mk from there and
enable linking with --as-needed.
* Build depend on kdepimlibs5-dev instead of kdelibs5-dev (needed by
SyndicationPlugin).
-- Modestas Vainius <modestas@vainius.eu> Sun, 16 Nov 2008 13:56:42 +0200
ktorrent (3.2~~svn873807-1) experimental; urgency=low
* New upstream development snapshot:
- Revision 873807 by guisson on 2008-10-20 10:58:12 +0300.
- The latest translations as of Mon, 20 Oct 2008 15:43:49 +0300 are
included in the orig tarball.
- Snapshot highlights:
* Beginning of the SyndicationPlugin (i.e. RSS plugin).
* Fix bug causing infinite DNS lookups in UDP tracker when lookup fails
(Closes: #502071).
* debian/Debhelper/kde4.mk: pass -DCMAKE_USE_RELATIVE_PATHS=ON to cmake when
cmake >= 2.6.2-1 is used.
* Rewrite debian/Debhelper/kde4.mk and make it thread-safe:
- Drop double-collon rules as they are not thread safe.
- Avoid running configure twice when repeating interrupted build.
* Build depend on cmake 2.6.2-1 for relative paths support.
* Build depend on libboost1.35-dev which is needed to build
SyndicationPlugin.
* Refresh patch.
* Drop debian/tmp from ktorrent.install. No longer needed as of dh v7.
* Add/remove files from ktorrent.install.
-- Modestas Vainius <modestas@vainius.eu> Mon, 20 Oct 2008 16:25:42 +0300
ktorrent (3.2~~svn862155-1) experimental; urgency=low
* New upstream development snapshot:
- Revision 862155 by guisson on 2008-09-18 12:07:56 +0300.
- The latest translations as of Thu, 18 Sep 2008 19:59:22 +0300 are
included in the orig tarball.
* Add libx11-dev to build-depends (until #499061 is fixed).
* Update ktorrent.install: add Download Order Plugin.
-- Modestas Vainius <modestas@vainius.eu> Tue, 16 Sep 2008 00:03:40 +0300
ktorrent (3.2~~svn856351-1) experimental; urgency=low
* New upstream development snapshot:
- Revision 856351 by guisson on 2008-09-02 20:49:37 +0300.
- The latest translations as of 2008-09-02 21:14:03 +0300 are included in
the orig tarball.
- Highlights:
* Reworked chunk management, which should result into much lower memory
consumption.
* Drop 97_* patches.
* Bump Standards-Version to 3.8.0:
- add README.source;
- build depend on quilt (>= 0.46-4.1) for
/usr/share/doc/quilt/README.source.
* Sync debhelper scripts with amarok 1.90 packaging.
* Build depend on kdebase-workspace-dev. Needed for taskmanager stuff.
-- Modestas Vainius <modestas@vainius.eu> Tue, 02 Sep 2008 22:05:13 +0300
ktorrent (3.2~~svn847397-1) experimental; urgency=low
* New upstream development snapshot:
- Revision 847397 by guisson on 2008-08-15 13:46:58 +0300.
- The latest translations as of 2008-08-16 02:03:00 +0300 are included in
the orig tarball.
* Remove the following patches (merged upstream):
- 01_arm_qreal_fixes.diff
- libbtcore/01_touch_proper_dnd_file.diff
* Refresh other patches.
* Update ktorrent.install: use wildcards for libraries due to frequent
library version changes.
-- Modestas Vainius <modestas@vainius.eu> Sat, 16 Aug 2008 02:18:25 +0300
ktorrent (3.2~~svn839064-1) experimental; urgency=low
* New upstream development snapshot:
- Revision 839064 by guisson on 2008-07-29 13:51:20 +0300.
- The latest translations as of 2008-07-29 14:29:00 +0300 are included in
the original tarball.
- Improvements:
* Lower CPU usage
* KTorrent plasmoid.
* BitFinder and Scripting plugins.
* Add 01_touch_proper_dnd_file.diff patch which fixes a bug causing ktorrent
to allocate useless filled with zeros in place of first and last chunks.
dnd files for each "Do not download" file in the multifile torrent.
When there are many small files in the torrent, disk usage of those dnd
files become very significant (up to 10-20% of the torrent size) and
allocation of such a torrent is very slow due to lots of I/O during writing
useless zeros.
* Refresh other patches.
* Switch packaging from CDBS to debhelper 7 (based on amarok 2 packaging).
* Build-depend on libplasma-dev.
* Update build-depends to at least KDE 4.1.0.
* Update ktorrent.install file: new plugins and KTorrent plasmoid.
* Remove Vcs fields from the debian/control until ktorrent packaging is
moved to git.
-- Modestas Vainius <modestas@vainius.eu> Tue, 29 Jul 2008 16:20:32 +0300
ktorrent (3.1.4+dfsg.1-1) unstable; urgency=low
* New upstream bugfix release:
- Make sure user is properly logged in when handling a torrent post in the
webgui.
- Prevent PHP injection attacks in webgui.
- Update file size in CacheFile::growFile, this fixes a SIGBUS error.
- Fix bug causing infinite DNS lookups in UDP tracker when lookup fails
(Closes: #502071).
- Remove default label text KSqueezedTextLabel in trackerview.
* Disable both 97_fix_target_link_libraries.diff patches.
-- Modestas Vainius <modestas@vainius.eu> Mon, 20 Oct 2008 14:40:23 +0300
ktorrent (3.1.3+dfsg.2-1) unstable; urgency=low
* No real code changes. Upstream tarball includes the patch below.
* Remove 01_webinterface_httpserver_time_h.diff - merged upstream.
* Build conflict with Qt 4.4.2-2 as it has broken shlibs.
-- Modestas Vainius <modestas@vainius.eu> Wed, 01 Oct 2008 19:38:25 +0300
ktorrent (3.1.3+dfsg.1-1) unstable; urgency=low
* New upstream release.
* Update patches (library minor version bumps).
* Update debian/not-installed.
* Add patch (01_webinterface_httpserver_time_h.diff) to fix upstream FTBFS
in plugins/webinterface/httpserver.cpp - missing <time.h> include.
-- Modestas Vainius <modestas@vainius.eu> Tue, 30 Sep 2008 00:31:08 +0300
ktorrent (3.1.2+dfsg.1-1) unstable; urgency=low
* New upstream bugfix release.
* Remove 01_arm_qreal_fixes.diff - merged upstream.
* Update other patches.
* Update ktorrent.install file.
-- Modestas Vainius <modestas@vainius.eu> Wed, 06 Aug 2008 18:39:28 +0300
ktorrent (3.1.1+dfsg.1-1) unstable; urgency=medium
* New upstream bugfix release.
* Remove 00_r828279_branch_pull.diff - part of this release.
* Update other patches due to library version and soname changes.
* Add 01_arm_qreal_fixes.diff patch to fix FTBFS on arm(el) due to qreal
being float on this arch.
* Update install files (library versions and soname changes).
* Urgency medium to shorten testing migration time to 5 days.
-- Modestas Vainius <modestas@vainius.eu> Mon, 14 Jul 2008 17:22:25 +0300
ktorrent (3.1+dfsg.2-1) unstable; urgency=low
* Repack upstream tarball. Leave cmake/ dir alone, just prune non-free
stuff.
* Pull changes from ktorent 3.1 upstream branch up to revision 828279
(debian/patches/00_r828279_branch_pull.diff).
* Remove the following patches because I'm not going to split off libbtcore
for lenny:
- libbtcore/01_libbtcore_export.diff
- 01_support_external_libbtcore.diff
- 02_no_dht_without_dht_headers.diff
* Upload to unstable. Now this source package ships KDE4 based version.
ktorrent 3 series already had 2 major stable releases and it has many
improvements. However, old KDE3 based KTorrent has been kept in
ktorrent2.2 source package for the Lenny release. If you wish to use
ktorrent 2.2.x (KDE3 based version), just install ktorrent2.2 package. In
addition, the following changes related to this move have been made in
this package:
- Add NEWS entry.
- Explain KTorrent 2.2.x vs. KTorrent 3.x situation in README.Debian.
* Bump kdelibs5-dev build-depend to the version in unstable.
* Drop libphonon-dev build-depend. It is pulled by kdelibs5-dev.
* Update URIs in Vcs fields.
* Set THIS_SHOULD_GO_TO_UNSTABLE=1 in debian/rules. I want this to be
unstable upload.
-- Modestas Vainius <modestas@vainius.eu> Mon, 07 Jul 2008 15:00:35 +0300
ktorrent (3.1+dfsg.1-1) experimental; urgency=low
* New upstream release.
* Update patches.
* Update install files (bumps of library minor versions).
-- Modestas Vainius <modestas@vainius.eu> Tue, 17 Jun 2008 12:48:39 +0300
ktorrent (3.1~rc1+dfsg.1-1) experimental; urgency=low
* New upstream development release.
* Drop ktorrent-dbg from ktorrent Recommends as ktorrent development
releases proved to be pretty stable (Closes: #483970).
* Update install files (soname bumps).
* Adopt patches to upstream changes.
-- Modestas Vainius <modestas@vainius.eu> Wed, 04 Jun 2008 23:15:51 +0300
ktorrent (3.1~beta2+dfsg.1-1) experimental; urgency=low
* New upstream development release.
* Embed libbtcore back to ktorrent package. I'm tired of continuous soname
bumping which results in ktorrent and/or libbtcore sitting in NEW on
almost each new upstream release. libbtcore will be split of again for
final 3.1 release.
- Add 99_libbtcore_scramble_soname.diff patch to scamble libbtcore soname.
libbtcore shipped in this package should be considered private.
- Do not install libbtcore development files.
- Remove build-dependency on libbtcore4-dev and libbtcore-dbg from
ktorrent-dbg recommends.
- Add libbtcore build-dependences: libgmp3-dev and libqca2-dev.
* Update install files (due to soname bumps mainly)
-- Modestas Vainius <modestas@vainius.eu> Thu, 22 May 2008 03:31:32 +0300
ktorrent (3.1~beta1+dfsg.1-1) experimental; urgency=low
[ Modestas Vainius ]
* New upstream development release:
- Highlights:
* A new media player plugin.
* Fixes a crash with Qt 4.4 on close.
* More bug fixes.
- libbtcore and cmake (BTCore specific) have been moved from the
upstream tarball to the source package of their own (libbtcore).
* Remove libbtcore specific build depends.
* Build depend on libbtcore4-dev. Add 01 patch to enable building against
external BTCore library.
* Improve ktorrent description a bit to bring it more up to date with
current features in 3.1~beta1.
* Build-depend on kdelibs5-dev (>= 4:4.0.72).
* Build-depend on pkg-config and libstreamanalyzer-dev.
* Add new files to ktorrent.install:
- /usr/lib/kde4/ktmediaplayerplugin.so
- /usr/share/kde4/services/ktmediaplayerplugin.desktop
* ktcore soname was bumped. Update ktorrent.install
* Add Vcs fields.
* Update debian/copyright.
-- Debian KDE Extras Team <pkg-kde-extras@lists.alioth.debian.org> Sun, 04 May 2008 01:11:21 +0300
ktorrent (3.1~~svn793490.dfsg.1-1) experimental; urgency=low
[ Modestas Vainius ]
* New upstream development snapshot (r793490):
- The original tarball has never been released upstream. It's a snapshot
of KDE subversion repository /trunk/extragear/network/ktorrent with DFSG
non-free files removed.
- The latest included svn revision is r793490 commited by guisson
on 2008-04-04 10:45:34 +0300
- The latest translations as of Fri, 04 Apr 2008 19:30:46 +0300 are
included in the original tarball.
* There are a few missing symbols in libbtcore3. Ignore this fact for now as
there are no rdepends and it's a development snapshot anyway.
* As always, add ktorrent-dbg to ktorrent Recommends as it's development
snapshot.
* Adopt debian/rules to debian/cdbs/kde.mk changes:
- Now I need to reset DEB_DH_INSTALL_SOURCEDIR instead of
DEB_DH_INSTALL_ARGS to get rid of --sourcedir=debian/tmp.
-- Debian KDE Extras Team <pkg-kde-extras@lists.alioth.debian.org> Fri, 04 Apr 2008 19:55:17 +0300
ktorrent (3.0.0.dfsg.1-1) experimental; urgency=low
[ Modestas Vainius ]
* New upstream stable release (3.0) for KDE4:
- IPv6 support
- SOCKSv4 and v5 support
- The network interface to use, can now be selected
- Alternative flat list mode to display the files of a torrent
- Reorganization of the config dialog
- Individual files of a torrent can now be moved
- New queuemanager gui
* Remove ktorrent-dbg from ktorrent Recommends. Ktorrent 3 is stable now
(and I can confirm that from my experience).
* Drop kdebase-runtime-data-common and kdebase-data from ktorrent
Recommends, because actually kdebase-runtime-data-common is ktorrent
dependency via kdebase-runtime-data. As a result, it makes no sence to
recommend any alternatives too.
* Remove RSS plugin from ktorrent description. It is not available in this
release yet.
* List more features in ktorrent description.
* Resync patches:
- 01_system_geoip_and_flags.diff - removed, merged upstream.
- 02_kclosestnodessearch_cleanup.diff - removed, useless.
- 03_trunk_pull_r769910.diff - removed, it was taken from upstream.
- 04_pastedialog_support_remote_urls.diff - removed, merged upstream.
- 05_infowidget_localizednumber.diff - removed, merged upstream.
* Rename libbtcore2 to libbtcore3. Library changed soname though there was
no real need. Anyway, I notified upstream but I'm doing the change this
time. Modified files:
- debian/rules, debian/control
- debian/libbtcore2.symbols.amd64 -> debian/libbtcore3.symbols.amd64
- debian/libbtcore2.install -> debian/libbtcore3.install
* Internal libktcore library changed soname too. Adjust
debian/ktorrent.install
-- Debian KDE Extras Team <pkg-kde-extras@lists.alioth.debian.org> Sun, 17 Feb 2008 20:53:06 +0200
ktorrent (3.0~rc1.dfsg.1-1) experimental; urgency=low
[ Modestas Vainius ]
* New upstream development release for KDE4 (3.0 rc1)
* Major part of packaging was done from scratch in comparision with
2.2.4.dfsg.1-1 therefore some changes might have been left undocumented
in this changelog.
* Remove all GeoIP stuff from ktorrent tarball including LGPL library
source code. Debian uses libgeoip1 anyway.
* Switching to CDBS and debhelper v6. Build-Depend on cdbs (>= 0.4.51)
to get non-empty -dbg package with compat=6.
* Update Standards-Version to 3.7.3.0
* Now ktorrent-dbg recommends kdelibs5-dbg due to obvious reasons. Also add
ktorrent-dbg to ktorrent Recommends because this is upstream development
release.
* Drop Homepage stanza from ktorrent description, add Homepage field to
debian/control source section instead.
* New binary packages (libbtcore2 and libbtcore-dev) for btcore public
library.
* Add symbols file for libbtcore2 on amd64. Unfortunately, different
internal type of __SIZE_TYPE__ on at least amd64 and i386 (which as a
result affect C++ mangling of one symbol) and differing vtable offsets
(C++ specific) prevent me from making this symbols file arch any.
* Add kdebase-runtime-data-common as an alternative for kdebase-data in
ktorrent Recommends. They both ship flags used by ktorrent infowidget
plugin.
* Remove all patches from ktorrent 2.2.x. Add new patches:
- 01_system_geoip_and_flags.diff - add support for "system GeoIP" and
ability to skip installation of builtin country flags to the build
system.
- 02_kclosestnodessearch_cleanup.dif - cleanup unused variable. Endless
loop is fixed in 3.0rc1.
- 03_trunk_pull_r769910.diff - pull trunk up to revision 769910. Version
bump related changes skipped. This patch should fix socket leak which
made ktorrent almost unusable for more than 20 minutes.
- 04_pastedialog_support_remote_urls.diff - add back support for remote
urls in "Paste Torrent URL" dialog. The patch fixes incorrect KUrl API
usage.
- 05_infowidget_localizednumber.diff - show localized number instead of
"1e+02 %" in infowidget "Files" view "% Complete" column.
* Add "DM-Upload-Allowed: yes" to debian/control source section.
* Tweak overrides.lintian by adding "libktcore2 libktupnp1" to
package-name-doesnt-match-sonames. These libraries are supposed to be used
only by KTorrent and its utilities.
* A few corrections to ktorrent.1 manual page, also remove ktshell.1 man
page, because ktshell has not been ported yet.
* Add a man page for the new 'ktupnptest' binary.
* Bug fixes:
- "Refuses to add downloads to existing group" - seems to work in this
release (Closes: #460470).
- "wrong translate" - the string in question is translated differently in
this release. If I'm not wrong, the translation is correct
(Closes: #459241).
- "chunks window download speed column is misleading" - ktorrent 3.0
groups all chunks from the same peer into single listitem for which
only single total speed associated with that peer is shown. Therefore,
there is no confusion anymore (Closes: #372162).
* Update debian/copyright.
-- Debian KDE Extras Team <pkg-kde-extras@lists.alioth.debian.org> Thu, 07 Feb 2008 12:45:31 +0200
ktorrent (2.2.4.dfsg.1-1) unstable; urgency=medium
[ Modestas Vainius]
* New upstream release (Closes: #452334):
- Resolves frequent crashes on some systems (esp. SMP) (hence medium
urgency).
- "Set max upload/download rate" via tray icon menu should work correctly
now.
- A few additional web gui features.
* Add a few new patches to make cleverer dpkg-shlibdeps happy (almost):
- 05_cleanup_am_lib_qt.diff - originally a few other libraries like
libpng12 etc. were exported in automake LIB_QT variable. Only a few (if
any) KDE applications use them directly so linking any single binary
against them is unnecessary. KTorrent is not an exception. This patch
reduces LIB_QT to contain just the main Qt library. Previous version of the
variable has been made available under the name LIB_QT_EXT. As a result of
this patch, KTorrent depencences shrank to the bare minumum solving tons
of dpkg-shlibdeps warnings too.
- 06_makefile_am_fixups.diff - various fixes to Makefile.am's all around
the source code with the intention to resolve warnings reported by
dpkg-shlibdeps. The only type of warnings left are those regarding
libm.so.6, which can't be fixed because they come from g++ itself.
-- Debian KDE Extras Team <pkg-kde-extras@lists.alioth.debian.org> Thu, 22 Nov 2007 04:34:54 +0200
ktorrent (2.2.3.dfsg.1-1) unstable; urgency=low
* New upstream release
* Add kdebase-kio-plugins to Recommends. Users willing to use IP Blocking
plugin should install it. (Closes: #443624)
-- Debian KDE Extras Team <pkg-kde-extras@lists.alioth.debian.org> Wed, 14 Nov 2007 23:49:56 +0200
ktorrent (2.2.2.dfsg.1-1) unstable; urgency=low
[ Modestas Vainius ]
* New upstream bugfix release.
* Change ktorrent.menu section to Applications/Network/File Transfer.
-- Debian KDE Extras Team <pkg-kde-extras@lists.alioth.debian.org> Wed, 29 Aug 2007 23:06:30 +0300
ktorrent (2.2.1.dfsg.1-1) unstable; urgency=low
* New upstream release:
- Fixes a few output format issues with ktshell. Thanks to
Avi Rozen for the patches (Closes: #432433, #432655).
- Also fixes the file selection bug and a number of other bugs.
* Corrent README.Debian. The patches mentioned there have been merged
upstream.
* Don't build with --enable-final on arm.
-- Debian KDE Extras Team <pkg-kde-extras@lists.alioth.debian.org> Mon, 23 Jul 2007 21:47:47 +0300
ktorrent (2.2.0.dfsg.1-1) unstable; urgency=low
[Modestas Vainius]
* New upstream release.
* Fix override disparity - change ktorrent-dbg priority to extra.
* Drop ktorrent-dbg from ktorrent Recommends. 2.2 is stable now.
* Update patches:
- 10_use_system_geoip.diff - remove, merged upstream.
- 11_flagdb-alternative-source.diff - remove, merged upstream.
- 12_gnu_kfreebsd.diff - remove, merged upstream.
- 13_inst_apps.diff - remove, merged upstream.
- 14_wz_tooltip_CVE-2007-3154.diff - remove, merged upstream.
- 98_buildprep.diff - regenerate (relibtoolize).
-- Debian KDE Extras Team <pkg-kde-extras@lists.alioth.debian.org> Wed, 04 Jul 2007 01:46:19 +0300
ktorrent (2.2~rc1.dfsg.1-1) experimental; urgency=low
[Modestas Vainius]
* New upstream development release.
* Update patches:
- 10_use_system_geoip.diff - fix offsets.
- 11_flagdb-alternative-source.diff - fix offsets.
- 98_buildprep.diff - regenerate.
* Add patch 14_wz_tooltip_CVE-2007-3154.diff - fixes CVE-2007-3154.
The patch is based on wz_tooltip.js from eGroupWare 1.4.001
(Closes: #429209).
* Fix "debian-rules-ignores-make-clean-error" lintian warning.
* Use ${binary:Version} instead of ${Source-Version} for ktorrent-dbg
dependency on ktorrent.
-- Debian KDE Extras Team <pkg-kde-extras@lists.alioth.debian.org> Tue, 26 Jun 2007 11:17:02 +0300
ktorrent (2.2~beta1.dfsg.1-2) experimental; urgency=low
[Modestas Vainius]
* Correct invalid character(s) in debian/control.
* Install *.la files for plugins (Closes: #427432).
-- Debian KDE Extras Team <pkg-kde-extras@lists.alioth.debian.org> Mon, 04 Jun 2007 04:54:27 +0300
ktorrent (2.2~beta1.dfsg.1-1) experimental; urgency=low
[Modestas Vainius]
* New upstream development release (2.2 beta1).
* Prune upstream tarball from non-free parts, remove useless autotools
cache directory and create a new dfsg-free orig tarball.
* Update debian/patches:
01_libtool_update.diff - regenerate.
10_use_system_geoip.diff - adapt to upstream changes.
11_flagdb-alternative-source.diff - adapt to upstream changes.
98_buildprep.diff - regenerate.
* Add a new binary package, ktorrent-dbg, to hold debugging symbols.
Make appropriate changes to debian/control and debian/rules.
* Since this release is a development beta release, crashes are expected.
Therefore add ktorrent-dbg to ktorrent Recommends till final release.
* Add php5-cli to ktorrent Suggests. It is needed for KTorrent WebInterface
plugin.
* Update description of the ktorrent binary package.
-- Debian KDE Extras Team <pkg-kde-extras@lists.alioth.debian.org> Sun, 03 Jun 2007 22:19:03 +0300
ktorrent (2.1.4.dfsg.1-1) unstable; urgency=low
* ktorrent is now maintained by Debian KDE Extras Team.
[Modestas Vainius]
* New major upstream release (2.1): (Closes: #400186)
- µTorrent compatible peer exchange
- Zeroconf extension to find peers on the local network
- Switched the GUI to an IDEAl style GUI (like KDevelop)
- WebGUI plugin
- RSS plugin
- MAJOR improvements in down and upload performance
- Grouping feature to put torrents into groups
- Improved search plugin, which now allows multiple searches
- Allows setting priority for files in multifile torrents (Closes: #367120)
- Download speed is shown individually for each chunk in the chunk
window (Closes: #372162)
* New bugfix upstream release (2.1.4): (Closes: #420913)
- Fixed crash in parsing of DHT messages (Closes: #425043)
- Fixed problem with files with .. in their name (Closes: #425948)
- ScanFolder can now handle incomplete torrent files properly
* Prune upstream tarball from non-free parts (GeoIP Country Database and
country flag images). Patches 10 and 11 have been developed to make
impact of this as minimal as possible on the users.
* Remove LDFLAGS patch. It has been integrated upstream.
* debian/rules: upstream no longer ships .desktop files in applnk.
* Pass --enable-largefile to configure to enable large file (over 2GB)
support on 32bit architectures. There are known problems with >4GB files
on all architectures though (Closes: #402185).
* Use quilt as a patch management system.
* New patches:
- 10_use-system-geoip.diff - adds support for the --enable-system-geoip
configure parameter. It makes ktorrent build against system-wide GeoIP
library (libgeoip1) and use libgeoip1 default GeoIP Country database.
- 11_flagdb-alternative-source.diff - adds support for the
--disable-builtin-country-flags configure parameter. It allows to skip
installation of non-free ktorrent builtin country flags. In addition,
the patch adds support for the "flag database" that lets ktorrent get
country flag images from more than one filesystem source transparently.
It also adds additional (and the only for the debian package) source -
flag images shipped with kdebase.
- 12_gnu_kfreebsd.diff - fix FTBFS on GNU/kFreeBSD. Thanks to Petr Salinger
(Closes: #401753).
- Usual build system patches for relibtoolization.
* Add libgeoip-dev to Build-Depends. Build ktorrent with system GeoIP.
* Add kdebase-data to Recommends. It is needed as a source of the country
flag images for the Peer View. If not installed, country flags won't be
shown.
* Add debian/ktorrent.install. Prepare for multiple binary packages.
* Add Ktorrent to Debian menu (Closes: #392893).
* Now 'clean' target fully cleans the source tree after build
(Closes: #424476).
* Fully support DEB_BUILD_OPTIONS.
* Add manual pages for ktorrent and ktshell.
* Update README.Debian with new information about GeoIP and country flag
images and add NEWS about accuracy of the default GeoIP Country database.
-- Debian KDE Extras Team <pkg-kde-extras@lists.alioth.debian.org> Sun, 03 Jun 2007 16:03:17 +0300
ktorrent (2.0.3+dfsg1-2.2) unstable; urgency=low
* Non-maintainer upload.
* Redo the previous patch without kilt, integrating it into the buildsystem
directly (yuck !).
-- Pierre Habouzit <madcoder@debian.org> Thu, 22 Mar 2007 16:41:39 +0100
ktorrent (2.0.3+dfsg1-2.1) unstable; urgency=high
* Non-maintainer upload.
* Fix security issue (Closes: 414832, 414830):
+ drop patch from #414832 in debian/patches.
+ use quilt as a patches management system to deal with it.
+ urgency set to high due to RC bugfix.
-- Pierre Habouzit <madcoder@debian.org> Thu, 22 Mar 2007 11:11:20 +0100
ktorrent (2.0.3+dfsg1-2) unstable; urgency=low
* Resolve FTBFS - remove nonportable "-z now" from LDFLAGS (Closes: 395897)
-- Joel Johnson <mrjoel@lixil.net> Wed, 01 Nov 2006 14:06:36 -0800
ktorrent (2.0.3+dfsg1-1) unstable; urgency=medium
* new upstream release (Closes: 392687)
+ speed issues fix
* urgency=medium in order to get this into etch in time
-- Joel Johnson <mrjoel@lixil.net> Fri, 20 Oct 2006 11:13:24 -0700
ktorrent (2.0.2+dfsg1-1) unstable; urgency=medium
* New upstream release (skipping 2.0, 2.0.1) (Closes: 378947, 384131)
* built with GeoIP support enabled, but removed the database file
and country flags due to licensing restrictions (see README.Debian)
* urgency=medium in order to get this into etch in time
-- Joel Johnson <mrjoel@lixil.net> Fri, 06 Oct 2006 09:15:07 -0700
ktorrent (1.2-1) unstable; urgency=low
* Acknowledge NMU (Closes: 349983)
Actually removed debian libtoolization temporarily due to
package inclusion of a library in upstream. Soon to be reapplied
with proper support for avoiding redundant dependencies.
* New upstream release (Closes: 348605)
+ Doesn't freeze/lock anymore (Closes: 340766)
+ Properly builds with G++ 4.1 (Closes: 357096)
* add shlib support and post{inst,rm} via debhelper for new shared library
* Set --enable-final as configure directive
* Update copyright file to reflect additional files and changed dir layout
* patch upstream Makefile.in to include translations directory
* Update upstream homepage URL in control
-- Joel Johnson <mrjoel@lixil.net> Tue, 6 Jun 2006 22:07:58 -0700
ktorrent (1.1-2.1) unstable; urgency=low
* Non-maintainer upload by sponsor due to no maintainer reaction.
* Relibtoolize _after_ setting AM_MAINTAINER_MODE (Closes: #349983)
-- Florian Ernst <florian@debian.org> Tue, 7 Feb 2006 13:15:30 +0100
ktorrent (1.1-2) unstable; urgency=low
* Limit build dependencies to what we directly depend on
and set AM_MAINTAINER_MODE in configure.in.in
* Change section from net to kde
* Remove sponsor as Uploader as requested
-- Joel Johnson <mrjoel@lixil.net> Thu, 1 Dec 2005 13:11:22 -0800
ktorrent (1.1-1) unstable; urgency=low
* Initial Debian Upload (Closes: #313659)
* Update copyright file with new FSF address
* Incorporate changes to a previous package version
- disable rpath in ./configure
- add lintian override (missing manpage)
Thanks to Jonathan Riddell <jriddell@ubuntu.com>
* Add linda override (missing manpage)
-- Joel Johnson <mrjoel@lixil.net> Thu, 24 Oct 2005 08:47:09 -0700
|