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
|
amule (1:2.3.3-1) unstable; urgency=low
[ Debian Janitor ]
* Trim trailing whitespace.
* Set upstream metadata fields: Bug-Database, Bug-Submit, Repository,
Repository-Browse.
* Rely on pre-initialized dpkg-architecture variables.
[ Sandro Tosi ]
* New upstream release
* debian/control
- extend packaging copyright years
- run wrap-and-sort
- bump Standards-Version to 4.5.1 (no changes needed)
* set dh compat to 13
* debian/rules
- set hardening flags
-- Sandro Tosi <morph@debian.org> Tue, 09 Feb 2021 00:17:13 -0500
amule (1:2.3.2+git20200530.3a77afb-1) unstable; urgency=medium
* New upstream git snapshot
* debian/patches/cf63429667953088c7cf93846c892eed7bdde617.patch
- fix a crash against wxwidget3.0
* debian/patches/*
- drop, refresh patches
* debian/control
- switch to wxWidgets GTK 3; Closes: #933439, #961819
* debian/copyright
- extend packaging copyright years
- update upstream copyright notice
-- Sandro Tosi <morph@debian.org> Sun, 31 May 2020 01:13:58 -0400
amule (1:2.3.2-6) unstable; urgency=medium
* debian/patches/12eca130e743932c17343a1fe82f88a31bd1453a.patch
- fix crash in amulegui; Closes: #856914
* debian/control
- remove 'experimental' tag from amulegui description; Closes: #931270
- remove libqt4-dev from b-d; Closes: #874824
- bump Standards-Version to 4.4.0 (no changes needed)
-- Sandro Tosi <morph@debian.org> Fri, 06 Sep 2019 23:45:02 -0400
amule (1:2.3.2-5) unstable; urgency=medium
* [02709a0] replace transitional pkg with fonts-dejavu-core; Closes: #922144
* [cc6cb95] bump Standards-Version to 4.3.0 (no changes needed)
* [2ac4644] extend packaging copyright years
-- Sandro Tosi <morph@debian.org> Sat, 16 Feb 2019 19:57:53 -0500
amule (1:2.3.2-4) unstable; urgency=medium
[ Ondřej Nový ]
* d/watch: Use https protocol
[ Sandro Tosi ]
* [cd2b237] support upnp 1.8; Closes: #884996
* [25c3fdc] bump Standards-Version to 4.2.1 (no changes needed)
* [5eb9957] remove Adrian Yanes from Uploaders, thanks for your contributions!
-- Sandro Tosi <morph@debian.org> Thu, 08 Nov 2018 12:40:33 -0500
amule (1:2.3.2-3) unstable; urgency=medium
* [7b5bf67] set myself as Maintainer; Closes: #899442
* [1b6f14e] enable parallel build; patch by Pino Toscano; Closes: #806827
* [d3da013] install a bug presubj script to instruct how to generate a backtrace
* [217be7b] point Vcs-* field to salsa.d.o
* [58cdd8e] bump Standard-Version to 4.1.4 (no changes needed)
-- Sandro Tosi <morph@debian.org> Thu, 07 Jun 2018 15:27:17 -0400
amule (1:2.3.2-2) unstable; urgency=medium
* [29d8322] remove fallocate patch for HPPA, no longer needed
* [b7f99fd] remove Giuseppe Iuculano from Uploaders; Closes: #866840
* [73b68fc] replace libgd2-dev with libgd-dev; Closes: #880763
* [47a6b78] disable plasma-widget-amule, and so the Qt4 b-d; Closes: #874824
* [a72bd10] upstream patch to prevent a crash if a shared dir contains UTF-8
chars; Closes: #850768
* [62ff3ff] bump Standards-Version to 4.1.2 (no changes needed)
* [abda92d] add lsb-base to amule-daemon depends
* [63f5eb3] migrate to automatic debug symbols package
-- Sandro Tosi <morph@debian.org> Sat, 09 Dec 2017 15:49:21 -0500
amule (1:2.3.2-1) unstable; urgency=medium
* [33709b0] New upstream release; Closes: #820873, #807453, #807068
* [85d9c4c] Imported Upstream version 2.3.2
* [eee20a7] extend packaging copyright years
* [a33b939] add/fix upstream developers
* [b299b57] drop define_MULE_EVT_LOGLINE.patch, applied upstream
* [7a68ede] bump Standards-Version to 3.9.8 (no changes needed)
* [9907912] install amule.png; Closes: #818273
* [aec62a5] Disable fallocate patch, as requested by upstream to verify if it's still needed
* [cb8eeb7] update Vcs fields to cgit and HTTPS
* [862acec] bump compat to 9
* [7750816] install application-x-emulecollection.svg only in plasma-widget-amule
-- Sandro Tosi <morph@debian.org> Sat, 01 Oct 2016 20:25:42 -0400
amule (2.4.0~git20151120.0023527bc2-1) unstable; urgency=medium
* [0071397] New upsteam GIT snapshot
* [570b5d8] refresh patches
* [373f008] update b-d to WX 3.0; Closes: #751241, #799347
* [581d857] run autogen.sh before building
* [34b4f84] define MULE_EVT_LOGLINE in src/LoggerConsole.cpp; Closes: #765144
* [32cdf61] add autoconf/automake to b-d
* [95c3e86] Use Boost.Asio networking instead of WX networking
* [2af1ef8] the next version will be 2.4.0, so adjust snapshot versioning
* [dcce8e4] bump Standards-Version to 3.9.6 (no changes needed)
* [a5569fc] bump packaging copyright years
-- Sandro Tosi <morph@debian.org> Sun, 29 Nov 2015 12:34:25 +0000
amule (2.3.1+git1a369e47-3) unstable; urgency=medium
* [c82d03e] remove absolute path from dpkg-divert calls; thanks to Guillem
Jover for the report and patch; Closes: #769847
-- Sandro Tosi <morph@debian.org> Sun, 23 Nov 2014 13:57:01 +0000
amule (2.3.1+git1a369e47-2) unstable; urgency=medium
[ Dmitry Smirnov ]
* [3f95ab5] fix "plasma-widget-amule" shared MIME registration; Closes: #761462
[ Sandro Tosi ]
* [355e03b] Switch back to WX 2.8, to give users a usable aMule; Closes: #760434
-- Sandro Tosi <morph@debian.org> Sat, 25 Oct 2014 20:00:05 +0100
amule (2.3.1+git1a369e47-1) unstable; urgency=medium
* New upsteam GIT snapshot repository; add support to WX 3.0; Closes: #751241
* debian/patches/*
- refreshed, removed patches merged upstream
* debian/control
- upgraded b-d to WX 3.0
* debian/watch
- mangle Debian version for Git snapshot
-- Sandro Tosi <morph@debian.org> Sat, 30 Aug 2014 19:57:47 +0100
amule (2.3.1-11) unstable; urgency=low
[ Dmitry Smirnov ]
* [cc1a061] new patch to register ed2k:// protocol handler; Closes: #705498
[ Sandro Tosi ]
* [a452c52] build-depend on libgd2-dev, now that there's no more xpm/noxmp
* [5b3d4de] bump Standards-Version to 3.9.5 (no changes needed)
* [258f1ce] use canonical Alioth URLs
* [2ca2e83] Fix mispelled StartupWMClass
-- Sandro Tosi <morph@debian.org> Sat, 04 Jan 2014 13:09:37 +0100
amule (2.3.1-10) experimental; urgency=low
* [1bc37b9] Fix build with ld --as-needed; thanks to Ilya Barygin for the
report and patch; Closes: #677209
* [a917a2b] provide package with debug symbols
-- Sandro Tosi <morph@debian.org> Wed, 29 Aug 2012 16:50:05 +0200
amule (2.3.1-9) unstable; urgency=low
* [bd952ab] handle gracefully (ie not crashing) an empty statistics.dat file;
thanks to florian for the report and to Michael Stapelberg for preparing
the patch; Closes: #683680
-- Sandro Tosi <morph@debian.org> Sat, 04 Aug 2012 12:24:53 +0200
amule (2.3.1-8) unstable; urgency=low
* [27f7932] mark libupnp patch as not-needed for forward (it's a Debian
specific change due to Debian specific API change)
* [6536ca2] Fixed compilation with gcc 4.7; thanks to Lucas Nussbaum for the
report; Closes: #674375
* [9c376cb] revert fix to pass hardening flags to mkFileSum.c, suggested by
upstream and fix cross-compilation
-- Sandro Tosi <morph@debian.org> Sat, 16 Jun 2012 18:06:09 +0200
amule (2.3.1-7) unstable; urgency=low
* [af4640e] build-depends on libpng-dev, to prepare for libpng transition;
thanks to Nobuhiro Iwamatsu for the report; Closes: #662267
* [c6b9487] enable hardening flags for mkFileSum.c too; thanks to Simon
Ruderich for the patch; Closes: #653503
* [117b5c6] Handle libupnp3->libupnp6 transition; thanks to Adam D. Barratt
for the report and Nick Leverton for the patch; Closes: #670962
* [2c2f6d5] Bump Standards-Version to 3.9.3 (no changes needed)
* [6bae44f] don't ignore real errors with lintian-overrides
-- Sandro Tosi <morph@debian.org> Thu, 03 May 2012 22:11:58 +0200
amule (2.3.1-6) unstable; urgency=low
* [10cd374] re-enable use of fallocate on alpha; thanks to Michael Cree for
the report; Closes: #661876
-- Sandro Tosi <morph@debian.org> Sat, 03 Mar 2012 20:38:33 +0100
amule (2.3.1-5) unstable; urgency=low
* [6c58eb0] use libupnp-dev in b-d to easy libupnp transition; thanks to Nick
Leverton for the report; Closes: #656830
-- Sandro Tosi <morph@debian.org> Sun, 22 Jan 2012 14:09:56 +0100
amule (2.3.1-4) unstable; urgency=low
* [a83f55a] don't install magnet.protocol, already provided by ktorrent;
thanks to Nicolas DEGAND for the report; Closes: #654686
-- Sandro Tosi <morph@debian.org> Sun, 08 Jan 2012 22:40:06 +0100
amule (2.3.1-3) unstable; urgency=low
* [7aeed3f] rename amule-plasmamule into plasma-widget-amule; thanks to Sune
Vuorela for the report; Closes: #653885
-- Sandro Tosi <morph@debian.org> Sun, 01 Jan 2012 12:05:09 +0100
amule (2.3.1-2) unstable; urgency=low
[ Sandro Tosi ]
* [9fd98bf] remove unneeded b-d on quilt
* [2310fc3] remove explicit reference to quilt, we're using 3.0 (quilt) now
* [ecc91bc] enable hardening flags; thanks to Moritz Muehlenhoff;
Closes: #653503
[ Vollstrecker ]
* [b88ae44] Added plasma-applett pkg
-- Sandro Tosi <morph@debian.org> Fri, 30 Dec 2011 22:11:04 +0100
amule (2.3.1-1) unstable; urgency=low
* New upstream release (upload to unstable)
* [c290c56] add a rule to import a new upstream tarball
* [e509f4d] don't remove .gitignore
* [ab10242] bump Standards-Version to 3.9.2 (no changes needed)
* [2b9fa5f] fix build* targets
* [c51726b] correctly document how to use import-orig
* [5abb7c2] Imported Upstream version 2.3.1
* [26d8a7e] bump wx 2.8 version needed; Closes: #612962
* [77940fe] updated version_check.diff to new upstream code
-- Sandro Tosi <morph@debian.org> Sat, 12 Nov 2011 19:31:28 +0100
amule (2.3.1~rc1-1) experimental; urgency=low
* Imported Upstream version 2.3.1~rc1+repack
* adapted (or removed) patches to new upstream code
* update list of files to install for amule doc
* update copyright/license as per new source, adding missing packaging
notes
-- Sandro Tosi <morph@debian.org> Thu, 21 Apr 2011 21:32:08 +0200
amule (2.2.6+debian0-9) unstable; urgency=low
[ Giuseppe Iuculano ]
* [60136ec] Install skins files.
Thanks to Luís Picciochi Oliveira (Closes: #498693)
* [c2f0bcf] Remove skins from amule main package
* [6af73cc] debian/control: Fixed some typos in description.
Thanks to Luís Picciochi Oliveira
[ Cristian Greco ]
* [61dbf70] debian/control: remove myself from Uploaders.
[ Giuseppe Iuculano ]
* [0d4b071] Fix FTBFS with gcc 4.5 , patch from Ubuntu.
Thanks to shankao (Closes: #564853)
* [c998ccf] Disable NewVersionCheck by default (Closes: #554623)
* [c1f4946] Update to Standards-Version 3.9.1: Break with xmule instead of
conflicting
* [bb971b5] Switch to dpkg-source 3.0 (quilt) format
* [04668de] Remove .gitignore on clean target
-- Giuseppe Iuculano <iuculano@debian.org> Sun, 20 Mar 2011 12:59:50 +0100
amule (2.2.6+debian0-8) unstable; urgency=low
* [e0427d0] added autopoint to build-depends, Closes: #583470
-- Sandro Tosi <morph@debian.org> Thu, 03 Jun 2010 22:35:21 +0200
amule (2.2.6+debian0-7) unstable; urgency=low
* [3e1a262] Merge from Ubuntu: New amule-gnome-support package.
(Closes: #313579)
-- Giuseppe Iuculano <iuculano@debian.org> Fri, 22 Jan 2010 18:10:32 +0100
amule (2.2.6+debian0-6) unstable; urgency=low
* [404dea9] Disabled also SYS_fallocate in hppa
-- Giuseppe Iuculano <iuculano@debian.org> Thu, 07 Jan 2010 09:32:33 +0100
amule (2.2.6+debian0-5) unstable; urgency=low
* [06240cb] Really disable fallocate only on alpha and hppa
-- Giuseppe Iuculano <iuculano@debian.org> Wed, 06 Jan 2010 09:45:44 +0100
amule (2.2.6+debian0-4) unstable; urgency=low
* [ee905f0] Disable fallocate only on alpha and hppa, amd64 and ia64
need it
-- Giuseppe Iuculano <iuculano@debian.org> Tue, 05 Jan 2010 12:44:58 +0100
amule (2.2.6+debian0-3) unstable; urgency=low
* [6220bf6] Updated VCS control fields
* [6d07590] Disable fallocate and fix FTBFS on alpha and hppa
(Closes: #562992)
-- Giuseppe Iuculano <iuculano@debian.org> Tue, 05 Jan 2010 08:46:46 +0100
amule (2.2.6+debian0-2) unstable; urgency=low
* [996f825] Fixed preinst scripts exit code.
-- Giuseppe Iuculano <iuculano@debian.org> Tue, 29 Dec 2009 18:47:34 +0100
amule (2.2.6+debian0-1) unstable; urgency=low
[ Adeodato Simó ]
* [2939566] Make amule and amule-daemon Recommend: unzip. (Closes: #530249)
[ Cristian Greco ]
* [b83afce] debian/control: update Vcs-* fields.
[ Adrián Yanes ]
* [4257b3b] Update Co-Maintainers and Authors
- Thanks to Adeodato Simó for the prior work on amule (Closes: #548352)
[ Cristian Greco ]
* [09c1e6d] debian/control: set list as maintainer, project members as
uploaders.
[ Giuseppe Iuculano ]
* [aa9a541] Imported Upstream version 2.2.6+debian0 (Closes: #547293)
* [1c01c81] Added Giuseppe Iuculano in Uploaders
* [91c0944] Replace libreadline5-dev build dependency with
libreadline-dev (Closes: #553716)
* [5b8227f] Fixed a typo in alc man page (Closes: #525264) - thanks to
A. Costa
* [0ca373f] Refreshed patches
* [57dd562] Fixed a typo in ed2k man page (Closes: #525265) - thanks
to A. Costa
* [9c06762] debian/rules: Removed deprecated dh_desktop
* [1659d98] Bump to debhelper 7 compatibility levels
* [150d9ee] Updated to standards version 3.8.3
* [77d2a5c] debian/control: Removed XS-X-Collab-Maint field
* [4e7c2e3] Updated watch file
* [89d9555] Do not ignore preinst errors
-- Giuseppe Iuculano <iuculano@debian.org> Tue, 29 Dec 2009 09:20:46 +0100
amule (2.2.5-2) UNRELEASED; urgency=low
* Make amule and amule-daemon Recommend: unzip, which is used to extract IP
filters in ZIP format. Thanks, Luís Picciochi Oliveira. (Closes: #530249)
-- Adeodato Simó <dato@net.com.org.es> Sat, 23 May 2009 13:26:44 +0200
amule (2.2.5-1) unstable; urgency=low
+++ The "Fido, Your Leash Is Too Long" release.
* New upstream release. (Thanks, DEHS.)
-- Adeodato Simó <dato@net.com.org.es> Sat, 23 May 2009 10:45:57 +0200
amule (2.2.4-1) unstable; urgency=low
+++ "The Book of Love" release.
* New upstream release.
* Bump Standards-Version to 3.8.1 (no changes needed).
* Drop version constraint in debhelper build-dependency, since the required
version is in stable now.
-- Adeodato Simó <dato@net.com.org.es> Thu, 09 Apr 2009 15:11:18 +0200
amule (2.2.3-2) unstable; urgency=low
* The "I Think I Need a New Heart" release.
* Upload to unstable.
* Use xdg-open as default preview program instead of mplayer.
(Closes: #418273)
-- Adeodato Simó <dato@net.com.org.es> Sun, 01 Mar 2009 14:16:29 +0100
amule (2.2.3-1) experimental; urgency=low
* "The Cactus Where Your Heart Should Be" release.
* New upstream release. (Closes: #510257)
+ drop manpages_spelling_fixes.diff, merged upstream.
* Bump debian/compat to 5.
* Change section of packages to net (from x11, heh).
* Add a paragraph to amule-daemon/README.Debian about its init script.
-- Adeodato Simó <dato@net.com.org.es> Sat, 03 Jan 2009 13:00:48 +0100
amule (2.2.2-2) experimental; urgency=low
* The "The Luckiest Guy on the Lower East Side" release.
* Build-Depend on libupnp3-dev: configure now detects its presence at build
time and links against it, instead of the program dlope'ing it at run time.
(Thanks Sven Hartge for the heads-up, closes: #509218).
* Make amule Replace: old versions of amule-common as found in Ubuntu
(they used to ship the skins in amule-common for some time).
-- Adeodato Simó <dato@net.com.org.es> Sat, 20 Dec 2008 21:19:45 +0100
amule (2.2.2-1) experimental; urgency=low
* The "Come Back from San Francisco" release.
[ Sandro Tosi ]
* New upstream release
* debian/control
- bump Standards-Version to 3.8.0
+ debian/README.source added
- added version to build-dep on debhelper due to use of dh_icons
* debian/patches/manpages_spelling_fixes.diff
- added to fix some spelling errors and add missing options
* debian/watch
- treat release candidate version less than the real release
-- Adeodato Simó <dato@net.com.org.es> Sat, 16 Aug 2008 14:06:10 +0100
amule (2.2.1-1) unstable; urgency=low
* The "I Don't Want to Get Over You" release.
* New upstream release. (Closes: #486372)
* Add calls to dh_icons and dh_desktop in debian/rules.
* Pass --with-denoise-level=0 to configure, so that the full g++ invocations
are printed, and not just "Compiling foo". Thanks, Werner Mahr.
-- Adeodato Simó <dato@net.com.org.es> Mon, 30 Jun 2008 19:17:20 +0200
amule (2.2.0~20080608-1) experimental; urgency=low
* The "Reno Dakota" release.
* New upstream snapshot:
+ fixes FTBFS with gcc-4.3. (Closes: #474592)
+ update patch configure_ignore_gdlib-config_garbage.diff.
* Depend on libupnp3 instead of libupnp2. (Closes: #483935)
* Make the init script export $LANG from /etc/default/locale if not already
set. Amule 2.2 no longer assumes a Latin-1 charset, and refuses to handle
files with non-ASCII characters if the running locale does not support
them. (Closes: #475187, #475843)
-- Adeodato Simó <dato@net.com.org.es> Sun, 08 Jun 2008 16:45:50 +0200
amule (2.2.0~20080309-2) experimental; urgency=low
* The "A Chicken With Its Head Cut Off" release.
* Enable uPnP support:
+ pass --enable-upnp to configure.
+ add a hard-coded dependency on libupnp2 to amule and amule-daemon, since
the library is dlopen'ed.
+ no build-dependency on libupnp-dev necessary, upstream ships the two
needed header files under external/upnp.
-- Adeodato Simó <dato@net.com.org.es> Sat, 05 Apr 2008 18:51:05 +0200
amule (2.1.3-6) unstable; urgency=medium
* The "All My Little Words" release.
* Fix FTBFS with GCC 4.3, thanks to Maximiliano Curia for sending a patch.
(Closes: #417104)
-- Adeodato Simó <dato@net.com.org.es> Sat, 05 Apr 2008 16:30:34 +0200
amule (2.2.0~20080309-1) experimental; urgency=low
* The "I Don't Believe in the Sun" release.
* Upload a snapshot of the upcoming 2.2.0 release to experimental.
+ Upstream SVN repository doesn't seem to be public, note in
debian/copyright the URL this tarball was obtained from.
+ Such tarballs ships a debian/ subdirectory, repack and rename it to
debian.upstream.
+ In this version the crashes related to closing a search tab have
disappeared. (Closes: #419613, #430708, #464690)
+ Patch by Bas Zoetekouw to avoid deleting the entropy pool also applied.
(Closes: #350396)
* Packaging changes needed (several come from the Ubuntu package, many
thanks to Emilio Pozuelo Monfort for his excellent work):
+ build-depend on WxWidgets 2.8 instead of 2.6.
+ add build-dependency on libgeoip-dev for GeoIP support, and pass
--enable-geoip to configure.
+ install files from /usr/share/amule/skins.
+ drop our debian/amulegui.desktop and debian/mans/amulegui.1, upstream
includes versions of these.
+ stop shipping a copy of amule.xpm as amulegui.xpm in the packages, now
that upstream ships a amulegui.xpm themselves.
* Patches:
+ drop superseded/applied upstream:
- for_upstream-manpage_typos.diff
- configure_proper_libpng_detection.diff
+ update:
- configure_ignore_gdlib-config_garbage.diff
+ cas_configfile.c_good_default_paths.diff:
- refresh, and use DejaVuSerif instead of Vera, which is going to be
removed. (Closes: #461249)
- make amule-utils recommend ttf-dejavu-core and not ttf-bitstream-vera.
* Bump Standards-Version to 3.7.3 (no changes needed).
* Move the Homepage from the description to its own field.
-- Adeodato Simó <dato@net.com.org.es> Sun, 09 Mar 2008 20:49:57 +0100
amule (2.1.3-5) unstable; urgency=medium
* The "Absolutely Cuckoo" release.
* Fix init script to not exit with non-zero status if VERBOSE=no,
but no error happened. (Closes: #461774)
* Move packaging to a git repository under the collab-maint umbrella.
Add a X-Collab-Maint header to reflect what kind of help I'd welcome.
-- Adeodato Simó <dato@net.com.org.es> Sun, 09 Mar 2008 17:58:12 +0100
amule (2.1.3-4) unstable; urgency=low
* The "Let's Pretend We're Bunny Rabbits" release.
* Rewrite the init script, making it LSB compliant. Remove support
for RUN_AT_STARTUP in /etc/default/amule-daemon, and add support
for AMULED_HOME, which closes: #389488.
* Use a better icon, taken from the Ubuntu package. (Closes: #394671)
* Move menu files from Apps/Net to Applications/Network/File Transfer.
* Fix typo in description (hander -> handler).
-- Adeodato Simó <dato@net.com.org.es> Thu, 09 Aug 2007 00:10:56 +0200
amule (2.1.3-3) unstable; urgency=low
* The "Let's pretend it never happened" release.
* Drop the just introduced patch unconditional_global_search.diff, because
upstream thinks it's a very bad idea.
* Patch acinclude.m4 to cope with libpng versions that are not X.Y.Z, like
the current 1.2.15beta5. This makes amuleweb link against libpng12 again,
enabling the generation of download progress bar images. Thanks to Emilio
Pozuelo Monfort for the heads-up. (Closes: #424774)
* Add libpng12-dev to Build-Depends.
* Use quilt.make.
-- Adeodato Simó <dato@net.com.org.es> Sun, 20 May 2007 12:32:45 +0200
amule (2.1.3-2) unstable; urgency=low
* The "Not only bureaucracy" release.
* Add patch to unconditionally set the type of search to "Global". Thanks
to Robert Millan for the idea/patch. (Let's say this closes: #384344.)
* Remove diversions in amule.preinst in addition to amule-utils.preinst,
since otherwise there'll be dangling diversions on systems where only
amule is installed. Thanks to Javier Fernandez-Sanguino Peña for the
diagnosis. (Closes: #404557)
* Use ${source:Version} instead of ${Source-Version}.
* Move myself from Uploaders to Maintainer, at Julien's request.
-- Adeodato Simó <dato@net.com.org.es> Tue, 15 May 2007 13:58:38 +0200
amule (2.1.3-1) unstable; urgency=low
* The "Over my dead body you'll wear those sneakers to college!" release.
* New upstream release packaged.
* Ship an amulegui.desktop file in /usr/share/applications.
* Fix typos in manpages, spotted by A. Costa. (Closes: #377760, 377761)
* Now that xmule has been removed from the archive (#370524), get rid of
diversions in the package completely:
+ make amule-utils conflict with xmule (<= 1.10.0b-1).
+ loose ed2k.wrapper, and don't have /usr/bin/ed2k be a link to it, but
the real ed2k binary.
If xmule ever comes back, this will be handled with alternatives instead.
* Introduce code in amule-utils.preinst to clean up all the diversion mess
that previous versions left behind. Kudos to Steinar H. Gunderson for the
detailed analysis of the situation. (Closes: #372279, #374806)
-- Adeodato Simó <dato@net.com.org.es> Fri, 21 Jul 2006 04:37:15 +0200
amule (2.1.2-3) unstable; urgency=low
* The "Look at you now, young man" release.
* Move /usr/share/amule/webserver from amule-daemon to amule-common:
+ introduce the appropriate Replaces.
+ lower dependency on amule-common by amule-utils and amule-utils-gui
to a recommends, and move the tiny /usr/share/cas from amule-common
to amule-utils because of this.
* Sundry fixes to debian/control:
+ don't make amule recommend amule-daemon, only amule-utils, and make it
suggest amule-utils-gui; make amule-daemon suggest amule-utils as well.
+ don't make amule-common conflict amule-utils, only replace it as adviced
by Steve Langasek and myself in #343909 five months ago.
+ rewrite all package descriptions, trying to follow the guidelines in
Dev-Ref. amule-common no longer claims to include the ed2k link handler,
which closes: #370421.
* New patches (handled with quilt, so modified debian/rules to invoke it,
and added it to Build-Depends):
+ debian/patches/cas_configfile.c_good_default_paths.diff:
Make /usr/bin/cas write proper paths for stat.png and tmp.html to the
configfile it creates when one is not present, and make it use Bitstream
Vera by default (ttf-bitstream-vera added to Recommends).
+ debian/patches/configure_ignore_gdlib-config_garbage.diff:
Reintroduce patch by Steve Langasek to ignore the output of gdlib-config,
as to avoid linking against unneeded libraries. The patch was introduced
in amule 2.0.3-4 and dropped in 2.1.0-1 (?!). (Closes: #340395)
* The build system detects the presence of bfd.h from binutils-dev and
unconditionally links against libbfd.so, introducing a dependency against
binutils in the packages. To fix this without the need of Build-Conflicts,
build the package with `$(MAKE) BFD_LIB= BFD_FLAGS=` from debian/rules.
* Fix the dpkg-divert mess that happened with the move of ed2k out of the
amule package (binary was in amule-utils, but dpkg-divert was still called
with --package amule); see amule-utils.preinst. The plan is to get rid of
dpkg-divert as soon as I get something done about xmule (see #370524).
* Make the changes to amule.xpm that make it 32x32 as per the Menu Policy
keep the aspect ratio instead of just resizing. Also, ship the new icon in
debian/amule-32.xpm and replace it at runtime, instead of shipping changes
(which are three times bigger) in the .diff.gz.
* Drop not-really-useful README.Debian for amule-utils and amule, and write
basic instructions to run amuled in amule-daemon.README.Debian.
* Revamp the copyright file, with proper list of authors, copyright notices,
and license terms (GPLv2 or higher, not only v2).
* Add a X-VCS-Bzr header to the source package, pointing to the repository
where the packaging is kept.
-- Adeodato Simó <dato@net.com.org.es> Wed, 7 Jun 2006 23:58:27 +0200
amule (2.1.2-2) unstable; urgency=low
* The "Oooh, poor kiddo" release.
* Overhaul debian/rules. Among other changes:
+ provide a binary-arch target that actually builds some .debs; this fixes
recent FTBFS in buildds. (Closes: #369995)
+ do not call ./configure more times than needed. (Closes: #368381)
+ remove dpatch, since it is no longer used; drop build-dependency, and
delete no longer used patches from the patches/ subdirectory as well.
+ build-depend on autotools-dev, to ensure that the config.{sub,guess}
snippet actually makes us build against the latest version of these files.
+ use debhelper *.install files instead of mv commands from debian/rules;
while at it, remove *.dirs files, since they're not needed.
+ use $builddir != $srcdir, to make the clean rule simpler.
* Add to amule-utils missing Replaces: amule (<< 2.1.2-1) (closes: #370068).
In amule 2.1.1-3, debian/rules called dh_link without -pamule-common, thus
shipping the symlinks in amule instead of amule-common.
* Do not ship the placeholder manpages from the debian/mans directory, and
ship the ones provided by upstream, which have actual content, are useful
and translated to four languages.
* Add missing dpkg-divert --remove /usr/share/man/man1/ed2k.1.gz in
amule-utils.postrm. Will hopefully get totally rid of dpkg-divert in the
next upload.
* Remove debian/amule.postinst and debian/amule-utils-gui.postinst, since
they only contain the very same snippet dh_installmenu already installs.
* Make amule-utils-gui.menu point to wxcas.xpm and alc.xpm instead of using
amule.xpm for all three shipped binaries, and ship a copy of amule.xpm as
amulegui.xpm since amule-utils-gui does not depend on amule (thx, lintian).
* Fix debian/watch file; now the http://sf.net shortcut is used.
* Add myself as an uploader, and mutter something about #369995 traffic.
-- Adeodato Simó <dato@net.com.org.es> Mon, 5 Jun 2006 01:50:41 +0200
amule (2.1.2-1.1) unstable; urgency=low
* NMU to fix serious bug before dinstall, with maintainer's permission.
* Make amule-utils Replace: amule-common (<< 2.1.2-1), since ed2k.amule
and other files moved from there in the last upload. (Closes: #369959)
-- Adeodato Simó <dato@net.com.org.es> Fri, 2 Jun 2006 18:13:38 +0200
amule (2.1.2-1) unstable; urgency=low
* New upstream release, youhou !
* Delete some dependencies on amule and amule-daemon (Closes: #369746)
* Fix type in the init script of amuled (Closes: #368447)
* Arch of amule-common is now all (Closes: #369796)
* Remove old patches (Closes: #369775)
* fix error in debian/rules file, can now build with -O2 (Closes: #369800)
* Should not take 100% CPU (Closes: #361770)
* Desktop file is present for amulegui (Closes: #366777)
-- Julien Delange <julien@gunnm.org> Thu, 1 Jun 2006 16:37:42 +0200
amule (2.1.1-3) unstable; urgency=low
* Change description (Closes: #360138)
* Can control file status with amulecmd (Closes: #360135)
* Change amule-utils description (Closes: #362725)
-- Julien Delange <julien@gunnm.org> Wed, 19 Apr 2006 04:01:27 +0200
amule (2.1.1-2) unstable; urgency=low
* Fix build-depends, add dpatch (Closes: #359093)
-- Julien Delange <julien@gunnm.org> Mon, 27 Mar 2006 15:38:01 +0200
amule (2.1.1-1) unstable; urgency=low
* New upstream release (Closes: #358968)
* Fix crypto++ identity bug ( Closes: #348579 )
* ed2k links should work now (Closes: #300414)
-- Julien Delange <julien@gunnm.org> Sat, 25 Mar 2006 04:25:34 +0100
amule (2.1.0-3) unstable; urgency=low
* Fix init.d mistake (Closes: #346581)
-- Julien Delange <julien@gunnm.org> Mon, 13 Feb 2006 02:48:13 +0100
amule (2.1.0-2) unstable; urgency=low
* Fix typo in debian/control (Closes: #330705)
* No dependency on amule for amule-utils-gui (Closes: #348752)
* Add init-script for amule-daemon (Closes: #346581)
* Support now .mka and .flac files (Closes: #347783)
-- Julien Delange <julien@gunnm.org> Fri, 10 Feb 2006 17:33:16 +0100
amule (2.1.0-1) unstable; urgency=low
* No more conflicts between amule-common and old versions of amule
( Closes:#343909)
* New upstream version ( Closes: #345768)
* Text is now conforming with columns width (Closes: #306849)
* Does not ignore gtk theme now (Closes: #316672)
* Support for Kademlia networks
* aMule icon appears now in the system tray without restart (Closes: #297114)
* Add new binary amulegui in amule-utils package, remove amulecmdDLG
-- Julien Delange <julien@gunnm.org> Wed, 4 Jan 2006 15:11:19 +0100
amule (2.0.3-4) unstable; urgency=low
* Fix amule-daemon package, this package does not need amule package
(Closes: #325145)
* Fix freetype6 bug for amule-utils (Closes: #340395)
- see file debian/patches/bug340395-freetype6.diff
* Installable on sid (Closes: #341401)
-- Julien Delange <julien@gunnm.org> Tue, 29 Nov 2005 19:17:41 +0100
amule (2.0.3-3) unstable; urgency=low
* amuled is now in amule-daemon package (Closes: #329110, #325145)
* Use now gtk2, should work on all architectures (Closes: #308874)
* Fix preview in background (Closes: #306323)
* Fix preinst script (Closes: #310613)
-- Julien Delange <julien@gunnm.org> Mon, 26 Sep 2005 21:03:46 +0200
amule (2.0.3-2.1) unstable; urgency=low
* Non-maintainer upload during BSP.
* Do not use an internal copy of libcrypto++, dynamically link against it
instead (closes: #323010). Needed changes:
+ debian/control: add libcrypto++-dev to Build-Dependencies.
+ debian/rules: pass --disable-embedded-crypto to ./configure.
-- Adeodato Simó <asp16@alu.ua.es> Sun, 04 Sep 2005 05:03:53 +0200
amule (2.0.3-2) unstable; urgency=low
* Fix build ( Closes: #318365 )
* Can reinstall amule (Closes: #318572)
-- Julien Delange <julien@gunnm.org> Fri, 29 Jul 2005 01:20:58 +0200
amule (2.0.3-1) unstable; urgency=low
* New upstream release
* Fix gui bugs (Closes: #290901, #290647)
* Fix FTBFS bug on amd64(Closes: #314777)
-- Julien Delange <julien@gunnm.org> Tue, 21 Jun 2005 20:34:05 +0200
amule (2.0.1-1) unstable; urgency=low
* New upstream version
* Fix bug with zh_CN locale (Closes: #289142)
* Fix memleaks and high CPU usage (Closes: #295975)
* Add watchfile (Closes: #308616)
-- Julien Delange <julien@gunnm.org> Wed, 18 May 2005 08:39:54 +0200
amule (2.0.0-1) unstable; urgency=low
* New upstream version
* Don't need libcurl (Closes: #305156)
* Fix buggy display (Closes: #306271)
* French trans is now fixed (Closes: #287813)
* Handling properly all filename (Closes: #295529)
* The time remaining bug is fixed, print now the good time remaining
(Closes: #274715)
* Fix transparency error in taskbar (Closes: #285179)
-- Julien Delange <julien@gunnm.org> Tue, 3 May 2005 15:32:28 +0200
amule (1.2.6+rc8-4) unstable; urgency=low
* Will run on powerpc now (compile against gtk1.2)
* Don't use wxwidgets (Closes: #306062)
-- Julien Delange <julien@gunnm.org> Tue, 26 Apr 2005 20:25:13 +0200
amule (1.2.6+rc8-3) unstable; urgency=low
* Fix ed2k wrapper bug (Closes: #303007)
* Fix some crashes (Closes: #295104)
* Fix non-UTF8 file (alc.desktop), no longer create error when upgrading
(Closes: #284308, #295409, #285358 )
* Can use now distcc to compile aMule (Closes: #298935)
* Add a diversion for ed2k manpage (Closes: #301226)
* Add amuled in package. Be careful, this version is no longer stable, the
next will be ok
-- Julien Delange <julien@gunnm.org> Sat, 9 Apr 2005 00:08:30 +0200
amule (1.2.6+rc8-2) unstable; urgency=low
* Add missing dependencies (Closes: #289057)
-- Julien Delange <julien@gunnm.org> Sun, 9 Jan 2005 11:24:39 +0100
amule (1.2.6+rc8-1) unstable; urgency=low
* Fix wxTextCtrl bug, use now less CPU (Closes: #279475)
* Remove muuli.wdr (Closes: #287005)
* New upstream release (Closes: #286943)
* Support eMule >= 0.44 tags format (Closes: #276101)
* add some missing manpages
* use now wx2.5 library
-- Julien Delange <julien@gunnm.org> Mon, 27 Dec 2004 13:48:34 +0100
amule (1.2.6+rc7-2) unstable; urgency=low
* Fix Build-depends, switch to libcurl3 (Closes: #279473)
* Fix FTBFS with AMD64 (Closes: #285110)
* Fix some files missing in the package (Closes: #281027)
-- Julien Delange <soda@gunnm.org> Mon, 13 Dec 2004 13:08:13 +0100
amule (1.2.6+rc7-1) unstable; urgency=low
* Fix some bugs in GUI (Closes: #271877)
* Fix the minsize bug (Closes: #275876)
-- Julien Delange <julien@gunnm.org> Fri, 22 Oct 2004 19:07:27 +0200
amule (1.2.6+rc6-1) unstable; urgency=low
* New upstream release
* Improve documentation, remove mistakes in README (Closes: #247135)
* Returns 0 status with --version option (Closes: #243470)
* aMule is show in systray when started for the first time (Closes: #262322)
* Doesn't crash anymore even the clients.met file is corrupted (Closes: #260459)
* Workaround with UTF8 and locales (Closes: #262999)
* aMule should work on Alpha now (Closes: #274687)
* Fix bug with server.met and adresses.dat (Closes: #262325)
* Fix but with non-default locales (Closes: #273532)
-- Julien Delange <julien@gunnm.org> Mon, 4 Oct 2004 12:07:00 +0200
amule (1.2.6+rc5-2.1) unstable; urgency=high
* NMU with maintainer agreement
* Add a patch to fix acinclude.m4 and fix builing process on
new libcrypto++ (closes: #268460)
-- Pierre Machard <pmachard@debian.org> Sun, 29 Aug 2004 08:51:54 +0200
amule (1.2.6+rc5-2) unstable; urgency=low
* Delete dependency with xlibs-dev (Closes: #262505)
-- Julien Delange <julien@gunnm.org> Sun, 15 Aug 2004 18:41:17 +0200
amule (1.2.6+rc5-1) unstable; urgency=low
* Less crashes (Closes: #244063)
* Fix problems on sparc (Closes: #239809)
* New upstream relase (Closes: #260066)
* Improve GUI, improve stability (Closes: #250182)
* amuleweb works now (Closes: #238939)
* New manpage for amulecmd (Closes: #255113)
-- Julien Delange <julien@gunnm.org> Fri, 30 Apr 2004 16:05:57 +0200
amule (1.2.6+cvs20040620-1) unstable; urgency=low
* Less CPU load (Closes: #247113)
* More stability (Closes: #248367, #251756, #244063, #250182)
* New way to share files (Closes: #254604)
* Fix error in amulecmd manpage (Closes: 255113)
* Fix manpage directory (Closes: #255112)
-- Julien Delange <julien@gunnm.org> Fri, 30 Apr 2004 16:05:57 +0200
amule (1.2.6+2.0.0rc3-2) unstable; urgency=low
* add amule-utils package (Closes: #246685)
* Fix some misplaced directories (Closes: #246871)
-- Julien Delange <julien@gunnm.org> Fri, 30 Apr 2004 16:05:57 +0200
amule (1.2.6+2.0.0rc3-1) unstable; urgency=low
* Improve stability of amule (Closes: #244405, #245531, #244410, #244063, #241137, #241398)
* Fix GUI bugs (Closes: #240477)
* Improve disk writing, expecially on FAT32 filesystem (Closes: #240928)
* Know when it's the first time (Closes: #240476)
-- Julien Delange <julien@gunnm.org> Sat, 17 Apr 2004 12:31:46 +0200
amule (1.2.6+2.0.0rc2-2) unstable; urgency=low
* Avoid problem with upload on 2.0.0rc2
* fix german translation (Closes: #244093)
-- Julien Delange <julien@gunnm.org> Sat, 17 Apr 2004 12:31:46 +0200
amule (1.2.6+2.0.0rc2-1) unstable; urgency=low
* Delete the debconf template, use NEWS.Debian (Closes: #240856)
* aMule runs now on ia64 (Closes: #233809)
* aMule no longer write 0 length file (Closes: #228929)
* Typos fixed (Closes: #240477, #242173)
-- Julien Delange <julien@gunnm.org> Tue, 30 Mar 2004 12:45:41 +0200
amule (1.2.6+2.0.0rc1-1) unstable; urgency=low
* New upstream release (cvs version)
* Improve description ( Closes: #234318 )
* Implement secure hash ( Closes: #236961 )
* New code for GUI ( Closes: #234089 )
* No 0-len file are now written ( Closes: #228929 )
-- Julien Delange <julien@gunnm.org> Thu, 26 Feb 2004 13:38:33 +0100
amule (1.2.6-2) unstable; urgency=low
* fix postinst script ( Closes: #229755 )
-- Julien Delange <julien@gunnm.org> Fri, 20 Feb 2004 19:37:40 +0100
amule (1.2.6-1) unstable; urgency=low
* New upstream release
* aMule supports PPC ( Closes: #219574 )
* aMule no longuer writes 0 length files ( Closes: #228929 )
* Fix the preinst script, he shouldn't fail ( Closes: #229755 )
-- Julien Delange <julien@gunnm.org> Tue, 10 Feb 2004 11:36:20 +0100
amule (1.2.5-1) unstable; urgency=low
* New upstream release
* aMule supports now ppc architecture, not fully.
-- Julien Delange <julien@gunnm.org> Tue, 10 Feb 2004 11:36:20 +0100
amule (1.2.4-2) unstable; urgency=low
* Fix preint script ( Closes: #227699 )
* Closes: #227712
* Closes: #227728
-- Julien Delange <julien@gunnm.org> Mon, 19 Jan 2004 23:33:40 +0100
amule (1.2.4-1) unstable; urgency=low
* New upstream release
* Fix preinst and postint bugs ( Closes: #226837 )
* Fix the build-deps bug ( Closes: #226935 , Closes: #226958 )
-- Julien Delange <julien@gunnm.org> Mon, 12 Jan 2004 01:34:06 +0100
amule (1.2.3-1) unstable; urgency=low
* New upstream release
* Turn off optimization, this option crash on many computers ( Closes: #221715 )
-- Julien Delange <julien@gunnm.org> Mon, 5 Jan 2004 17:09:55 +0100
amule (1.2.1-2) unstable; urgency=low
* Ajust icon size (old icon not compliant wih debian-policy)
* Add manpages for amulecmd and amulecmdDLG (french and english languages)
* Fix a stupid hack in the debian/rulez file.
-- Julien Delange <julien@gunnm.org> Thu, 18 Dec 2003 16:12:46 +0100
amule (1.2.1-1) unstable; urgency=low
* New upstream release
-- Julien Delange <soda@gunnm.org> Mon, 15 Dec 2003 12:48:14 +0100
amule (1.2.0-1) unstable; urgency=low
* New upstream release
-- Julien Delange <julien@gunnm.org> Fri, 28 Nov 2003 15:36:50 +0100
amule (1.1.2-3) unstable; urgency=low
* Fix the conflict this xmule ( Closes: #218284 )
-- Julien Delange <julien@gunnm.org> Mon, 10 Nov 2003 22:36:05 +0100
amule (1.1.2-2) unstable; urgency=low
* Change the flags in the debian/rulez file, optimisations are enabled
* Closes: 219569
-- Julien Delange <julien@gunnm.org> Fri, 7 Nov 2003 13:36:54 +0100
amule (1.1.2-1) unstable; urgency=low
* New upstream release, REALLY fixed the 'no sources' bug.
-- Julien Delange <julien@gunnm.org> Tue, 4 Nov 2003 18:39:55 +0100
amule (1.1.1b-1) unstable; urgency=low
* New upstream release ( Closes: #219017 )
-- Julien Delange <julien@gunnm.org> Mon, 3 Nov 2003 23:29:04 +0100
amule (1.1.1-1) unstable; urgency=low
* New upstream release
-- Julien Delange <julien@gunnm.org> Sat, 1 Nov 2003 13:15:23 +0100
amule (1.1.0-2) unstable; urgency=low
* New package, working this the new version of the libwxgtk2.4
* Add the new icon, getting it from the CVS
* Add manpages for amule and ed2k
-- Julien Delange <julien@gunnm.org> Mon, 27 Oct 2003 20:01:32 +0100
amule (1.1.0-1) unstable; urgency=low
* New upstream release
-- Julien Delange <julien@gunnm.org> Tue, 21 Oct 2003 23:29:39 +0200
amule (1.0.9-1) unstable; urgency=low
* New upstream release
-- Julien Delange <julien@gunnm.org> Fri, 17 Oct 2003 14:55:25 +0200
amule (1.0.8-2) unstable; urgency=low
* Add a menuitem when the package is installed
-- Julien Delange <julien@gunnm.org> Mon, 13 Oct 2003 12:58:57 +0200
amule (1.0.8-1) unstable; urgency=low
* New upstream release.
-- Julien Delange <julien@gunnm.org> Mon, 13 Oct 2003 00:09:25 +0200
amule (1.0.7-1) unstable; urgency=low
* New upstream release
* Remove message "client too old" when searching on ED2K network
-- Julien Delange <julien@gunnm.org> Sat, 4 Oct 2003 02:05:25 +0200
amule (1.0.6-1) unstable; urgency=low
* Initial Release
* Close the bugreport for the ITP (Closes: #212924)
-- Julien Delange <julien@gunnm.org> Sat, 27 Sep 2003 00:11:07 +0200
|