1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132 1133 1134 1135 1136 1137 1138 1139 1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 1150 1151 1152 1153 1154 1155 1156 1157 1158 1159 1160 1161 1162 1163 1164 1165 1166 1167 1168 1169 1170 1171 1172 1173 1174 1175 1176 1177 1178 1179 1180 1181 1182 1183 1184 1185 1186 1187 1188 1189 1190 1191 1192 1193 1194 1195 1196 1197 1198 1199 1200 1201 1202 1203 1204 1205 1206 1207 1208 1209 1210 1211 1212 1213 1214 1215 1216 1217 1218 1219 1220 1221 1222 1223 1224 1225 1226 1227 1228 1229 1230 1231 1232 1233 1234 1235 1236 1237 1238 1239 1240 1241 1242 1243 1244 1245 1246 1247 1248 1249 1250 1251 1252 1253 1254 1255 1256 1257 1258 1259 1260 1261 1262 1263 1264 1265 1266 1267 1268 1269 1270 1271 1272 1273 1274 1275 1276 1277 1278 1279 1280 1281 1282 1283 1284 1285 1286 1287 1288 1289 1290 1291 1292 1293 1294 1295 1296 1297 1298 1299 1300 1301 1302 1303 1304 1305 1306 1307 1308 1309 1310 1311 1312 1313 1314 1315 1316 1317 1318 1319 1320 1321 1322 1323 1324 1325 1326 1327 1328 1329 1330 1331 1332 1333 1334 1335 1336 1337 1338 1339 1340 1341 1342 1343 1344 1345 1346 1347 1348 1349 1350 1351 1352 1353 1354 1355 1356 1357 1358 1359 1360 1361 1362 1363 1364 1365 1366 1367 1368 1369 1370 1371 1372 1373 1374 1375 1376 1377 1378 1379 1380 1381 1382 1383 1384 1385 1386 1387 1388 1389 1390 1391 1392 1393 1394 1395 1396 1397 1398 1399 1400 1401 1402 1403 1404 1405 1406 1407 1408 1409 1410 1411 1412 1413 1414 1415 1416 1417 1418 1419 1420 1421 1422 1423 1424 1425 1426 1427 1428 1429 1430 1431 1432 1433 1434 1435 1436 1437 1438 1439 1440 1441 1442 1443 1444 1445 1446 1447 1448 1449 1450 1451 1452 1453 1454 1455 1456 1457 1458 1459 1460 1461 1462 1463 1464 1465 1466 1467 1468 1469 1470 1471 1472 1473 1474 1475 1476 1477 1478 1479 1480 1481 1482 1483 1484 1485 1486 1487 1488 1489 1490 1491 1492 1493 1494 1495
|
libgwenhywfar (5.12.1-2) experimental; urgency=medium
* debian/control: Move the binary package conflict to libgwengui-qt6-dev,
where the file conflict (header file names) really is.
-- Micha Lenk <micha@debian.org> Sun, 20 Jul 2025 10:09:52 +0200
libgwenhywfar (5.12.1-1) experimental; urgency=medium
* New upstream version 5.12.1
* debian/libgwenhywfar79t64.symbols: Add new symbols
* Transition Qt support in GwenGUI from Qt5 to Qt6
-- Micha Lenk <micha@debian.org> Sat, 19 Jul 2025 16:15:52 +0200
libgwenhywfar (5.12.0-1) unstable; urgency=medium
* New upstream version 5.12.0.
* Drop Use_pkgconf_for_gpg-error_buildflags.patch (applied upstream).
* debian/libgwenhywfar79t64.symbols: Add new symbols.
-- Micha Lenk <micha@debian.org> Thu, 19 Dec 2024 07:49:02 +0100
libgwenhywfar (5.11.2beta-2) unstable; urgency=medium
* Switch from pkg-config to pkgconf.
* Use pkgconf to determine gpg-error build flags (Closes: #1076890).
-- Micha Lenk <micha@debian.org> Sat, 03 Aug 2024 12:05:13 +0200
libgwenhywfar (5.11.2beta-1) unstable; urgency=medium
* New upstream version 5.11.2beta.
* Package is compliant to Debian Policy 4.7.0 (no changes needed).
-- Micha Lenk <micha@debian.org> Sun, 05 May 2024 16:46:23 +0200
libgwenhywfar (5.11.1beta-1) unstable; urgency=medium
* New upstream version 5.11.1beta.
- Drop fix_cross_compilation.patch (applied upstream).
- debian/libgwenhywfar79t64.symbols: Add new symbols.
-- Micha Lenk <micha@debian.org> Mon, 01 Apr 2024 12:29:10 +0200
libgwenhywfar (5.10.2-2.1) unstable; urgency=medium
* Non-maintainer upload.
* Rename libraries for 64-bit time_t transition. Closes: #1062362
-- Benjamin Drung <bdrung@debian.org> Wed, 28 Feb 2024 12:42:57 +0000
libgwenhywfar (5.10.2-2) unstable; urgency=medium
* Fix FTCBFS: Use mklistdoc from installed gwenhywfar-tools (Closes: #1051173)
and disable binreloc (causes test-crossbuild-arm64 to fail in Salsa CI).
* debian/salsa-ci.yml: Treat test-crossbuild-arm64 failures as build failure.
-- Micha Lenk <micha@debian.org> Sun, 17 Sep 2023 18:26:53 +0200
libgwenhywfar (5.10.2-1) unstable; urgency=medium
* New upstream version 5.10.2.
* Drop 0001-Remove-duplicate-hostname-check.patch (applied upstream).
* debian/control: Bump standards version to 4.6.2 (no changes needed).
-- Micha Lenk <micha@debian.org> Sun, 13 Aug 2023 20:42:52 +0200
libgwenhywfar (5.10.1-2) unstable; urgency=medium
* Add patch 0001-Remove-duplicate-hostname-check.patch to fix too restrictive
SSL hostname check with SAN certifices (Closes: #1034577).
-- Micha Lenk <micha@debian.org> Tue, 18 Apr 2023 22:12:21 +0200
libgwenhywfar (5.10.1-1) unstable; urgency=medium
* New upstream version 5.10.1.
* debian/libgwenhywfar79.symbols: Add new symbols.
* debian/control: Bump standards version to 4.6.1 (no changes needed).
-- Micha Lenk <micha@debian.org> Thu, 11 Aug 2022 21:29:19 +0200
libgwenhywfar (5.9.0-1) unstable; urgency=medium
* New upstream version 5.9.0.
* Update debian/libgwenhywfar79.symbols.
-- Micha Lenk <micha@debian.org> Wed, 16 Feb 2022 21:48:36 +0100
libgwenhywfar (5.8.2-1) unstable; urgency=medium
* New upstream version 5.8.2.
-- Micha Lenk <micha@debian.org> Sun, 16 Jan 2022 20:37:21 +0100
libgwenhywfar (5.8.1-1) unstable; urgency=medium
* New upstream version 5.8.1.
-- Micha Lenk <micha@debian.org> Sat, 01 Jan 2022 10:43:17 +0100
libgwenhywfar (5.8.0-1) unstable; urgency=medium
* New upstream version 5.8.0.
-- Micha Lenk <micha@debian.org> Thu, 16 Dec 2021 13:35:10 +0100
libgwenhywfar (5.7.4-1) unstable; urgency=medium
* New upstream version 5.7.4.
-- Micha Lenk <micha@debian.org> Wed, 17 Nov 2021 22:17:20 +0100
libgwenhywfar (5.7.2-1) unstable; urgency=medium
* New upstream version 5.7.2.
* debian/watch: Look for signature file too.
* debian/rules:
- Drop override_dh_strip again, now deleting it from the .PHONY target too.
Its left-over presence in .PHONY caused dh_strip to be skipped entirely,
leaving binaries unstripped.
- Drop override_dh_auto_clean and use debian/clean instead.
* debian/control: Bump standards version to 4.6.0 (no changes needed).
* debian/upstream: Add metadata.
-- Micha Lenk <micha@debian.org> Sun, 19 Sep 2021 16:50:12 +0200
libgwenhywfar (5.7.1-1) unstable; urgency=medium
[ Debian Janitor ]
* Drop transition for old debug package migration.
* Replace use of deprecated $ADTTMP with $AUTOPKGTEST_TMP.
[ Micha Lenk ]
* New upstream version 5.7.1
- Drop patch 0001-i18n-Update-German-translation.patch (applied upstream).
- Add gwbuild tool to binary package gwenhywfar-tools.
* debian/rules:
- Drop obsolete explicit deletion of files (they are now cleaned up by the
upstream build system).
- Re-add override_dh_strip to force execution of dh_strip. Otherwise it
wouldn't get executed at all.
* debian/libgwenhywfar79.symbols: Add new symbols.
-- Micha Lenk <micha@debian.org> Sat, 11 Sep 2021 20:27:22 +0200
libgwenhywfar (5.6.0-2) unstable; urgency=medium
* Set debhelper-compat version in Build-Depends and really switch to
version 13.
* debian/not-installed: Let dh_missing know which files to ignore.
-- Micha Lenk <micha@debian.org> Tue, 23 Feb 2021 13:14:15 +0100
libgwenhywfar (5.6.0-1) unstable; urgency=medium
* New upstream version 5.6.0.
* Drop patch to enable SNI on server connection (applied upstream).
* debian/libgwenhywfar79.symbols:
- Add new symbols.
- Add pattern to mark new symbols related to binreloc as optional.
They show up as new since 5.5.0, but most likely shouldn't be there.
* Add 0001-i18n-Update-German-translation.patch for translation update.
* libgwenhywfar-core-dev: Stop shipping empty directory /usr/bin.
* debian/control:
- Bump standards version to 4.5.1 (no changes needed).
- Bump debhelper >= 13 (no changes needed).
-- Micha Lenk <micha@debian.org> Sun, 21 Feb 2021 23:19:41 +0100
libgwenhywfar (5.4.1-1) unstable; urgency=medium
* New upstream version 5.4.1.
* Add patch to enable SNI on server connection.
-- Micha Lenk <micha@debian.org> Tue, 08 Dec 2020 10:54:46 +0100
libgwenhywfar (5.4.0-1) unstable; urgency=medium
* New upstream version 5.4.0.
* debian/control:
- Drop build dependency on libqt5opengl5-dev (no longer needed).
- Add build dependency on libxml2-dev.
* debian/libgwenhywfar79.symbols: Add new symbols.
* debian/rules:
- Explicitly enable compiling the LibXML2-depending code.
- Explicitly specify directory to OpenSSL libraries. This intends to
re-enable support for crypt tokens encrypted with the legacy OpenSSL
based algorithm. Most likely this dropped out unnoticedly when OpenSSL
moved its libraries to multiarch paths.
-- Micha Lenk <micha@debian.org> Fri, 17 Jul 2020 18:38:57 +0200
libgwenhywfar (5.3.0-1) unstable; urgency=medium
* New upstream version 5.3.0.
* debian/rules: Drop manual removal of upstream's CA bundle (the upstream
build doesn't install it anymore).
* debian/libgwenhywfar79.symbols: Add new symbols.
-- Micha Lenk <micha@debian.org> Fri, 10 Apr 2020 20:46:38 +0200
libgwenhywfar (5.2.0-2) unstable; urgency=medium
* Drop manpage for no longer shipped gwenhywfar-config.
* Migrate manpage generation from asciidoc to asciidoctor.
* debian/control: Bump standards version to 4.5.0 (no changes needed).
-- Micha Lenk <micha@debian.org> Thu, 12 Mar 2020 20:44:23 +0100
libgwenhywfar (5.2.0-1) experimental; urgency=medium
* New upstream version 5.2.0.
* Rename some binary packages due to bumped SONAMEs:
- libgwengui-gtk3-0 -> libgwengui-gtk3-79,
- libgwengui-qt5-0 -> libgwengui-qt5-79,
- libgwengui-fox16-0 -> libgwengui-fox16-79.
* debian/control:
- Mark libgwenhywfar-core-dev as Multi-Arch: same (Closes: #904743).
- Drop meta package libgwenhywfar79-dev (not used anywhere anymore).
- Merge binary package libgwengui-cpp0 into binary package libgwenhywfar79
(their SONAME are now matching).
* debian/watch: Fix regex to match stable releases too.
* debian/libgwenhywfar79.symbols:
- Added new symbols from libgwenhywfar.so.79,
- Added all symbols from newly covered libgwengui-cpp.so.0.
-- Micha Lenk <micha@debian.org> Sun, 01 Mar 2020 11:38:03 +0100
libgwenhywfar (5.1.3-1) unstable; urgency=medium
* New upstream version 5.1.3.
-- Micha Lenk <micha@debian.org> Thu, 30 Jan 2020 21:06:01 +0100
libgwenhywfar (5.1.2-2) unstable; urgency=medium
* Upload to Debian unstable.
-- Micha Lenk <micha@debian.org> Fri, 24 Jan 2020 22:11:01 +0100
libgwenhywfar (5.1.2-1) experimental; urgency=medium
* New upstream version 5.1.2.
-- Micha Lenk <micha@debian.org> Mon, 20 Jan 2020 21:37:50 +0100
libgwenhywfar (5.1.0-1) experimental; urgency=medium
* New upstream version 5.1.0.
* debian/watch:
- Updated to catch beta and rc versions too
- Fixed 'uscan --download'.
* debian/control: Bump standards version to 4.4.1 (no changes needed)
* Bump soname 78 -> 79.
* debian/libgwenhywfar79.symbols: Updated symbols.
* libgwenhywfar-core-dev: Drop gwenhywfar-config (use pkg-config instead)
-- Micha Lenk <micha@debian.org> Mon, 13 Jan 2020 18:45:46 +0100
libgwenhywfar (4.99.24rc8-1) unstable; urgency=medium
* New upstream version 4.99.24rc8
* debian/libgwenhywfar78.symbols: Dropped symbol GWEN_Time_toTm.
-- Micha Lenk <micha@debian.org> Sun, 03 Nov 2019 21:39:41 +0100
libgwenhywfar (4.99.22rc6-1) experimental; urgency=medium
* New upstream version 4.99.22rc6.
-- Micha Lenk <micha@debian.org> Sun, 13 Oct 2019 20:53:30 +0200
libgwenhywfar (4.99.20rc4-1) experimental; urgency=medium
* New upstream version 4.99.20rc4.
* Update debian/libgwenhywfar78.symbols.
-- Micha Lenk <micha@debian.org> Thu, 03 Oct 2019 22:57:49 +0200
libgwenhywfar (4.99.19rc3-1) experimental; urgency=medium
* New upstream version 4.99.19rc3.
* Add /usr/bin/gsa to gwenhywfar-tools.
* debian/*.install: Bump to changed installation path of header files.
* Bump soname 60 -> 78.
* Updated debian/libgwenhywfar78.symbols.
* debian/changelog: Remove some trailing whitespace.
Thanks to Lintian file-contains-trailing-whitespace.
* debian/libgwengui-gtk3-0.symbols: Add Build-Depends-Package meta info.
Thanks to Lintian symbols-file-missing-build-depends-package-field.
* Bump debhelper compatibility level from 9 to 12.
* Drop archaic debian/dirs file.
* Drop obsolete build-depends on dh-autoreconf.
-- Micha Lenk <micha@debian.org> Sun, 29 Sep 2019 21:58:46 +0200
libgwenhywfar (4.20.2-1) unstable; urgency=medium
* Switch to current Salsa CI Team pipeline.
* New upstream version 4.20.2.
* Drop patch fix_pkg-config_pkgincludedir.patch (applied upstream).
* debian/control: Bump standards version to 4.4.0 (no changes needed).
-- Micha Lenk <micha@debian.org> Sun, 29 Sep 2019 18:29:19 +0200
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
|