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 1715 1716 1717 1718 1719 1720 1721 1722 1723 1724 1725 1726 1727 1728 1729 1730 1731 1732 1733 1734 1735 1736 1737 1738 1739 1740 1741 1742 1743 1744 1745 1746 1747 1748 1749 1750 1751 1752 1753 1754 1755 1756 1757 1758 1759 1760 1761 1762 1763 1764 1765 1766 1767 1768 1769 1770 1771 1772 1773 1774 1775 1776 1777 1778 1779 1780 1781 1782 1783 1784 1785 1786 1787 1788 1789 1790 1791 1792 1793 1794 1795 1796 1797 1798 1799 1800 1801 1802 1803 1804 1805 1806 1807 1808 1809 1810 1811 1812 1813 1814 1815 1816 1817 1818 1819 1820 1821 1822 1823 1824 1825 1826 1827 1828 1829 1830 1831 1832 1833 1834 1835 1836 1837 1838 1839 1840 1841 1842 1843 1844 1845 1846 1847 1848 1849 1850 1851 1852 1853 1854 1855 1856 1857 1858 1859 1860 1861 1862 1863 1864 1865 1866 1867 1868 1869 1870 1871 1872 1873 1874 1875 1876 1877 1878 1879 1880 1881 1882 1883 1884 1885 1886 1887 1888 1889 1890 1891 1892 1893 1894 1895 1896 1897 1898 1899 1900 1901 1902 1903 1904 1905 1906 1907 1908 1909 1910
|
doc-linux (2008.08-1) unstable; urgency=low
* new upstream release (20080825)
* Updated HOWTOs:
FBB LILO Linux+WinNT SquashFS-HOWTO
* All mentioned HOWTOs are free except for: SquashFS-HOWTO
-- Frank Lichtenheld <djpig@debian.org> Mon, 25 Aug 2008 22:20:04 +0200
doc-linux (2008.06-1) unstable; urgency=low
* new upstream release (20080626)
* Updated HOWTOs:
AI-Alife-HOWTO FBB LILO Linux+WinNT
* All mentioned HOWTOs are free.
* Review the list of GFDL-1.2 licensed howtos:
- Move four HOWTOs to GFDL-latest
- Three HOWTOs are licensed as GFDL-1.2 only
- Move two HOWTOs are actually licensed as
GFDL-1.1 or later
- Move the rest of the HOWTOs (30) to GFDL-1.2 or
later
* Bump Standards-Version to 3.8.0 (no changes)
* Add source override for missing watch file. Adding one
makes no real sense for this package.
-- Frank Lichtenheld <djpig@debian.org> Fri, 27 Jun 2008 22:12:20 +0200
doc-linux (2008.05-2) unstable; urgency=low
* Return to registering all HOWTOs individually with
doc-base. Improvements in doc-base and the introduction
of triggers make this reasonable. The change was pushed
by dhelp changing so that we can't register directly for
it anymore. This introduces a conflict with
doc-base (<< 0.8.4). (Closes: #482807)
* Remove the conflict with dhelp from older than oldstable.
-- Frank Lichtenheld <djpig@debian.org> Fri, 30 May 2008 00:00:11 +0200
doc-linux (2008.05-1) unstable; urgency=low
* new upstream release (20080524)
* Updated HOWTOs:
FBB Howtos-with-LinuxDoc LILO Linux+WinNT Quake-HOWTO
SquashFS-HOWTO Text-Terminal-HOWTO Unix-and-Internet-Fundamentals-HOWTO
* All updated HOWTOs are free except for: SquashFS-HOWTO
* Review the list of GFDL-1.1 licensed howtos:
- Move Belgian-HOWTO, and Conexant+Rockwell-modem-HOWTO
to non-free since they contain Invariant Sections
- Remove MIPS-HOWTO since it isn't actually shipped anymore.
- VideoLAN-HOWTO is actually licensed under GFDL-1.2
- Split the rest of the list into HOWTOs licensed
GFDL-1.1 or any later version (64), HOWTOs licensed without
any specific version information (28), and HOWTOs
really licensed under GFDL-1.1 only (4). Declare all
but the last group as redistributed under GFDL-1.2.
* Some more non-free documents found while playing around
with FOSSology:
- BogoMips is licensed under GFDL 1.2 with Invariant Sections
- Slovenian-HOWTO is licensed under LDPL 2.0 without permissions
for distributing modified versions
* Update the Replaces of the non-free packages to << 2008.05-1
because of the moved HOWTOs.
* Drop Pre-Depends on dpkg for bzip2 compression. oldstable has a
working version and dak has dropped the check.
* Change doc-base sections to Help/FAQ and Help/HOWTO according
to doc-base manual.
-- Frank Lichtenheld <djpig@debian.org> Sat, 24 May 2008 17:49:21 +0200
doc-linux (2007.12-1) unstable; urgency=low
* new upstream release (20071214)
* Updated HOWTOs:
FBB Howtos-with-LinuxDoc LILO Linux+WinNT
Unix-and-Internet-Fundamentals-HOWTO
* All mentioned HOWTOs are free.
* debian/control:
- Add Homepage field
- Remove XS- prefix from Vcs-* fields
- Bump Standards-Version to 3.7.3
* debian/copyrights:
- Don't include GFDL 1.2 anymore but point
to common-licenses
- Fix wrong encodings (reported by lintian)
* debian/*.dirs: Don't create empty directories
(reported by lintian)
-- Frank Lichtenheld <djpig@debian.org> Sat, 15 Dec 2007 01:23:52 +0100
doc-linux (2007.11-1) unstable; urgency=low
* new upstream release (20071112)
* Updated HOWTOs:
FBB LILO Linux+IPv6-HOWTO Linux+WinNT Unix-Hardware-Buyer-HOWTO
* All mentioned HOWTOs are free.
-- Frank Lichtenheld <djpig@debian.org> Mon, 12 Nov 2007 18:35:59 +0100
doc-linux (2007.09-1) unstable; urgency=low
[ Frank Lichtenheld ]
* new upstream release (20070916)
* Updated HOWTOs:
Compaq-T1500-HOWTO DB2-HOWTO Plug-and-Play-HOWTO
* All mentioned HOWTOs are free except for: DB2-HOWTO
* Don't include the license texts of removed HOWTOs
in the source packages. (Closes: #439403 and makes
the HP license police happy again ;)
[ Colin Watson ]
* Update debian/copyrights/README to current reality.
-- Frank Lichtenheld <djpig@debian.org> Sun, 16 Sep 2007 18:10:09 +0200
doc-linux (2007.08-2) unstable; urgency=low
[ Colin Watson ]
* Use bzip2 compression for doc-linux-html. Saves about 2MB.
[ Frank Lichtenheld ]
* Add XS-Vcs-{Browser,Svn} fields
-- Frank Lichtenheld <djpig@debian.org> Wed, 15 Aug 2007 22:12:38 +0200
doc-linux (2007.08-1) unstable; urgency=low
* new upstream release (20070805)
* Updated HOWTOs:
DB2-HOWTO Ecology-HOWTO Howtos-with-LinuxDoc
XDMCP-HOWTO
* All above mentioned HOWTOs are free, except for the DB2-HOWTO
-- Frank Lichtenheld <djpig@debian.org> Mon, 06 Aug 2007 01:03:26 +0200
doc-linux (2007.06-1) unstable; urgency=low
* new upstream release (20070616)
* Updated HOWTOs:
Athlon-Powersaving-HOWTO Autodir-HOWTO Ecology-HOWTO Hardware-HOWTO
Linux+IPv6-HOWTO UPS-HOWTO libdc1394-HOWTO
* Added HOWTOs:
TCP-Keepalive-HOWTO
* All mentioned HOWTOs except for the Autodir-HOWTO are free.
* The Hardware-HOWTO now includes clear license information
in the HTML version (Closes: #233784)
* The new Secure-BootCD-VPN-HOWTO was not included since it
had confusing license terms. These will to have be cleared with
the author first
-- Frank Lichtenheld <djpig@debian.org> Tue, 19 Jun 2007 02:25:31 +0200
doc-linux (2007.05-1) unstable; urgency=low
* new upstream release (20070503)
* Updated HOWTOs:
Astronomy-HOWTO FBB Font-HOWTO
Howtos-with-LinuxDoc LDAP-HOWTO LILO
Linux+WinNT User-Group-HOWTO
* Of the mentioned HOWTOs, the following are
non-free: Astronomy-HOWTO User-Group-HOWTO
-- Frank Lichtenheld <djpig@debian.org> Fri, 4 May 2007 02:25:19 +0200
doc-linux (2007.02-1) unstable; urgency=low
* new upstream release (20070222)
* Updated HOWTOs:
Filesystems-HOWTO Font-HOWTO Modem-HOWTO NLM-HOWTO
Quake-HOWTO Serial-HOWTO Text-Terminal-HOWTO
* Added HOWTOs:
Implement-Sys-Call-Linux-2.6-i386
* All mentioned HOWTOs are free.
-- Frank Lichtenheld <djpig@debian.org> Fri, 23 Feb 2007 01:22:09 +0100
doc-linux (2006.12-1) unstable; urgency=low
* new upstream release (20061202)
* Updated HOWTOs:
Ecology-HOWTO LVM-HOWTO Linksys-Blue-Box-Router-HOWTO
Linux+IPv6-HOWTO Quake-HOWTO Traffic-Control-HOWTO
Traffic-Control-tcng-HTB-HOWTO UPS-HOWTO
XFree86-Touch-Screen-HOWTO
* Added HOWTOs:
Aviation-HOWTO
* All mentioned HOWTOs are free.
-- Frank Lichtenheld <djpig@debian.org> Sun, 3 Dec 2006 00:49:23 +0100
doc-linux (2006.09-1) unstable; urgency=low
* new upstream release (20060928)
* Removed HOWTOs:
KDE-GUI-Login-Configuration-HOWTO
* Updated HOWTOs:
AI-Alife-HOWTO Autodir-HOWTO Config-HOWTO Debian-Jigdo
FBB Font-HOWTO Installfest-HOWTO LILO
Linksys-Blue-Box-Router-HOWTO Linux+IPv6-HOWTO Linux+WinNT
Linux-Complete-Backup-and-Recovery-HOWTO MMBase-Inst-HOWTO
Module-HOWTO Networking-Overview-HOWTO
Online-Troubleshooting-HOWTO PA-RISC-Linux-Boot-HOWTO
Quake-HOWTO Text-Terminal-HOWTO
* Added HOWTOs:
Disk-on-Chip-HOWTO
* The following mentioned HOWTOs are non-free:
Autodir-HOWTO Config-HOWTO Debian-Jigdo MMBase-Inst-HOWTO
Online-Troubleshooting-HOWTO
* Bump Standards-Version to 3.7.2 (no changes).
* Remove escape characters from text HOWTOs during build. While they
may enhance the display for some users they also cause problems for
others. (Closes: #324453)
-- Frank Lichtenheld <djpig@debian.org> Thu, 28 Sep 2006 16:51:08 +0200
doc-linux (2006.04-1) unstable; urgency=low
* new upstream release (20060408)
* Updated HOWTOs:
Assembly-HOWTO BogoMips C++-dlopen DB2-HOWTO Ecology-HOWTO
Fedora-Multimedia-Installation-HOWTO Font-HOWTO Module-HOWTO
Partition Plug-and-Play-HOWTO Quake-HOWTO Serial-HOWTO
Text-Terminal-HOWTO
* Added HOWTOs:
libdc1394-HOWTO
* All above mentioned HOWTOs are free, except for the DB2-HOWTO
-- Frank Lichtenheld <djpig@debian.org> Sun, 9 Apr 2006 02:30:44 +0200
doc-linux (2006.01-1) unstable; urgency=low
* new upstream release (20060101)
* Removed HOWTOs:
BTI-PPP Bangla-PDF-HOWTO Bridge+Firewall+DSL CSPM-HOWTO
Ext2fs-Undeletion-Dir-Struct FDU Game-Server-HOWTO
IP-Subnetworking ISP-Connectivity KDE-Kiosk-Mode
KickStart-HOWTO LDAP-Implementation-HOWTO Linux+XFS-HOWTO
Loopback-Encrypted-Filesystem-HOWTO Loopback-Root-FS
MGR-HOWTO MMBase Oracle-8-HOWTO SCSI-Programming-HOWTO
Snort-Statistics-HOWTO Term-Firewall USB-Digital-Camera-HOWTO
Ultra-DMA VPN WWW-HOWTO
* All these HOWTOs were removed by upstream because they are old
and orphaned. Closing all bugs filed against these HOWTOs:
+ USB-Digital-Camera-HOWTO closes: #320498, #329865
* Updated HOWTOs:
Quake-HOWTO
* The following HOWTOs mentioned above are (were) non-free:
Loopback-Encrypted-Filesystem-HOWTO Oracle-8-HOWTO Ultra-DMA VPN
-- Frank Lichtenheld <djpig@debian.org> Sun, 1 Jan 2006 15:09:34 +0100
doc-linux (2005.12-1) unstable; urgency=low
* new upstream release (20051211)
* Updated HOWTOs:
DB2-HOWTO FBB Font-HOWTO Howtos-with-LinuxDoc
IP-Masquerade-HOWTO LILO Leased-Line
Linksys-Blue-Box-Router-HOWTO Linux+WinNT
Linux-Complete-Backup-and-Recovery-HOWTO
Quake-HOWTO TimePrecision-HOWTO
* All above mentioned HOWTOs are free, except for the DB2-HOWTO
* Francesco Poli did a license audit for the free
HOWTOs and pointed out some ambigous stuff which
needs to be sorted out with the respective authors:
+ Moved Boot+Root+Raid+LILO and Root-RAID to
non-free until their license contains explicit
permission to modify
+ Moved the HOWTOs under the old-style ESR license
(Installation-HOWTO, Oracle-8-HOWTO, Reading-List-HOWTO,
Wacom-USB-mini-HOWTO) to non-free for similar reasons
+ Same for Oracle-7-HOWTO, NCD-X-Terminal and TT-XFree86
which probably derived their license come from an old,
misleading LDP template
+ Some of the arguments against the CC Attribution
licenses also apply to CC-SA 1.0. Move K7s5a-HOWTO
to non-free
+ The TeTeX-HOWTO tries to introduce invariant sections
and includes the GPL for other purposes than its own
license text. Seems to be clearly non-free. Moved.
+ All other HOWTOs mentioned in the bug report will remain
in main even though they still might need some clarification
of their licenses. I will also not move any of the GFDL
(no invariants) stuff to non-free yet. Just too much of it.
(Closes: #335220) All parts of the bug not solved yet are now
covered in separate bug reports.
* Updated Replaces in control file accordingly
* Use debhelper compat level 5
-- Frank Lichtenheld <djpig@debian.org> Sun, 11 Dec 2005 19:04:15 +0100
doc-linux (2005.10-1) unstable; urgency=low
* new upstream release (20051012)
* Updated HOWTOs:
AI-Alife-HOWTO Cluster-HOWTO FBB
Infrared-HOWTO LILO LVM-HOWTO
Linux+IPv6-HOWTO Linux+WinNT
MMBase-Inst-HOWTO Mock-Mainframe
Quake-HOWTO
* All mentioned HOWTOs are free, except for the
Infrared-HOWTO and the MMBase-Inst-HOWTO
* Fixes suggested by Lintian:
+ Update FSF address in the various licenses
+ Fix some possible bashisms in the maintainer scripts
-- Frank Lichtenheld <djpig@debian.org> Wed, 12 Oct 2005 11:45:56 +0200
doc-linux (2005.09-1) unstable; urgency=low
* new upstream release (20050901)
* Removed HOWTOs:
Laptop-HOWTO GTEK-BBS-550
* Removing the Laptop-HOWTO closes: #201102
* Added HOWTOs:
Oracle-9i-Fedora-3-Install-HOWTO
* Updated HOWTOs:
Athlon-Powersaving-HOWTO Compaq-T1500-HOWTO
DB2-HOWTO Debian-Binary-Package-Building-HOWTO
Debian-and-Windows-Shared-Printing Ecology-HOWTO
Online-Troubleshooting-HOWTO Plug-and-Play-HOWTO
* All mentioned HOWTOs are free, except for the
DB2-HOWTO and the Online-Troubleshooting-HOWTO
* Upstream fixed the link in the HOWTO-HOWTO placeholder
(Closes: #316163)
* Fix URL to subversion repository in debian/copyright
* Clean up packaging handling of placeholders a bit
* Clearly indicate the license terms for HOWTOs that dual licensed
(BootPrompt-HOWTO) or contain program code under a different
license than that of the HOWTO itself (Clone-HOWTO,
Kodak-Digitalcam-HOWTO). This also closes: #322877
* Clean up our maintainer scripts a bit:
- let produce the install-doc calls by dh_installdocs again, it
currently does what we want. This also finally uses the doc-base
file added in 2005.04-1, D'oh!
- remove error-unwind support for pre-woody versions
-- Frank Lichtenheld <djpig@debian.org> Thu, 1 Sep 2005 15:41:09 +0200
doc-linux (2005.07-1) unstable; urgency=low
* new upstream release (20050722)
* Updated HOWTOs:
Battery-Powered DB2-HOWTO Debian-Jigdo
Ethernet-Bridge-netfilter-HOWTO FBB
Font-HOWTO Hardware-HOWTO LILO LVM-HOWTO
Linux+WinNT Modem-HOWTO Module-HOWTO
NCURSES-Programming-HOWTO
* Added HOWTOs:
Reliance-HOWTO
* The Battery-Powered HOWTO changed its license from OPL to a custom
one and is free now. Move the files and adapt the Replaces
* The DB2-HOWTO and the Debian-Jigdo HOWTO are non-free, all other
mentioned HOWTOs are free.
* Update Standards-Version to 3.6.2 (no changes)
* Update to debhelper compat level 4
-- Frank Lichtenheld <djpig@debian.org> Fri, 22 Jul 2005 15:11:49 +0200
doc-linux (2005.06-1) unstable; urgency=low
* new upstream release (20050609)
* Updated HOWTOs:
DB2-HOWTO Font-HOWTO IP-Masquerade-HOWTO TimePrecision-HOWTO
* Added HOWTOs:
TimeSys-Linux-Install-HOWTO
* The DB2-HOWTO and the TimeSys-Linux-Install-HOWTO are non-free,
the other mentioned HOWTOs free.
-- Frank Lichtenheld <djpig@debian.org> Fri, 10 Jun 2005 01:35:34 +0200
doc-linux (2005.04-1) unstable; urgency=low
* new upstream release (20050410)
* Updated HOWTOs:
BTTV Encrypted-Root-Filesystem-HOWTO FBB
Font-HOWTO LILO Linux+WinNT SquashFS-HOWTO
* The BTTV HOWTO changed its license from LDPL-Simple to
GFDL 1.2
* All mentioned HOWTOs except for the SquashFS-HOWTO are
free
* Add doc-base file for HOWTO index as suggested by Robert Luberda
(Closes: #297520)
-- Frank Lichtenheld <djpig@debian.org> Sun, 10 Apr 2005 16:38:20 +0200
doc-linux (2005.02-1) unstable; urgency=low
* new upstream release (20050226)
* Removed HOWTOs:
MIPS-HOWTO
* Updated HOWTOs:
Beowulf-HOWTO DB2-HOWTO Font-HOWTO IRC
Linksys-Blue-Box-Router-HOWTO Linux+IPv6-HOWTO
MMBase-Inst-HOWTO Modem-HOWTO Module-HOWTO
Samba-Authenticated-Gateway-HOWTO Term-Firewall
Webcam-HOWTO WikiText-HOWTO
* The Beowulf-HOWTO is licensed under the GFDL 1.1, not GPL-2
(the latter was an other, older HOWTO on the same topic).
Adjusted the copyright information
* WikiText-HOWTO changed its license from GFDL 1.1 to GFDL 1.2
* The broken link from the Font-HOWTO was removed (Closes: #190539)
* The DB2-HOWTO and the MMBase-Inst-HOWTO are non-free, all other
mentioned HOWTOs are free.
-- Frank Lichtenheld <djpig@debian.org> Sun, 27 Feb 2005 02:09:51 +0100
doc-linux (2005.01-1) unstable; urgency=low
* new upstream release (20050106)
* Removed HOWTOs:
SSI-UML-HOWTO
* Updated HOWTOs:
Athlon-Powersaving-HOWTO DB2-HOWTO Finnish-HOWTO Font-HOWTO
Italian-HOWTO
* DB2-HOWTO changed its license from GPL-2 to GFDL-1.2 with invariant
sections. Moved to doc-linux-nonfree accordingly. Adjusted the
Replaces. All other mentioned HOWTOs are free.
* Finnish-HOWTO changed its license from GFDL-1.1 to both GFDL-1.1
and GPL-2. I use the GPL-2 accordingly.
* Font-HOWTO was mistakenly mentioned to be licensed under
the LDPL-Manifesto. It is GFDL-1.2.
* The Font-HOWTO doesn't mention Debian stable as being 'potato'
anymore (Closes: #200629)
-- Frank Lichtenheld <djpig@debian.org> Fri, 7 Jan 2005 00:28:02 +0100
doc-linux (2004.11-1) unstable; urgency=low
* new upstream release (20041127)
* Updated HOWTOs:
Cluster-HOWTO Disk-Encryption-HOWTO Encrypted-Root-Filesystem-HOWTO
Large-Disk-HOWTO Linux-Gamers-HOWTO Modem-HOWTO Plug-and-Play-HOWTO
Samba-Authenticated-Gateway-HOWTO Scientific-Computing-with-GNU-Linux
Serial-HOWTO SquashFS-HOWTO TimePrecision-HOWTO
* Added HOWTOs:
Qmail-ClamAV-HOWTO
* The following HOWTOs of the ones mentioned above are non-free:
Linux-Gamers-HOWTO SquashFS-HOWTO
* The updated Large-Disk-HOWTO fixes broken links in section 11
(Closes: #257072)
-- Frank Lichtenheld <djpig@debian.org> Sun, 28 Nov 2004 17:08:05 +0100
doc-linux (2004.10-1) unstable; urgency=low
* new upstream release (20041019)
* Removed HOWTOs:
Net-HOWTO
* Updated HOWTOs:
BogoMips FBB LILO LVM-HOWTO Linux+WinNT SCSI-2.4-HOWTO
Scientific-Computing-with-GNU-Linux User-Group-HOWTO
VMS-to-Linux-HOWTO Windows-LAN-Server-HOWTO XFree86-Touch-Screen-HOWTO
* Added HOWTOs:
8021X-HOWTO Autodir-HOWTO NET3-4-HOWTO Spam-Filtering-for-MX
* The Net-HOWTO was replaced by an older version (NET3-4-HOWTO)
which reverts the br0ken texts (Closes: #178233)
* All mentioned HOWTOs except for the Autodir-HOWTO (CC-Attribution 2.0)
and the User-Group-HOWTO are free
-- Frank Lichtenheld <djpig@debian.org> Tue, 19 Oct 2004 01:18:46 +0200
doc-linux (2004.09-1) unstable; urgency=low
* new upstream release (20040908)
* Updated HOWTOs:
AI-Alife-HOWTO Cable-Modem Cluster-HOWTO Coffee
Disk-Encryption-HOWTO Installfest-HOWTO LILO LVM-HOWTO Linux+IPv6-HOWTO
Linux-Gamers-HOWTO MP3-CD-Burning Modem-HOWTO Plug-and-Play-HOWTO
SPARC-HOWTO Text-Terminal-HOWTO XFree-Local-multi-user-HOWTO
* Renamed HOWTOs:
DPT-Hardware-RAID was renamed to DPT-Hardware-RAID-HOWTO
* The Cable-Modem HOWTO changed his license from OPL 1.0 to
GFDL 1.2 (due to the current license politics it moves from
non-free to free therefor, updated the Replaces)
* All mentioned HOWTOs are free except for Linux-Gamers-HOWTO
and SPARC-HOWTO.
-- Frank Lichtenheld <djpig@debian.org> Wed, 8 Sep 2004 21:27:38 +0200
doc-linux (2004.07-1) unstable; urgency=low
* new upstream release (20040729)
* Updated HOWTOs:
ACPI-HOWTO Debian-Jigdo FBB LILO Linux+WinNT
MIPS-HOWTO Masquerading-Simple-HOWTO
openMosix-HOWTO Parallel-Processing-HOWTO
Plug-and-Play-HOWTO Scanner-HOWTO
Scientific-Computing-with-GNU-Linux TT-XFree86
TimePrecision-HOWTO Xinerama-HOWTO
* All mentioned HOWTOs are free except for the Debian-Jigdo HOWTO
* Updated the external ext3-mini-HOWTO. This fixes some typos
(Closes: #242844), the author seems to have dropped the
text version, though.
-- Frank Lichtenheld <djpig@debian.org> Thu, 29 Jul 2004 14:43:33 +0200
doc-linux (2004.06-1) unstable; urgency=low
* new upstream release (20040614)
* Removed HOWTOs:
3Dfx-HOWTO GCC-HOWTO KickStart-HOWTO
* Updated HOWTOs:
ACPI-HOWTO Athlon-Powersaving-HOWTO BogoMips
Home-Electrical-Control K7s5a-HOWTO LDP-Reviewer-HOWTO
LVM-HOWTO Linux-Complete-Backup-and-Recovery-HOWTO
Samba-Authenticated-Gateway-HOWTO Software-RAID-HOWTO
SquashFS-HOWTO Wireless-Link-sys-WPC11
* Added HOWTOs:
Installfest-HOWTO Kerberos-Infrastructure-HOWTO
* All mentioned HOWTOs are free, except for the SquashFS-HOWTO.
-- Frank Lichtenheld <djpig@debian.org> Tue, 15 Jun 2004 01:10:10 +0200
doc-linux (2004.04-1) unstable; urgency=low
* new upstream release (20040425) (Closes: #245658)
* Updated HOWTOs:
Athlon-Powersaving-HOWTO Cryptoloop-HOWTO FBB
LDP-Reviewer-HOWTO LILO LVM-HOWTO Linux+IPv6-HOWTO
Linux+WinNT Medicine-HOWTO Mobile-IPv6-HOWTO
NC-HOWTO PCMCIA-HOWTO Postfix-Cyrus-Web-cyradm-HOWTO
Unix-and-Internet-Fundamentals-HOWTO User-Authentication-HOWTO
* Added HOWTOs:
Glibc-Install-HOWTO OLSR-IPv6-HOWTO
* All mentioned HOWTOs are free, except for the
User-Authentication-HOWTO
* The Mobile-IPv6-HOWTO changed its license from OPL 1.0
to GFDL 1.2.
* some control clean-up: Move bzip2 to Build-Depends-Indep since
we don't use it in the clean target. Use versioned debhelper
dependency.
* The following licenses were found non-free by the
debian-legal team: OPL 1.0, OSL 1.1, CC-Attribution-ShareAlike 1.0
Moving the corresponding HOWTOs to the non-free packages:
Debian-Jigdo Linux-Gamers-HOWTO Adv-Routing-HOWTO Apache-Overview-HOWTO
Battery-Powered Cable-Modem DHCP Lex-YACC-HOWTO NFS-HOWTO
Online-Troubleshooting-HOWTO MMBase-Inst-HOWTO User-Group-HOWTO
-- Frank Lichtenheld <djpig@debian.org> Sun, 25 Apr 2004 21:16:30 +0200
doc-linux (2004.03-1) unstable; urgency=low
* new upstream release (20040312)
* Updated HOWTOs:
AI-Alife-HOWTO Astronomy-HOWTO DocBook-Demystification-HOWTO
Finnish-HOWTO K7s5a-HOWTO LDAP-HOWTO LVM-HOWTO
Linksys-Blue-Box-Router-HOWTO MMBase-Inst-HOWTO Partition
Text-Terminal-HOWTO TimePrecision-HOWTO UPS-HOWTO
Unix-Hardware-Buyer-HOWTO
* Added HOWTOs:
DVD-Playback-HOWTO Flash-Memory-HOWTO Linux-i386-Boot-Code-HOWTO
SquashFS-HOWTO
* The following mentioned HOWTOs are non-free:
Astronomy-HOWTO SquashFS-HOWTO
* In the DocBook-Demystification-HOWTO the tuxedo.org link was
changed to catb.org (Closes: #212373)
* Some HOWTOs changed their licence:
- MMBase-Inst-HOWTO:
Creative Commons NonCommercial-Attribution-ShareAlike 1.0 ->
Creative Commons Attribution-ShareAlike 1.0
The HOWTO moved from non-free to free, adjusting Replaces:
accordingly
- K7s5a-HOWTO: LDPL-2.0 -> Creative Commons ShareAlike 1.0
- LVM-HOWTO: LDPL-2.0 -> GFDL-1.2
-- Frank Lichtenheld <djpig@debian.org> Mon, 15 Mar 2004 19:08:56 +0100
doc-linux (2004.02-1) unstable; urgency=low
* New upstream release (20040216)
* Removed HOWTOs:
Acer-Laptop-HOWTO CD-Distributions-EN-HOWTO
* Updated HOWTOs:
Debian-and-Windows-Shared-Printing Hardware-HOWTO
K7s5a-HOWTO LDP-Reviewer-HOWTO Linux-Gamers-HOWTO
Mobile-IPv6-HOWTO Reading-List-HOWTO Scanner-HOWTO
Security-HOWTO Windows-Newsreaders-under-Linux-HOWTO
* Added HOWTOs:
Cryptoloop-HOWTO Fedora-Multimedia-Installation-HOWTO
MMBase-Inst-HOWTO
* In the Security-HOWTO the tuxedo.org link was changed to catb.org
(Closes: #212373)
* All mentioned HOWTOs are free except for the new MMBase-Inst-HOWTO.
It is distributed under the Attribution-NonCommercial-ShareAlike 1.0
Licence which forbids commercial use.
* Removed the dwww entries in the menu file, since they seem to be
deprecated
-- Frank Lichtenheld <djpig@debian.org> Fri, 20 Feb 2004 00:32:14 +0100
doc-linux (2004.01-1) unstable; urgency=low
* New upstream release (20040117)
* Change my uploader address to djpig@debian.org
* Updated HOWTOs:
Debian-Binary-Package-Building-HOWTO Debian-Jigdo
Disk-Encryption-HOWTO FBB Howtos-with-LinuxDoc LILO
Linux+IPv6-HOWTO Linux+WinNT
Linux-Complete-Backup-and-Recovery-HOWTO
Modem-HOWTO Module-HOWTO Outlook-to-Unix-Mailbox
Scanner-HOWTO Serial-HOWTO Software-RAID-HOWTO
Text-Terminal-HOWTO User-Group-HOWTO
Windows-Newsreaders-under-Linux-HOWTO
* Added HOWTOs:
Webcam-HOWTO
* The User-Group-HOWTO changed its licence from the LDPL 2.0 to the
Common Creatives Attribution-ShareAlike 1.0 licence
* All mentioned HOWTOs are free
-- Frank Lichtenheld <djpig@debian.org> Sat, 17 Jan 2004 18:30:16 +0100
doc-linux (2003.12-1) unstable; urgency=low
* New upstream release (20031214).
* Removed HOWTOs:
C++Programming-HOWTO C-C++Beautifier-HOWTO CPU-Design-HOWTO
CVS-RCS-HOWTO Deciding-Linux-HOWTO Diskless-HOWTO Java-Decompiler-HOWTO
Kernel-HOWTO LILO-crash-rescue-HOWTO Modem-Dialup-NT-HOWTO PHP-HOWTO
RPM+Slackware RPM-for-Unix-HOWTO Vim-HOWTO
* The PHP-HOWTO was allready removed from the Debian package but
is now removed from TLDP, too.
* Updated HOWTOs:
DB2-HOWTO Debian-and-Windows-Shared-Printing Ecology-HOWTO
Encrypted-Root-Filesystem-HOWTO FBB Finnish-HOWTO
Howtos-with-LinuxDoc LILO LVM-HOWTO Linux+WinNT
Modem-HOWTO PA-RISC-Linux-Boot-HOWTO Serial-HOWTO
Text-Terminal-HOWTO Traffic-Control-HOWTO
Windows-Newsreaders-under-Linux-HOWTO
* Added HOWTOs:
Mobile-IPv6-HOWTO Scientific-Computing-with-GNU-Linux
* All mentioned HOWTOs are free.
-- Frank Lichtenheld <frank@lichtenheld.de> Mon, 15 Dec 2003 00:56:46 +0100
doc-linux (2003.11-1) unstable; urgency=low
* New upstream release (20031113).
* debian/doc-linux-html.doc-base.faq: Update FAQ maintainer
* debian/prepare-builddir: new script for easier updating of
the package
* Added HOWTOs:
Debian-Binary-Package-Building-HOWTO
* Updated HOWTOs:
Apache-WebDAV-LDAP-HOWTO Bangla-HOWTO Bash-Prompt-HOWTO
C-C++Beautifier-HOWTO Debian-Jigdo FBB IP-Masquerade-HOWTO
Kernel-HOWTO LDP-Reviewer-HOWTO LILO Linux+WinNT Partition-Rescue
Reading-List-HOWTO RedHat-CD-HOWTO SPARC-HOWTO User-Group-HOWTO
Vim-HOWTO Windows-Newsreaders-under-Linux-HOWTO
XFree-Local-multi-user-HOWTO
* In the Reading-List-HOWTO the tuxedo.org link was changed to catb.org
(Closes: #212371)
* The Partition-Rescue HOWTO is now licensed under the LGPL.
* All mentioned HOWTOs are free, with the exception of the
SPARC-HOWTO.
-- Frank Lichtenheld <frank@lichtenheld.de> Thu, 13 Nov 2003 18:54:00 +0100
doc-linux (2003.10-1) unstable; urgency=low
* New upstream release (20031012).
* Add pointer to the nonfree packages to the descriptions
of the free packages (Closes: #205844).
* New Linux FAQ version 2.1.1:
- fixes Debian FTP links (Closes: #119942).
* Renamed HOWTOs:
Xnews-under-Linux-HOWTO -> Windows-Newsreaders-under-Linux-HOWTO
* New HOWTOs:
Encrypted-Root-Filesystem-HOWTO Mock-Mainframe Sybase-ASE-HOWTO
Traffic-Control-HOWTO
* Updated HOWTOs:
Apache-WebDAV-LDAP-HOWTO Athlon-Powersaving-HOWTO
Debian-and-Windows-Shared-Printing Disk-Encryption-HOWTO
FBB Kernel-HOWTO LILO Linux+WinNT MP3-CD-Burning Module-HOWTO
Serial-HOWTO Text-Terminal-HOWTO UPS-HOWTO
Unix-and-Internet-Fundamentals-HOWTO User-Group-HOWTO
XFree-Local-multi-user-HOWTO XFree86-R200
* Update of Module-HOWTO closes: #170373, #171267
("Premature sentence end" and "Some typos")
* In the following HOWTOs the tuxedo.org links have been updated
to catb.org:
+ Text-Terminal-HOWTO (Closes: #212375)
+ Unix-and-Internet-Fundamentals-HOWTO (Closes: #212376)
* All mentioned HOWTOs are free. The UPS-HOWTO which was
undistributable before is now free.
* Move the Quota mini-HOWTO to non-free because of unclear
licence information (see #173961).
-- Frank Lichtenheld <frank@lichtenheld.de> Sun, 12 Oct 2003 18:38:44 +0200
doc-linux (2003.09-1) unstable; urgency=low
* New upstream release (20030907).
* New HOWTOs:
Disk-Encryption-HOWTO Motorola-Surfboard-Modem Scanner-HOWTO
Scripting-GUI-TclTk Xnews-under-Linux-HOWTO
* Updated HOWTOs:
Adv-Routing-HOWTO Apache-WebDAV-LDAP-HOWTO Athlon-Powersaving-HOWTO
BogoMips C++-dlopen Debian-and-Windows-Shared-Printing Ethernet-HOWTO
FBB Kernel-HOWTO LILO Linksys-Blue-Box-Router-HOWTO Linux+IPv6-HOWTO
Linux+WinNT Linux-Gamers-HOWTO Loopback-Encrypted-Filesystem-HOWTO
Medicine-HOWTO Modem-HOWTO Module-HOWTO Plug-and-Play-HOWTO
Printing-HOWTO Quota Sentry-Firewall-CD-HOWTO TeTeX-HOWTO
User-Group-HOWTO VideoLAN-HOWTO Vim-HOWTO Wireless-Link-sys-WPC11
XFree-Local-multi-user-HOWTO XFree86-R200
* Update of Printing-HOWTO closes: #195091, #202665
(Printing-HOWTO out-of-date)
* Update of TeTeX-HOWTO closes: #143638
("(TT" in table of contents)
* All mentioned HOWTOs are free, with the exception of
Loopback-Encrypted-Filesystem.
* New maintainer team, currently Doug Jensen, Frank Lichtenheld, and Colin
Watson (closes: #203046).
* Policy version 3.6.1: we use debhelper in the clean target, so use
Build-Depends: instead of Build-Depends-Indep:.
* README.Debian: Correct link to LDP guide site
-- Colin Watson <cjwatson@debian.org> Wed, 17 Sep 2003 03:53:40 +0100
doc-linux (2003.07-1) unstable; urgency=low
* New upstream release (20030726).
* New Linux FAQ, version 2.1.
* The mini-HOWTO collection has been merged with the main HOWTO
collection.
* New HOWTOs:
ACPI Athlon-Powersaving
* Updated HOWTOs:
Apache-WebDAV-LDAP Battery-Powered CSPM Cluster Debian-Jigdo
Debian-and-Windows-Shared-Printing DocBook-OpenJade-SGML-XML Ethernet
FBB IO-Port-Programming IP-Masquerade Infrared Kernel LILO
Linksys-Blue-Box-Router LinuxDoc+Emacs+Ispell Modem Module Multi-Disk
NIS Oracle-7 Oracle-8 PHP-Nuke RCS Samba-Authenticated-Gateway
Soundblaster-AWE TimePrecision Wearable Wireless-Link-sys-WPC11
XFree-Local-multi-user XFree86-R200 XFree86-Video-Timings
* Renamed HOWTOs:
Oracle-9i-RH8 -> Oracle-9i-RH8-and-RH9
* All the above are free, with the exception of Infrared and Wearable.
* Explain the extra directory in README.Debian (closes: #201108).
* Remove PHP-HOWTO again due to it being largely a rant lightly sprinkled
with information copied from the PHP documentation. I think this package
is better off without it.
* Don't HTML-encode titles and abstracts for dwww, since >= 1.9.0 does
that for us. Instead, simply escape '"' as '\"' (closes: #184329).
* Change naming scheme for menu entry identifiers to avoid duplicate
entries for the VPN-HOWTO and VPN (a former mini-HOWTO). The entries
referring to non-existent files are already gone (closes: #184330).
-- Colin Watson <cjwatson@debian.org> Sat, 26 Jul 2003 17:15:52 +0100
doc-linux (2003.06-1) unstable; urgency=low
* New upstream release (20030608).
* New HOWTOs:
Bangla PHP-Nuke
* Restored-after-review HOWTOs:
C++Programming PHP
* Updated HOWTOs:
DocBook-OpenJade-SGML-XML IBM7248 IP-Masquerade Linux+IPv6 Linux-Gamers
Optical-Disk SCSI-2.4 Vim XFree-Local-multi-user
* Renamed HOWTOs:
Mosix -> openMosix
* New mini-HOWTOs:
Debian-and-Windows-Shared-Printing VB6-to-Tcl
* Updated mini-HOWTOs:
Battery-Powered Debian-Jigdo FBB Xterminals
* All the above are free.
* Merge the packaging of doc-linux and doc-linux-nonfree so that I can
deal with them simultaneously in a sensible way.
* Use the canonical LDP URL in package descriptions (closes: #195089).
-- Colin Watson <cjwatson@debian.org> Sun, 8 Jun 2003 23:54:27 +0100
doc-linux (2003.05-1) unstable; urgency=low
* New upstream release (20030511) (closes: #192500).
* New HOWTOs:
Deciding-Linux Linksys-Blue-Box-Router Oracle-9i-RH8 Tamil-Linux
Traffic-Control-tcng-HTB Web-Browsing-Behind-ISA-Server
XFree-Local-multi-user
* Updated HOWTOs:
ADSL-Bandwidth-Management AI-Alife Astronomy Bangla-PDF Belgian
BootPrompt C-C++Beautifier CPU-Design CVS-RCS Cluster
DocBook-Demystification DocBook-OpenJade-SGML-XML Ecology Game-Server
IP-Masquerade Infrared KDE-GUI-Login-Configuration Kernel KernelAnalysis
LDAP LILO-crash-rescue Laptop Linux+IPv6 Linux+Windows
Linux-Complete-Backup-and-Recovery Linux-Gamers Linux-Promise-RAID1
Mail-User Medicine Modem Postfix-Cyrus-Web-cyradm Program-Library
RedHat-CD Remote-Serial-Console Samba-Authenticated-Gateway
Secure-Programs Serial VideoLAN Windows-LAN-Server
- Missing space in LDAP fixed (closes: #188296).
* New mini-HOWTO:
Secure-CVS-Pserver
* Updated mini-HOWTOs:
Man-Page Wireless-Link-sys-WPC11
* Split into free and non-free source packages, following a complete
licence audit. I'm not a legal expert, plus there was an enormous amount
of HOWTO material to read in the process, so I may well have made the
odd mistake. File bugs if you find any. debian/split-package does a lot
of the work here. The non-free binary packages are called
doc-linux-nonfree-html and doc-linux-nonfree-text; they recommend their
free variants for some common images and index files.
* The non-free packages have no dhelp support. This will eventually be
restored via doc-base.
* Non-free HOWTOs:
Astronomy Belarusian Chinese Config Cyrus-IMAP DOS-Win-to-Linux DVD
Diskless-root-NFS Encourage-Women-Linux Infrared JavaStation Jaz-Drive
Kiosk Latvian Loopback-Encrypted-Filesystem RPM SPARC Secure-Programs
Sybase-ASA Tango TclTk UPS User-Authentication Wearable
* Non-free mini-HOWTOs:
3D-Modelling Automount Divert-Sockets Ext2fs-Undeletion FTP Home-Network
Loadlin+Win95-98-ME Mail2News Offline-Mailing Process-Accounting
Remote-Boot StarOffice Swap-Space TransparentProxy Ultra-DMA VPN
* Update the names and addresses of the Linux-FAQ maintainer and the LDP
coordinator.
* Remove scrollkeeper suggestion and maintainer script code, since we
don't have ScrollKeeper support at the moment.
* Reduce U+201C and U+201D (Unicode directional quotes) in the HOWTO index
to a simple " for the menu file (closes: #181609).
* Convert the Latin-1 c-cedilla in the title of the Francophones HOWTO to
ç.
* Building our own split tarballs allows some simplifications in
debian/rules by moving the directory hierarchies about a bit.
* Cope with some reorganizations in the way mini-HOWTOs are indexed.
* Standards-Version: 3.5.9.
-- Colin Watson <cjwatson@debian.org> Mon, 12 May 2003 09:09:00 +0100
doc-linux (2003.02-1) unstable; urgency=low
* New upstream release (20030212).
* New HOWTO:
Bangla-PDF
* Updated HOWTOs:
AI-Alife Apache-Compile C-C++Beautifier CD-Distributions-EN
IP-Masquerade Kernel Keyboard-and-Console LILO-crash-rescue LVM
Linux+IPv6 Medicine NC Psion RedHat-CD Remote-Serial-Console Vim
* New mini-HOWTO:
Lotus-DominoR5
* Updated mini-HOWTOs:
Home-Electrical-Control Wireless-Link-sys-WPC11
* Remove "The" from the beginning of document names in dhelp and dwww
indices, to improve sorting (closes: #177677).
-- Colin Watson <cjwatson@debian.org> Fri, 14 Feb 2003 23:51:45 +0000
doc-linux (2003.01-1) unstable; urgency=low
* New upstream release (20030112).
* New HOWTO:
Samba-Authenticated-Gateway
* Updated HOWTOs:
DOSEMU Game-Server LVM Linux+IPv6 Linux-Promise-RAID1 Medicine
Program-Library Secure-Programs Text-Terminal XDMCP
* New mini-HOWTOs:
Mozilla-Optimization Xterminals
* Updated mini-HOWTOs:
Automount Debian-Jigdo FBB Handspring-Visor Swap-Space
Wireless-Link-sys-WPC11
* debhelper autoscript fragments weren't being substituted into
doc-linux-html's maintainer scripts; it turns out that this is due to
running 'dh_clean -k' between building doc-linux-html and doc-linux-text
but before calling dh_installdeb and so on on both binary packages at
once, which cleans too much. Switch to 'dh_clean -d' instead.
-- Colin Watson <cjwatson@debian.org> Sun, 12 Jan 2003 17:53:33 +0000
doc-linux (2002.12-1) unstable; urgency=low
* New upstream release (20021215).
* Updated HOWTOs:
Apache-Overview Finnish Linux+IPv6 PA-RISC-Linux-Boot
* Removed HOWTOs:
C++Programming
* Updated mini-HOWTOs:
C++-dlopen Debian-Jigdo FBB PCTel-MicroModem-Config
* Add a lintian override for the COPYING file that forms part of the
NCURSES-Programming-HOWTO.
* Remove the HTML version of the RedHat-CD-HOWTO (see 2002.11-1) in
debian/rules rather than in the source tarball, in order to keep the
tarball pristine.
-- Colin Watson <cjwatson@debian.org> Sun, 15 Dec 2002 21:26:34 +0000
doc-linux (2002.11-1) unstable; urgency=low
* New upstream release (20021123).
- Sorry for the delay. Some of it was me being busy, some was
db.tldp.org being down, and some of it was being completely unable to
get a valid OMF file for ScrollKeeper. Upstream appears to be working
on the latter, but for the meantime I've temporarily removed
ScrollKeeper support in order to be able to build new versions of
doc-linux (closes: #166261). I'll try to get back to my former upload
frequency now.
- Once I get a valid OMF file I'll be able to do the non-free split at
last, since it includes a <rights /> tag ...
* Ship HOWTOs in .tar.bz2 form in the source package rather than .tar.gz.
* Change the patch for dangling relative links to point to tldp.org rather
than linuxdoc.org.
* Remove the /usr/doc symlinks.
* New HOWTOs:
CSPM Clone DocBook-Demystification DocBook-OpenJade-SGML-XML
Encourage-Women-Linux Ethernet-Bridge-netfilter GCC-Frontend
Jabber-Server-Farming Linux-Promise-RAID1 Network-Install
Oracle8-on-RH7X RTLinux Usenet-News Valgrind
* Updated HOWTOs:
ADSL-Bandwidth-Management Accessibility Adv-Routing Apache-Compile
Assembly Authentication-Gateway Belgian C++Programming CPU-Design
Caudium Cluster DB2 DSL Emacspeak Font Hardware HighQuality-Apps
IP-Masquerade Infrared Java-Decompiler K7s5a KDE-GUI-Login-Configuration
KernelAnalysis LDAP LILO-crash-rescue LVM Lex-YACC Linux+IPv6
Linux-Complete-Backup-and-Recovery Linux-Gamers MIPS Masquerading-Simple
Medicine Modem Mosix NFS NIS Online-Troubleshooting PA-RISC-Linux-Boot
Plug-and-Play Postfix-Cyrus-Web-cyradm Program-Library RPM RedHat-CD
Remote-Serial-Console SCSI-2.4 SMP SSL-Certificates Sat Secure-Programs
Security-Quickstart Security-Quickstart-Redhat Sentry-Firewall-CD
Software-RAID Text-Terminal TimePrecision Vim VoIP Wireless
XFree86-Touch-Screen XWindow-User Xinerama
- Adv-Routing includes a netmask admonition now (closes: #123088).
- RedHat-CD is shipped only in plain text form. The HTML version is
accompanied by i386-only binaries; I'm not quite sure what to do about
these, so I've decided to steer clear for now.
* Removed HOWTOs:
PHP
* New mini-HOWTOs:
Debian-Jigdo KDE-Kiosk-Mode XFree86-R200
* Updated mini-HOWTOs:
ACP-Modem Battery-Powered FBB FDU IRC ISP-Connectivity Intkeyb
Multi-Distro-Dev NFS-Root PCTel-MicroModem-Config Partition-Rescue
Print2Win TransparentProxy Wireless-Link-sys-WPC11
-- Colin Watson <cjwatson@debian.org> Sat, 23 Nov 2002 18:10:24 +0000
doc-linux (2002.07-1) unstable; urgency=low
* New upstream release (20020709).
* New HOWTOs:
Caudium
* Updated HOWTOs:
Antares-RAID-sparcLinux Apache-Compile Apache-WebDAV-LDAP Belgian
C++Programming CVS-RCS Installation KDE-GUI-Login-Configuration Kernel
Latvian Linux-Gamers Modem Modem-Dialup-NT NCURSES-Programming PCMCIA
PHP PLIP-Install Security Sentry-Firewall-CD Vim
* Removed HOWTOs:
Process-Monitor
* New mini-HOWTOs:
C++-dlopen
* Updated mini-HOWTOs:
Automount PCTel-MicroModem-Config Swap-Space Wireless-Link-sys-WPC11
* Split our part of the dhelp/dwww document hierarchy into HOWTO and
HOWTO/mini rather than just having everything under HOWTO, in line with
their location in the filesystem and on LDP mirrors (closes: #149905).
-- Colin Watson <cjwatson@debian.org> Wed, 10 Jul 2002 00:49:22 +0100
doc-linux (2002.06-1) unstable; urgency=low
* New upstream release (20020604).
* New HOWTOs:
ADSL-Bandwidth-Management ATA-RAID KDE-GUI-Login-Configuration
Querying-libiptc SSI-UML USB-Digital-Camera VideoLAN
* Updated HOWTOs:
Accessibility-Dev Authentication-Gateway Belgian C++Programming CVS-RCS
Compaq-Remote-Insight-Board DSL Diskless HighQuality-Apps IO-Perf
Infrared K7s5a Kernel KernelAnalysis Linux+XFS Linux-Gamers MIDI
Modem-Dialup-NT Module Multi-Disk Network-boot PHP RPM-for-Unix
Remote-Serial-Console SCSI-2.4 SCSI-Generic SSL-Certificates Sat
TimePrecision VPN VoIP Wireless
- Multi-Disk update regarding cp and hard links (closes: #37061).
* Removed HOWTOs:
Russian-Tea
* HOWTOs -> mini-HOWTOs:
Boot+Root+Raid+LILO
* New mini-HOWTOs:
Remote-Bridging
* Updated mini-HOWTOs:
Automount Bridge Linux+WinNT MMBase Update Wireless-Link-sys-WPC11
XDM-Xterm
-- Colin Watson <cjwatson@debian.org> Tue, 4 Jun 2002 15:28:14 +0100
doc-linux (2002.05-1) unstable; urgency=low
* New upstream release (20020501).
* New Linux FAQ, version 2.0.
* New HOWTOs:
Game-Server IO-Perf KernelAnalysis Mosix Postfix-Cyrus-Web-cyradm
Russian-Tea TimePrecision
* Updated HOWTOs:
Apache-Compile Apache-WebDAV-LDAP C++Programming C-C++Beautifier CVS-RCS
Cluster Finnish HighQuality-Apps IP-Masquerade Java-Decompiler Kernel
Linux-Gamers MIDI Medicine PHP Software-Proj-Mgmt Speech-Recognition
Unicode Vim VoIP
* New mini-HOWTOs:
Wireless-Link-sys-WPC11
* Updated mini-HOWTOs:
BogoMips Euro-Char-Support LILO Man-Page MP3-CD-Burning
PCTel-MicroModem-Config Quota
* debian/rules: Replace "linuxdoc.org" with "tldp.org" throughout.
* debian/make-omf: Remove s/&/&/g, which is no longer required.
-- Colin Watson <cjwatson@debian.org> Wed, 1 May 2002 23:10:36 +0100
doc-linux (2002.04-2) unstable; urgency=medium
* Clean up problems from the FAQ move in 2001.11-1 which occurred with
certain upgrade orderings (closes: #142022).
* Point to the real /usr/share/doc/FAQ paths in the doc-base file, not the
symlinked paths.
* Use 'scrollkeeper-update -q' in the postrm too.
-- Colin Watson <cjwatson@debian.org> Wed, 10 Apr 2002 01:03:56 +0100
doc-linux (2002.04-1) unstable; urgency=low
* New upstream release (20020402).
* New HOWTOs:
Compaq-T1500 HighQuality-Apps K7s5a Latvian Sentry-Firewall-CD
* Updated HOWTOs:
Apache-Compile Apache-Overview Apache-WebDAV-LDAP C++Programming
C-C++Beautifier CVS-RCS Conexant+Rockwell-modem Hardware Java-Decompiler
LILO-crash-rescue Linux+IPv6 Linux-Gamers Medicine NCURSES-Programming
Online-Troubleshooting PHP PalmOS Plug-and-Play Program-Library
Qmail-VMailMgr-Courier-imap Quake Secure-Programs Serial Vim XDMCP
XWindow-User
* Renamed HOWTOs:
Distributions -> CD-Distributions-EN
* New mini-HOWTOs:
Pine-Exchange
* Updated mini-HOWTOs:
Automount BTI-PPP Euro-Char-Support Upgrade ZIP-Drive
(closes: #129825).
* Fix paths in the Linux FAQ's doc-base file (closes: #137534).
* Use new -q flag to suppress verbose output from scrollkeeper-update.
-- Colin Watson <cjwatson@debian.org> Tue, 2 Apr 2002 22:04:25 +0100
doc-linux (2002.03-1) unstable; urgency=low
* New upstream release (20020303).
* New HOWTOs:
Linux-Complete-Backup-and-Recovery Slovak
* Updated HOWTOs:
AI-Alife Apache-Compile Apache-Overview Authentication-Gateway
C++Programming C-C++Beautifier CPU-Design CVS-RCS Cluster
Conexant+Rockwell-modem Diskless Diskless-root-NFS Finnish Hardware
Installation Java-Decompiler Kernel LDP-Reviewer LILO-crash-rescue
Linux+IPv6 Linux-Gamers Masquerading-Simple Medicine Modem-Dialup-NT NC
NCURSES-Programming PHP Process-Monitor RPM-for-Unix
Remote-Serial-Console SMP Secure-Programs Security Security-Quickstart
Security-Quickstart-Redhat Snort-Statistics Software-Release-Practice
Speech-Recognition Text-Terminal Unix-and-Internet-Fundamentals VME Vim
XFree86-Video-Timings
(closes: #134633).
* Updated mini-HOWTOs:
BackspaceDelete DPT-Hardware-RAID DocBook-Install FDU
Home-Electrical-Control Nvidia-OpenGL-Configuration
-- Colin Watson <cjwatson@debian.org> Mon, 4 Mar 2002 00:17:54 +0000
doc-linux (2002.02-1) unstable; urgency=low
* New upstream release (20020201).
* New HOWTOs:
Accessibility-Dev Indic-Fonts Linux+IPv6 Linux+Win9x+Grub Linux-Crash
Linux-Gamers MIDI NCURSES-Programming Snort-Statistics WikiText
* Updated HOWTOs:
Apache-Compile Assembly Belgian Bootdisk C++Programming C-C++Beautifier
CDServer CPU-Design CVS-RCS DSL Diskless IP-Masquerade Java-Decompiler
Kernel LILO-crash-rescue META-FAQ Modem Modem-Dialup-NT NetMeeting
PA-RISC-Linux-Boot PHP PalmOS Process-Monitor RPM-for-Unix SCSI-2.4
SCSI-Generic Secure-Programs Text-Terminal Vim XFree86-Touch-Screen
* Removed HOWTO:
PostgreSQL (temporarily removed for peer review)
* New mini-HOWTOs:
Print2Win ppp-ssh
* Updated mini-HOWTOs:
BTI-PPP Outlook-to-Unix-Mailbox Quota Token-Ring TransparentProxy
-- Colin Watson <cjwatson@debian.org> Fri, 1 Feb 2002 19:42:02 +0000
doc-linux (2002.01-1) unstable; urgency=low
* New upstream release (20020102).
* New Linux FAQ, version 1.20.
* New HOWTOs:
Lex-YACC SCSI-Generic SSL-Certificates Wireless-Sync
* Updated HOWTOs:
Adv-Routing Authentication-Gateway C++Programming C-C++Beautifier
Chroot-BIND DNS DSL Diskless Emacspeak Francophones German HP Hardware
Intranet-Server Keyboard-and-Console MP3 Multi-Disk NC NCD Network-boot
PHP PLIP-Install SCSI-2.4 SCSI-Programming Sat Secure-Programs UMSDOS
UUCP VoIP Wireless
* Removed HOWTOs:
Linux-From-Scratch (replaced by a Guide, see http://www.linuxdoc.org/).
* New mini-HOWTOs:
Multi-Distro-Dev
* Updated mini-HOWTOs:
BTI-PPP Intkeyb ISP-Connectivity Leased-Line Mail-Queue Modules
News-Leafsite PCTel-MicroModem-Config Remote-X-Apps TransparentProxy
Ultra-DMA VPN Visual-Bell
* For those of you who've been following the news, the doc-linux package
will not be split into free and non-free portions before woody is
released; the deadlines are just too tight. However, the substantial
majority of the documents in this package are DFSG-free; check the
copyright notices on individual documents for details.
* Register HTML documents with ScrollKeeper. Everything is under
General|Other for now until categories are sorted out.
* doc-linux-html suggests scrollkeeper.
* Remove /usr/doc/doc-linux-text symlink properly (closes: #126103). Also
remove /usr/doc/FAQ in doc-linux-text's prerm.
* Fix a number of dangling relative links, making them absolute links to
the LDP web site instead (closes: #122868).
* Parse the HOWTO-INDEX in a slightly more robust way.
* Document in each package's README.Debian that several HOWTOs are now
Guides.
* Make all auxiliary scripts executable before running them, as the Debian
diff doesn't preserve permissions.
-- Colin Watson <cjwatson@debian.org> Thu, 3 Jan 2002 04:31:13 +0000
doc-linux (2001.12-1) unstable; urgency=low
* New upstream release (20011201).
* New Linux FAQ, version 1.18.
* New HOWTOs:
PA-RISC-Linux-Boot Security-Quickstart Security-Quickstart-Redhat
* Updated HOWTOs:
Apache-WebDAV-LDAP Bandwidth-Limiting Config Diskless
Enterprise-Java-for-Linux IP-Masquerade Kernel MGR Sat Serial
Text-Terminal VoIP Wireless
* New mini-HOWTOs:
BTI-PPP PCTel-MicroModem-Config
* Updated mini-HOWTOs:
FBB FDU Firewall-Piercing LILO Linux+WinNT MP3-CD-Burning
Partition-Rescue XFree86-Second-Mouse
* I've added some non-LDP documents in response to several requests, which
are installed in /usr/share/doc/HOWTO/en-*/extra:
- High-Availability HOWTO (requested by Chris Fearnley, closes: #60564);
- ext3 mini-HOWTO (requested by Eduard Bloch);
- ext3-usage HOWTO (requested by Eduard Bloch).
* These seemed worthwhile, but I don't want to do this too much as it
becomes hard to keep track. If you want a document, please persuade the
author to submit it to the Linux Documentation Project instead.
-- Colin Watson <cjwatson@debian.org> Sat, 1 Dec 2001 14:30:42 +0000
doc-linux (2001.11-1) unstable; urgency=low
* New upstream release (20011101).
* New HOWTOs:
ATM-Linux Apache-Compile Apache-WebDAV-LDAP
* Updated HOWTOs:
CVS-RCS Diskless Finnish HOWTO Hardware JavaStation Kernel Large-Disk
Masquerading-Simple RPM-for-Unix XFree86-Video-Timings
* Renamed HOWTOs:
Access -> Accessibility
DVD-Playing -> DVD
* Updated mini-HOWTOs:
FBB Outlook-to-Unix-Mailbox
* Add text version of Linux FAQ (closes: #117617).
* Put both versions of the FAQ directly in /usr/share/doc/FAQ, and symlink
to them from /usr/share/doc/$(package)/FAQ rather than the other way
round. Add some migration code to make dpkg replace the
/usr/share/doc/FAQ symlink with a directory.
* Document the process of updating doc-linux in debian/README.updating.
-- Colin Watson <cjwatson@debian.org> Fri, 2 Nov 2001 05:41:20 +0000
doc-linux (2001.10-2) unstable; urgency=low
* Protect HTML entities in titles as well as descriptions, to avoid
confusing update-menus (closes: #115649).
-- Colin Watson <cjwatson@debian.org> Sun, 21 Oct 2001 19:55:06 +0100
doc-linux (2001.10-1) unstable; urgency=low
* The "Requiem aeternam" release, in memory of 11 September 2001.
* New upstream release (20011006).
* New Linux FAQ, version 1.16.
* New HOWTOs:
Authentication-Gateway Conexant+Rockwell-modem Diskless-root-NFS-other
Linux+XFS Modem-Dialup-NT RPM-for-Unix Smart-Card
* Updated HOWTOs:
AX25 AdvRouting BootPrompt C++Programming C-C++Beautifier CDROM CVS-RCS
Diskless Finnish Hardware IBM7248 IngresII Installation
LILO-crash-rescue Linux+XFS Masquerading-Simple Modem Modem-Dialup-NT
PHP Program-Library SCSI-2.4 Secure-Programs Sound Speech-Recognition
Text-Terminal Vim XFree86
* New mini-HOWTOs:
Euro-Char-Support MMBase
* Updated mini-HOWTOs:
Call-back FBB LILO Linux+WinNT MP3-CD-Burning Partition-Rescue
* New source format: no longer a native package (closes: #44220).
* debian/rules: More cleanups. Use binary-indep rather than binary-arch.
* Drop obsolete build dependencies and lintian override.
* doc-linux-html suggests doc-base, menu, www-browser (closes: #41664).
* debian/Makefile.sgml, debian/dhelp.faq: Remove.
* The HOWTO-INDEX is much better than the one we produce, so link to it
rather than creating our own (closes: #69474, #111464), and rewrite
debian/html2docs (formerly debian/sgml2docbase) to pull links from it.
* I was going to fix the doc-base paths, and even NMUed doc-base so that I
could, but discovered that it's too slow for the hundreds of documents
doc-linux-html installs (see #114692). I've fallen back to using dhelp
and dwww directly in the meantime (closes: #111699, #111700). This
results in many lintian errors, but I believe they're a bug in lintian.
* debian/copyright: Restore Dirk Eddelbuettel and Ian Murdock's names.
* Navigation icons are in the upstream tarballs, so remove our local ones.
* Move /usr/share/doc/doc-linux-html/Linux-FAQ back to .../FAQ, and
install a symlink to it in /usr/share/doc/FAQ.
* Add README.Debian files pointing to the documentation (closes: #39701).
* Also add helpful symlinks (closes: #60728).
* 22 HOWTOs and 7 mini-HOWTOs are under the GNU FDL, but not all contain a
copy, so place one in /usr/share/doc/doc-linux-* (closes: #89102).
-- Colin Watson <cjwatson@debian.org> Sat, 13 Oct 2001 22:37:27 +0100
doc-linux (2001.09-1) unstable; urgency=low
* New maintainer (closes: #110959).
* Acknowledge my NMU (closes: #90338, #90348, #102788).
* New upstream release (20010903). Since the last release by the previous
maintainer, there have been 66 new HOWTOs and 47 new mini-HOWTOs, not
counting updated documentation.
* New Linux FAQ, version 1.13.
* It's no longer easy to build all the HOWTOs from LinuxDoc SGML. Many
documents are now only available in DocBook (66 extra HOWTOs and 36
extra mini-HOWTOs), but some build from other sources. Until this is
resolved, I've had to go back to shipping HTML and text in the (now much
bigger) source package; sorry.
* debian/control:
- doc-linux-html is priority optional (closes: #102817).
- doc-linux-text suggests doc-linux-html (closes: #31110).
- Replace rather than conflict with old versions of each package for
better upgrades (albeit from hamm, but still; closes: #27498).
- Build-Depends -> Build-Depends-Indep.
- Policy version 3.5.6.
* debian/rules:
- Install changelog as changelog.Debian.gz, compressed with 'gzip -9'
(closes: #44440).
- Ensure installed files have valid ownership (closes: #103972).
- Add 'refresh' target.
- Clean up some confusing constructs.
* debian/copyright:
- Remove comment about /usr/doc/copyright/doc-linux.
- Debian/GNU Linux -> Debian GNU/Linux (lintian).
- Synchronize upstream copyright notice with upstream.
* Use doc-base rather than dhelp/dwww (closes: #94821).
* Add a lintian override for a spurious doc-base warning that's actually
just a HOWTO's description referring to /usr/doc.
* We were previously creating symlinks from /usr/doc/HOWTO/en-* to
/usr/share/doc/HOWTO/en-*. This won't work well when we get rid of
/usr/doc entirely, so instead do the usual symlink with /usr/doc/HOWTO.
* Forcibly remove /usr/doc/doc-linux-*/.dhelp in the preinst, just in case
the migration might still be a problem (closes: #50053).
* New HOWTOs:
Acer-Laptop Antares-RAID-sparcLinux Apache-Overview BRIDGE-STP
Bandwidth-Limiting Bootdisk C-editing-with-VIM CDServer CPU-Design
Cable-Modem Chroot-BIND Cluster Compaq-Remote-Insight-Board DB2 DSL
Event GCC HOWTO HP IBM7248 IngresII Installation JavaStation
LDAP-Implementation LDP-Reviewer Linux+Windows Linux-Init MP3-Box
Mail-User Masquerading-Simple Medicine MindTerm-SSH Module Net
NetMeeting Network-boot Online-Troubleshooting PPP Printing
Program-Library RPM Remote-Serial-Console SCSI-2.4 SPARC SRM SSL-RedHat
Sat Secure-Programs Serial-Laplink Software-Proj-Mgmt Speech-Recognition
Sybase-ASA Unix-Hardware-Buyer Unix-and-Internet-Fundamentals
User-Authentication VCR VoIP Windows-LAN-Server Wireless XDMCP XFree86
XFree86-Video-Timings XML-RPC XWindow-Overview i810 phhttpd
(closes: #54092, #79993, #81051, #81052, #81747, #94915, #98529;
closes: #101048).
* Removed HOWTOs:
Busmouse Securing-Domain
* Renamed HOWTOs:
Chroot-BIND -> Chroot-BIND8 (Chroot-BIND now covers BIND 9)
Distribution -> Distributions
IR -> Infrared
* The Distributions-HOWTO now talks about Debian 2.2 (closes: #56606).
* Typo corrected in the IP-Masquerade-HOWTO (closes: #46531).
* New mini-HOWTOs:
3D-Modelling ACP-Modem BackspaceDelete Boca DHCP DocBook-Install
Ext2fs-Undeletion-Dir-Struct FBB FDU GIS-GRASS GTEK-BBS-550
Hard-Disk-Upgrade Home-Electrical-Control Howtos-with-LinuxDoc IP-Alias
IRC Install-Strategies Intkeyb Kerneld Lego Linux+Win95
Linux-Modem-Sharing LinuxGL-QuakeWorld Linuxdoc-Reference MP3-CD-Burning
MSSQL6-Openlink-PHP-ODBC Man-Page Modules Multiboot-with-GRUB
NFS-Root-Client Netscape+Proxy Nvidia-OpenGL-Configuration
Outlook-to-Unix-Mailbox Pager Partition PortSlave
Post-Installation-Checklist Pre-Installation-Checklist
Process-Accounting Proxy-ARP-Subnet SLIP-PPP-Emulator Small-Memory
Sybase-PHP-Apache TT-XFree86 Virtual-Web XDM-Xterm XFree86-Second-Mouse
(closes: #44606, #102212).
* Renamed mini-HOWTOs:
Loadlin+Win95 -> Loadlin+Win95-98-ME
* Sendmail-Address-Rewrite and Sendmail+UUCP are no longer duplicates
(closes: #44439).
-- Colin Watson <cjwatson@debian.org> Tue, 4 Sep 2001 00:27:01 +0100
doc-linux (2000.09-1.1) unstable; urgency=low
* Non-maintainer upload.
* HOWTO/3Dfx-HOWTO.sgml.gz: Fix DTD declaration (closes: #90338).
* debian/control: Added build dependencies (closes: #90348).
-- Colin Watson <cjwatson@debian.org> Fri, 29 Jun 2001 14:33:02 +0100
doc-linux (2000.09-1) unstable; urgency=low
* new HOWTOs
-- Marco Budde <budde@debian.org> Sun, 17 Sep 2000 13:35:38 +0200
doc-linux (2000.03-1) unstable frozen; urgency=low
* new HOWTOs
-- Marco Budde <budde@debian.org> Tue, 21 Mar 2000 10:17:24 +0100
doc-linux (2000.02-1) unstable; urgency=low
* new HOWTOs
-- Marco Budde <budde@debian.org> Thu, 3 Feb 2000 20:16:17 +0100
doc-linux (1999.10-1) unstable; urgency=low
* new HOWTOs
* rules: FHS links
* new /usr/share/doc/{en-html,en-txt} structure
-- Marco Budde <budde@debian.org> Fri, 15 Oct 1999 21:34:15 +0200
doc-linux-html (1999.08-1) unstable; urgency=low
* use SGML sources to build the HTML files
* new HOWTOs
-- Marco Budde <budde@debian.org> Sat, 24 Jul 1999 03:41:04 +0200
doc-linux-html (99.06-1) unstable; urgency=low
* non-maintainer release by the previous maintainer
* debian/changelog: Reinstalled the changelog entry for my 1999.03-1
revision which has disappeared from the last maintainer upload
* HOWTOs that are new or updated since the last release on April 22:
BootPrompt Bootdisk CD-Writing CDROM Consultants DOSEMU Diskless
Ethernet HOWTO-INDEX Hardware INDEX.gz INDEX.html.gz Modem Multi-Disk
PCMCIA Plug-and-Play Portuguese Reading-List Security Serial
Software-Building Sound Text-Terminal XFree86
* mini-HOWTOs that are new or updated since the last release on April 22:
Automount ADSL Cipe+Masq Alsa-sound Large-Disk Cable-Modem
Ext2fs-Undeletion DPT-Hardware-RAID INDEX INDEX.html Ultra-DMA
-- Dirk Eddelbuettel <edd@debian.org> Wed, 9 Jun 1999 19:23:05 -0400
doc-linux-html (99.03-1) unstable; urgency=low
* non-maintainer release by the previous maintainer
* the current maintainer has made no release in seven months: there are
now 47 new or updated HOWTOs documents and 28 new or updated mini-HOWTOs
* HOWTOs that are new or updated since the last release on August 23:
3Dfx Bash-Prompt Beowulf Bootdisk Busmouse Commercial Config
Consultants DNS Danish Distribution Esperanto Ftape INDEX INFO-SHEET
IPCHAINS IPX IR ISP-Hookup Installation Italian Java-CGI KickStart
Mail Modem NET-3 Optical-Disk Oracle PCMCIA PalmOS Plug-and-Play
Polish Portuguese PostgreSQL Printing Quake Reading-List
Software-Release-Practice TeTeX Text-Terminal Tips UUCP
Unix-Internet-Fundamentals VAR VME Virtual-Services XFree86
XFree86-Video-Timings XWindow-User HOWTO-INDEX
* mini-HOWTOs that are new or updated since the last release on August 23
AI-Alife Apache+SSL+PHP+fp Automount BogoMips Bridge Cable-Modem
Cipe+Masq DHCP Firewall-Piercing INDEX INDEX.html IP-Masquerade LILO
Linux+FreeBSD Loadlin+Win95 NFS-Root-Client Netrom-Node Netstation
PLIP Quota RedHat-CD Remote-X-Apps Secure-POP+SSH Sendmail+UUCP
Sendmail-Address-Rewrite Software-RAID VAIO+Linux ZIP-Drive
* debian/control: changed sunsite.unc.edu to metalab.unc.edu
* debian/rules: added perl script make-howtoindex again to create a html
index of the documents
* debian/rules: also install a doc-base file pointing to this index, as
well as a postinst/prerm to call install-docs
-- Dirk Eddelbuettel <edd@debian.org> Sun, 21 Mar 1999 19:01:53 -0500
doc-linux-html (98.09-1) unstable; urgency=low
* new HOWTOs
* HTML version of the Linux FAQ
* Replaces: doc-linux
-- Marco Budde <Budde@tu-harburg.de> Fri, 28 Aug 1998 22:38:32 +0200
doc-linux-html (98.06-1) unstable; urgency=low
* new HOWTOs
* Conflicts: doc-linux-text (bug #22761, #22777)
* debian/sgml2dhelp: abstract parser changed
-- Marco Budde <Budde@tu-harburg.de> Tue, 9 Jun 1998 21:12:30 +0200
doc-linux-html (98.04-1) unstable; urgency=low
* new maintainer
* new source tree
* dhelp support (sgml2dhelp script)
-- Marco Budde <Budde@tu-harburg.de> Tue, 7 Apr 1998 14:03:21 +0100
doc-linux (98.03-1) frozen unstable; urgency=low
* Corrected make-howtoindex to add subdirectories to the generated
index.html file (thanks to Bernard DRAPEAU <drapeaub@AME.UMontreal.CA>
for bringing this to my attention)
* Changed file permission to 0644 below /usr/doc/HOWTO/ (lintian)
* HOWTOs that are new or updated since the last release on February 23:
Commercial Consultants DNS French HOWTO-INDEX INDEX IPX
Linux-HOWTOs.tar.gz Mail Multi-Disk PCMCIA Root-RAID Security VAR
* mini-HOWTOs that are new or updated since the last release on February 23:
Bzip2 Cable-Modem Cyrus-IMAP DHCPcd Hard-Disk-Upgrade INDEX
Leased-Line RPM+Slackware Remote-X-Apps TkRat
* New Linux-FAQs as of $Date: 1998/03/12 08:51:17 $
-- Dirk Eddelbuettel <edd@debian.org> Wed, 18 Mar 1998 22:15:10 -0500
doc-linux (98.02-1) unstable; urgency=low
* Changed Description: for the doc-linux package (fixes #18465)
* HOWTOs that are new or updated since the last release on January 28:
BootPrompt Busmouse CD-Writing CDROM Chinese Commercial Consultants
Cyrillic Danish Disk Ethernet HOWTO INDEX PCMCIA Reading-List
Root-RAID Security Serial-Programming UUCP VAR
* mini-HOWTOs that are new or updated since the last release on January 28:
AI-Alife Cable-Modem Coffee INDEX Install-From-ZIP Linux+FreeBSD
Offline-Mailing Pre-Installation-Checklist RPM+Slackware StarOffice
Token-Ring Ultra-DMA Update Xterm-Title ZIP-Install
-- Dirk Eddelbuettel <edd@debian.org> Mon, 23 Feb 1998 21:43:37 -0500
doc-linux (98.01-2) unstable; urgency=low
* Added mini-HOWTOs in html format to doc-linux-html (fixes #16854, #17513)
* Moved mini-HOWTOs in text format to doc-linux-text
* The doc-linux package is now pretty small as it contains just the Linux-FAQ
* Modified scripts which create the index.html files accordingly
* HOWTOs that are new or updated since the last release on January 7:
Consultants Glibc2 HOWTO-INDEX INDEX NIS
* mini-HOWTOs that are new or updated since the last release on January 7:
Cable-Modem DHCPcd INDEX LILO Soundblaster-AWE VPN
-- Dirk Eddelbuettel <edd@debian.org> Wed, 28 Jan 1998 21:21:04 -0500
doc-linux (98.01-1) unstable; urgency=low
* Changed debian/control so that doc-linux-text no longer
'Recommends: www-browser' (fixes #16351)
* New Linux-FAQs as of $Date: 1998/01/06 06:16:26 $
* HOWTOs that are new or updated since the last release on December 23:
CD-Writing Commercial Consultants DNS Emacspeak HOWTO-INDEX INDEX
Optical-Disk Parallel-Processing Reading-List Tips User-Group VAR
* mini-HOWTOs that are new or updated since the last release on December 23:
Battery-Powered BogoMips Bridge+Firewall Cable-Modem DHCPcd
DPT-Hardware-RAID INDEX IO-Port-Programming LBX Leased-Line
News-Leafsite Pre-Installation-Checklist Public-Web-Browser
Software-Building Software-RAID Update Xterm-Title
-- Dirk Eddelbuettel <edd@debian.org> Wed, 7 Jan 1998 19:10:02 -0500
doc-linux (97.12-1) unstable; urgency=low
* Switched to distributing the newly maintained Linux-FAQ
* Added a menu entry for the html version of the Linux-FAQ
* Overhauled the other menu entries as well
* HOWTOs that are new or updated since the last release on November 4:
Assembly BootPrompt Busmouse Commercial Config Consultants Cyrillic
DOS-to-Linux DOSEMU Danish Database Disk Ethernet Glibc2 HOWTO-INDEX
Hardware INDEX Keyboard-and-Console MILO NIS PCMCIA Serial
Sound-Playing UPS User-Group VAR VMS-to-Linux Virtual-Services WWW
WWW-mSQL XFree86 XFree86-Video-Timings
* mini-HOWTOs that are new or updated since the last release on November 4:
3-Button-Mouse ADSM-Backup Bridge Bridge+Firewall Cable-Modem DHCPcd
Fax-Server GIS-GRASS Index IP-Masquerade ISP-Connectivity LILO
Linux+DOS+Win95+OS2 Linux+FreeBSD Mac-Terminal Mail-Queue Modules Path
Remote-X-Apps Sendmail+UUCP Small-Memory Software-Building
Software-RAID Soundblaster-AWE StarOffice Visual-Bell
Windows-Modem-Sharing ZIP-Install
-- Dirk Eddelbuettel <edd@debian.org> Tue, 23 Dec 1997 15:15:56 -0500
doc-linux (97.11-1) unstable; urgency=low
* HOWTOs that are new or updated since the last release on October 21:
AX25 Busmouse CDROM Commercial Consultants Distribution Glibc2
HOWTO-INDEX INDEX INFO-SHEET Installation META-FAQ NFS Reading-List
Sound VAR Virtual-Services WWW WWW-mSQL XFree86 XFree86-Video-Timings
* mini-HOWTOs that are new or updated since the last release on October 21:
3-Button-Mouse Battery-Powered BogoMips DHCPcd Diald INDEX IP-Alias
Linux+Win95 Partition Partition-Rescue
-- Dirk Eddelbuettel <edd@debian.org> Tue, 4 Nov 1997 20:48:57 -0500
doc-linux (97.10-3) unstable; urgency=low
* HOWTOs that are new or updated since the last release on October 15:
Commercial Consultants Danish Emacspeak French Glibc2 HOWTO-INDEX
INDEX ISP-Hookup PCMCIA User-Group VAR XFree86
* mini-HOWTOs that are new or updated since the last release on October 15:
AI-Alife Bridge+Firewall DHCPcd Fax-Server GIS-GRASS
Gravis-Ultra-Sound INDEX ISP-Connectivity Linux+FreeBSD Loadlin+Win95
Offline-Mailing Proxy-ARP-Subnet RPM+Slackware Software-RAID
XFree86-XInside
* Changed debian/rules such that doc-linux-text no longer contains the
tarball /usr/doc/HOWTO/Linux-HOWTOs.tar.gz (fixes bug #14036)
-- Dirk Eddelbuettel <edd@debian.org> Tue, 21 Oct 1997 19:07:39 -0400
doc-linux (97.10-2) unstable; urgency=low
* HOWTOs that are new or updated since the last release on October 8::
Commercial Consultants Emacspeak HOWTO-INDEX INDEX User-Group VAR
* mini-HOWTOs that are new or updated since the last release on October 8:
Bridge+Firewall DHCPcd Fax-Server INDEX ISP-Connectivity
* Added 'Replaces: doc-linux' for doc-linux-text (fixes #13842, #13866)
-- Dirk Eddelbuettel <edd@debian.org> Wed, 15 Oct 1997 19:23:21 -0400
doc-linux (97.10-1) unstable; urgency=low
* HOWTOs that are new or updated since the last release in September:
Assembly Commercial Consultants Danish Database French Glibc2
Hardware INDEX ISP-Hookup Installation PCMCIA Printing VAR XFree86
* mini-HOWTOs that are new or updated since the last release in September:
AI-Alife GIS-GRASS Gravis-Ultra-Sound INDEX Linux+FreeBSD
Loadlin+Win95 Mail-Queue.gz NFS-Root-Client Offline-Mailing
Proxy-ARP-Subnet RPM+Slackware Software-RAID XFree86-XInside
-- Dirk Eddelbuettel <edd@debian.org> Wed, 8 Oct 1997 20:28:42 -0400
doc-linux (97.09-1) unstable; urgency=low
* HOWTOs that are new or updated since the last release in August:
3Dfx Alpha Benchmarking CD-Writing Commercial Consultants Cyrillic
Danish Disk Distribution HOWTO-INDEX Hardware INDEX Installation
Intranet-Server Italian Keyboard-and-Console MILO NET-3 Optical-Disk
Pilot Reading-List SRM TeTeX User-Group VAR XFree86 XFree86-Video-Timings
* mini-HOWTOs that are new or updated since the last release in August:
AI-Alife Backup-With-MSDOS Boca BogoMips Bridge+Firewall Clock
Colour-ls Ext2fs-Undeletion GTEK-BBS-550 INDEX INDEX.html Kerneld
LBX Linux+NT-Loader Loadlin+Win95 Man-Page Modules NFS-Root
Netscape+Proxy Pager Process-Accounting Quota RCS Remote-Boot
Remote-X-Apps SLIP-PPP-Emulator Software-Building Software-RAID
Term-Firewall Visual-Bell WordPerfect X-Big-Cursor
-- Dirk Eddelbuettel <edd@debian.org> Wed, 3 Sep 1997 20:44:52 -0400
doc-linux (97.08-1) unstable; urgency=low
* Moved text versions of HOWTOs into new doc-linux-text package which
leaves the mini-HOWTOs (and the outdated Linux-FAQ) in doc-linux and the
html versions in doc-linux-html --- one can now combine doc-linux with
either of doc-linux-{html,text} (fixes feature request #11590)
* HOWTOs that are new or updated since the last release in July:
Assembly CDROM Commercial Consultants Danish Distribution HOWTO-INDEX
INDEX PCMCIA Printing README Sound TeTeX Thai User-Group VAR
* mini-HOWTOs that are new or updated since the last release in July:
3-Button-Mouse CD-Writing INDEX Kerneld LBX LF1000 Linux+DOS+Win95+OS2
Linux+WinNT Loadlin+Win95 Locales Partition RCS README
Software-Building StarOffice VPN Windows-Modem-Sharing
-- Dirk Eddelbuettel <edd@debian.org> Wed, 6 Aug 1997 21:26:47 -0400
doc-linux (97.07-1) unstable; urgency=low
* Now also provides doc-linux-html package with the HOWTOs in html format.
* Included auto-generated /usr/doc/HOWTO/html/index.html file
* Added a dwww menu entry in /usr/lib/menu/doc-linux-html
* HOWTOs that are new or updated since the last release in May:
AX25 Assembly Commercial Consultants DNS Danish HOWTO-INDEX Hardware
INDEX PCMCIA RPM Serial Serial-Programming TeTeX Thai VAR
* mini-HOWTOs that are new or updated since the last release in May:
BogoMips DHCPd HTTP+Netware INDEX Jaz-Drive Linux+DOS+Win95+OS2
Offline-Mailing Pager Qmail+MH Remote-X-Apps SLIP-PPP-Emulator
Software-Building Soundblaster-AWE64 StarOffice XFree86-XInside
-- Dirk Eddelbuettel <edd@debian.org> Tue, 8 Jul 1997 22:29:20 -0400
doc-linux (97.05-1) unstable; urgency=low
* HOWTOs that are new or updated since the last release in April:
Bootdisk Chinese Commercial Consultants Cyrillic DOSEMU Danish
HOWTO-INDEX Hardware INDEX Installation Kernel PCMCIA PPP Serial
Sound-Playing TeTeX Thai VAR
* mini-HOWTOs that are new or updated since the last release in April:
AI-Alife Battery-Powered Comeau-C++ Dial-On-Demand Dynamic-IP-Hacks
INDEX Kerneld Linux+NT-Loader Offline-Mailing Remote-Boot
Sendmail+UUCP StarOffice VPN
-- Dirk Eddelbuettel <edd@debian.org> Wed, 28 May 1997 21:31:10 -0400
doc-linux (97.04-1) unstable; urgency=low
* include the file /usr/doc/HOWTO/index.html generated by make-howtoindex
* added a dwww menu entry in /usr/lib/menu/doc-linux
* changed post{inst,rm} to call update-menus if possible
* HOWTOs that are new or updated since the last release in March:
AX25 Access Assembly Commercial Consultants Cyrillic DNS DOS-to-Linux
DOSEMU Danish Distribution Ftape German HAM HOWTO-INDEX INDEX IPX
Installation Italian Keyboard-and-Console NET-3 NFS PCI PCMCIA PPP
Printing-Usage Serial Sound-Playing UPS VAR VMS-to-Linux XFree86
* mini-HOWTOs that are new or updated since the last release in March:
CD-Writing DHCPd Dynamic-IP-Hacks INDEX IO-Port-Programming
IP-Subnetworking Mail-Queue Man-Page Multiple-Disks-Layout Qmail+MH
Serial-Port-Programming
-- Dirk Eddelbuettel <edd@debian.org> Sun, 6 Apr 1997 19:53:44 -0400
doc-linux (97.03-1) unstable; urgency=low
* HOWTOs that are new or updated since the last release in February:
Assembly Commercial Consultants HOWTO-INDEX INDEX Italian NET-3
* mini-HOWTOs that are new or updated since the last release in February:
Advocacy Dynamic-IP-Hacks Ext2fs-Undeletion INDEX IP-Masquerade
Linux+WinNT NFS-Root Public-Web-Browser
-- Dirk Eddelbuettel <edd@debian.org> Mon, 3 Mar 1997 20:32:36 -0500
doc-linux (97.02-1) unstable; urgency=low
* Changed Priority: to standard to be in sync with override files
* HOWTOs that are new or updated since the last release in January:
Assembly CDROM Commercial Consultants Distribution Emacspeak
Ethernet German HOWTO-INDEX INDEX INFO-SHEET Installation Italian
NIS Polish Sound Tips XFree86
* mini-HOWTOs that are new or updated since the last release in January:
ADSM-Backup AI-Alife Advocacy Bridge+Firewall CD-Writing
Dynamic-IP-Hacks Ext2fs-Undeletion INDEX IP-Alias Jaz-Drive NFS-Root
Partition Soundblaster-16 Virtual-wu-ftpd
-- Dirk Eddelbuettel <edd@debian.org> Wed, 12 Feb 1997 21:06:40 -0500
doc-linux (97.01-2) stable unstable; urgency=low
* Changed invalid distribution field "frozen" to "stable" in changelog
* Do not install invalid upstream files INDEX.html and mini/INDEX.html
as they do not work with the gzip'ed documents, and there is no point
in patching the html as the most popular webbrowser cannot cope with
compressed documents anyway (fixes bug #6413)
* HOWTOs that are new or updated since the last release in December:
AX25 BootPrompt Commercial Consultants DOStoLinux Distribution
HOWTO-INDEX INDEX INFO-SHEET ISP-Hookup Installation Java-CGI
META-FAQ PCMCIA Serial XFree86
* mini-HOWTOs that are new or updated since the last release in December:
Advocacy BogoMips Bridge+Firewall CD-Writer Clock DHCP
Dynamic-IP-Hacks GTEK-BBS-550 INDEX Linux+WinNT++ Locales
Multiple-Disks-Layout NFS-Root NFS-Root-Client PPP-over-minicom
ZIP-Install
-- Dirk Eddelbuettel <edd@debian.org> Mon, 6 Jan 1997 22:42:13 -0500
doc-linux (97.01-1) frozen unstable; urgency=low
* HOWTOs that are new or updated since the last release in December:
BootPrompt Commercial Consultants Distribution HOWTO-INDEX INDEX
ISP-Hookup Installation Java-CGI
* mini-HOWTOs that are new or updated since the last release in December:
Advocacy Bridge+Firewall CD-Writer DHCP GTEK-BBS-550 INDEX Locales
NFS-Root NFS-Root-Client ZIP-Install
-- Dirk Eddelbuettel <edd@debian.org> Fri, 3 Jan 1997 21:50:25 -0500
doc-linux (96.12-1) frozen unstable; urgency=low
* HOWTOs that are new or updated since the last release in November:
AX25 Commercial Consultants Distribution HOWTO-INDEX Installation
* mini-HOWTOs that are new or updated since the last release in November:
Dynamic-IP-Hacks JE Kerneld SLIP+proxyARP
-- Dirk Eddelbuettel <edd@debian.org> Mon, 9 Dec 1996 21:40:12 -0500
doc-linux (96.11-1) unstable; urgency=low
* HOWTOs that are new or updated since the last release in October:
Busmouse Commercial Consultants Distribution Ethernet Firewall
HAM HOWTO-INDEX INDEX INDEX.html INFO-SHEET IPX Installation
Module PCMCIA README Slovenian Sound-Playing Tips WWW XFree86
* mini-HOWTOs that are new or updated since the last release in October:
3-Button-Mouse AI-Alife BogoMips CD-Writer Dynamic-IP-Hacks
HTTP+Netware INDEX INDEX.html IP-Alias MIDI+SB Mail2News
Netscape+Proxy README SLIP+proxyARP Sendmail+UUCP
Virtual-wu-ftpd Xterm-Title
-- Dirk Eddelbuettel <edd@debian.org> Sun, 24 Nov 1996 17:16:10 -0500
doc-linux (96.10-1) unstable; urgency=low
* HOWTOs that are new or updated since the last release in September:
CDROM Commercial Consultants Ftape HAM HOWTO-INDEX INDEX
Printing Printing-Usage SCSI Sound
* mini-HOWTOs that are new or updated since the last release in September:
Consoles-Many Diskless Dynamic-IP-Hacks INDEX IO-Port-Programming
Java-WorkShop Linux+DOS+Win95 Linux+DOS+Win95+OS2 Linux+WinNT
PLIP Pager Partition Remote-Boot X-Big-Cursor Xterm-Title
-- Dirk Eddelbuettel <edd@debian.org> Mon, 7 Oct 1996 09:18:11 -0400
doc-linux (96.09-1) unstable; urgency=low
* HOWTOs that are New or updated since the August release:
Bootdisk Commercial Emacspeak HOWTO-INDEX INDEX Italian PCMCIA
PPP SMB Spanish Tips
* mini-HOWTOs that are New or updated since the August release:
BogoMips Bridge Dynamic-IP-Hacks INDEX IP-Alias IP-Masquerade
Java-WorkShop Jaz-Drive Multiple-Disks-Layout Win95+Win+Linux
* Converted package management files to new Debian-1.2 style
* Changed maintainer email address to <edd@debian.org>
-- Dirk Eddelbuettel <edd@debian.org> Thu, 5 Sep 1996 11:58:11 -0400
Tue Aug 6 16:49:00 1996 Dirk Eddelbuettel <edd@miles.econ.queensu.ca>
* doc-linux-96.08-0 release
* HOWTOs that are New or updated since the July release:
Access Commercial DNS ELF HOWTO-INDEX INDEX INFO-SHEET Kernel
META-FAQ PCI PPP Printing
* mini-HOWTOs that are New or updated since the July release:
Dynamic-IP-Hacks INDEX IP-Masquerade Large-Disk
Process-Accounting Quota Visual-Bell XFree86-XInside
Fri Jul 12 07:30:56 1996 Dirk Eddelbuettel <edd@miles.econ.queensu.ca>
* doc-linux-96.07-0 release
* HOWTOs that are New or updated since the June release:
AX25 Access Bootdisk CDROM Commercial Cyrillic Danish
Distribution Ftape HOWTO-INDEX INDEX IPX Java MGR Module
PCMCIA Polish Printing Shadow-Password Sound Tips
* mini-HOWTOs that are New or updated since the June release:
3-Button-Mouse Assembly BogoMips Diald Diskless
Dynamic-IP-Hacks INDEX IP-Alias IP-Masquerade Kerneld
Linux+OS2+DOS Linux+Win95 Locales Multiple-Disks-Layout
Print2Win Term-Firewall Upgrade
Sat Jun 8 09:41:55 1996 Dirk Eddelbuettel <edd@miles.econ.queensu.ca>
* doc-linux-96.06-0 release
* HOWTOs that are New or updated since the May release:
Access, Danish, Distribution, Ftape, HOWTO-INDEX, INDEX,
INFO-SHEET, IPX, Italian, Java, META-FAQ, MGR, Polish,
SCSI-Programming, Shadow-Password, Sound-Playing, Tips
* mini-HOWTOs that are New or updated since the May release:
3-Button-Mouse, Assembly, DOS2Linux, Diskless,
Dynamic-IP-Hacks, Graphics-Tools, INDEX, Kerneld,
Linux+OS2+DOS, Locales, Online-Support, Term-Firewall,
Upgrade, XFree86-XInside
Sat May 11 13:35:59 1996 Dirk Eddelbuettel <edd@miles.econ.queensu.ca>
* doc-linux-96.05-0 release
* new or updated HOWTOs: AX25 Access HAM HOWTO-INDEX INDEX
INFO-SHEET IPX ISP-Hookup Italian META-FAQ NET-2 SCSI
Shadow-Password
* new or update mini-HOWTOs: Colour-ls INDEX Graphics Man-Page
PPP-over-ISDN ZIP-Drive
Wed Apr 10 16:18:19 1996 Dirk Eddelbuettel <edd@miles.econ.queensu.ca>
* doc-linux-96.04-0 release
* debian.control: added Architecture: field
* new or updated HOWTOs: Access, DNS, Danish, Ftape, German,
Index, PCI, PPP, Printing, Tips
* new or update mini-HOWTOs: Consoles-Many, Gravis-Ultrasound,
HTTP+Netware, Index, LF1000, Locales, Multiple-Disks-Layout,
NFS-Root
Wed Mar 6 17:17:44 1996 Dirk Eddelbuettel <edd@miles.econ.queensu.ca>
* doc-linux-96.03-0 release
* new Linux FAQ
* new or updated HOWTOs: CDROM, Distribution, Finnish, Ftape,
GCC, Index, INFO-SHEET, Java, Kernel, META-FAQ, Printing, Sound,
Sound-Playing
* new or update mini-HOWTOs: Backup_With_MSDOS, HTTP+Netware,
Kerneld, LF1000, Linux+OS2+DOS, Modeline, Multiple_Disks,
Reading_List
Wed Feb 7 15:11:09 1996 Dirk Eddelbuettel <edd@miles.econ.queensu.ca>
* doc-linux-96.02-0 release
* new or updated HOWTOs: PCMCIA-HOWTO README IPX-HOWTO NET-2-HOWTO
Shadow-Password-HOWTO UMSDOS-HOWTO Distribution-HOWTO SCSI-HOWTO
Ftape-HOWTO Italian-HOWTO INDEX HOWTO-INDEX
* new or updated mini-HOWTOs: ADSM-Backup Tiny-News Colour-ls PLIP
DOS2Linux Win95+Win+Linux INDEX
Wed Jan 3 08:01:16 1996 Dirk Eddelbuettel <edd@miles.econ.queensu.ca>
* doc-linux-96.01-0 release
* new or updated HOWTOs: Distribution-HOWTO, IPX-HOWTO, Java-HOWTO
* new or updated mini-HOWTOs: Linux+Win95, ADSM-Backup, BogoMips,
IO-Port-Programming, TIA
Mon Dec 4 21:11:25 1995 Dirk Eddelbuettel <edd@miles.econ.queensu.ca>
* doc-linux-95.12-0 release
* new or updated HOWTOs: SCSI-HOWTO Keyboard-HOWTO UMSDOS-HOWTO
Hardware-HOWTO PCI-HOWTO Ethernet-HOWTO Ftape-HOWTO NET-2-HOWTO
HAM-HOWTO HOWTO-INDEX
* new or updated mini-HOWTOs: IO-Port-Programming Virtual-Web
Caching-named
Wed Nov 8 16:12:27 1995 Dirk Eddelbuettel <edd@miles.econ.queensu.ca>
* updated to newest versions as recent as November 7, 1995.
* duplicate Keystroke-HOWTO removed at sunsite, (fixes bug#1773)
* debian.control: recommends info-browser (fixes bug#1442)
* postinst: install linux-faq.info under Information (fixes bug#1109)
* new package name and numbering scheme, replaces 'doc' package
* new maintainer
|