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
|
tryton-client (7.0.24-1) unstable; urgency=medium
* Merging upstream version 7.0.24.
-- Mathias Behrle <mathiasb@m9s.biz> Mon, 28 Apr 2025 09:44:11 +0200
tryton-client (7.0.23-1) unstable; urgency=medium
* Merging upstream version 7.0.23.
* Amend 05-pygobject-compat.patch for version 7.0.23.
-- Mathias Behrle <mathiasb@m9s.biz> Fri, 04 Apr 2025 10:22:59 +0200
tryton-client (7.0.22-1) unstable; urgency=medium
* Add gir1.2-evince-3.0 and webp-pixbuf-loader to Recommends.
* Add 05-pygobject-compat.patch.
* Merging upstream version 7.0.22.
* Updating copyright file.
-- Mathias Behrle <mathiasb@m9s.biz> Fri, 21 Mar 2025 11:41:29 +0100
tryton-client (7.0.20-1) unstable; urgency=medium
* Merging upstream version 7.0.20.
-- Mathias Behrle <mathiasb@m9s.biz> Thu, 02 Jan 2025 14:16:36 +0100
tryton-client (7.0.15-6) unstable; urgency=medium
* Correct the package name for playsound.
-- Mathias Behrle <mathiasb@m9s.biz> Tue, 26 Nov 2024 16:38:38 +0100
tryton-client (7.0.15-5) unstable; urgency=medium
* Add 04-playsound3.patch.
-- Mathias Behrle <mathiasb@m9s.biz> Tue, 26 Nov 2024 15:58:07 +0100
tryton-client (7.0.15-4) unstable; urgency=medium
* Upload to unstable.
-- Mathias Behrle <mathiasb@m9s.biz> Fri, 25 Oct 2024 13:02:53 +0200
tryton-client (7.0.15-3) experimental; urgency=medium
* Upload to experimental.
-- Mathias Behrle <mathiasb@m9s.biz> Mon, 21 Oct 2024 07:55:17 +0200
tryton-client (7.0.15-2) unstable; urgency=medium
* Update the man page for 7.0.
* Add CC-BY-4.0 license for the sounds.
-- Mathias Behrle <mathiasb@m9s.biz> Sat, 19 Oct 2024 17:58:14 +0200
tryton-client (7.0.15-1) unstable; urgency=medium
* Do not run the reprotest locales flavor in Salsa CI.
* Bump the Standards-Version to 4.7.0, no changes needed.
* Setting the branch in the watch file to the fixed version 7.0.
* Remove deprecated python3-pkg-resources from (Build)Depends (and wrap-
and-sort -a) (Closes: #1083810).
* Merging upstream version 7.0.15.
* Refresh patches.
-- Mathias Behrle <mathiasb@m9s.biz> Fri, 18 Oct 2024 17:33:25 +0200
tryton-client (6.0.43-1) unstable; urgency=medium
* Merging upstream version 6.0.43.
-- Mathias Behrle <mathiasb@m9s.biz> Wed, 18 Sep 2024 14:34:15 +0200
tryton-client (6.0.40-2) unstable; urgency=medium
* Use pytest for testing (Closes: #1079760).
-- Mathias Behrle <mathiasb@m9s.biz> Thu, 29 Aug 2024 12:13:33 +0200
tryton-client (6.0.40-1) unstable; urgency=medium
* Merging upstream version 6.0.40.
-- Mathias Behrle <mathiasb@m9s.biz> Wed, 24 Jul 2024 10:15:29 +0200
tryton-client (6.0.39-1) unstable; urgency=medium
* Switch to pgpmode=none in the watch file.
* Merging upstream version 6.0.39.
-- Mathias Behrle <mathiasb@m9s.biz> Fri, 03 May 2024 11:20:44 +0200
tryton-client (6.0.38-1) unstable; urgency=medium
* Switch to pgpmode=auto in the watch file.
* Update year of debian copyright.
* Merging upstream version 6.0.38.
* Updating copyright file.
-- Mathias Behrle <mathiasb@m9s.biz> Thu, 18 Apr 2024 10:41:03 +0200
tryton-client (6.0.34-1) unstable; urgency=medium
* Merging upstream version 6.0.34.
-- Mathias Behrle <mathiasb@m9s.biz> Thu, 11 Jan 2024 11:52:18 +0100
tryton-client (6.0.29-1) unstable; urgency=medium
* Do not take into account python package metadata when building twice
(Closes: #1046911).
* Merging upstream version 6.0.29.
-- Mathias Behrle <mathiasb@m9s.biz> Mon, 16 Oct 2023 12:43:51 +0200
tryton-client (6.0.28-1) unstable; urgency=medium
* Merging upstream version 6.0.28.
-- Mathias Behrle <mathiasb@m9s.biz> Mon, 21 Aug 2023 11:23:44 +0200
tryton-client (6.0.27-1) unstable; urgency=medium
* Merging upstream version 6.0.27.
-- Mathias Behrle <mathiasb@m9s.biz> Tue, 27 Jun 2023 13:54:04 +0200
tryton-client (6.0.26-1) unstable; urgency=medium
* Merging upstream version 6.0.26.
-- Mathias Behrle <mathiasb@m9s.biz> Mon, 06 Mar 2023 12:43:07 +0100
tryton-client (6.0.25-1) unstable; urgency=medium
* Merging upstream version 6.0.25.
-- Mathias Behrle <mathiasb@m9s.biz> Sun, 26 Feb 2023 14:31:49 +0100
tryton-client (6.0.24-1) unstable; urgency=medium
* Add a non superficial autopkgtest.
* Merging upstream version 6.0.24.
-- Mathias Behrle <mathiasb@m9s.biz> Wed, 08 Feb 2023 13:19:46 +0100
tryton-client (6.0.23-1) unstable; urgency=medium
* Add gir1.2-gtk-3.0 to Depends.
* Run wrap-and-sort -a.
* Update the package URLS to https and the new mono repos location.
* Bump the Standards-Version to 4.6.2, no changes needed.
* Merging upstream version 6.0.23.
* Updating copyright file.
-- Mathias Behrle <mathiasb@m9s.biz> Tue, 17 Jan 2023 18:26:25 +0100
tryton-client (6.0.19-1) unstable; urgency=medium
* Add a salsa-ci.yml
* Set field Upstream-Name in debian/copyright.
* Set upstream metadata fields: Bug-Database, Repository.
* Update standards version to 4.6.1, no changes needed.
* Replace use of deprecated $ADTTMP with $AUTOPKGTEST_TMP.
* Link the html docs also to tryton-client-doc and correct the doc-base.
* Unify short description.
* Merging upstream version 6.0.19.
-- Mathias Behrle <mathiasb@m9s.biz> Tue, 18 Oct 2022 10:02:35 +0200
tryton-client (6.0.18-1) unstable; urgency=medium
* Merging upstream version 6.0.18.
-- Mathias Behrle <mathiasb@m9s.biz> Fri, 09 Sep 2022 10:31:59 +0200
tryton-client (6.0.16-1) unstable; urgency=medium
* Merging upstream version 6.0.16.
-- Mathias Behrle <mathiasb@m9s.biz> Wed, 08 Jun 2022 10:37:44 +0200
tryton-client (6.0.14-1) unstable; urgency=medium
* Merging upstream version 6.0.14.
* Updating copyright file.
-- Mathias Behrle <mathiasb@m9s.biz> Thu, 10 Mar 2022 10:00:12 +0100
tryton-client (6.0.10-1) unstable; urgency=medium
* Merging upstream version 6.0.10.
-- Mathias Behrle <mathiasb@m9s.biz> Sat, 18 Dec 2021 12:12:06 +0100
tryton-client (6.0.8-2) unstable; urgency=medium
* Use debhelper-compat (=13).
-- Mathias Behrle <mathiasb@m9s.biz> Fri, 12 Nov 2021 22:04:57 +0100
tryton-client (6.0.8-1) unstable; urgency=medium
* Update year of debian copyright.
* Bump the Standards-Version to 4.6.0, no changes needed.
* Set the watch file version to 4.
* Setting the branch in the watch file to the fixed version 6.0.
* Merging upstream version 6.0.8.
* Updating copyright file.
* Refresh patches.
* Build documentation without sphinx configuration, removed upstream.
* Update the man page for 6.0.
-- Mathias Behrle <mathiasb@m9s.biz> Tue, 19 Oct 2021 10:49:11 +0200
tryton-client (5.0.39-1) unstable; urgency=medium
* Merging upstream version 5.0.39.
-- Mathias Behrle <mathiasb@m9s.biz> Mon, 04 Oct 2021 15:30:07 +0200
tryton-client (5.0.37-1) unstable; urgency=medium
* Merging upstream version 5.0.37.
-- Mathias Behrle <mathiasb@m9s.biz> Tue, 29 Jun 2021 09:51:34 +0200
tryton-client (5.0.33-1) unstable; urgency=medium
* Merging upstream version 5.0.33.
* Updating copyright file.
-- Mathias Behrle <mathiasb@m9s.biz> Fri, 12 Mar 2021 14:52:02 +0100
tryton-client (5.0.31-1) unstable; urgency=medium
* Updating to standards version 4.5.1, no changes needed.
* Mark the autopkgtest as superficial (Closes: #974480).
* Merging upstream version 5.0.31.
* Updating copyright file.
-- Mathias Behrle <mathiasb@m9s.biz> Wed, 17 Feb 2021 17:01:43 +0100
tryton-client (5.0.29-1) unstable; urgency=medium
* Merging upstream version 5.0.29.
-- Mathias Behrle <mathiasb@m9s.biz> Thu, 17 Dec 2020 09:58:54 +0100
tryton-client (5.0.27-1) unstable; urgency=medium
* Adapt copyright to use the correct license for the changed icons.
* Bump to same debhelper compat as the server for now.
* Merging upstream version 5.0.27.
-- Mathias Behrle <mathiasb@m9s.biz> Sat, 26 Sep 2020 10:22:49 +0200
tryton-client (5.0.25-1) unstable; urgency=medium
* Update year of debian copyright.
* Bump the Standards-Version to 4.5.0, no changes needed.
* Add Rules-Requires-Root: no to d/control.
* Merging upstream version 5.0.25.
* Updating copyright file.
-- Mathias Behrle <mathiasb@m9s.biz> Sat, 04 Jul 2020 12:40:32 +0200
tryton-client (5.0.22-1) unstable; urgency=medium
* Merging upstream version 5.0.22.
-- Mathias Behrle <mathiasb@m9s.biz> Sun, 05 Apr 2020 11:23:43 +0200
tryton-client (5.0.21-1) unstable; urgency=medium
* Merging upstream version 5.0.21.
* Updating copyright file.
-- Mathias Behrle <mathiasb@m9s.biz> Thu, 12 Mar 2020 17:30:07 +0100
tryton-client (5.0.17-1) unstable; urgency=medium
* Merging upstream version 5.0.17.
-- Mathias Behrle <mathiasb@m9s.biz> Tue, 03 Dec 2019 10:16:53 +0100
tryton-client (5.0.15-1) unstable; urgency=medium
* Merging upstream version 5.0.15.
-- Mathias Behrle <mathiasb@m9s.biz> Mon, 21 Oct 2019 12:27:42 +0200
tryton-client (5.0.12-1) unstable; urgency=medium
* Merging upstream version 5.0.12.
-- Mathias Behrle <mathiasb@m9s.biz> Tue, 23 Jul 2019 18:59:03 +0200
tryton-client (5.0.9-2) unstable; urgency=medium
* Bump the Standards-Version to 4.4.0, no changes needed.
* Update year of debian copyright.
* Setting the branch in the watch file to the fixed version 5.0.
-- Mathias Behrle <mathiasb@m9s.biz> Mon, 22 Jul 2019 12:16:30 +0200
tryton-client (5.0.9-1) unstable; urgency=medium
* Merging upstream version 5.0.9.
-- Mathias Behrle <mathiasb@m9s.biz> Tue, 23 Apr 2019 09:53:27 +0200
tryton-client (5.0.8-1) unstable; urgency=medium
* Add the actual upstream maintainer key to signing-key.asc.
* Merging upstream version 5.0.8.
-- Mathias Behrle <mathiasb@m9s.biz> Wed, 03 Apr 2019 13:31:54 +0200
tryton-client (5.0.7-1) unstable; urgency=medium
* Merging upstream version 5.0.7.
-- Mathias Behrle <mathiasb@m9s.biz> Mon, 18 Mar 2019 11:55:30 +0100
tryton-client (5.0.6-1) unstable; urgency=medium
* Merging upstream version 5.0.6.
* Updating copyright file.
-- Mathias Behrle <mathiasb@m9s.biz> Wed, 20 Feb 2019 12:20:22 +0100
tryton-client (5.0.5-1) unstable; urgency=medium
* Merging upstream version 5.0.5.
-- Mathias Behrle <mathiasb@m9s.biz> Wed, 23 Jan 2019 15:52:11 +0100
tryton-client (5.0.4-1) unstable; urgency=medium
* Add default-dbus-session-bus to Suggests.
* Bump Standards-Version to 4.3.0.
* Merging upstream version 5.0.4.
* Updating copyright file.
-- Mathias Behrle <mathiasb@m9s.biz> Sun, 06 Jan 2019 13:17:04 +0100
tryton-client (5.0.3-2) unstable; urgency=medium
* Add a simple smoke test as autopkgtest.
-- Mathias Behrle <mathiasb@m9s.biz> Tue, 01 Jan 2019 20:34:46 +0100
tryton-client (5.0.3-1) unstable; urgency=medium
* Merging upstream version 5.0.3.
-- Mathias Behrle <mathiasb@m9s.biz> Mon, 03 Dec 2018 13:30:46 +0100
tryton-client (5.0.2-1) unstable; urgency=medium
* Merging upstream version 5.0.0.
* Updating copyright file.
* Merging upstream version 5.0.1.
Contains a fix for security issue
https://bugs.tryton.org/issue7792
https://discuss.tryton.org/t/security-release-for-issue7792
No CVE available so far.
* Updating to Standards-Version: 4.2.1, no changes needed.
* Update signing-key.asc with the minimized actual upstream maintainer
key.
* Merging upstream version 5.0.2.
* Refresh patches.
* Remove X-Python-Version, the client runs now under Python3 >= 3.4.
* Update (Build-)Depends in d/control for Python3 and GTK3.
* Update d/rules for Python3.
* Add 03-disable-version-check.patch.
* Update the man page for 5.0.
-- Mathias Behrle <mathiasb@m9s.biz> Tue, 20 Nov 2018 13:03:14 +0100
tryton-client (4.6.5-1) unstable; urgency=medium
* Merging upstream version 4.6.5.
-- Mathias Behrle <mathiasb@m9s.biz> Wed, 04 Apr 2018 18:47:54 +0200
tryton-client (4.6.4-1) unstable; urgency=medium
* Merging upstream version 4.6.4.
* Updating copyright file.
-- Mathias Behrle <mathiasb@m9s.biz> Thu, 29 Mar 2018 23:44:38 +0200
tryton-client (4.6.2-2) unstable; urgency=medium
* Update year of debian copyright.
* Updating to standards version 4.1.3, no changes needed.
* control: update Vcs-Browser and Vcs-Git
* Set the Maintainer address to team+tryton-team@tracker.debian.org.
-- Mathias Behrle <mathiasb@m9s.biz> Thu, 29 Mar 2018 21:14:22 +0200
tryton-client (4.6.2-1) unstable; urgency=medium
* Merging upstream version 4.6.2.
-- Mathias Behrle <mathiasb@m9s.biz> Sat, 06 Jan 2018 11:25:02 +0100
tryton-client (4.6.1-1) unstable; urgency=medium
* Merging upstream version 4.6.1.
-- Mathias Behrle <mathiasb@m9s.biz> Tue, 12 Dec 2017 19:03:12 +0100
tryton-client (4.6.0-1) unstable; urgency=medium
* Bump the Standards-Version to 4.1.1, no changes needed.
* Merging upstream version 4.6.0.
* Updating debian/manpages.
* Refresh patches.
* Use BD python3-sphinx instead of deprecated python-sphinx.
* Use https in the watch file.
-- Mathias Behrle <mathiasb@m9s.biz> Tue, 07 Nov 2017 10:19:41 +0100
tryton-client (4.4.2-1) unstable; urgency=medium
* Bump the Standards-Version to 4.1.0, no changes needed.
* Merging upstream version 4.4.2.
-- Mathias Behrle <mathiasb@m9s.biz> Thu, 05 Oct 2017 11:50:41 +0200
tryton-client (4.4.1-2) unstable; urgency=medium
* Use the preferred https URL format in the copyright file.
* Bump the Standards-Version to 4.0.1.
-- Mathias Behrle <mathiasb@m9s.biz> Thu, 17 Aug 2017 16:02:27 +0200
tryton-client (4.4.1-1) unstable; urgency=medium
* Merging upstream version 4.4.1.
-- Mathias Behrle <mathiasb@m9s.biz> Thu, 17 Aug 2017 11:44:35 +0200
tryton-client (4.4.0-2) unstable; urgency=medium
* Change the maintainer address to tryton-debian@lists.alioth.debian.org
(Closes: #865109).
-- Mathias Behrle <mathiasb@m9s.biz> Tue, 11 Jul 2017 12:35:53 +0200
tryton-client (4.4.0-1) unstable; urgency=medium
* Merging upstream version 4.4.0.
* Updating debian/copyright.
* Updating debian/manpages.
* Refreshing patches.
-- Mathias Behrle <mathiasb@m9s.biz> Sat, 10 Jun 2017 23:29:21 +0200
tryton-client (4.2.4-1) unstable; urgency=medium
* Add the actual upstream maintainer key to signing-key.asc.
* Merging upstream version 4.2.4.
-- Mathias Behrle <mathiasb@m9s.biz> Tue, 14 Mar 2017 10:59:02 +0100
tryton-client (4.2.3-1) unstable; urgency=medium
* Merging upstream version 4.2.3.
* Updating copyright file.
-- Mathias Behrle <mathiasb@m9s.biz> Wed, 08 Feb 2017 11:02:22 +0100
tryton-client (4.2.1-1) unstable; urgency=medium
* Merging upstream version 4.2.1.
-- Mathias Behrle <mathiasb@m9s.biz> Wed, 04 Jan 2017 12:47:41 +0100
tryton-client (4.2.0-2) unstable; urgency=medium
* Replace fixed Python paths by dynamic paths.
* Use rather the -r switch of py*versions to get the unique and correct
Python version.
-- Mathias Behrle <mathiasb@m9s.biz> Mon, 19 Dec 2016 10:37:05 +0100
tryton-client (4.2.0-1) unstable; urgency=medium
* Merging upstream version 4.2.0.
* Updating the Depends for 4.2.
* Refreshing patches.
* Updating the man page for 4.2.
* Improve README.Debian for the fingerprint handling.
-- Mathias Behrle <mathiasb@m9s.biz> Mon, 05 Dec 2016 19:50:38 +0100
tryton-client (4.0.6-1) unstable; urgency=medium
* Merging upstream version 4.0.6.
-- Mathias Behrle <mathiasb@m9s.biz> Tue, 08 Nov 2016 09:31:17 +0100
tryton-client (4.0.5-1) unstable; urgency=medium
* Merging upstream version 4.0.5.
-- Mathias Behrle <mathiasb@m9s.biz> Mon, 03 Oct 2016 12:46:25 +0200
tryton-client (4.0.4-2) unstable; urgency=medium
* Refreshing 02-icon-search-path.patch.
-- Mathias Behrle <mathiasb@m9s.biz> Tue, 06 Sep 2016 14:37:23 +0200
tryton-client (4.0.4-1) unstable; urgency=medium
* Merging upstream version 4.0.4.
-- Mathias Behrle <mathiasb@m9s.biz> Sat, 03 Sep 2016 21:00:16 +0200
tryton-client (4.0.3-1) unstable; urgency=medium
* Merging upstream version 4.0.3.
-- Mathias Behrle <mathiasb@m9s.biz> Fri, 05 Aug 2016 11:55:37 +0200
tryton-client (4.0.2-1) unstable; urgency=medium
* Updating to Standards-Version: 3.9.8, no changes needed.
* Merging upstream version 4.0.2.
-- Mathias Behrle <mathiasb@m9s.biz> Mon, 11 Jul 2016 19:30:26 +0200
tryton-client (4.0.1-1) unstable; urgency=medium
* Merging upstream version 4.0.0.
* Merging upstream version 4.0.1.
* Updating the copyright file.
* Adapting and improving the man page.
-- Mathias Behrle <mathiasb@m9s.biz> Mon, 30 May 2016 18:56:54 +0200
tryton-client (3.8.6-1) unstable; urgency=medium
* Merging upstream version 3.8.6.
-- Mathias Behrle <mathiasb@m9s.biz> Sat, 09 Apr 2016 19:21:06 +0200
tryton-client (3.8.5-1) unstable; urgency=medium
* Updating signing-key.asc with the actual upstream maintainer keys.
* Merging upstream version 3.8.5.
-- Mathias Behrle <mathiasb@m9s.biz> Tue, 15 Mar 2016 20:26:11 +0100
tryton-client (3.8.4-2) unstable; urgency=medium
* Updating to standards version 3.9.7, no changes needed.
* Updating VCS-Browser to https and canonical cgit URL.
* Updating VCS-Git to https and canonical cgit URL.
* Removing the braces from the dh call.
* Removing the version constraint from python.
-- Mathias Behrle <mathiasb@m9s.biz> Tue, 08 Mar 2016 13:08:18 +0100
tryton-client (3.8.4-1) unstable; urgency=medium
* Merging upstream version 3.8.4.
-- Mathias Behrle <mathiasb@m9s.biz> Wed, 10 Feb 2016 18:55:44 +0100
tryton-client (3.8.3-1) unstable; urgency=medium
* Merging upstream version 3.8.3.
* Updating copyright file.
-- Mathias Behrle <mathiasb@m9s.biz> Sun, 17 Jan 2016 19:40:11 +0100
tryton-client (3.8.2-1) unstable; urgency=medium
* Merging upstream version 3.8.0.
* Merging upstream version 3.8.1.
* Merging upstream version 3.8.2.
* Adapting the icon search path for version 3.8.
* Moving files to their policy conforming place in the rules file.
* Adapting the svg path in copyright to their new location.
* Actualisation of the man page.
* Adding python-chardet to Depends.
-- Mathias Behrle <mathiasb@m9s.biz> Thu, 12 Nov 2015 19:06:28 +0100
tryton-client (3.6.3-1) unstable; urgency=medium
* Merging upstream version 3.6.3.
-- Mathias Behrle <mathiasb@m9s.biz> Sun, 20 Sep 2015 19:45:37 +0200
tryton-client (3.6.2-1) unstable; urgency=medium
* Adapting section naming in gbp.conf to current git-buildpackage.
* Merging upstream version 3.6.2.
-- Mathias Behrle <mathiasb@m9s.biz> Wed, 15 Jul 2015 12:37:46 +0200
tryton-client (3.6.1-1) unstable; urgency=medium
* Updating year of debian copyright.
* Merging upstream version 3.6.1.
-- Mathias Behrle <mathiasb@m9s.biz> Wed, 20 May 2015 14:55:29 +0200
tryton-client (3.6.0-1) unstable; urgency=medium
* Wrapping and sorting control files (wrap-and-sort -bts).
* Merging upstream version 3.6.0.
* Updating manpage.
* Refreshing debian patches.
-- Mathias Behrle <mathiasb@m9s.biz> Sun, 26 Apr 2015 23:48:53 +0200
tryton-client (3.4.3-1) unstable; urgency=medium
* Improving boilerplate in d/control (Closes: #771722).
* Removing TODO from docs prospectively, they are about to be removed
upstream.
* Merging upstream version 3.4.3.
-- Mathias Behrle <mathiasb@m9s.biz> Tue, 31 Mar 2015 14:13:54 +0200
tryton-client (3.4.2-1) unstable; urgency=medium
* Adding actual upstream signing key.
* Merging upstream version 3.4.2.
* Updating copyright file.
-- Mathias Behrle <mathiasb@m9s.biz> Tue, 17 Feb 2015 21:16:10 +0100
tryton-client (3.4.1-1) unstable; urgency=medium
* Merging upstream version 3.4.1.
* Refreshing 02-icon-directory.patch.
-- Mathias Behrle <mathiasb@m9s.biz> Thu, 04 Dec 2014 18:04:47 +0100
tryton-client (3.4.0-1) unstable; urgency=medium
* Merging upstream version 3.4.0.
* Refreshing and adapting patches for version 3.4.
* Updating man page.
-- Mathias Behrle <mathiasb@m9s.biz> Tue, 21 Oct 2014 20:23:37 +0200
tryton-client (3.2.4-1) unstable; urgency=medium
* Adding actual upstream signing key.
* Updating to Standards-Version: 3.9.6, no changes needed.
* Merging upstream version 3.2.4.
-- Mathias Behrle <mathiasb@m9s.biz> Wed, 08 Oct 2014 13:49:05 +0200
tryton-client (3.2.3-1) unstable; urgency=medium
* Merging upstream version 3.2.3.
-- Mathias Behrle <mathiasb@m9s.biz> Tue, 26 Aug 2014 13:50:36 +0200
tryton-client (3.2.2-1) unstable; urgency=medium
* Merging upstream version 3.2.2.
-- Mathias Behrle <mathiasb@m9s.biz> Wed, 02 Jul 2014 13:46:55 +0200
tryton-client (3.2.1-1) unstable; urgency=medium
* Updating signing key while using now plain .asc files instead of .pgp
binaries.
* Merging upstream version 3.2.1.
-- Mathias Behrle <mathiasb@m9s.biz> Mon, 12 May 2014 16:32:50 +0200
tryton-client (3.2.0-1) unstable; urgency=medium
* Merging upstream version 3.2.0.
* Updating gbp.conf for usage of upstream tarball compression.
* Updating Depends and Recommends for version 3.2.
* Adapting and refreshing patches.
* Updating manpage.
* Adding hint for SSL check of the client in README.Debian.
-- Mathias Behrle <mathiasb@m9s.biz> Thu, 24 Apr 2014 15:25:19 +0200
tryton-client (3.0.3-1) unstable; urgency=medium
* Removing LC_ALL=C.UTF-8 as build environment.
* Merging upstream version 3.0.3.
* Updating copyright.
-- Mathias Behrle <mathiasb@m9s.biz> Wed, 16 Apr 2014 15:10:02 +0200
tryton-client (3.0.2-2) unstable; urgency=medium
* Updating year in debian copyright.
* Removing debian/source/options, we are building with dpkg defaults.
* Removing PYBUILD_DESTDIR_python2 from rules, it is no more needed.
* Adding pgp verification for uscan.
* Adding gbp.conf for usage with git-buildpackage.
* Adding python-goocalendar to Recommends, it is now in Debian main.
* Re-enabling PYBUILD_DESTDIR_python2, it is needed in a multibinary
package.
-- Mathias Behrle <mathiasb@m9s.biz> Wed, 12 Mar 2014 12:37:39 +0100
tryton-client (3.0.2-1) unstable; urgency=low
* Merging upstream version 3.0.2.
-- Mathias Behrle <mathiasb@m9s.biz> Wed, 11 Dec 2013 12:56:48 +0100
tryton-client (3.0.1-2) unstable; urgency=low
* Pointing VCS fields to new location on alioth.debian.org.
* Using dpkg defaults for xz compression.
-- Mathias Behrle <mathiasb@m9s.biz> Mon, 02 Dec 2013 21:14:54 +0100
tryton-client (3.0.1-1) unstable; urgency=low
* Adding doc packages to Suggests.
* Merging upstream version 3.0.0.
* Merging upstream version 3.0.1.
* Updating copyright.
* Refreshing patches.
* Updating manpage.
* Updating to standards version 3.9.5, no changes needed.
* Changing to buildsystem pybuild.
-- Mathias Behrle <mathiasb@m9s.biz> Mon, 25 Nov 2013 18:02:20 +0100
tryton-client (2.8.4-1) unstable; urgency=high
* Merging upstream version 2.8.4.
* Contains the security patch to sanitize correctly the file extension
of temporary files received by the server
(s. https://bugs.tryton.org/issue3446).
-- Mathias Behrle <mathiasb@m9s.biz> Sun, 03 Nov 2013 20:53:23 +0100
tryton-client (2.8.3-1) unstable; urgency=low
* Merging upstream version 2.8.3.
-- Mathias Behrle <mathiasb@m9s.biz> Sun, 13 Oct 2013 20:24:01 +0200
tryton-client (2.8.2-1) unstable; urgency=low
* Moving sphinx-build to override_dh_auto_build.
* Removing pydist-overrides, it is no more needed.
* Adapting the rules file to work also with git-buildpackage.
* Merging upstream version 2.8.2.
-- Mathias Behrle <mathiasb@m9s.biz> Mon, 05 Aug 2013 21:23:00 +0200
tryton-client (2.8.1-1) unstable; urgency=low
* Merging upstream version 2.8.1.
-- Mathias Behrle <mathiasb@m9s.biz> Mon, 10 Jun 2013 14:01:07 +0200
tryton-client (2.8.0-2) unstable; urgency=low
* Builduing new package tryton-client-doc from sphinx documentation.
-- Mathias Behrle <mathiasb@m9s.biz> Fri, 31 May 2013 17:25:50 +0200
tryton-client (2.8.0-1) experimental; urgency=low
* Merging upstream version 2.8.0.
* Updating copyright.
* Refreshing patches.
-- Mathias Behrle <mathiasb@m9s.biz> Thu, 02 May 2013 15:19:19 +0200
tryton-client (2.6.2-4) experimental; urgency=low
* Correcting pixmap link of tryton-icon.png. Thanks to Ilya Melnikov.
* Adding README.Debian to point out version dependency.
-- Mathias Behrle <mathiasb@m9s.biz> Sat, 27 Apr 2013 15:27:07 +0200
tryton-client (2.6.2-3) experimental; urgency=low
* Removing Daniel from Uploaders. Thanks for your work! (Closes: #704359).
* Changing Depends from librsvg2-2 to librsvg2-common.
-- Mathias Behrle <mathiasb@m9s.biz> Mon, 22 Apr 2013 12:36:42 +0200
tryton-client (2.6.2-2) experimental; urgency=low
* Updating Vcs-Git to correct address.
* Adding watch file. Thanks to Bart Martens <bartm@debian.org>.
-- Mathias Behrle <mathiasb@m9s.biz> Sat, 23 Mar 2013 13:59:57 +0100
tryton-client (2.6.2-1) experimental; urgency=low
* Removing obsolete Dm-Upload-Allowed
* Updating and adding options to man page (Closes: #691555).
* Updating to Standards-Version: 3.9.4, no changes needed.
* Merging upstream version 2.6.1.
* Merging upstream version 2.6.2.
* Updating copyright.
* Correcting filling and indentation in man page.
-- Mathias Behrle <mathiasb@m9s.biz> Sun, 17 Feb 2013 12:43:53 +0100
tryton-client (2.6.0-1) experimental; urgency=low
* Merging upstream version 2.6.0.
* Refreshing 02-icon-directory.patch.
-- Mathias Behrle <mathiasb@m9s.biz> Wed, 24 Oct 2012 14:23:44 +0200
tryton-client (2.4.1-2) experimental; urgency=low
[ Daniel Baumann ]
* Updating maintainers field.
* Updating vcs fields.
* Switching to xz compression.
* Updating to debhelper version 9.
* Correcting copyright file to match format version 1.0.
[ Mathias Behrle ]
* Merging branch debian-wheezy-2.2 (Closes: #687760).
-- Mathias Behrle <mathiasb@m9s.biz> Mon, 17 Sep 2012 12:11:27 +0200
tryton-client (2.4.1-1) experimental; urgency=low
* Merging upstream version 2.4.1.
* Removing 03-language-files.patch, patch went upstream.
-- Mathias Behrle <mathiasb@m9s.biz> Tue, 11 Sep 2012 13:52:51 +0200
tryton-client (2.4.0-1) experimental; urgency=low
* Updating to Standards-Version: 3.9.3, no changes needed.
* Updating year in copyright.
* Adding Format header for DEP5.
* Merging upstream version 2.4.0.
* Updating Copyright.
* Setting X-Python-Version: >= 2.7 for weakrefset.
* Moving python-simplejson to Recommends.
* Removing 03-replace-tryton-preferences-svg.patch, went upstream.
* Refreshing patches.
* Adding 03-language-files.patch to copy correctly language files.
-- Mathias Behrle <mathiasb@m9s.biz> Sat, 28 Apr 2012 11:52:11 +0200
tryton-client (2.2.1-1) unstable; urgency=low
* Refreshing 02-icon-directory.patch.
* Merging upstream version 2.2.1.
* Bumping X-Python-Version to >=2.6.
* Updating version in man page.
* Rediffing 02-icon-directory.patch.
* Replacing tryton-preferences.svg with supposed candidate
(s. http://bugs.tryton.org/roundup/issue2245).
* Updating copyright.
* Reverting all changes made for "Replacing non-DFSG compliant graphics",
patch went upstream.
* Merging upstream version 2.2.0.
-- Mathias Behrle <mathiasb@m9s.biz> Mon, 26 Dec 2011 13:51:05 +0100
tryton-client (2.0.2+dfsg-1) unstable; urgency=low
* Merging upstream version 2.0.2+dfsg.
-- Mathias Behrle <mathiasb@m9s.biz> Mon, 03 Oct 2011 14:50:42 +0200
tryton-client (2.0.1+dfsg-1) unstable; urgency=low
[ Daniel Baumann ]
* Moving to source format 3.0 (quilt).
* Not wrapping uploaders field, it does not exceed 80 chars.
* Compacting copyright file.
* Updating manpage.
* Alinging entries in debhelper install file.
* Also updating version number in manpage.
[ Mathias Behrle ]
* Merging upstream version 2.0.1+dfsg.
* Replacing non-DFSG compliant graphics in share/pixmaps/tryton by linking
to tango-icon-theme or by replacing with DFSG compliant placeholders.
[ Daniel Baumann ]
* Correcting installation location of icons.
[ Mathias Behrle ]
* Adding sources for png and ico in debian/icons.
* Correcting installation path for pixmap files.
* Adding sources and correcting path in include_binaries.
* Correcting setup.py for installation location of icons.
* Moving from deprecated python-support to dh_python2, thanks to
Charlie Smotherman <cjsmo@cableone.net> (Closes: #632775).
[ Daniel Baumann ]
* Correcting dh_auto_clean override in rules.
* Moving X-Python-Version field to the end of the source package stanza.
* Using braces in rules for consistency reasons.
* Rediffing icon-directory.patch.
* Installing tryton.desktop as tryton-client.desktop for consistency reasons.
[ Mathias Behrle ]
* Silencing package matcher of dh_python2.
-- Mathias Behrle <mathiasb@m9s.biz> Thu, 14 Jul 2011 14:58:32 +0200
tryton-client (2.0.1-1) unstable; urgency=low
* Merging upstream version 2.0.1.
-- Mathias Behrle <mathiasb@m9s.biz> Sun, 05 Jun 2011 13:17:08 +0200
tryton-client (2.0.0-1) unstable; urgency=low
* Changing recommends from openoffice.org to libreoffice.
* Adding libreoffice-calc to Recommends.
* Updating to standards version 3.9.2.
* Merging upstream version 2.0.0.
* Updating Copyright.
-- Mathias Behrle <mathiasb@m9s.biz> Tue, 24 May 2011 21:27:55 +0200
tryton-client (1.8.1-1) unstable; urgency=low
* Changing my email address.
* Correcting path for tryton icon.
* Updating description for menu.
* Merging upstream version 1.8.1.
* Updating Copyright.
-- Mathias Behrle <mathiasb@m9s.biz> Tue, 15 Feb 2011 12:59:16 +0100
tryton-client (1.8.0-1) experimental; urgency=low
* Updating to debhelper version 8.
* Updating to standards version 3.9.1.
* Switching to source format 3.0 (quilt).
* Merging upstream version 1.8.0.
* Updating version and date header in manpage.
-- Daniel Baumann <daniel@debian.org> Fri, 12 Nov 2010 12:39:48 +0100
tryton-client (1.6.1-1) unstable; urgency=low
* Wrapping copyright.
* Updating standards version to 3.9.0.
* Merging upstream version 1.6.1.
-- Daniel Baumann <daniel@debian.org> Fri, 06 Aug 2010 16:33:11 +0200
tryton-client (1.6.0-1) unstable; urgency=low
[ Daniel Baumann ]
* Adding Dm-Upload-Allowed in control in preparation for Mathias.
[ Mathias Behrle ]
* Merging upstream version 1.6.0.
* Updating copyright.
* Updating depends.
* Updating date and version header in manpage.
-- Mathias Behrle <mathiasb@mbsolutions.selfip.biz> Mon, 10 May 2010 16:38:29 +0200
tryton-client (1.4.3-1) unstable; urgency=low
* Merging upstream version 1.4.3.
-- Daniel Baumann <daniel@debian.org> Wed, 31 Mar 2010 23:58:04 +0200
tryton-client (1.4.2-1) unstable; urgency=low
[ Mathias Behrle ]
* Removing python-openssl from recommends.
[ Daniel Baumann ]
* Updating year in copyright file.
* Removing unneeded python-all-dev from build-depends.
* Updating to standards 3.8.4.
* Merging upstream version 1.4.2.
-- Daniel Baumann <daniel@debian.org> Sat, 20 Feb 2010 09:39:45 +0100
tryton-client (1.4.1-1) unstable; urgency=low
[ Mathias Behrle ]
* Adding odt and pdf viewers to Recommends.
[ Daniel Baumann ]
* Wrapping recommends.
* Merging upstream version 1.4.1.
* Updating README.source.
* Adding explicit debian source version 1.0 until switch to 3.0.
-- Daniel Baumann <daniel@debian.org> Wed, 25 Nov 2009 12:39:35 +0100
tryton-client (1.4.0-1) unstable; urgency=low
* Merging upstream version 1.4.0.
* Removing desktop.patch, went upstream.
-- Daniel Baumann <daniel@debian.org> Mon, 19 Oct 2009 21:16:34 +0200
tryton-client (1.2.2-2) unstable; urgency=low
* Adding python-openssl to recommends.
-- Daniel Baumann <daniel@debian.org> Sun, 18 Oct 2009 14:09:03 +0200
tryton-client (1.2.2-1) unstable; urgency=low
* Updating to standards version 3.8.3.
* Adding maintainer homepage field to control.
* Adding README.source.
* Merging upstream version 1.2.2.
* Moving maintainer homepage field to copyright.
* Updating README.source.
* Using ascii only characters in copyright.
-- Daniel Baumann <daniel@debian.org> Sat, 05 Sep 2009 09:35:44 +0200
tryton-client (1.2.1-3) unstable; urgency=low
* Updating maintainer field.
* Updating vcs fields.
* Wrapping lines in control.
-- Daniel Baumann <daniel@debian.org> Mon, 10 Aug 2009 19:22:28 +0200
tryton-client (1.2.1-2) unstable; urgency=low
* Minimizing rules file.
* Adding patch to remove double entry in desktop file.
-- Daniel Baumann <daniel@debian.org> Sun, 26 Jul 2009 19:38:13 +0200
tryton-client (1.2.1-1) unstable; urgency=low
* Updating to build with python2.6.
* Updating package to standards version 3.8.2.
* Merging upstream version 1.2.1.
* Updating date and version in manpage header.
-- Daniel Baumann <daniel@debian.org> Fri, 10 Jul 2009 14:11:27 +0200
tryton-client (1.2.0-1) unstable; urgency=low
[ Daniel Baumann ]
* Merging upstream version 1.2.0.
* Removing own desktop file, using newly added one from upstream.
* Tidy rules files.
* Updating version information in manpage.
* Updating copyright file for new upstream release.
* Including TODO file in docs.
[ Mathias Behrle ]
* Updating application description.
[ Daniel Baumann ]
* Correcting wrapping of control file.
-- Daniel Baumann <daniel@debian.org> Tue, 21 Apr 2009 19:23:00 +0200
tryton-client (1.0.3-2) unstable; urgency=low
* Adding Mathias to uploaders.
-- Daniel Baumann <daniel@debian.org> Sat, 28 Mar 2009 16:15:00 +0100
tryton-client (1.0.3-1) unstable; urgency=low
* Merging upstream version 1.0.3.
-- Daniel Baumann <daniel@debian.org> Mon, 23 Mar 2009 07:48:00 +0100
tryton-client (1.0.2-1) unstable; urgency=low
* Merging upstream version 1.0.2.
-- Daniel Baumann <daniel@debian.org> Mon, 23 Mar 2009 06:35:00 +0100
tryton-client (1.0.1-1) unstable; urgency=low
* Merging upstream version 1.0.1.
* Updating standards to 3.8.1.
-- Daniel Baumann <daniel@debian.org> Sun, 22 Mar 2009 22:42:00 +0100
tryton-client (1.0.0-1) unstable; urgency=low
* Initial release (Closes: #506095).
-- Daniel Baumann <daniel@debian.org> Mon, 12 Jan 2009 15:49:00 -0500
|