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
|
libgwenhywfar (4.20.0-9) unstable; urgency=medium
* Drop binary packages libgwengui-qt4-0 and libgwengui-qt4-dev
now also in Debian unstable (Closes: #875012, LP: #1757732).
* Fix spelling mistake in debian/changelog entry for 4.20.0-8.
* debian/control:
- Add upstream homepage.
- Bump standards version to 4.3.0 (no changes needed).
- Vcs-Git: track Git branch 'master' again.
* debian/watch: Update to new upstream homepage.
* Revert attempts to make package libgwenhywfar-core-dev Multi-Arch: same
because it broke cross compiling (closes: #906560). This removes
multiarch_support_in_gwenhywfar-config_script.patch, removes the multiarch
hint and dependency on pkg-config from binary package
libgwenhywfar-core-dev.
* Integrate with Salsa CI by adding the file debian/gitlab-ci.yml.
-- Micha Lenk <micha@debian.org> Wed, 06 Mar 2019 22:05:49 +0100
libgwenhywfar (4.20.0-8) experimental; urgency=medium
* Merge changes from libgwenhywfar 4.20.0-7 (unstable) for upload to
experimental.
* Improve cross building: Do not use /usr/lib/<triplet>/qt5.
Thanks to Helmut Grohne <helmut@subdivi.de> for providing the patch.
(Closes: #906543)
-- Micha Lenk <micha@debian.org> Sat, 18 Aug 2018 23:51:31 +0200
libgwenhywfar (4.20.0-7) unstable; urgency=medium
* Fix a regression introduced in 4.20.0-5 that causes libaqbanking to FTBFS.
-- Micha Lenk <micha@debian.org> Sat, 18 Aug 2018 23:39:43 +0200
libgwenhywfar (4.20.0-6) experimental; urgency=medium
* Merge changes from libgwenhywfar 4.20.0-5 (unstable) for upload to
experimental.
-- Micha Lenk <micha@debian.org> Fri, 17 Aug 2018 15:35:48 +0200
libgwenhywfar (4.20.0-5) unstable; urgency=medium
* Fix pkgconfig's pkgincludedir variable by adding patch
fix_pkg-config_pkgincludedir.patch.
* Fix multi-arch support in gwenhywfar-config. This adds patch
multiarch_support_in_gwenhywfar-config_script.patch and causes
libgwenhywfar-core-dev depend on pkg-config being installed.
-- Micha Lenk <micha@debian.org> Fri, 17 Aug 2018 15:13:11 +0200
libgwenhywfar (4.20.0-4) experimental; urgency=medium
* Merge changes from libgwenhywfar 4.20.0-3 (unstable) for upload to
experimental.
* Vcs-Git: track Git branch 'experimental'.
-- Micha Lenk <micha@debian.org> Thu, 16 Aug 2018 23:12:03 +0200
libgwenhywfar (4.20.0-3) unstable; urgency=medium
* Drop Gtk 2 GUI bindings.
* Mark package gwenhywfar-tools as Multi-Arch: foreign (Closes: 904743).
* Mark package libgwenhywfar-core-dev as Multi-Arch: same.
* Bump standards version to 4.2.0 (no changes needed).
-- Micha Lenk <micha@debian.org> Thu, 16 Aug 2018 21:53:23 +0200
libgwenhywfar (4.20.0-2) experimental; urgency=medium
* Drop binary packages libgwengui-qt4-0 and libgwengui-qt4-dev
(Closes: #875012, LP: #1757732).
-- Micha Lenk <micha@debian.org> Mon, 26 Mar 2018 20:27:07 +0200
libgwenhywfar (4.20.0-1) unstable; urgency=medium
* New upstream version 4.20.0
* Drop all patches (applied upstream)
* Switch Git repository to salsa.debian.org
* Bump standards version to 4.1.3 (no changes needed)
-- Micha Lenk <micha@debian.org> Sun, 25 Feb 2018 22:49:20 +0100
libgwenhywfar (4.18.0-2) experimental; urgency=medium
* Add patches for adding the Gtk 3 packages libgwengui-gtk3-0 and
libgwengui-gtk3-dev.
* Add build-dependency on libgtk-3-dev.
-- Micha Lenk <micha@debian.org> Mon, 18 Sep 2017 18:43:33 +0000
libgwenhywfar (4.18.0-1) unstable; urgency=medium
* New upstream version 4.18.0.
* debian/libgwenhywfar60.symbols: Added new symbols.
* Add upstream signing key and update debian/watch file to use it for
verifying new upstream tarballs.
* Package is compliant to Debian Policy 4.1.0.
-- Micha Lenk <micha@debian.org> Sun, 17 Sep 2017 21:06:49 +0200
libgwenhywfar (4.17.0-4) unstable; urgency=medium
* Configure build to let GnuTLS use the system certificates (closes:
#866409). Thanks to Felix Geyer <fgeyer@debian.org> for providing the
initial patch.
* Package is compliant to Debian Policy 4.0.0 (no changes needed).
* Add some Multi-Arch hints.
-- Micha Lenk <micha@debian.org> Sun, 23 Jul 2017 21:59:18 +0200
libgwenhywfar (4.17.0-3) unstable; urgency=medium
* Update build dependency on libgcrypt11-dev to libgcrypt20-dev
(Closes: #864114)
* Drop explicit libgwenhywfar60-dbg package and switch to automatically
generated dbgsym packages. This requires debhelper 9.20160114 or newer
to build (bumped build-dependency accordingly).
-- Micha Lenk <micha@debian.org> Sun, 18 Jun 2017 22:31:56 +0200
libgwenhywfar (4.17.0-2) experimental; urgency=medium
* debian/control: binary package libgwenhywfar60 added a Breaks:
libchipcard-libgwenhywfar60-plugins (<< 5.1) because the location for
Gwenhywfar plugin packages changed (in 4.17.0-1) to a multiarch location.
-- Micha Lenk <micha@debian.org> Tue, 28 Mar 2017 14:32:38 +0200
libgwenhywfar (4.17.0-1) experimental; urgency=medium
* New upstream version 4.17.0
- Drop all patches (all included upstream).
- debian/libgwenhywfar60.symbols: Added new symbols
GWEN_Crypt_Token_KeyInfo_Dump and GWEN_PasswordStore_GetTokenList.
* Bump debhelper compatibility level from 7 to 9. This required the following
changes to debian/rules:
- No need to call dpkg-buildflags explicitly anymore as dh_auto_configure
already exports the needed flags to subprocess environments.
- added override_dh_makeshlibs to exclude gwenhywfar plugins from
processing by dh_makeshlibs/dpkg-gensymbols.
changes to debian/*.install:
- Fix file locations for new multi-arch locations.
* debian/changelog: Fix spelling error in changelog entry for 4.15.3-5.
-- Micha Lenk <micha@debian.org> Mon, 27 Mar 2017 23:23:37 +0200
libgwenhywfar (4.15.3-5) unstable; urgency=medium
* Add CPP GwenGUI header files to libgwenhywfar-core-dev.
These are needed by Qt GUIs and got lost in libgwenhywfar 4.15.3-3 when the
-dev package was split into multiple packages.
* Fix dependencies of autopkgtest suite.
* debian/changelog: Fix spelling error in changelog entry for 4.15.3-4.
-- Micha Lenk <micha@debian.org> Wed, 18 May 2016 22:23:48 +0200
libgwenhywfar (4.15.3-4) unstable; urgency=medium
* Add a minimalistic autopkgtest suite.
* Rename package libgwenhywfar-dev back to libgwenhywfar60-dev.
As packages that currently build-depend on libgwenhywfar60-dev will likely
transition to build-depend on libgwenhywfar-core-dev and optionally one of
the libgwengui-{gtk2,qt4,qt5}-dev packages, I consider the rename not worth
the potential breakage.
-- Micha Lenk <micha@debian.org> Mon, 16 May 2016 20:44:34 +0200
libgwenhywfar (4.15.3-3) experimental; urgency=medium
* Fix -dev package name in libgwenhywfar60.symbols
* libgwenhywfar-dev: Drop self-conflicting dependency
* Drop all linitian overrides for rc-version-greater-than-expected-version.
We are now on a stable release, so no lintian override for apparent
rc-version are needed anymore.
* Split binary package libgwenhywfar-dev into multiple binary packages.
The development files for GUI support (i.e. the gwengui* libraries) have
been moved to new packages so that applications build-depending on
libgwenhywfar no longer need to install the development packages of all the
GUI frameworks supported by Gwenhywfar, but only those absolute necessary.
-- Micha Lenk <micha@debian.org> Mon, 09 May 2016 23:07:30 +0200
libgwenhywfar (4.15.3-2) experimental; urgency=medium
[ Benjamin Eikel ]
* Add package libgwengui-qt5-0 containing the Gwenhywfar GUI implementation
for Qt5.
* Add patch debian/patches/SilentMakeIn_ax_have_qt.m4 to silent make
* Add CMake configuration files to dev package
* Install gwen-gui-qt5's headers with dev package
[ Micha Lenk ]
* Accepted commits from Benjamin Eikel <debian@eikel.org>. Thanks a lot,
Benjamin, for your contributions.
* Minor edits to the patch debian/patches/SilentMakeIn_ax_have_qt.m4 so
that it now has proper DEP-3 headers.
* Rename package libgwenhywfar60-dev to libgwenhywfar-dev. The package seems
to have stabilized sufficiently well.
-- Micha Lenk <micha@debian.org> Sat, 07 May 2016 22:09:39 +0200
libgwenhywfar (4.15.3-1) unstable; urgency=medium
* New upstream version 4.15.3
- Drop all patches (all included upstream).
* Update debian/changelog entry for 4.12.0beta-3 to add a CVE number.
* Package is compliant to Debian Policy 3.9.8 (no changes needed).
-- Micha Lenk <micha@debian.org> Sat, 30 Apr 2016 22:40:37 +0200
libgwenhywfar (4.15.2beta-2) unstable; urgency=low
* Re-work the embedded jQuery copy replacement by symlink to file from
package libjs-jquery.
-- Micha Lenk <micha@debian.org> Sun, 31 Jan 2016 00:10:42 +0100
libgwenhywfar (4.15.2beta-1) unstable; urgency=low
* New upstream version 4.15.2beta
* debian/patches:
- take upstream changes into account by replacing 10_gnutls34_compat.diff
by 0001-Cleanup-TLS-cipher-suite-handling.patch from upstream.
- add 0002-Re-add-macros-for-flags-related-to-TLS-cipher-select.patch from
upstream to prevent breaking the API.
* Replaced embedded jQuery copy by symlink to file from package libjs-jquery.
Thanks, Lintian, for noticing.
* Added minimalistic manpages for mklistdoc, typemaker and typemaker2.
* Hardcoded a :revdate: in the manpage sources trying to make builds
reproducible.
* Added a few new symbols to debian/libgwenhywfar60.symbols.
-- Micha Lenk <micha@debian.org> Sat, 30 Jan 2016 22:10:23 +0100
libgwenhywfar (4.14.0-2) unstable; urgency=medium
* Added patch 10_gnutls34_compat.diff: Use gnutls_priority_set_direct instead
of gnutls_protocol_set_priority (closes: #624069). Thanks to
Andreas Metzler <ametzler@debian.org> for providing the patch.
-- Micha Lenk <micha@debian.org> Tue, 05 Jan 2016 18:37:52 +0100
libgwenhywfar (4.14.0-1) unstable; urgency=medium
* New upstream version 4.14.0
* debian/rules: Let dpkg-gensymbols fail if symbols file updates are needed
* Add a few new symbols to debian/libgwenhywfar60.symbols.
-- Micha Lenk <micha@debian.org> Wed, 27 May 2015 20:21:53 +0200
libgwenhywfar (4.13.1-2) unstable; urgency=medium
* Upload to Debian unstable.
-- Micha Lenk <micha@debian.org> Sun, 10 May 2015 13:24:33 +0200
libgwenhywfar (4.13.1-1) experimental; urgency=medium
* New upstream release
* Tweak debian/watch file to ignore beta versions.
* Package management transitioned from Subversion to Git, so updated
Vcs-* fields in debian/control.
* Package is compliant to Debian Policy 3.9.6 (no changes needed).
* Add several new symbols to debian/libgwenhywfar60.symbols.
-- Micha Lenk <micha@debian.org> Sat, 31 Jan 2015 21:53:20 +0100
libgwenhywfar (4.12.0beta-3) unstable; urgency=medium
* Drop upstream's CA bundle and replace it by a symlink to the CA bundle
provided by the package ca-certificates (closes: #748955, CVE-2015-7542).
This also makes a dependency on the package ca-certificate necessary.
* Re-enable running the unit tests after build that were disabled because of
Debian bug #503181, after I just found out that it is possible to disable
tests that require network connectivity.
-- Micha Lenk <micha@debian.org> Fri, 22 Aug 2014 20:55:47 +0200
libgwenhywfar (4.12.0beta-2) experimental; urgency=medium
* Update build dependencies to use libgnutls28-dev instead of libgnutls-dev
to build against GNU-TLS library 3.2.x (closes: #753111).
-- Micha Lenk <micha@debian.org> Sat, 19 Jul 2014 12:27:44 +0200
libgwenhywfar (4.12.0beta-1) unstable; urgency=medium
* New upstream release
* Added new symbol GWEN_Url_toUiShortString to debian/libgwenhywfar60.symbols
-- Micha Lenk <micha@debian.org> Sat, 19 Apr 2014 17:29:08 +0200
libgwenhywfar (4.11.0beta-1) unstable; urgency=low
* New upstream release
* Added new symbol GWEN_Gui_StdPrintf to debian/libgwenhywfar60.symbols
-- Micha Lenk <micha@debian.org> Tue, 11 Mar 2014 21:01:27 +0100
libgwenhywfar (4.10.0beta-1) unstable; urgency=low
* New upstream release
* Added new symbols GWEN_PathManager_InsertRelPath and
GWEN_PluginManager_InsertRelPath to debian/libgwenhywfar60.symbols.
-- Micha Lenk <micha@debian.org> Sun, 26 Jan 2014 21:17:35 +0100
libgwenhywfar (4.9.0beta-1) unstable; urgency=low
* New upstream release
* streamline debian/rules with current debhelper standards by using overrides
instead of --before and --after options.
* simplify debian/rules by only generating standard documentation instead of
full API documentation. This should reduce the documentation to essential
information.
* fix building twice in a row caused by unnoticed renaming of temporary build
directory.
* Use dh-autoreconf instead of autotools-dev to fix FTBFS on ppc64el
(closes: #734541).
* Package is compliant to Debian Policy 3.9.5 (no changes needed).
-- Micha Lenk <micha@debian.org> Wed, 08 Jan 2014 21:54:24 +0100
libgwenhywfar (4.8.0beta-1) unstable; urgency=low
* New upstream release
* Updated debian/libgwenhywfar60.symbols.
* Added build-dependency on autotools-dev and use its config.sub and
config.guess during build.
-- Micha Lenk <micha@debian.org> Thu, 24 Oct 2013 19:17:03 +0200
libgwenhywfar (4.7.0beta-1) unstable; urgency=low
* New upstream release
* Updated debian/libgwenhywfar60.symbols.
* Add build-dep on libgpg-error-dev to fix a build log warning about indirect
linkage to libgpg-error.so.
-- Micha Lenk <micha@debian.org> Wed, 21 Aug 2013 20:27:23 +0200
libgwenhywfar (4.6.0beta-1) unstable; urgency=low
* New upstream release
* Updated debian/libgwenhywfar60.symbols.
* Add package libgwengui-cpp0 to package new upstream library.
-- Micha Lenk <micha@debian.org> Sun, 26 May 2013 17:03:23 +0200
libgwenhywfar (4.5.0beta-2) unstable; urgency=low
* First upload to 'unstable' after the release of Debian 'wheezy'.
* Package is compliant to Debian Policy 3.9.4 (no changes needed).
-- Micha Lenk <micha@debian.org> Sat, 25 May 2013 22:44:12 +0200
libgwenhywfar (4.5.0beta-1) experimental; urgency=low
* New upstream release
- drop patch 01_fix_ftbfs_with_GCC_4.7.patch (applied upstream).
* Updated debian/libgwenhywfar60.symbols.
* Update debian/watch file to match beta releases too.
* Added lintian override for rc-version-greater-than-expected-version as
upstream increments the version number for every release.
* Use build flags as exported by dpkg-buildflags.
* Cleanup duplicate short description of libgwenhywfar-doc and some spelling
errors found by lintian.
* Register Gwenhywfar API documentation with doc-base.
-- Micha Lenk <micha@debian.org> Sun, 03 Mar 2013 20:54:13 +0100
libgwenhywfar (4.3.3-1) unstable; urgency=low
* New upstream release
* Switch to dpkg-source 3.0 (quilt) format
* Add patch 01_fix_ftbfs_with_GCC_4.7.patch (Closes: #672074)
* Package is compliant to Debian Policy 3.9.3.0 (no changes needed)
-- Micha Lenk <micha@debian.org> Thu, 10 May 2012 23:55:03 +0200
libgwenhywfar (4.3.1-1) unstable; urgency=low
* New upstream release
-- Micha Lenk <micha@debian.org> Sun, 18 Dec 2011 13:44:07 +0100
libgwenhywfar (4.3.0-1) unstable; urgency=low
* New upstream release
* Added symbol GWEN_Text_ConvertCharset to debian/libgwenhywfar60.symbols.
-- Micha Lenk <micha@debian.org> Tue, 27 Sep 2011 09:45:21 +0200
libgwenhywfar (4.2.1-1) unstable; urgency=low
* New upstream release
* Updated debian/libgwenhywfar60.symbols
-- Micha Lenk <micha@debian.org> Mon, 01 Aug 2011 21:22:48 +0200
libgwenhywfar (4.1.0-1) unstable; urgency=low
* New upstream release
* Package is compliant to Debian Policy 3.9.2.0 (no changes needed)
-- Micha Lenk <micha@debian.org> Mon, 13 Jun 2011 14:46:01 +0200
libgwenhywfar (4.0.9-1) unstable; urgency=low
* New upstream release
* Remove symbols files for Qt and FOX toolkit GUI libraries. These GUI
libraries are written in C++, which is known to cause unstable symbols
files (closes: #618195).
-- Micha Lenk <micha@debian.org> Tue, 15 Mar 2011 19:44:13 +0100
libgwenhywfar (4.0.5-1) unstable; urgency=low
* New upstream release
-- Micha Lenk <micha@debian.org> Wed, 09 Feb 2011 21:35:06 +0100
libgwenhywfar (4.0.4-2) unstable; urgency=low
* First upload to unstable.
-- Micha Lenk <micha@debian.org> Sun, 06 Feb 2011 18:02:47 +0100
libgwenhywfar (4.0.4-1) experimental; urgency=low
* New upstream release
-- Micha Lenk <micha@debian.org> Sat, 05 Feb 2011 16:56:56 +0100
libgwenhywfar (4.0.3-1) experimental; urgency=low
* New upstream release
* Added 4 new symbols to libgwenhywfar60.symbols
-- Micha Lenk <micha@debian.org> Sat, 15 Jan 2011 15:10:26 +0100
libgwenhywfar (4.0.2-1) experimental; urgency=low
* New upstream release
-- Micha Lenk <micha@debian.org> Sun, 12 Dec 2010 15:56:21 +0100
libgwenhywfar (4.0.1-2) experimental; urgency=low
* Move arch-indep files into separate package libgwenhywfar-data
(closes: #597565)
-- Micha Lenk <micha@debian.org> Sun, 26 Sep 2010 17:11:35 +0200
libgwenhywfar (4.0.1-1) experimental; urgency=low
* New upstream release (closes: #595402)
* Renamed packages to match changed soname:
libgwenhywfar59{,-dev,-dbg} -> libgwenhywfar60{,-dev,-dbg}
* Updated debian/watch file to catch only stable releases.
-- Micha Lenk <micha@debian.org> Sun, 12 Sep 2010 18:38:00 +0200
libgwenhywfar (3.99.25rc-1) experimental; urgency=low
* New upstream release
-- Micha Lenk <micha@debian.org> Fri, 27 Aug 2010 07:56:42 +0200
libgwenhywfar (3.99.22rc5-1) experimental; urgency=low
* New upstream release. No support for Qt 3 any more:
+ dropped package libgwengui-qt3-0 (obsolete)
+ dropped build-dep on libqt3-mt-dev (obsolete)
* libgwenhywfar59-dev: Followed upstream moving *.h files around
* Updated debian/libgwenhywfar59.symbols
-- Micha Lenk <micha@debian.org> Sat, 21 Aug 2010 15:52:32 +0200
libgwenhywfar (3.99.19rc2-1) experimental; urgency=low
* New upstream release
-- Micha Lenk <micha@debian.org> Fri, 13 Aug 2010 21:29:38 +0200
libgwenhywfar (3.99.18rc1-1) experimental; urgency=low
* New upstream release
* Updated debian/watch file to catch release candidates too
* Updated symbols file for libgwenhywfar59
-- Micha Lenk <micha@debian.org> Wed, 11 Aug 2010 20:15:20 +0200
libgwenhywfar (3.99.16beta-1) experimental; urgency=low
* New upstream release
* Package libgwenhywfar59-dev:
+ remove empty directory /usr/include/gwenhywfar3/gwenhywfar/
+ add new files installed to /usr/include/gwenhywfar/
+ add new files installed to /usr/include/gwen-gui-cpp/.
* Updated symbols file for libgwenhywfar59, added symbols files for
libgwengui-{fox16,qt3,qt4,gtk2}-0.
* Package gwenhywfar-tools:
+ stop conflict with libgwenhywfar38-dev, last released with Debian Etch
+ replace Conflicts: by Breaks: as per Debian policy upgrade to 3.9.0.0.
* Package is compliant to Debian Policy 3.9.1.0.
-- Micha Lenk <micha@debian.org> Sat, 07 Aug 2010 22:40:52 +0200
libgwenhywfar (3.99.9beta-2) experimental; urgency=low
* Add libgwengui-gtk2-0 to depends of libgwenhywfar59-dev.
* Add header files of Gwen-GUI libraries to libgwenhywfar59-dev.
-- Micha Lenk <micha@debian.org> Sat, 26 Jun 2010 13:13:19 +0200
libgwenhywfar (3.99.9beta-1) experimental; urgency=low
* New upstream release
* Added package libgwengui-gtk2-0 for GTK2 frontend library.
* Updated debian/libgwenhywfar59.symbols. Some new symbols,
removed symbols: GWEN_Crypt_Token_Context_IsModified,
GWEN_Crypt_Token_Context_SetModified and
GWEN_Crypt_Token_Context_List2_freeAll.
-- Micha Lenk <micha@debian.org> Thu, 24 Jun 2010 00:02:14 +0200
libgwenhywfar (3.99.5beta-1) experimental; urgency=low
* New upstream release
* Fix wording of previous debian/changelog entry to match actually added
dependencies.
* Move the template files into package gwenhywfar-tools, they are
needed by the mklistdoc binary within this package.
* debian/rules: Restrict list of frontend guis to fox16 qt3 and qt4, because
the new gtk frontend source is incomplete.
* debian/libgwenhywfar59.symbols: Added some symbols.
-- Micha Lenk <micha@debian.org> Tue, 25 May 2010 21:11:34 +0200
libgwenhywfar (3.99.2beta-1) experimental; urgency=low
* New upstream release
* Let libgwenhywfar59-dev depend on gwenhywfar-tools of same source version
to prevent build errors when an ancient gwenhywfar-tools gets installed.
-- Micha Lenk <micha@debian.org> Mon, 24 May 2010 15:05:54 +0200
libgwenhywfar (3.99.1beta-1) experimental; urgency=low
* New upstream release
* Removed obsolete libgwenhywfar47.shlibs
* Renamed packages to match soname bump (47 -> 59) and updated symbols file
* debian/rules: Added workaround for broken listdoc.h make target
-- Micha Lenk <micha@debian.org> Sun, 02 May 2010 13:35:28 +0200
libgwenhywfar (3.11.9beta-1) experimental; urgency=low
* New upstream release
* Updated debian/watch file to catch beta releases.
* Remove build-dep restriction on Qt4 version introduced in 3.11.6beta-2.
* Added 6 symbols in libgwenhywfar47.symbols.
-- Micha Lenk <micha@debian.org> Sun, 25 Apr 2010 18:22:07 +0200
libgwenhywfar (3.11.7beta-1) experimental; urgency=low
* New upstream release
-- Micha Lenk <micha@debian.org> Thu, 08 Apr 2010 23:02:28 +0200
libgwenhywfar (3.11.6beta-2) experimental; urgency=low
* Build-depend on Qt 4 from unstable (4.5), not experimental (4.6)
to get packages consistently build with one Qt version.
-- Micha Lenk <micha@debian.org> Sun, 04 Apr 2010 12:25:04 +0200
libgwenhywfar (3.11.6beta-1) experimental; urgency=low
* New upstream release.
* Adds new build-deps: libfox-1.6-dev, libqt3-mt-dev and libqt4-dev.
* New binary packages libgwengui-qt3-0, libgwengui-qt4-0 and
libgwengui-fox16-0.
* A lot of new symbols in libgwenhywfar47.symbols.
-- Micha Lenk <micha@debian.org> Fri, 26 Mar 2010 23:16:30 +0100
libgwenhywfar (3.11.3-2) unstable; urgency=low
* Package is compliant to Debian Policy 3.8.4 (no changes needed)
-- Micha Lenk <micha@debian.org> Sat, 30 Jan 2010 13:08:32 +0100
libgwenhywfar (3.11.3-1) unstable; urgency=low
* New upstream release
* Update maintainer's mail address and drop DM upload privileges.
* libgwenhywfar47-dev: Fix weak library dependency on libgwenhywfar47
(thank you lintian).
* Fix spelling error in gwenhywfar-config manpage (thank you lintian).
-- Micha Lenk <micha@debian.org> Sat, 02 Jan 2010 10:29:03 +0100
libgwenhywfar (3.11.0-1) unstable; urgency=low
* New upstream release
+ Adds new symbol GWEN_HttpSession_ConnectionTest.
* Don't ship .la-files for shared plugin libraries any more.
-- Micha Lenk <micha@lenk.info> Tue, 22 Sep 2009 09:38:55 +0200
libgwenhywfar (3.10.0-1) unstable; urgency=low
* New upstream release
* Package is compliant to Debian policy version 3.8.3 (no changes needed).
* Add new symbols to symbols file.
* Add new binary typemaker2 to package gwenhywfar-tools.
-- Micha Lenk <micha@lenk.info> Tue, 18 Aug 2009 22:23:39 +0200
libgwenhywfar (3.9.0-1) unstable; urgency=low
* New upstream release
* Add dependency on exact version of gwenhywfar-tools to libgwenhywfar47-dbg.
* Add a simple man page for xmlmerge (package gwenhywfar-tools).
* Package is compliant to Debian policy version 3.8.2 (no changes needed).
* Update symbols file. New symbols: GWEN_Gui_AddFlags, GWEN_Gui_GetFlags,
GWEN_Gui_SetFlags and GWEN_Gui_SubFlags.
-- Micha Lenk <micha@lenk.info> Mon, 22 Jun 2009 23:08:23 +0200
libgwenhywfar (3.8.3-2) unstable; urgency=low
* debian/control:
+ Add binary package libgwenhywfar47-dbg containing debug symbols
+ Tighten build-dep on debhelper >= 7.0.50 because of the use of an
override target for dh_strip in debian/rules.
* debian/rules: add override target for dh_script.
* debian/changelog: Move comment on tightened build-dep on debhelper to
this entry (build-dep hasn't really been tightened before).
-- Micha Lenk <micha@lenk.info> Sun, 07 Jun 2009 22:07:34 +0200
libgwenhywfar (3.8.3-1) unstable; urgency=low
* New upstream release
+ adds a hint for missing package libchipcard-libgwenhywfar47-plugins if no
plugin for a certain crypttoken can be found (closes: #532114).
* debian/control: Split build dependencies into multiple lines.
* debian/rules:
+ Don't set variable GCC explicitly any more. Upstream has fixed his build
system to detect the GCC version more intelligently
+ Honour "nodocs" in DEB_BUILD_OPTIONS and skip generation of API
documentation if it is present.
-- Micha Lenk <micha@lenk.info> Sun, 07 Jun 2009 18:41:18 +0200
libgwenhywfar (3.8.2-1) unstable; urgency=low
* New upstream release
+ Fixes build system for use with GnuTLS >= 2.7.x (closes: #529831).
* Add Build-dep on pkg-config, now needed for GnuTLS by the build system.
-- Micha Lenk <micha@lenk.info> Thu, 04 Jun 2009 22:23:50 +0200
libgwenhywfar (3.8.1-1) unstable; urgency=low
* New upstream release
* This version drops the GWEN_Memory_ModuleFini and
GWEN_Memory_ModuleInit from the list of exported symbols. The upstream
author Martin Preuß stated that they should have been used internally only.
-- Micha Lenk <micha@lenk.info> Mon, 11 May 2009 16:13:36 +0200
libgwenhywfar (3.8.0-1) unstable; urgency=low
* New upstream release
- drop patch 10_gcrypt_version_check_bugfix (included upstream).
* Drop now obsolete build dependency on dpatch.
* debian/libgwenhywfar47.symbols: add new symbols.
-- Micha Lenk <micha@lenk.info> Wed, 01 Apr 2009 10:35:31 +0200
libgwenhywfar (3.7.2-2) unstable; urgency=low
* debian/control:
+ Bump standards version (no changes needed)
+ Add build dependeny on dpatch.
* Add patch 10_gcrypt_version_check_bugfix which fixes the broken GCrypt
version detection code (closes: #495473, #496793, #509399).
Thanks to Werner Koch for contributing the ideas for the patch.
* Add version (>= 1.2.0) to build dependency for libgcrypt11-dev, which is
now required due to the new patch.
-- Micha Lenk <micha@lenk.info> Thu, 26 Mar 2009 09:17:45 +0100
libgwenhywfar (3.7.2-1) unstable; urgency=low
* New upstream release
* Add symbols file for new dpkg-shlibdeps feature.
* Bump shlibs file (in use for backports only now).
* debian/control: Add several ${misc:Depends} as suggested by lintian.
Thanks lintian!
-- Micha Lenk <micha@lenk.info> Mon, 16 Feb 2009 10:49:56 +0100
libgwenhywfar (3.6.0-1) experimental; urgency=low
* New upstream release
* Bump version in shlibs making other applications/libraries depend on at
least libgwenhywfar 3.6.0 (forcing bug fixes in).
-- Micha Lenk <micha@lenk.info> Wed, 10 Dec 2008 16:16:54 +0100
libgwenhywfar (3.5.2-1) experimental; urgency=low
* New upstream release
* debian/rules: Skip dh_auto_test entirely because it depends on working
network (closes: #503181). Before using debhelper 7 we didn't run
"make check" either.
-- Micha Lenk <micha@lenk.info> Sat, 08 Nov 2008 20:42:11 +0100
libgwenhywfar (3.5.1-1) experimental; urgency=low
* New upstream release
* Make use of dh_auto_configure and reduce to package specific options.
-- Micha Lenk <micha@lenk.info> Wed, 15 Oct 2008 00:22:28 +0200
libgwenhywfar (3.5.0-1) experimental; urgency=low
* New upstream release
* Get rid of CDBS by adapt debian/rules to debhelper 7.
-- Micha Lenk <micha@lenk.info> Tue, 14 Oct 2008 10:52:03 +0200
libgwenhywfar (3.4.1-1) unstable; urgency=low
* New upstream release
-- Micha Lenk <micha@lenk.info> Tue, 19 Aug 2008 11:04:56 +0200
libgwenhywfar (3.4.0-1) unstable; urgency=low
* New upstream release
-- Micha Lenk <micha@lenk.info> Fri, 15 Aug 2008 14:01:55 +0200
libgwenhywfar (3.3.5-1) unstable; urgency=low
* New upstream release
* Fix a typo in manpages stating that Gwenhywfar is GPL licensed though it
is LGPL licensed.
-- Micha Lenk <micha@lenk.info> Wed, 09 Jul 2008 14:52:32 +0200
libgwenhywfar (3.3.4-1) unstable; urgency=low
* New upstream release.
* Bump standards version (no changes needed).
* Add simple manpages for gct-tool and gwenhywfar-config and add xmlto and
asciidoc needed for manpage generation to build dependencies.
-- Micha Lenk <micha@lenk.info> Wed, 18 Jun 2008 20:45:11 +0200
libgwenhywfar (3.3.3-1) unstable; urgency=low
* New upstream release.
* Make package libgwenhywfar47-dev arch:any as recommended by dato.
-- Micha Lenk <micha@lenk.info> Sat, 07 Jun 2008 16:00:08 +0200
libgwenhywfar (3.3.2-1) unstable; urgency=low
* New upstream release
-- Micha Lenk <micha@lenk.info> Wed, 28 May 2008 15:20:18 +0200
libgwenhywfar (3.3.1-1) unstable; urgency=low
* New upstream release
-- Micha Lenk <micha@lenk.info> Fri, 25 Apr 2008 18:04:48 +0200
libgwenhywfar (3.3.0-1) unstable; urgency=low
* New upstream release
-- Micha Lenk <micha@lenk.info> Thu, 24 Apr 2008 00:07:23 +0200
libgwenhywfar (3.2.0-1) unstable; urgency=low
* New upstream release
-- Micha Lenk <micha@lenk.info> Thu, 20 Mar 2008 12:21:12 +0100
libgwenhywfar (3.1.1-1) unstable; urgency=low
* New upstream release
-- Micha Lenk <micha@lenk.info> Sun, 10 Feb 2008 17:09:13 +0100
libgwenhywfar (3.1.0-1) unstable; urgency=low
* New upstream release
* Re-introduce debian/watch file adapted to new download location.
* Vcs-Svn: Switch to raw svn:// url (without ssh) enabling svnbuildstats to
use it.
-- Micha Lenk <micha@lenk.info> Fri, 25 Jan 2008 17:20:50 +0100
libgwenhywfar (3.0.1-1) unstable; urgency=low
* New upstream release
* debian/control:
- make libgwenhywfar47-dev an architecture independent package. All
architecture dependent binaries have been moved to package
gwenhywfar-tools since 2.9.3~beta-1.
- bump standards version from 3.7.2 to 3.7.3 (no changes needed)
- add Vcs-{Svn,Browser} fields
* debian/copyright: Add copyright years 2006 and 2007
* Upstream moved downloads to a new place which isn't watch-able yet, thus
drop the debian/watch file.
* Drop debian/libgwenhywfar47-dev.lintian-overrides. It's not needed any
more.
-- Micha Lenk <micha@lenk.info> Sun, 9 Dec 2007 13:22:04 +0100
libgwenhywfar (3.0.0-3) unstable; urgency=low
* Release package to Debian unstable
* debian/control: fix missing prefix "XS-" for Dm-Upload-Allowed field.
Otherwise my upload rights will vanish (thanks to Philipp Kern).
-- Micha Lenk <micha@lenk.info> Mon, 26 Nov 2007 00:49:50 +0100
libgwenhywfar (3.0.0-2) experimental; urgency=low
* Drop libgwenhywfar.la from package libgwenhywfar47-dev because it pulls in
unwanted library dependencies (closes: #451582)
* Explicitly don't ship static libraries, they don't get built anyways
-- Micha Lenk <micha@lenk.info> Sat, 24 Nov 2007 17:08:23 +0100
libgwenhywfar (3.0.0-1) experimental; urgency=low
* New upstream release
* drop not needed build dep dpatch (left over from packaging experiments)
* debian/control: Allow uploads by Debian Maintainers
-- Micha Lenk <micha@lenk.info> Thu, 22 Nov 2007 17:25:41 +0100
libgwenhywfar (2.9.11~rc2-1) experimental; urgency=low
* New upstream release
* debian/rules: clean up creation of listdoc.h, which is generated by
upstream's Makefile now.
-- Micha Lenk <micha@lenk.info> Sun, 11 Nov 2007 23:02:51 +0100
libgwenhywfar (2.9.8~beta-1) experimental; urgency=low
* New upstream release
* debian/control: move doxygen build dep back to Build-Depends
(closes: #449166). CDBS is broken concerning arch-indep packages.
-- Micha Lenk <micha@lenk.info> Sun, 4 Nov 2007 12:43:27 +0100
libgwenhywfar (2.9.7~beta-1) experimental; urgency=low
* New upstream release.
* Reintroduce build-dep on libssl-dev, which is needed now for building
gct-tool.
* Add clean target cleaning up files left over by upstream's clean target.
* debian/rules: configure: use --datarootdir instead of (broken) --localedir
option, which is a better choice anyways as it also moves the new file
ca-bundle.crt into a soname dependent directory.
* Install M4 file into explicitly specified (old) target, otherwise it will
get installed into a subdir of datarootdir.
-- Micha Lenk <micha@lenk.info> Fri, 2 Nov 2007 14:34:12 +0100
libgwenhywfar (2.9.3~beta-1) experimental; urgency=low
The Great "Good Bye OpenSSL" Release:
* New upstream release.This a complete rewrite of Gwenhywfar with a lot of
improvements.
- use GCrypt and GnuTLS instead of OpenSSL (finally closes: #340573)
* Rename packages due to soname change.
* Move doxygen build dep to Build-Depends-Indep.
* Move make of srcdoc target to correct package libgwenhywfar-doc
* Introduce new binary package gwenhywfar-tools.
* Move locale data to soname dependent location /usr/share/libgwenhywfar38
and drop binary package libgwenhywfar-data. Thanks to Philipp Kern for
this suggestion.
* Add DEB_DH_INSTALL_SOURCEDIR in debian/rules and simplify all *.install
files. Thanks to Georg W. Leonhardt for this idea.
-- Micha Lenk <micha@lenk.info> Fri, 26 Oct 2007 14:28:10 +0200
libgwenhywfar (2.6.1-2) unstable; urgency=low
* debian/control: Make package binNMU-safe by using ${binary:Version}
and ${source:Version} instead of ${SourceVersion}.
-- Micha Lenk <micha@lenk.info> Sun, 30 Sep 2007 18:24:53 +0200
libgwenhywfar (2.6.1-1) unstable; urgency=low
* New upstream release
* Remove ncurses5-dev dependency. According to ChangeLog it's obsolete since
quite a long time.
-- Micha Lenk <micha@lenk.info> Mon, 9 Jul 2007 00:36:48 +0200
libgwenhywfar (2.5.4-2) experimental; urgency=low
* Remove OpenSSL linker flags from libgwenhywfar.la file as suggested by
upstream (some days ago). This is an intermediate solution to prevent
packages using Gwenhywfar to be linked against OpenSSL too just because of
this broken .la file.
-- Micha Lenk <micha@lenk.info> Tue, 27 Mar 2007 04:47:17 +0200
libgwenhywfar (2.5.4-1) unstable; urgency=low
* New upstream release
* Updating Maintainer, thanks to Thomas Viehmann for his contributions
so far.
-- Micha Lenk <micha@lenk.info> Sat, 24 Feb 2007 18:38:51 +0100
libgwenhywfar (2.4.0-1) unstable; urgency=low
* New upstream release
* Bump shlibs for API extensions
-- Thomas Viehmann <tv@beamnet.de> Sat, 16 Sep 2006 10:09:23 +0200
libgwenhywfar (2.3.1-1) unstable; urgency=low
* New upstream release
* We conform to Debian Policy 3.7.2. (No changes necessary.)
-- Thomas Viehmann <tv@beamnet.de> Sun, 23 Jul 2006 13:00:20 +0200
libgwenhywfar (2.3.0-2) unstable; urgency=low
* Bump shlibs again.
-- Micha Lenk <micha@lenk.info> Fri, 30 Jun 2006 13:58:55 +0200
libgwenhywfar (2.3.0-1) unstable; urgency=low
* New upstream release
* Use gcc in order to benefit from symbol visibility features of gcc.
-- Micha Lenk <micha@lenk.info> Fri, 16 Jun 2006 01:14:32 +0200
libgwenhywfar (2.2.0-1) unstable; urgency=low
* New upstream release
-- Micha Lenk <micha@lenk.info> Fri, 21 Apr 2006 00:45:45 +0200
libgwenhywfar (2.1.1-2) unstable; urgency=low
* Another shlibs bump
-- Micha Lenk <micha@lenk.info> Tue, 28 Mar 2006 20:37:25 +0200
libgwenhywfar (2.1.1-1) unstable; urgency=low
* New upstream release
-- Micha Lenk <micha@lenk.info> Tue, 28 Mar 2006 18:39:12 +0200
libgwenhywfar (1.99.7-3) unstable; urgency=low
* Remove Replaces/Conflicts cruft from C++ transitions.
-- Thomas Viehmann <tv@beamnet.de> Thu, 23 Feb 2006 11:36:11 +0100
libgwenhywfar (1.99.7-2) unstable; urgency=low
* Bump shlibs. We love it, don't we?
-- Micha Lenk <micha@lenk.info> Thu, 23 Feb 2006 01:36:56 +0100
libgwenhywfar (1.99.7-1) unstable; urgency=low
* New upstream release
-- Micha Lenk <micha@lenk.info> Tue, 21 Feb 2006 03:58:38 +0100
libgwenhywfar (1.99.5-1) unstable; urgency=low
* New upstream release, this is an entirely new series
* Change so-Vesion to 38 and update packaging accordingly
* Rotate maintainers
-- Thomas Viehmann <tv@beamnet.de> Sat, 28 Jan 2006 12:52:12 +0100
libgwenhywfar (1.19.2-1) unstable; urgency=low
* New upstream release
-- Micha Lenk <micha@lenk.info> Tue, 3 Jan 2006 14:54:45 +0100
libgwenhywfar (1.19.0-1) unstable; urgency=low
* New upstream release
* Remove changes from autoconf files (by Thomas)
-- Micha Lenk <micha@lenk.info> Sun, 23 Oct 2005 18:11:44 +0200
libgwenhywfar (1.18.0-1) unstable; urgency=low
* New upstream release
-- Thomas Viehmann <tv@beamnet.de> Thu, 25 Aug 2005 09:52:54 +0200
libgwenhywfar (1.17.0-1) unstable; urgency=low
* New upstream release
-- Thomas Viehmann <tv@beamnet.de> Tue, 23 Aug 2005 18:40:35 +0200
libgwenhywfar (1.16.0-1) unstable; urgency=low
* New upstream release
Spelling fix included: Closes: #314003
* Added lintian override for duplicate dependency.
-- Thomas Viehmann <tv@beamnet.de> Sat, 20 Aug 2005 13:26:06 +0200
libgwenhywfar (1.15.0-1) unstable; urgency=low
* New upstream release
Bump shlibs.
-- Thomas Viehmann <tv@beamnet.de> Wed, 17 Aug 2005 18:42:53 +0200
libgwenhywfar (1.14.0-2) unstable; urgency=low
* Really do the transition properly. Apologies to Joerg Jaspert
and thanks for stopping the broken -1.
-- Thomas Viehmann <tv@beamnet.de> Thu, 21 Jul 2005 09:10:13 +0200
libgwenhywfar (1.14.0-1) unstable; urgency=low
* New upstream release
* g++ transition (renames libgwenhywfar17 to libgwenhywfar17c2).
* Bump standards to 3.6.2 (no changes necessary).
-- Thomas Viehmann <tv@beamnet.de> Tue, 19 Jul 2005 21:51:03 +0200
libgwenhywfar (1.13.3-1) unstable; urgency=low
* New upstream release
-- Micha Lenk <micha@lenk.info> Wed, 15 Jun 2005 00:08:51 +0200
libgwenhywfar (1.12.0-1) unstable; urgency=low
* New upstream release
-- Thomas Viehmann <tv@beamnet.de> Wed, 27 Apr 2005 20:06:49 +0200
libgwenhywfar (1.11.0-2) unstable; urgency=low
* Bump shlibs. Sorry, this is necessary for policy.
-- Thomas Viehmann <tv@beamnet.de> Wed, 20 Apr 2005 19:55:03 +0200
libgwenhywfar (1.11.0-1) unstable; urgency=low
* New upstream release
* Add /etc/gwenhywfar/gwen-public-ca.crt to libgwenhywfar-data.
Note that this presently differs from upstreams location of the
file (which is directly in /etc).
-- Thomas Viehmann <tv@beamnet.de> Wed, 13 Apr 2005 21:35:22 +0200
libgwenhywfar (1.10.0-2) unstable; urgency=low
* Added watch file, updated debian/shlibs.
-- Thomas Viehmann <tv@beamnet.de> Sun, 3 Apr 2005 19:23:22 +0200
libgwenhywfar (1.10.0-1) unstable; urgency=low
* New upstream release
-- Thomas Viehmann <tv@beamnet.de> Tue, 29 Mar 2005 17:47:23 +0200
libgwenhywfar (1.9.0-3) unstable; urgency=low
* Removed Replaces for libgwenhywfar17-dev from debian/control.
* Added debian/shlibs.
-- Thomas Viehmann <tv@beamnet.de> Sat, 19 Mar 2005 16:04:52 +0100
libgwenhywfar (1.9.0-2) unstable; urgency=low
* Added section for source package to debian/control.
-- Thomas Viehmann <tv@beamnet.de> Sat, 19 Mar 2005 09:52:45 +0100
libgwenhywfar (1.9.0-1) unstable; urgency=low
* New upstream release
-- Micha Lenk <micha@lenk.info> Thu, 24 Feb 2005 20:43:14 +0100
libgwenhywfar (1.8.0-2) unstable; urgency=low
* Not including the apidoc files in package libgwenhywfar-dev any more
since they are in a separate package since 1.7.2-1.
-- Micha Lenk <micha@lenk.info> Tue, 22 Feb 2005 00:08:23 +0100
libgwenhywfar (1.8.0-1) unstable; urgency=low
* New upstream release
-- Micha Lenk <micha@lenk.info> Mon, 21 Feb 2005 11:53:21 +0100
libgwenhywfar (1.7.2-1) unstable; urgency=low
* New upstream release
* Introduced libgwenhywfar-doc for separate apidoc package.
* Changed the package desription a little.
-- Micha Lenk <micha@lenk.info> Sat, 5 Feb 2005 21:18:32 +0100
libgwenhywfar (1.7.0-1) unstable; urgency=low
* New upstream release
-- Thomas Viehmann <tv@beamnet.de> Thu, 27 Jan 2005 17:16:06 +0100
libgwenhywfar (1.6.0-1) unstable; urgency=low
* New upstream release
-- Thomas Viehmann <tv@beamnet.de> Tue, 25 Jan 2005 17:10:10 +0100
libgwenhywfar (1.5.0-1) unstable; urgency=low
* New upstream release
-- Thomas Viehmann <tv@beamnet.de> Thu, 20 Jan 2005 16:03:46 +0100
libgwenhywfar (1.4.1-1) unstable; urgency=low
* New upstream release
-- Thomas Viehmann <tv@beamnet.de> Wed, 12 Jan 2005 21:01:24 +0100
libgwenhywfar (1.4-1) unstable; urgency=low
* New upstream release
* Introduced libgwenhywfar-data to allow installation of multiple
soversions in parallel.
-- Thomas Viehmann <tv@beamnet.de> Sat, 8 Jan 2005 17:39:41 +0100
libgwenhywfar (1.2.1-1) unstable; urgency=low
Henning Glawe:
* Initial Release. (closes: #227956)
* Add Thomas Viehmann <tv@beamnet.de>, who wrote the original ITP, as a
comaintainer
Thomas Viehmann:
* Tightened build-dependencies (e.g. doxygen).
* Took a liking to CDBS.
* Delete generated gwenhywfar.tag on clean.
* Added explicit copyright line.
-- Thomas Viehmann <tv@beamnet.de> Sun, 28 Nov 2004 14:12:40 +0100
|