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 1496 1497 1498 1499 1500 1501 1502 1503 1504 1505 1506 1507 1508 1509 1510 1511 1512 1513 1514 1515 1516 1517 1518 1519 1520 1521 1522 1523 1524 1525 1526 1527 1528 1529 1530 1531 1532 1533 1534 1535 1536 1537 1538 1539 1540 1541 1542 1543 1544 1545 1546 1547 1548 1549 1550 1551 1552 1553 1554 1555 1556 1557 1558 1559 1560 1561 1562 1563 1564 1565 1566 1567 1568 1569 1570 1571 1572 1573 1574 1575 1576 1577 1578 1579 1580 1581 1582 1583 1584 1585 1586 1587 1588 1589 1590 1591 1592 1593 1594 1595 1596 1597 1598 1599 1600 1601 1602 1603 1604 1605 1606 1607 1608 1609 1610 1611 1612 1613 1614 1615 1616 1617 1618 1619 1620 1621 1622 1623 1624 1625 1626 1627 1628 1629 1630 1631 1632 1633 1634 1635 1636 1637 1638 1639 1640 1641 1642 1643 1644 1645 1646 1647 1648 1649 1650 1651 1652 1653 1654 1655 1656 1657 1658 1659 1660 1661 1662 1663 1664 1665 1666 1667 1668 1669 1670 1671 1672 1673 1674 1675 1676 1677 1678 1679 1680 1681 1682 1683 1684 1685 1686 1687 1688 1689 1690 1691 1692 1693 1694 1695 1696 1697 1698 1699 1700 1701 1702 1703 1704 1705 1706 1707 1708 1709 1710 1711 1712 1713 1714
|
gnunet (0.19.3-2) sid; urgency=medium
* Uploading to sid.
* Adding missing depends to gnunet in libgnunet-dev (Closes: #1035870).
-- Daniel Baumann <daniel.baumann@progress-linux.org> Thu, 11 May 2023 10:14:37 +0200
gnunet (0.19.3-1) sid; urgency=high
* Uploading to sid, using bumped urgency to get latest 0.19.x release
into testing before the freeze.
* Merging upstream version 0.19.3.
-- Daniel Baumann <daniel.baumann@progress-linux.org> Thu, 09 Feb 2023 03:08:10 +0100
gnunet (0.19.2-2) sid; urgency=medium
* Uploading to sid.
* Adding delaycompress in logrotate.
-- Daniel Baumann <daniel.baumann@progress-linux.org> Wed, 01 Feb 2023 12:07:34 +0100
gnunet (0.19.2-1) sid; urgency=medium
* Uploading to sid.
* Merging upstream version 0.19.2.
-- Daniel Baumann <daniel.baumann@progress-linux.org> Tue, 17 Jan 2023 11:28:04 +0100
gnunet (0.19.1-2) sid; urgency=medium
* Uploading to sid.
* Updating variable name for ifconfig binary in rules, thanks to Vagrant
Cascadian <vagrant@reproducible-builds.org> (Closes: #1024291).
* Adding updated Brazilian-Portuguese Debconf translations from Paulo
Henrique de Lima Santana (phls) <phls@debian.org> (Closes: #1025989).
-- Daniel Baumann <daniel.baumann@progress-linux.org> Wed, 04 Jan 2023 08:29:01 +0100
gnunet (0.19.1-1) sid; urgency=medium
* Uploading to sid.
* Merging upstream version 0.19.1.
* Updating to standards version 4.6.2.
-- Daniel Baumann <daniel.baumann@progress-linux.org> Wed, 04 Jan 2023 07:29:32 +0100
gnunet (0.19.0-2) sid; urgency=medium
* Uploading to sid.
-- Daniel Baumann <daniel.baumann@progress-linux.org> Wed, 14 Dec 2022 22:18:51 +0100
gnunet (0.19.0-1) experimental; urgency=medium
* Uploading to experimental.
* Merging upstream version 0.19.0.
* Updating packaging for libgnunet0.19.
-- Daniel Baumann <daniel.baumann@progress-linux.org> Mon, 12 Dec 2022 16:49:46 +0100
gnunet (0.17.6-1) sid; urgency=medium
* Uploading to sid.
* Merging upstream version 0.17.6.
* Updating todo file.
-- Daniel Baumann <daniel.baumann@progress-linux.org> Wed, 28 Sep 2022 07:05:31 +0200
gnunet (0.17.5-1) sid; urgency=medium
* Uploading to sid.
* Merging upstream version 0.17.5.
-- Daniel Baumann <daniel.baumann@progress-linux.org> Thu, 08 Sep 2022 13:21:05 +0200
gnunet (0.17.4-1) sid; urgency=medium
* Uploading to sid.
* Merging upstream version 0.17.4.
* Updating http links to https in copyright.
* Removing broken gnunet-user variable in gnunet.service.
* Adding sphinx build-depends to build newly added documentation.
* Wrap-and-sorting debian files.
-- Daniel Baumann <daniel.baumann@progress-linux.org> Mon, 15 Aug 2022 13:33:49 +0200
gnunet (0.17.2-1) sid; urgency=medium
* Uploading to sid.
* Merging upstream version 0.17.2.
* Adding version mangling in watch file.
* Correcting typo in examples/gnunet.conf.
* Correcting format-error in copyright file.
-- Daniel Baumann <daniel.baumann@progress-linux.org> Thu, 14 Jul 2022 14:52:44 +0200
gnunet (0.17.1-2) sid; urgency=medium
* Uploading to sid.
-- Daniel Baumann <daniel.baumann@progress-linux.org> Thu, 07 Jul 2022 09:45:16 +0200
gnunet (0.17.1-1) experimental; urgency=medium
* Uploading to experimental.
* Merging upstream version 0.17.1.
* Updating upstream copyright for 2022.
* Updating to standards version 4.6.1.
* Updating packaging for libgnunet0.17.
* Updating packaging for gnunet 0.17.
* Adding updated Swedish debconf translations from Martin Bagge
<brother@persilja.net> (Closes: #1010909).
-- Daniel Baumann <daniel.baumann@progress-linux.org> Sun, 19 Jun 2022 09:13:53 +0200
gnunet (0.15.3-4) sid; urgency=medium
* Uploading to sid.
* Adding updated Italian debconf translations from Beatrice Torracca
<beatricet@libero.it> (Closes: #1003289).
* Updating Dutch debconf translations from Frans Spiesschaert
<Frans.Spiesschaert@yucom.be> (Closes: #1004317).
* Completing German debconf translation.
-- Daniel Baumann <daniel.baumann@progress-linux.org> Fri, 28 Jan 2022 06:42:45 +0100
gnunet (0.15.3-3) sid; urgency=medium
* Uploading to sid.
* Updating packaging copyright for 2022.
* Moving from weekly logrotation to monthly.
-- Daniel Baumann <daniel.baumann@progress-linux.org> Tue, 04 Jan 2022 07:50:47 +0100
gnunet (0.15.3-2) sid; urgency=medium
* Uploading to sid.
* Adding patch from Gianfranco Costamagna <locutusofborg@debian.org> to
fix FTBFS on big endian systems (Closes: #1002727).
-- Daniel Baumann <daniel.baumann@progress-linux.org> Tue, 28 Dec 2021 13:32:39 +0100
gnunet (0.15.3-1) sid; urgency=medium
* Uploading to sid.
* Merging upstream version 0.15.3 (Closes: #986828, #993247).
* Updating packaging for libgnunet0.15.
* Updating packaging for gnunet 0.15.
* Updating to standards version 4.6.0.
* Passing path to ifconfig for reproducibility reasons on merged-/usr
systems, thanks to Simon McVittie <smcv@debian.org> (Closes: #993249).
* Using mktemp instead of tempfile (Closes: #998290).
* Adding GFDL license note for manpages in copyright.
-- Daniel Baumann <daniel.baumann@progress-linux.org> Sun, 19 Dec 2021 08:21:31 +0100
gnunet (0.14.0-6) experimental; urgency=medium
* Uploading to experimental.
* Updating watch file.
* Deduplicating libgnunet files on arch-only builds (Closes: #991037).
-- Daniel Baumann <daniel.baumann@progress-linux.org> Thu, 29 Jul 2021 05:31:06 +0200
gnunet (0.14.0-5) experimental; urgency=medium
* Uploading to experimental.
* Correcting totally wrong Conflicts/Replaces in libgnunet0.14 with proper
Breaks/Replaces (Closes: #983777).
-- Daniel Baumann <daniel.baumann@progress-linux.org> Mon, 01 Mar 2021 19:44:55 +0100
gnunet (0.14.0-4) experimental; urgency=medium
* Uploading to experimental.
* Converting some debconf po files to UTF-8.
* Splitting out shared libraries to ease use in GNU Taler.
-- Daniel Baumann <daniel.baumann@progress-linux.org> Sat, 27 Feb 2021 17:08:38 +0100
gnunet (0.14.0-3) experimental; urgency=medium
* Uploading to experimental.
* Updating README.Debian.
* Correcting chown in postinst for correct directory name.
-- Daniel Baumann <daniel.baumann@progress-linux.org> Sat, 27 Feb 2021 16:50:09 +0100
gnunet (0.14.0-2) experimental; urgency=medium
* Uploading to experimental.
* Adding gnunet dotfile examples.
* Streamlining logfile location and name.
* Removing weird character in gnunet.postinst.
* Building without mysql, using prefered postgresql for the whole gnunet
ecosystem.
* Streamlining debconf and config variables.
* Correcting wrong email in previous upload.
-- Daniel Baumann <daniel.baumann@progress-linux.org> Sat, 27 Feb 2021 15:42:56 +0100
gnunet (0.14.0-1) experimental; urgency=medium
* Uploading to experimental.
* Merging upstream version 0.14.0.
* Correcting mixup with Bertrands firstname in previous changelog entry.
* Consolidating my email address.
* Using more common writing for version specifications in control.
* Dropping obsolete build-conflicts on automake1.4.
* Updating to standards version 4.5.1.
* Adding Rules-Requires-Root field.
* Sorting control fields.
* Repeating section in every package block of control for consistency.
* Removing versions from dependencies fulfilled by buster and newer.
* Switching from adduser to util-linux commands to create or remove users and groups.
* Updating package short-description.
* Updating source in copyright.
* Correcting formating of copyright lists.
* Shortening file patterns in copyright.
* Sorting licenses in copyright.
* Updating copyright for 2021.
* Removing superfluous whitespace from changelog.
* Simplifying local manpage installation.
* Simplifying removing of unwanted files.
* Marking maintainer scripts as executable in debian tree.
* Removing preseed example file.
* Dropping authors file from docs.
* Simplifying local conffile installation.
* Correcting indenting for AGPL in copyright.
* Shortening debhelper install files.
* Updating debconf preseeding.
* Compacting rules.
* Wrap-and-sorting debian files.
-- Daniel Baumann <daniel.baumann@progress-linux.org> Sat, 27 Feb 2021 11:29:27 +0100
gnunet (0.13.1-2) sid; urgency=medium
* Uploading to sid.
* New maintainer, thank you Bertrand for all your work (Closes: #964314,
#975615).
* Updating vcs fields.
-- Daniel Baumann <daniel.baumann@progress-linux.org> Sat, 27 Feb 2021 09:24:10 +0100
gnunet (0.13.1-1.1) unstable; urgency=medium
* Non-maintainer upload.
* B-D on libidn2-dev instead of obsolete libidn2-0-dev. Closes: #974995.
-- Simon Josefsson <simon@josefsson.org> Tue, 24 Nov 2020 09:17:37 +0100
gnunet (0.13.1-1) unstable; urgency=medium
* Update debian/watch to version 4, add a rule deal with pre and rc
versions.
* debian/upstream/signing-key.asc: reexport upstream signing key with
minimal options.
* New upstream version 0.13.1 (Closes: #929131).
* Remove erroneous patch fix-bashism (Closes: #933905).
* Add Nils Gillmann's gpg key to debian/upstream/signing-key.asc
* Add Martin Schanzenbach's gpg key to debian/upstream/signing-key.asc.
* Build-depend on python3-dev instead of python3.7-dev and python-
future.
* debian/control: drop suggests: python and python-zbar, not necessary
anymore (Closes: #943054).
* Apply debhelper compat 13:
+ declare build-dependency on debhelper-compat (=13).
+ remove build-dependency on dh-autoreconf.
+ remove debian/compat.
+ remove dh_install --fail-missing from debian/rules.
+ remove --with-autoreconf from debian/rules.
* Remove gnunet-download-manager.scm from debian/rules as it was removed
upstream.
* Remove manpages from debian/man that were included upstream.
* Use secure URI in Homepage field.
* Rely on pre-initialized dpkg-architecture variables.
* Fix day-of-week for changelog entry 0.7.3-5.
* Drop transition for old debug package migration.
* Update standards version to 4.5.0:
+ rename the default user to _gnunet.
* Update build-dependencies versions according to README
* Build-depend on libsodium-dev, according to README.
* Add Dont_copy_license_file.patch to avoid copying a LICENSE file
in the wrong place.
* Remove old code from debian/gnunet.install.
* debian/copyright:
+ update years.
+ the main license is now AGPL-3+.
* Update configuration according to the documentation.
* Replace gnunet.init with a systemd service file.
* Add debian/upstream/metadata.
* Remove pre-buster Breaks and Replaces from debian/control.
* Use wrap-and-sort -as.
-- Bertrand Marc <bmarc@debian.org> Tue, 14 Jul 2020 18:17:17 +0200
gnunet (0.11.0-1) experimental; urgency=medium
* New upstream version 0.11.0.
* debian/patches:
+ remove testbed_path.patch, typos.diff, included upstream.
+ refresh fix-bashism.patch.
* debian/control: update build-dependencies according to README.
* debian/rules: remove obsolete options passed to configure.
* debian/upstream/signing-key.asc: reexport upstream signing key with minimal
options.
* Standards-version: 4.3.0, no changes needed.
-- Bertrand Marc <bmarc@debian.org> Sun, 03 Mar 2019 12:22:32 +0100
gnunet (0.11.0~pre666-1) experimental; urgency=medium
[ Bertrand Marc ]
* New upstream version 0.11.0pre666.
* Build-depend on dh-python2 to ensure gnunet-qr has the correct header
(Closes: #906075).
* Move the package to salsa and update Vcs-browser and Vcs-git accordingly.
* Add Christian Grothoff's new key to debian/upstream/signing-key.asc.
* Update build-dependencies according to README:
+ update minimum versions.
+ build-depends on libpq-dev, libjansson-dev, libbluetooth-dev, texinfo.
* debian/patches:
+ remove build_against_libcurl, included upstream.
+ remove conversation_libexecdir, included upstream.
+ remove gnunet_PATHMAX.patch, included upstream.
+ remove kfreebsd_malloc_np.patch, included upstream.
+ remove noinst_set.diff, included upstream.
+ refresh fix-bashism.patch.
+ refresh and add new fixes in typos.diff.
* The file testbed_test.c is not available anymore, so add a patch to remove
it from the documentation.
* debian/rules: gnunet-gns-import.sh does not exist anymore.
* libnss_gns* was moved from /lib/$triplet to /usr/lib/$triplet/gnunet/nss/.
* Drop lintian override about python, not used anymore.
[ Ondřej Nový ]
* d/copyright: Use https protocol in Format field.
* d/changelog: Remove trailing whitespaces.
-- Bertrand Marc <bmarc@debian.org> Sat, 03 Nov 2018 17:24:53 +0100
gnunet (0.10.1-5.1) unstable; urgency=high
* Non-maintainer upload.
* Build-depend on python, to make gnunet-qr usable again.
(Closes: #906075)
-- Adrian Bunk <bunk@debian.org> Sat, 22 Sep 2018 10:42:50 +0300
gnunet (0.10.1-5) unstable; urgency=medium
* Migrate from a manual "-dbg" package to an automatic generated debug symbol
package:
+ debian/control: remove gnunet-dbg.
+ debian/rules: use --dbgsym-migration in override_dh_strip.
* Standards-version: 4.1.1.
* debian/gnunet.postinst: remove rm_conffile for old config files from before
oldstable.
* Use https instead of ftp in debian/watch.
* Fix more typos in debian/patches/typos.diff.
-- Bertrand Marc <bmarc@debian.org> Sun, 22 Oct 2017 11:56:03 +0200
gnunet (0.10.1-4) unstable; urgency=medium
* Use my @debian.org address for the maintainer field and in debian/copyright.
* debian/control: fix Vcs-git and Vcs-browser URIs.
* Build-depend on default-libmysqlclient-dev instead of libmysqlclient-dev
(Closes: #845850).
* Add a lintian override for python-script-but-no-python-dep, as a suggests
relationship is more appropriate.
-- Bertrand Marc <bmarc@debian.org> Sat, 10 Dec 2016 11:12:02 +0100
gnunet (0.10.1-3) unstable; urgency=medium
* Acknowledge NMU. Thanks to Raphael Geissert and Balint Reczey.
* debian/gnunet.postinst: add quotes to the tr argument to make it work with
zsh (Closes: #779259).
* debian/control: update description according to upstream website.
* Remove old transitional dummy packages gnunet-server, gnunet-client,
gnunet-common.
* debian/gnunet.postrm: check binaries existence without full path, the
POSIX way.
* Add a patch taken from upstream to fix FTBFS on GNU/Hurd due to a missing
definition of PATH_MAX (Closes: #805013).
* Standards-version: 3.9.8, no changes needed.
* debian/control: use secure uri in Vcs-* fields.
-- Bertrand Marc <beberking@gmail.com> Sun, 24 Apr 2016 22:52:41 +0200
gnunet (0.10.1-2.1) unstable; urgency=medium
* Non-maintainer upload.
[Raphael Geissert]
* Fix bashisms (Closes: #772233)
-- Balint Reczey <balint@balintreczey.hu> Sat, 20 Dec 2014 09:59:13 +0100
gnunet (0.10.1-2) unstable; urgency=medium
* Put the upstream signing key in debian/upstream/signing-key.asc and remove
debian/source/include-binaries.
* debian/control: update homepage as www.gnunet.org does not work anymore.
* Fix FTBFS on kfreebsd (Closes: #765293). Thanks to Steven Chamberlain for
testing it.
+ Add a patch to check properly the existence of malloc_np.h.
+ debian/rules: remove the file selection on kfreebsd as all binaries are
built now.
* debian/rules: use debhelpers -indep and -arch targets to make sure nothing
is built unnecessary on an arch-indep build.
-- Bertrand Marc <beberking@gmail.com> Wed, 15 Oct 2014 21:44:26 +0200
gnunet (0.10.1-1) unstable; urgency=medium
* Imported Upstream version 0.10.1 (Closes: #719255, #702101).
* Remove patches:
+ multiarch_support.diff, included upstream.
+ update-default-hostlist-servers.patch, not needed anymore.
+ typos.patch, included upstream.
+ add_shebang.patch, included upstream.
* Add patches:
+ from upstream SVN to build against libcurl instead of libgnurl
(Closes: #758937).
+ to fix the installation directory of GNUnet conversation.
+ to fix a few typos and make lintian happy.
+ from upstream SVN to make sure set-profiler and set-ibf-profiler
are not installed.
* debian/control:
+ update build-dependencies and recommends according to README.
+ make gnunet-dev depend on libgcrypt20-dev (>=1.6) as headers include
gcrypt.h.
+ breaks gnunet-gtk (<<0.10).
+ suggests: python and python-zbar for gnunet-qr.
* Merge gnunet-server, gnunet-client and gnunet-common into the gnunet binary
package. The split was unnecessary hard to maintain for too little gain.
* Remove properly the old config file /etc/default/gnunet-server in
gnunet.postinst.
* Add symlinks to libnss_gns* for gnunet-dev in debian/rules.
* Remove manpages for gns-import, mesh, resolver, testing-run-service and
transport-certificate-creation, they are included upstream.
* Add manpages for bcd, nse, qr, scrypt and testbed-profiler.
* Update gnunet.conf with the new settings from gnunet.org. Replace
SERVICEHOME with GNUNET_HOME also in gnunet.postinst.
* Standards-version: 3.9.6, no changes needed.
-- Bertrand Marc <beberking@gmail.com> Sat, 04 Oct 2014 12:51:21 +0200
gnunet (0.9.5a-4) unstable; urgency=medium
[ Pino Toscano ]
* Fix FTBFS on non-linux architectures (Closes: #740544):
+ remove gnunet-server.install.[kfreebsd,hurd].
+ generate gnunet-server.install.[kfreebsd,hurd] during install and remove
them during auto_clean.
+ remove the useless leftovers of vpn, dns and gns stuff on non-linux
architectures (which are useless as the related libraries are not built).
[ Hideki Yamane ]
* Add "Build-Depends: libidn11-dev" to fix FTBFS "error: Libidn not found"
(Closes: #747782).
[ Bertrand Marc ]
* Build-depend on libgnutls28-dev instead of libgnutls-dev (Closes: #753031).
-- Bertrand Marc <beberking@gmail.com> Wed, 09 Jul 2014 19:52:24 +0200
gnunet (0.9.5a-3) unstable; urgency=medium
* debian/rules: copy gnunet.conf from debian/etc/ instead of echo it directly,
to make debian/rules independent of the shell (Closes: #739298).
* gnunet-server.postrm: do not fail if the gnunet user is not a system user
(Closes: #719448).
-- Bertrand Marc <beberking@gmail.com> Sat, 22 Feb 2014 11:42:59 +0100
gnunet (0.9.5a-2) unstable; urgency=medium
* Do not install /usr/share/doc/gnunet/README in gnunet-server
(Closes: #738600).
-- Bertrand Marc <beberking@gmail.com> Tue, 11 Feb 2014 19:50:54 +0100
gnunet (0.9.5a-1) unstable; urgency=medium
[ Bertrand Marc ]
* Imported Upstream version 0.9.5a
* Drop dependency on gettext for gnunet-client and gnunet-server as it is not
necessary, thanks to Ivan Shmakov.
* Fix build on kfreebsd, thanks to Christoph Egger.
* gnunet-server.postinst: check the existence of a binary before changing its
permissions.
* Drop patch to configure the nssdir, included upstream.
* Drop patch to support GNU Hurd, included upstream.
* Drop patch to fix alignment on Sparc, included upstream.
* Update debian/*.install.* and debian/*.docs to match the new tree.
* debian/control: use canonical URI in Vcs-git and Vcs-browser fields.
* Build depend on gnutls, glib and gtop.
* debian/rules: add gns nss to configure.
* debian/copyright: update years.
* Rewrite gnunet-server.init based on /etc/init.d/skeleton and make
gnunet-server depend on lsb-base to use LSB logging.
* Use debhelper v9 and update paths accordingly.
* Make the binaries aware of paths with the multiarch tuple, patch picked
upstream.
* Fix a few typos to make lintian happy.
* Make uscan check the archive signature:
+ add the upstream key to debian/upstream-signing-key.pgp.
+ add the binary key to debian/source/include-binaries.
+ add pgpsigurlmangle to debian/watch.
* Remove manpages for services and helpers, they are not in PATH anymore.
* Remove manpages for binaries which are not built anymore.
* Generate debian/gnunet-server.init from debian/rules as the path to the
daemon now depends on $(DEB_HOST_MULTIARCH).
* Standards version 3.9.5: no changes needed.
* Add manpages for gnunet-testing-run-service, gnunet-mesh, gnunet-gns-import
and gnunet-transport-certificate-creation.
* Links the gnunet-gns-proxy manpage to gnunet-gns-proxy-setup-ca.
* Make gnunet-server recommend openssl and libnss3-tools, they are used by
gnunet-gns-proxy-setup-ca and gnunet-transport-certificate-creation.
* Do not build-depend on guile-1.8-dev anymore and remove --enable-guile from
configure, GNU Guile is not used at build time. Make gnunet-client depend on
guile-2.0 as gnunet-download-manager uses it.
* Do not suggest libextractor-plugins anymore, these were merged into
libextractor.
[ Daniel Dehennin ]
* RDBMS libraries are used only by “gnunet-server” package.
* Remove obsolete manpage links.
[ David Barksdale ]
* Update the default hostlist severs.
-- Bertrand Marc <beberking@gmail.com> Sun, 09 Feb 2014 16:24:17 +0100
gnunet (0.9.3-7) unstable; urgency=low
* Revert previous changes and go back to 0.9.3-5 to target wheezy.
-- Bertrand Marc <beberking@gmail.com> Thu, 28 Feb 2013 09:19:22 +0100
gnunet (0.9.3-6) unstable; urgency=low
* Fix build on kfreebsd, thanks to Christoph Egger (Closes: #688486).
* gnunet-server.postinst: check the existence of a binary before changing its
permissions (Closes: #688484).
-- Bertrand Marc <beberking@gmail.com> Sun, 27 Jan 2013 12:55:10 +0100
gnunet (0.9.3-5) unstable; urgency=low
* Revert previous changes to target wheezy:
+ depend on gettext.
+ drop patch to fix build on kfreebsd.
+ drop patch to change default option UNIX_MATCH_UID.
+ drop patch about libgcrypt version check.
-- Bertrand Marc <beberking@gmail.com> Sun, 13 Jan 2013 18:00:29 +0100
gnunet (0.9.3-4) unstable; urgency=low
[ Bertrand Marc ]
* Drop dependency on gettext for gnunet-client and gnunet-server as it is not
necessary, thanks to Ivan Shmakov (Closes: #690860).
* Revert the use dh_installdocs --link-doc (Closes: #687875, #687881,
#687883).
* Fix build on kfreebsd, thanks to Christoph Egger (Closes: #688486).
* Allways install libnss to /lib and fix FTBFS on ia64 (Closes: #688590).
* Install libnss to /lib, really fix #688590, thanks to Christian Grothoff.
* Change default option UNIX_MATCH_UID for services datastore and namestore,
so users in the gnunet group may use these services (Closes: #686238,
#684317).
* Update libgcrypt version check to a less strict check, patch picked from
upstream, following Werner Koch's advice (Closes: #684997).
* gnunet-server.postinst: check the existence of a binary before changing its
permissions (Closes: #688484).
* Do not set-UID gnunet-helper-fs-publish (Closes: #691154).
[ David Prévot ]
* debian/po/fr.po: Fix charset, and use non-breaking spaces.
-- Bertrand Marc <beberking@gmail.com> Mon, 22 Oct 2012 22:52:43 +0200
gnunet (0.9.3-3) unstable; urgency=low
* debian/control: update Vcs-* to the new repository in collab-maint.
* Install only the generated binaries on Hurd, thanks to Cyril Roelandt
(Closes: #670794).
* Use chmod and chown instead of dpkg-statoverride to set special permissions
and upgrade properly depending on the previous version (Closes: #673301).
* Fix "gcc-4.6: [sparc] compiler fails to align stack-allocated
struct, with array of uint32-values to 32-bit boundary":
new patch sparc_alignment.patch, taken from upstream:
https://lists.gnu.org/archive/html/gnunet-svn/2012-07/msg00548.html
Thanks to Jurij Smakov for the analysis.
(Closes: #670578)
* Fix the logfile name in gnunet-server.logrotate (Closes: #685856).
-- Bertrand Marc <beberking@gmail.com> Sun, 05 Aug 2012 20:13:49 +0200
gnunet (0.9.3-2) unstable; urgency=low
* Clean properly dpkg-statoverride in gnunet-server.postrm
(Closes: #678331).
-- Bertrand Marc <beberking@gmail.com> Wed, 20 Jun 2012 23:55:11 +0200
gnunet (0.9.3-1) unstable; urgency=low
* Fix build on GNU Hurd, thanks to Cyril Roelandt (Closes: #670794).
* Imported Upstream version 0.9.3.
* Refresh the only patch.
* Update debian/*.install, links, and rules to match the new tree.
* Pass hardening build flags to configure.
* Update debian/rules clean to build twice successfully.
* Do not install gnunet-helper-transport-wlan-dummy.
-- Bertrand Marc <beberking@gmail.com> Sun, 17 Jun 2012 12:22:32 +0200
gnunet (0.9.2-2) unstable; urgency=low
* Build-depends on libextractor (>=1:0.6.3), with an epoch (Closes: #673302).
* Gnunet-server breaks/replaces gnunet-fuse (<<0.9) as they both contains
common files (Closes: #673382).
* gnunet-server breaks/replaces gnunet-client (<<0.9) (Closes: #673801).
-- Bertrand Marc <beberking@gmail.com> Wed, 23 May 2012 21:54:32 +0200
gnunet (0.9.2-1) unstable; urgency=low
* New maintainer (Closes: #660438).
* New upstream release (Closes: #621645).
* Remove debian/patches, not necessary any more.
* Update dependencies, according to README:
+ update minimal versions.
+ depends on libunistring-dev.
+ depends on libltdl-dev instead of libltdl3-dev.
+ no need to depend on libgtk anymore.
+ gnunet-server suggests miniupnpc.
* debian/rules:
+ no need to define LOGFILE and PIDFILE.
+ create a minimal conf file.
+ cut gnunet-download-manager.scm extension.
+ remove autogenerated files in clean.
* Gnunet is now released under the GPL v3.
* Standards version 3.9.3.
* Add debian/watch.
* Adding Italian debconf translations, thanks to Beatrice Torracca
(Closes: #663432).
* Move to dh-autoreconf and add extend-diff-ignore in debian/source/options.
* Remove gnunet-tools since gnunet-setup is not part of gnunet anymore
(Closes:#651192).
* gnunet-server.init:
+ several services are now supervised by gnunet-service-arm.
+ define the logfile at run time.
* Use a secured group gnunetdns for SUID binaries and change permissions
accordingly, see https://gnunet.org/gnunet-access-control-model
* gnunet-server.postinst, gnunet-server.postrm: use dpkg-statoverride to set
and remove setuid permissions.
* Remove properly the old incompatible /etc/gnunetd.conf, use
/etc/gnunet.conf instead.
* Add minimal (generic) man pages when information is available.
* Remove dpkg options for compression.
* gnunet-server.docs: add README.mysql and README.postgres.
* debian/rules: remove template binaries after dh_install.
* debian/copyright:
+ use copyright format 1.0.
+ mention AUTHORS and translators.
+ use GPL-3+ when possible.
+ add a paragraph for two files distributed under MIT/X11.
* Use dh_installdocs --link-doc to avoid redundancy.
* Remove unused debian/gnunet-dev.lintian-overrides.
* debian/control: add Vcs-git and Vcs-browser fields.
* gnunet-server.postrm:
+ use debconf to determine which user and group to delete.
+ remove /var/lib/gnunet on purge.
+ remove /etc/default/gnunet-server on purge (Closes: #668766).
* Make gnunet-dbg dependencies alternatives as it provides debugging
symbol for all of them.
-- Bertrand Marc <beberking@gmail.com> Sun, 06 May 2012 00:28:20 +0200
gnunet (0.8.1b-8) unstable; urgency=low
* Orphaning package.
-- Daniel Baumann <daniel.baumann@progress-linux.org> Sun, 19 Feb 2012 08:24:30 +0000
gnunet (0.8.1b-7) experimental; urgency=low
* Updating maintainer and uploaders fields.
* Removing vcs fields.
* Removing references to my old email address.
* Updating to debhelper version 8.
* Updating to standards version 3.9.2.
* Switching to source version 3.0 (quilt).
* Removing pre-squeeze version declarations from build-depends.
* Updating years in copyright file.
* Making packaging distribution neutral.
* Compacting copyright file.
* Removing leading slash in debhelper install files.
* Simplyfing autotools handling in rules.
* Adding Danish debconf translations from Joe Hansen
<joedalton2@yahoo.dk> (Closes: #633908).
* Updating po files.
-- Daniel Baumann <daniel.baumann@progress-linux.org> Thu, 15 Sep 2011 13:52:08 +0200
gnunet (0.8.1b-6) experimental; urgency=low
* Updating standards version to 3.9.0.
* Rebuilding against transitioned libesmtp (Closes: #597942).
* Updating to standards version 3.9.1.
-- Daniel Baumann <daniel.baumann@progress-linux.org> Fri, 24 Sep 2010 18:25:52 +0200
gnunet (0.8.1b-5) unstable; urgency=low
* Correcting spelling typo in README.Debian (Closes: #586583).
-- Daniel Baumann <daniel.baumann@progress-linux.org> Sat, 26 Jun 2010 20:13:27 +0200
gnunet (0.8.1b-4) unstable; urgency=low
* Stopp calling debconf-updatepo in clean target of rules.
* Dropping la files.
-- Daniel Baumann <daniel.baumann@progress-linux.org> Mon, 03 May 2010 21:06:32 +0200
gnunet (0.8.1b-3) unstable; urgency=medium
* Adding depends to remote_fs in init script.
* Rebuilding against libextractor with epoche to ease testing
migration.
-- Daniel Baumann <daniel.baumann@progress-linux.org> Sat, 20 Mar 2010 09:59:41 +0100
gnunet (0.8.1b-2) unstable; urgency=medium
* Adding patch to disable initscript creation in gnunet-setup (Closes:
#555107).
* Adding patch to use correct initscript name for gnunet-server in
gnunet-setup.
-- Daniel Baumann <daniel.baumann@progress-linux.org> Sun, 14 Mar 2010 11:32:57 +0100
gnunet (0.8.1b-1) unstable; urgency=low
* Merging upstream version 0.8.1b.
* Updating build-depends, depends, and conflicts on libextractor.
-- Daniel Baumann <daniel.baumann@progress-linux.org> Sat, 06 Mar 2010 10:50:09 +0100
gnunet (0.8.1a-1) unstable; urgency=low
* Updating year in copyright file.
* Populating gnunetd.conf from upstreams example files.
* Updating to standards 3.8.4.
* Merging upstream version 0.8.1a.
-- Daniel Baumann <daniel.baumann@progress-linux.org> Mon, 15 Feb 2010 13:11:53 +0100
gnunet (0.8.1-1) unstable; urgency=low
* Simplifying autotools handling in rules.
* Setting last-translator for German debconf templates to me, no
intention do deal with debian-l10n-german in the future anymore.
* Moving maintainer homepage from control to copyright.
* Updating README.source.
* Bumping versioned build-depends on debhelper.
* Adding Japanese debconf translations from Hideki Yamane
<henrich@debian.or.jp> (Closes: #558066).
* Adding explicit source version 1.0 until switch to 3.0.
* Merging upstream version 0.8.1.
* Adding libstartup-notification0-dev to build-depends.
* Adding conflicts against libextractor 0.6 which will be incompatible
with gnunet 0.8.
* Updating debhelper files for new upstream version.
* Not calling tempfile with full path in gnunet-server.postinst.
-- Daniel Baumann <daniel.baumann@progress-linux.org> Tue, 29 Dec 2009 18:39:36 +0100
gnunet (0.8.0c-8) unstable; urgency=low
* Updating to standards version 3.8.3.
* Correcting spelling mistake in copyright file.
* Adding maintainer homepage field to control.
* Marking maintainer homepage field to be also included in binary
packages and changelog.
* Adding README.source.
* Correcting variable assignment in postinst which fails if default
shell is dash (Closes: #544020, #544032, #544033).
-- Daniel Baumann <daniel.baumann@progress-linux.org> Sat, 29 Aug 2009 15:06:12 +0200
gnunet (0.8.0c-7) unstable; urgency=low
* Excluding chown call on /var/run/gnunetd in postinst, directory is
handled in the initscript (Closes: #541685).
-- Daniel Baumann <daniel.baumann@progress-linux.org> Sat, 15 Aug 2009 21:09:42 +0200
gnunet (0.8.0c-6) unstable; urgency=low
* Removing optional debconf queries in gnunet-servers postrm to avoid
(spuriously?) hanging processes on the buildds (Closes: #541400).
-- Daniel Baumann <daniel.baumann@progress-linux.org> Thu, 13 Aug 2009 23:51:23 +0200
gnunet (0.8.0c-5) unstable; urgency=low
* Reworking handling of autostart of gnunet-server.
* Only listing Christian as main author/contact person in copyright.
* Denoting debconf question about autostart to medium, which is just
more accurate.
* Applying some cosmetics to gnunet-server postinst script.
* Making sure that we don't get empty answers from debconf for gnunet
username and groupname.
* Calling dh_install with fail-missing when building the arch any
packages.
* Unifying debconf translation headers.
* Excluding /var/run/gnunetd from gnunet-server.dirs, it's created by
the initscript anyway.
* Using test -f instead of the stronger test -r when checking for
existence of the default file, just to shut up lintian.
-- Daniel Baumann <daniel.baumann@progress-linux.org> Thu, 13 Aug 2009 18:46:40 +0200
gnunet (0.8.0c-4) unstable; urgency=low
* Removing gnunet-update call in gnunet-server postinst, it's not
required anymore.
-- Daniel Baumann <daniel.baumann@progress-linux.org> Wed, 12 Aug 2009 12:34:42 +0200
gnunet (0.8.0c-3) unstable; urgency=low
* Removing unneded versions for build-depends.
* Wrapping build depends.
* Sorting depends.
* Updating year in copyright file.
* Tidy rules file.
* Setting priority of debconf question about gnunet user account to
low, medium was overrated.
* Removing unused debconf translation messages.
* Renaming username and groupname debconf questions to consistent
scheme.
* Also handling removal of gnunet user and group in postrm.
* Adding gnunet-server example preseed file.
* Adding updated Spanish debconf translations from Francisco Javier
Cuadrado <fcocuadrado@gmail.com> (Closes: #529030).
* Updating maintainer field.
* Updating vcs fields.
* Minimizing rules file.
-- Daniel Baumann <daniel.baumann@progress-linux.org> Tue, 11 Aug 2009 00:00:16 +0200
gnunet (0.8.0c-2) unstable; urgency=low
* Updating build-depends to libmysqlclient-dev (Closes: #538468).
* Upgrading package to standards version 3.8.2.
-- Daniel Baumann <daniel.baumann@progress-linux.org> Sat, 25 Jul 2009 23:59:21 +0200
gnunet (0.8.0c-1) unstable; urgency=low
* Merging upstream version 0.8.0c (Closes: #520427).
* Building with http transport support (Closes: #519810).
* Updating package to standards 3.8.1.
* Removing old conflicts and replaces.
* Making gnunet binNMU safe (Closes: #527453, #527462).
* Using correct rfc-2822 date formats in changelog.
* Using more generic directoy name for local additions within the
packaging directory.
* Updating debhelper install files for new upstream.
* Adding misc:Depends in control to remaining binary packages.
* Updating section of the debug package.
-- Daniel Baumann <daniel.baumann@progress-linux.org> Mon, 11 May 2009 18:30:20 +0200
gnunet (0.8.0b-5) unstable; urgency=low
* Making use of code from cdbs' clean-la.mk file to clear the
dependency_libs field in all .la files in the gnunet-dev static
libraries.
* Removing Arnaud from uploaders, he is MIA (Closes: #513162).
* Updating year in copyright file.
* Updating debconf operations.
-- Daniel Baumann <daniel.baumann@progress-linux.org> Thu, 05 Feb 2009 00:08:00 +0100
gnunet (0.8.0b-4) unstable; urgency=low
* Removing config.guess and config.sub in clean target of rules.
* Adding db_stop call in gnunet-server.postinst to properly stop
debconf interactions.
* Replacing obsolete dh_clean -k with dh_prep.
* Adding '|| true' to gnunet-update call, this way a hanging gnunet-
update can be aborted in a (almost) sane way. Also see
https://gnunet.org/mantis/view.php?id=1349 (Closes: #506264).
-- Daniel Baumann <daniel.baumann@progress-linux.org> Thu, 20 Nov 2008 07:16:00 +0100
gnunet (0.8.0b-3) unstable; urgency=low
* Adding libmicrohttpd-dev to gnunet-dev depends.
* Adding gnunet-server to gnunet-client suggests.
* Adding note about requiring gnunet-server in gnunet-client package
long-description.
-- Daniel Baumann <daniel.baumann@progress-linux.org> Fri, 19 Sep 2008 10:49:00 +0200
gnunet (0.8.0b-2) unstable; urgency=low
* Updating vcs fields in control file.
* Building gnunet on all architectures again, guile-1.8 on ia64 is back.
-- Daniel Baumann <daniel.baumann@progress-linux.org> Sun, 14 Sep 2008 12:53:00 +0200
gnunet (0.8.0b-1) unstable; urgency=low
* Adding libssl-dev to build-depends.
* Merging upstream version 0.8.0b.
-- Daniel Baumann <daniel.baumann@progress-linux.org> Mon, 25 Aug 2008 00:37:00 +0200
gnunet (0.8.0a-1) unstable; urgency=low
* Merging upstream version 0.8.0a.
-- Daniel Baumann <daniel.baumann@progress-linux.org> Sun, 03 Aug 2008 20:55:00 +0200
gnunet (0.8.0-2) unstable; urgency=low
* Creating /var/run/gnunetd in initscript in case /var/run is on a tmpfs.
* Adding versioned conflicts/replaces against gnunet in order to allow etch to
lenny upgrades.
* Updating contact address in po files.
-- Daniel Baumann <daniel.baumann@progress-linux.org> Thu, 03 Jul 2008 14:17:00 +0200
gnunet (0.8.0-1) unstable; urgency=low
* Switching maintainer and uploaders fields.
* Correcting spelling error in gnunet long-description.
* Updating gnunet-client.install for 0.8.0.
* Adding libesmtp-dev to build-depends.
* Bumping versioned libmicrohttpd depends to 0.3.1.
* Reordering rules file.
* Also excluding gnunet meta package from ia64 since there is no gnunet on
ia64 anyway.
* Using lintian debhelper to intall lintian overrides.
* Removing watch file.
* Rewriting copyright file in machine-interpretable format.
* Bumping versioned libextractor depends to 0.5.20.
* Adding vcs fields in control file.
* Upgrading package to standards 3.8.0.
* Upgrading package to debhelper 7.
* Merging upstream version 0.8.0.
* Correcting typo in gnunet-client.install file.
-- Daniel Baumann <daniel.baumann@progress-linux.org> Thu, 19 Jun 2008 15:36:00 +0200
gnunet (0.8.0~pre1-1) experimental; urgency=low
* New upstream release.
-- Daniel Baumann <daniel.baumann@progress-linux.org> Tue, 17 Jun 2008 11:44:00 +0200
gnunet (0.7.3-7) unstable; urgency=medium
* Excluding ia64 manually from architectures.
-- Daniel Baumann <daniel.baumann@progress-linux.org> Tue, 29 Apr 2008 16:13:00 +0200
gnunet (0.7.3-6) unstable; urgency=medium
* Removing watch file.
* Tightened gnunet inter depends.
-- Daniel Baumann <daniel.baumann@progress-linux.org> Wed, 09 Apr 2008 07:44:00 +0200
gnunet (0.8.0~pre0-2) experimental; urgency=low
* Tightened gnunet inter depends (Closes: #470180).
-- Daniel Baumann <daniel.baumann@progress-linux.org> Tue, 25 Mar 2008 11:49:00 +0100
gnunet (0.7.3-5) unstable; urgency=medium
* Added patch to fix FTBFS with gcc-4.3 (Closes: #466830).
-- Daniel Baumann <daniel.baumann@progress-linux.org> Mon, 24 Mar 2008 11:14:00 +0100
gnunet (0.8.0~pre0-1) experimental; urgency=low
* New upstream release.
-- Daniel Baumann <daniel.baumann@progress-linux.org> Fri, 07 Mar 2008 16:19:00 +0100
gnunet (0.7.3-4) unstable; urgency=medium
* Adding updated Dutch debconf translation from Bart Cornelis
<cobaco@skolelinux.no> (Closes: #469174).
-- Daniel Baumann <daniel.baumann@progress-linux.org> Fri, 07 Mar 2008 15:31:00 +0100
gnunet (0.7.3-3) unstable; urgency=medium
* Rebuilding against new dialog (Closes: #454948).
-- Daniel Baumann <daniel.baumann@progress-linux.org> Wed, 13 Feb 2008 07:31:00 +0100
gnunet (0.7.3-2) unstable; urgency=low
* Moved libgnunettesting_api.so.* to gnunet-client, they were accidentally
included to gnunet-dev before.
-- Daniel Baumann <daniel.baumann@progress-linux.org> Mon, 21 Jan 2008 20:22:00 +0100
gnunet (0.7.3-1) unstable; urgency=low
* New upstream release.
-- Daniel Baumann <daniel.baumann@progress-linux.org> Mon, 24 Dec 2007 16:04:00 +0100
gnunet (0.7.2c-5) unstable; urgency=low
* Building against transitioned libmicrohttpd.
* Added Finnish debconf translation from Esko Arajaervi <edu@iki.fi>
(Closes: #457419).
* Replacing msgid contact address in *.po files with packages address.
-- Daniel Baumann <daniel.baumann@progress-linux.org> Sat, 22 Dec 2007 10:58:00 +0100
gnunet (0.7.2c-4) unstable; urgency=medium
* Added missing build-dependency against libncursesw5-dev,
now the gnunet-setup curses interface gets build again (Closes: #454701).
-- Daniel Baumann <daniel.baumann@progress-linux.org> Fri, 07 Dec 2007 09:30:00 +0100
gnunet (0.7.2c-3) unstable; urgency=medium
* Some formal cleanups:
- Updated to new policy.
- Using Homepage field in control.
- Using versioned depends for libextractor.
- Comented lintian overrides.
-- Daniel Baumann <daniel.baumann@progress-linux.org> Thu, 06 Dec 2007 22:36:00 +0100
gnunet (0.7.2c-2) unstable; urgency=medium
* Updated install files to cover previously missed files (Closes: #454053).
-- Daniel Baumann <daniel.baumann@progress-linux.org> Sun, 02 Dec 2007 22:29:00 +0100
gnunet (0.7.2c-1) unstable; urgency=low
* New upstream release.
-- Daniel Baumann <daniel.baumann@progress-linux.org> Tue, 09 Oct 2007 10:20:00 +0200
gnunet (0.7.2b-6) unstable; urgency=low
* Adding debug package.
-- Daniel Baumann <daniel.baumann@progress-linux.org> Wed, 26 Sep 2007 10:21:00 +0200
gnunet (0.7.2b-5) unstable; urgency=low
* Renamed gnunet-daemon package to gnunet-server for consistency reasons.
Since gnunet was splittet out after etch, there is no transitional package
required.
-- Daniel Baumann <daniel.baumann@progress-linux.org> Wed, 15 Aug 2007 14:51:00 +0200
gnunet (0.7.2b-4) unstable; urgency=low
* Added netbase dependency to gnunet-daemon as found out by Kurt Roeckx
<kurt@roeckx.be> (Closes: #437922, #437984).
-- Daniel Baumann <daniel.baumann@progress-linux.org> Wed, 15 Aug 2007 14:25:00 +0200
gnunet (0.7.2b-3) unstable; urgency=low
* Fixed broken gnunet-daemon.postinst on new installations.
-- Daniel Baumann <daniel.baumann@progress-linux.org> Tue, 14 Aug 2007 16:30:00 +0200
gnunet (0.7.2b-2) unstable; urgency=low
* Added build-dependency to libadns1-dev.
* Synced gnunetd.conf and gnunetd-daemon.postinst with upstream,
using /var/lib/gnunet instead of /var/lib/GNUnet now (Closes: #301822).
* Synced gnunet-daemon.install and gnunet-client.install with upstream,
including new libraries (Closes: #431021, #434684).
-- Daniel Baumann <daniel.baumann@progress-linux.org> Tue, 14 Aug 2007 15:57:00 +0200
gnunet (0.7.2b-1) unstable; urgency=low
* New upstream release.
* Updated po files according to the work from the debian-l10n-english team
(Closes: #430802).
* Added updated French debconf translation from Christian Perrier
<bubulle@debian.org> (Closes: #431384).
-- Daniel Baumann <daniel.baumann@progress-linux.org> Tue, 14 Aug 2007 14:39:00 +0200
gnunet (0.7.2-1) unstable; urgency=low
* New upstream release (Closes: #429478).
* Rewritten/edited all debian/* files; now using plain debhelper again.
* Removed no longer needed update mechanism from 0.6 to 0.7.
* Updated reviewed debconf templates from debian-l10n-english team
<debian-l10n-english@lists.debian.org>
(Closes: #427877, #425211, #425310, #429845).
* Added Vietnamese debconf translation from Clytie Siddall
<clytie@riverland.net.au> (Closes: #428547).
* Added updated Spanish debconf translation from Rudy Godoy Guillen
<rudy@stone-head.org> (Closes: #426078).
* Added updated Swedish debconf translation from Daniel Nylander
<yeager@lidkoping.net> (Closes: #428356).
* Added updated Portuguese debconf translation from Portuguese Translation
Team <traduz@debianpt.org> (Closes: #428357).
* Added Galician debconf translation from Jacobo Tarrio <jtarrio@trasno.net>
(Closes: #428387).
* Added updated German debconf translation from Helge Kreutzmann
<debian@helgefjell.de> (Closes: 425309, #429843).
* Added Russian debconf translation from Yuri Kozlov
<kozlov.y@gmail.com> (Closes: #429853).
* Added updated Czech debconf translation from Miroslav Kure
<kurem@upcase.inf.upol.cz> (Closes: #430343).
-- Daniel Baumann <daniel.baumann@progress-linux.org> Wed, 27 Jun 2007 09:53:00 +0200
gnunet (0.7.1c-2) unstable; urgency=low
* Rebuild against new curl (Closes: #423573).
* Added Dutch debconf translation from Bart Cornelis <cobaco@skolelinux.no>
(Closes: #423048).
-- Daniel Baumann <daniel.baumann@progress-linux.org> Sun, 13 May 2007 21:28:00 +0200
gnunet (0.7.1c-1) unstable; urgency=low
* New upstream release (Closes: #420538).
* Package splitted into common, tools, daemon, client and dev (Closes: #394740).
* Added LSB section in init script.
* Enable IPv6 (Closes: #405763).
-- Arnaud Kyheng <Arnaud.Kyheng@free.fr> Tue, 10 Apr 2007 12:49:11 +0200
gnunet (0.7.0e-5) unstable; urgency=medium
* Added German debconf translation from Helge Kreutzmann
<debian@helgefjell.de> (Closes: #413731).
-- Daniel Baumann <daniel.baumann@progress-linux.org> Tue, 06 Mar 2007 21:48:00 +0100
gnunet (0.7.0e-4) unstable; urgency=medium
* Added Spanish debconf translation from Javier Ruano
<javier.ruano@estudiante.uam.es> (Closes: #406719).
-- Daniel Baumann <daniel.baumann@progress-linux.org> Sat, 13 Jan 2007 12:37:00 +0100
gnunet (0.7.0e-3) unstable; urgency=low
* Convert rules and control files in order to use cdbs.
* debian/po/cs.po: Updated Czech translation. Thanks to Miroslav Kure (Closes: #389621).
* debian/po/pt.po: Added Portuguese translation. Thanks to Rui Branco (Closes: #374058).
-- Arnaud Kyheng <Arnaud.Kyheng@free.fr> Sat, 29 Jul 2006 23:48:43 +0200
gnunet (0.7.0e-2) unstable; urgency=low
* New email address.
* Included wizard.glade (Closes: #371878).
-- Daniel Baumann <daniel.baumann@progress-linux.org> Tue, 04 Jul 2006 15:49:00 +0200
gnunet (0.7.0e-1) unstable; urgency=high
* New uptream release.
* Set urgency to high since this release fix the remote DOS CVE-2006-2413 (Closes: #368159)
-- Arnaud Kyheng <Arnaud.Kyheng@free.fr> Sun, 21 May 2006 11:24:28 +0200
gnunet (0.7.0d-1) unstable; urgency=low
* New upstream release.
* debian/control: Bumped policy version to 3.7.2.
-- Arnaud Kyheng <Arnaud.Kyheng@free.fr> Sun, 07 May 2006 14:36:13 +0200
gnunet (0.7.0c-2) unstable; urgency=low
* contrib/init_gnunet_ubuntu: Fixed su usage (Closes: #358998). Thanks to
Nicolas Francois for the patch.
-- Arnaud Kyheng <Arnaud.Kyheng@free.fr> Thu, 06 Apr 2006 22:18:59 +0200
gnunet (0.7.0c-1) unstable; urgency=low
* New upstream release (Closes: #350472). Thanks to Nicolas Francois for the patch.
* debian/po/sv.po: Added swedish translation. Thanks to Daniel Nylander (Closes: #347664).
-- Arnaud Kyheng <Arnaud.Kyheng@free.fr> Tue, 21 Mar 2006 19:01:36 +0100
gnunet (0.7.0b-1) unstable; urgency=low
* New upstream release (Closes: #342108).
* debian/control: upgraded build depend from libmysqlclient14-dev to
libmysqlclient15-dev (Closes: #343814).
-- Arnaud Kyheng <Arnaud.Kyheng@free.fr> Sat, 24 Dec 2005 14:09:43 +0100
gnunet (0.7.0a-1) unstable; urgency=low
* New upstream release.
* debian/po/fr.po: Updated french translation. Thanks to Eric (Closes: #336769).
* debian/control: Updated dependencies to follow the libstdc++ allocator change.
-- Arnaud Kyheng <Arnaud.Kyheng@free.fr> Sun, 20 Nov 2005 03:09:15 +0100
gnunet (0.7.0-1) unstable; urgency=low
* New upstream version.
* debian/gnunet.templates: Applied debconf templates patch. Thanks to Clytie Siddall (Closes: #314191).
* Backport of gnunet-setup.c and sqlite.c from SVN to fix 919 and 943 issues (cf Mantis on https://gnunet.org/mantis/).
-- Arnaud Kyheng <Arnaud.Kyheng@free.fr> Sun, 04 Sep 2005 12:49:30 +0200
gnunet (0.6.6b-5) unstable; urgency=low
* debian/control: Bumped policy version to 3.6.2.
* debian/control: Updated depedencies to follow C++ ABI changes (Closes: #325844).
* debian/po/vi.po: Added new Vietnamese translation of gnunet debconf messages. Thanks to Clytie Siddall (Closes: #314190).
-- Arnaud Kyheng <Arnaud.Kyheng@free.fr> Sun, 21 Aug 2005 10:54:54 +0200
gnunet (0.6.6b-4) unstable; urgency=high
* Bump revision number and set urgency high and give the package a chance to
enter Sarge before the final release.
-- Arnaud Kyheng <Arnaud.Kyheng@free.fr> Tue, 31 May 2005 20:57:31 +0200
gnunet (0.6.6b-3) unstable; urgency=low
* debian/po/pt_BR.po: Updated Brazilian Portuguese translation of gnunet
debconf messages. Thanks to Guilherme de S. Pastore. (Closes: #306350)
* debian/po/cs.po: Added new Czech translation of gnunet debconf messages.
Thanks to Miroslav Kure. (Closes: #310756)
-- Arnaud Kyheng <Arnaud.Kyheng@free.fr> Thu, 26 May 2005 22:15:15 +0200
gnunet (0.6.6b-2) unstable; urgency=low
* debian/docs: Added the file UPDATING.
* debian/gnunet.postinst: Secured access to the data directory with 0700 mask.
* debian/control: Set libextractor required instead of recommended (Closes: #305138)
* debian/README.Debian: Changed filename UPGRADING to UPDATING (Closes:
#305136).
* debian/po/pt_BR.po: Added new Brazilian Portuguese translation, thanks to
Rodrigo Tadeu Claro (Closes: #306350).
-- Arnaud Kyheng <Arnaud.Kyheng@free.fr> Sun, 01 May 2005 12:31:50 +0200
gnunet (0.6.6b-1) unstable; urgency=low
* New Upstream release.
* debian/control: Added libextractor dependency.
* debian/rules: Added libextractor support.
* debian/gnunet.postinst: Improved default configuration file building
process.
* debian/gnunet.postinst: Changed default database from gdbm to sqlite. Do
the necessary data migration when needed.
Only change the default database if the user was previously using the old
default one.
If another database was explicitly specified, the script will keep the
user preferences.
* debian/gnunet.conf: Changed default database from gdbm to sqlite.
* debian/README.Debian: Updated the daemon usage.
-- Arnaud Kyheng <Arnaud.Kyheng@free.fr> Tue, 01 Mar 2005 23:03:53 +0100
gnunet (0.6.6a-1) unstable; urgency=low
* New upstream release (Closes: #293347).
* debian/control: Fixed gnunet-gtk dependencies.
* debian/gnunet.shlibs: Replaced version number by ${Source-Version}.
* debian/gnunet.postinst: Fixed some typos in default configuration file.
-- Arnaud Kyheng <Arnaud.Kyheng@free.fr> Tue, 15 Feb 2005 19:45:51 +0100
gnunet (0.6.6-2) unstable; urgency=low
* debian/rules: Added --without-extractor.
* debian/control: Removed forgotten libextractor dependency.
-- Arnaud Kyheng <Arnaud.Kyheng@free.fr> Tue, 08 Feb 2005 23:29:54 +0100
gnunet (0.6.6-1) unstable; urgency=low
* New upstream release.
* debian/rules: Removed --without-sqlite since sqlite3 is now part of Sarge
and Sid.
* debian/control: Added dependency for sqlite3.
Removed libextractor dependencies (Closes: #293014).
* debian/docs: Added gnunet.user (Closes: #292558).
* debian/po/fr.po: Added new french translation, thanks to Eric Madesclair
(Closes: #292895).
* debian/gnunet.postrm, debian/gnunet.prerm, debian/gnunet.postinst,
debian/gnunet.init: Improved launch at startup feature. Thanks to Stephen
Gran for the initial patch. (Closes: #284549).
-- Arnaud Kyheng <Arnaud.Kyheng@free.fr> Thu, 03 Feb 2005 00:29:18 +0100
gnunet (0.6.5-3) unstable; urgency=low
* debian/control: Fixed dependencies. (Closes: #291776, #291857).
* Fixed a typo in previous changelog (Closes: #289496).
-- Arnaud Kyheng <Arnaud.Kyheng@free.fr> Mon, 24 Jan 2005 00:41:29 +0100
gnunet (0.6.5-2) unstable; urgency=low
* Applied Martin Quinson l10n patch wich switch to gettext-based debconf and
does the following modifications (Closes: #283632):
- debian/control: modification for dependencies:
build-dep: debhelper (>= 4.1.16) which depends on po-debconf.
depend: debconf (>= 1.2.0) since old versions have problems with
templates specifying the encoding of their content.
- debian/rules: Add 'debconf-updatepo' to the clean target
(to make sure that the relevant files are ready for translation in the
distributed source packages, and thus help translators).
- execute "debconf-gettextize debian/*templates*".
- update the style to the best current practice.
* Applied Andreas Jochens patch to fix build process on AMD64 with gcc 4.0
(Closes: #289496).
* debian/control: Fixed dependencies.
-- Arnaud Kyheng <Arnaud.Kyheng@free.fr> Fri, 03 Dec 2004 07:59:37 +0100
gnunet (0.6.5-1) unstable; urgency=low
* New upstream release.
* debian/rules: Added --without-sqlite. The requirements for sqlite support
cannot be satisfied yet on Debian (sqlite >= 3.0.0 is not available).
-- Arnaud Kyheng <Arnaud.Kyheng@free.fr> Wed, 17 Nov 2004 14:43:07 +0100
gnunet (0.6.4a-7) unstable; urgency=high
* debian/gnunet.postinst: Fixed dash support (Closes: #280422)
Fixed old logfile may not be moved.
Changed compared version for the upgrade to 0.6.4a-7.
* debian/gnunet.init: Fixed dash support.
Fixed possible error in restart command.
* debian/gnunet.config: Changed compared version for the upgrade to
0.6.4a-7.
-- Arnaud Kyheng <Arnaud.Kyheng@free.fr> Tue, 09 Nov 2004 14:47:21 +0100
gnunet (0.6.4a-6) unstable; urgency=low
* Backport gnunet-update.c from CVS (fix the "cannot get LOGFILE" bug). Now
we can use it in scripts to provide a much more elegant and reliable
migration script.
* debian/gnunet.postinst: use new gnunet-update instead of complex shell
script.
Changed compared version for the upgrade to 0.6.4a-6.
* debian/gnunet.config: use new gnunet-update instead of complex shell
script.
Changed compared version for the upgrade to 0.6.4a-6.
-- Arnaud Kyheng <Arnaud.Kyheng@free.fr> Mon, 25 Oct 2004 01:29:32 +0200
gnunet (0.6.4a-5) unstable; urgency=low
* debian/control: Note: awk is, by dependency, essential, so there is no
need to add it as a dependency.
* debian/gnunet.postinst: Replaced mawk with awk which is provided either by
mawk, gawk, or original-awk (Closes: #277915).
Changed compared version for the upgrade to 0.6.4a-5 since some people
should have gnunet not yet configured with 0.6.4a-4.
* debian/gnunet.config: Replaced mawk with awk.
Changed compared version for the upgrade to 0.6.4a-5 since some people
should have gnunet not yet configured with 0.6.4a-4.
Lowered the warning note priority to medium.
Removed reset of the warning note.
Removed unneeded comments.
Only warn user if configuration values are not yet compliant.
* debian/gnunet.preinst: Removed since it's empty
-- Arnaud Kyheng <Arnaud.Kyheng@free.fr> Sat, 23 Oct 2004 15:31:05 +0200
gnunet (0.6.4a-4) unstable; urgency=low
* Many new improvements to allow gnunetd to run as non-root
(Closes: #226297).
* Backport gnunet-update from CVS to use new -g option in package scripts.
* contrib/gnunet.root: Changed default values of PIDFILE and LOGFILE.
* debian/control: Removed unneeded version requirement for
libgcrypt11-dev.
Added debconf dependency to gnunet (required in package scripts).
* debian/gnunet.postinst: Added gnunetd run as user support.
Added migration scripts to allow a "soft" update, keeping user
settings as much as possible.
* debian/gnunet.templates: New file containing debconf template.
* debian/gnunet.init: Added the possibility to launch the Daemon as an user.
Added --background to prevent a debconf freeze.
* debian/gnunet.logrotate: Changed default paths of logs to
/var/log/gnunetd/.
* debian/gnu-in-net.xpm: Moved package's file from contrib/
* debian/gnunet.desktop: Moved package's file from contrib/
* debian/gnunet.conf: Moved package's file from contrib/.
Changed default values of PIDFILE and LOGFILE to new structure.
* debian/gnunet.dir: Added var/log/gnunetd and var/run/gnunetd.
* debian/rules: Added dh_installdebconf.
-- Arnaud Kyheng <Arnaud.Kyheng@free.fr> Mon, 18 Oct 2004 18:17:13 +0200
gnunet (0.6.4a-3) unstable; urgency=high
* Bumb revision number for the package to be rebuild against fixed
libgcrypt11 (>=1.2.0-10) (Closes: #275793)
* debian/control: Added version requirement for libgcrypt11-dev (>=1.2.0-10).
* Urgency set to high since package in Sarge is currently broken.
-- Arnaud Kyheng <Arnaud.Kyheng@free.fr> Mon, 11 Oct 2004 12:13:28 +0200
gnunet (0.6.4a-2) unstable; urgency=high
* debian/gnunet.postinst: Fixed data migration process.
* Urgency set to high since some people might have broken databases atm.
-- Arnaud Kyheng <Arnaud.Kyheng@free.fr> Wed, 06 Oct 2004 03:58:35 +0200
gnunet (0.6.4a-1) unstable; urgency=medium
* New upstream release.
* debian/gnunet.shlibs: Added missing libs.
* contrib/gnunet.desktop: Added menu file for GNOME and KDE.
* contrib/gnunet.root: Fixed to follow debian policy.
* Removed beta binaries gnunet-dht* and gnunet-setup from package since
they are not yet fonctional.
-- Arnaud Kyheng <Arnaud.Kyheng@free.fr> Wed, 29 Sep 2004 08:09:38 +0200
gnunet (0.6.4-3) unstable; urgency=low
* Fix gnunet-check segfault using CVS (Closes: #271560)
-- Arnaud Kyheng <Arnaud.Kyheng@free.fr> Wed, 15 Sep 2004 23:10:45 +0200
gnunet (0.6.4-2) unstable; urgency=low
* Bumb revision number so ftp-master will accept it.
-- Glenn McGrath <bug1@debian.org> Fri, 10 Sep 2004 12:13:54 +1000
gnunet (0.6.4-1) unstable; urgency=low
* New upstream release.
* New maintainer (Closes: #225690)
* contrib/gnu_in_net.xpm: Modified the application's icon to make the
background transparent.
* debian/gnunet.postinst: Perform gnunet-check -a instead of gnunet-check
-u. This is needed to migrate data from 0.6.2b or earlier.
* debian/control: Updated build dependency from libgtk1.2-dev to
libgtk2.0-dev as required.
* debian/control: Added build dependency libgmp3-dev (>= 4.0.0) as required.
-- Arnaud Kyheng <Arnaud.Kyheng@free.fr> Sun, 29 Aug 2004 23:07:45 +0200
gnunet (0.6.2b-1) unstable; urgency=low
* New upstream release (Closes: #249894 #254258)
* Add missingok to logrotate entry (Closes: #254874)
* Including missing gnunet-download-manager.scm from cvs
-- Glenn McGrath <bug1@debian.org> Sat, 26 Jun 2004 20:53:43 +1000
gnunet (0.6.2a-2) unstable; urgency=low
* Build depend on guile-1.6, not guile-1.6-dev
-- Glenn McGrath <bug1@debian.org> Sat, 08 May 2004 00:08:49 +1000
gnunet (0.6.2a-1) unstable; urgency=low
* New upstream release
* Build depends on guile
-- Glenn McGrath <bug1@debian.org> Thu, 06 May 2004 20:31:51 +1000
gnunet (0.6.2-1) unstable; urgency=low
* New upstream release
* Enable tdb, bdb
-- Glenn McGrath <bug1@debian.org> Sun, 02 May 2004 13:31:49 +1000
gnunet (0.6.1d-4) unstable; urgency=low
* Build against new libgcrypt
-- Glenn McGrath <bug1@debian.org> Tue, 20 Apr 2004 22:14:41 +1000
gnunet (0.6.1d-3) unstable; urgency=low
* Disable STAT_MALLOC to fix hostkey generatation bug.
-- Glenn McGrath <bug1@debian.org> Tue, 13 Apr 2004 17:51:07 +1000
gnunet (0.6.1d-2) unstable; urgency=low
* Include .la files (Closes: #243229)
-- Glenn McGrath <bug1@debian.org> Mon, 12 Apr 2004 21:22:02 +1000
gnunet (0.6.1d-1) unstable; urgency=low
* New upstream release
-- Glenn McGrath <bug1@debian.org> Sat, 03 Apr 2004 21:14:04 +1000
gnunet (0.6.1b-1) unstable; urgency=low
* New upstream release
* Run "gnunet-check -ra" in postinst for compatability
-- Glenn McGrath <bug1@debian.org> Sat, 31 Jan 2004 21:39:33 +1100
gnunet (0.6.1a-2) unstable; urgency=low
* Dont include gnunet-setup (fix build problem)
* Include a sample ~/.gnunet/gnunet.conf file
* Remove GNUNET_HOME from /etc/gnunet.conf, it is defined in a per
user config file
* Include randomi and bloomfilter bugfixes from upstream cvs.
-- Glenn McGrath <bug1@debian.org> Sat, 17 Jan 2004 08:57:52 +1100
gnunet (0.6.1a-1) unstable; urgency=low
* New upstream release
* Build depends on libgcrypt7-dev
* Remove stale gcrypt macros from acinclude.m4 and regenerate Makefiles
-- Glenn McGrath <bug1@debian.org> Thu, 15 Jan 2004 19:28:29 +1100
gnunet (0.6.0a-1) unstable; urgency=low
* New upstream release
* Dont use file globs for .so, it missed some.
* Dont include .la files, its not a -dev package.
-- Glenn McGrath <bug1@debian.org> Fri, 10 Oct 2003 00:41:14 +0000
gnunet (0.6.0-1) unstable; urgency=low
* New upstream release
* Undefined symbols problem fixed by upstream (Closes: #201002)
* Remove gnunet-convert in this release as its broken.
* Regenerate build files with autoreconf -if
* Dont mention internal shared libraries in .shlibs file
-- Glenn McGrath <bug1@debian.org> Mon, 06 Oct 2003 13:56:55 +0000
gnunet (0.5.5-2) unstable; urgency=low
* Fix internal key generation bug iwhen using internal crypto with
patch from upstream, patch-gnunet-0.5.5-rndlinux.c[.diff]
(Closes: #207677)
* Rephrase gnunet-gtk description (Closes: #209643)
* Update standards version to 3.6.1.0
-- Glenn McGrath <bug1@debian.org> Tue, 09 Sep 2003 23:41:50 +0000
gnunet (0.5.5-1) unstable; urgency=low
* New upstream release
-- Glenn McGrath <bug1@debian.org> Fri, 22 Aug 2003 21:57:27 +0000
gnunet (0.5.4a-5) unstable; urgency=low
* Declare the build dependency on libtool in the control file as
well as this changelog (Closes: #202280)
* Make note in README.Debian about upgrading from 0.5.4a-1
-- Glenn McGrath <bug1@debian.org> Tue, 22 Jul 2003 01:01:16 +0000
gnunet (0.5.4a-4) unstable; urgency=low
* Declare build depenency on libtool as well, grrrr
-- Glenn McGrath <bug1@debian.org> Mon, 21 Jul 2003 15:02:20 +0000
gnunet (0.5.4a-3) unstable; urgency=low
* Declare build dependency on automake1.7
-- Glenn McGrath <bug1@debian.org> Mon, 21 Jul 2003 13:30:07 +0000
gnunet (0.5.4a-2) unstable; urgency=low
* Fix removal of package when daemon not running (Closes: #201647)
* Build depends on libltdl3-dev (Closes: #201316)
* Run autoreconf to avoid libtool problem
* Bump standards version to 3.6.0
* Sync gnunet-peer-info man page with upstream
-- Glenn McGrath <bug1@debian.org> Sun, 20 Jul 2003 13:59:20 +0000
gnunet (0.5.4a-1) unstable; urgency=low
* New upstream release.
* Remove build dependency on libgcrypt, gnunet now uses an internal
crypto library based on the CVS branch of libgcrypt.
* Change build dependcy from libgdbmg1-dev to libgdbm-dev
* After 1 year and 39 days in preparation, its now eligable to be
uploaded to unstable (Closes: #147380)
-- Glenn McGrath <bug1@debian.org> Fri, 27 Jun 2003 16:47:54 +0000
gnunet (0.5.4-1) unstable; urgency=low
* New upsteam release
* Declare shared libraries within gnunet, dependency now detected
in gnunet-gtk
-- Glenn McGrath <bug1@debian.org> Sun, 18 May 2003 12:45:27 +0000
gnunet (0.5.3-3) unstable; urgency=low
* Change src/utils/dso.c to load .so.0 modules rather than .so
-- Glenn McGrath <bug1@debian.org> Wed, 30 Apr 2003 12:57:00 +1000
gnunet (0.5.3-2) unstable; urgency=low
* Fix rpath warning.
* Fix dev-symlink warning.
* Add missing man pages for gnunet-peer-ingo and gnunet-stats
-- Glenn McGrath <bug1@debian.org> Wed, 30 Apr 2003 00:08:41 +1000
gnunet (0.5.3-1) unstable; urgency=low
* New upstream release
-- Glenn McGrath <bug1@debian.org> Sat, 19 Apr 2003 22:39:30 +1000
gnunet (0.5.2a-1) unstable; urgency=low
* New upstream release
* Use copytruncate with logrotation
-- Glenn McGrath <bug1@debian.org> Tue, 18 Mar 2003 22:26:21 +1100
gnunet (0.5.2-1) unstable; urgency=low
* New release includes gnunet-tracekit
* Use /etc/default/gnunet to set default init behaviour
* Set logfile to /var/log/gnunetd.log, and use logrotate.
* Set default pid to /var/run/gnunetd
* Specify extractors in config file
-- Glenn McGrath <bug1@debian.org> Fri, 28 Feb 2003 02:51:19 +1100
gnunet (0.5.1a-1) unstable; urgency=low
* Initial Release.
-- Glenn McGrath <bug1@debian.org> Thu, 06 Feb 2003 23:32:06 +1100
|