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 1911 1912 1913 1914 1915 1916 1917 1918 1919 1920 1921 1922 1923 1924 1925 1926 1927 1928 1929 1930 1931 1932 1933 1934 1935 1936 1937 1938 1939 1940 1941 1942 1943 1944 1945 1946 1947 1948 1949 1950 1951 1952 1953 1954 1955 1956 1957 1958 1959 1960 1961 1962 1963 1964 1965 1966 1967 1968 1969 1970 1971 1972 1973 1974 1975 1976 1977 1978 1979 1980 1981 1982 1983 1984 1985 1986 1987 1988 1989 1990 1991 1992 1993 1994 1995 1996 1997 1998 1999 2000 2001 2002 2003 2004 2005 2006 2007 2008 2009 2010 2011 2012 2013 2014 2015 2016 2017 2018 2019 2020 2021 2022 2023 2024 2025 2026 2027 2028 2029 2030 2031 2032 2033 2034 2035 2036 2037 2038 2039 2040 2041 2042 2043 2044 2045 2046 2047 2048 2049 2050 2051 2052 2053 2054 2055 2056 2057 2058 2059 2060 2061 2062 2063 2064 2065 2066 2067 2068 2069 2070 2071 2072 2073 2074 2075 2076 2077 2078 2079 2080 2081 2082 2083 2084 2085 2086 2087 2088 2089 2090 2091 2092 2093 2094 2095 2096 2097 2098 2099 2100 2101 2102 2103 2104 2105 2106 2107 2108 2109 2110 2111 2112 2113 2114 2115 2116 2117 2118 2119 2120 2121 2122 2123 2124 2125 2126 2127 2128 2129 2130 2131 2132 2133 2134 2135 2136 2137 2138 2139 2140 2141 2142 2143 2144 2145 2146 2147 2148 2149 2150 2151 2152 2153 2154 2155 2156 2157 2158 2159 2160 2161 2162 2163 2164 2165 2166 2167 2168 2169 2170 2171 2172 2173 2174 2175 2176 2177 2178 2179 2180 2181 2182 2183 2184 2185 2186 2187 2188 2189 2190 2191 2192 2193 2194 2195 2196 2197 2198 2199 2200 2201 2202 2203 2204 2205 2206 2207 2208 2209 2210 2211 2212 2213 2214 2215 2216 2217 2218 2219 2220 2221 2222 2223 2224 2225 2226 2227 2228 2229 2230 2231 2232 2233 2234 2235 2236 2237 2238 2239 2240 2241 2242 2243 2244 2245 2246 2247 2248 2249 2250 2251 2252 2253 2254 2255 2256 2257 2258 2259 2260 2261 2262 2263 2264 2265 2266 2267 2268 2269 2270 2271 2272 2273 2274 2275 2276 2277 2278 2279 2280 2281 2282 2283
|
wl-beta (2.15.9+0.20230120-1) unstable; urgency=medium
* New upstream version 2.15.9+0.20230120
* Use shell function for PACKAGE
* Update get-orig-source
-- Tatsuya Kinoshita <tats@debian.org> Mon, 23 Jan 2023 22:45:36 +0900
wl-beta (2.15.9+0.20221117-2) unstable; urgency=medium
* Enable inhibit-automatic-native-compilation when byte-compiling
* Enable byte-compile-warnings when byte-compiling
* Leave a compilation log
* Relax dependencies on emacs flavors
* Update Standards-Version to 4.6.2
* Typo fix in README.Debian
* Update debian/copyright
-- Tatsuya Kinoshita <tats@debian.org> Sun, 08 Jan 2023 22:55:56 +0900
wl-beta (2.15.9+0.20221117-1) unstable; urgency=medium
[ Debian Janitor ]
* Remove constraints unnecessary since buster (closes: #1013861)
[ Tatsuya Kinoshita ]
* New upstream version 2.15.9+0.20221117
* Prevent native compilation in emacsen-install
* Remove empty maintainer scripts
* Update Standards-Version to 4.6.1
* Avoid egrep in maintainer scripts
-- Tatsuya Kinoshita <tats@debian.org> Fri, 18 Nov 2022 23:51:11 +0900
wl-beta (2.15.9+0.20220103-1) unstable; urgency=medium
[ Debian Janitor ]
* Remove 3 obsolete maintscript entries in 1 files
* Fix day-of-week for changelog entries 0.9.3-3, 0.9.3-2
[ Tatsuya Kinoshita ]
* New upstream version 2.15.9+0.20220103
* Update debian/copyright
* Update Standards-Version to 4.6.0
-- Tatsuya Kinoshita <tats@debian.org> Sun, 24 Apr 2022 16:30:15 +0900
wl-beta (2.15.9+0.20210629-1) unstable; urgency=medium
* New upstream version 2.15.9+0.20210629
* Drop debian/patches
-- Tatsuya Kinoshita <tats@debian.org> Tue, 17 Aug 2021 23:33:42 +0900
wl-beta (2.15.9+0.20210131-4) experimental; urgency=medium
* New patch 010_elmo-msgdb.patch to remove old elmo-folder-get-info
* Remove unneeded handling of no-native-compile
-- Tatsuya Kinoshita <tats@debian.org> Wed, 30 Jun 2021 19:37:47 +0900
wl-beta (2.15.9+0.20210131-3) experimental; urgency=medium
* Set no-native-compile to t in elmo-msgdb.el for Emacs 28
-- Tatsuya Kinoshita <tats@debian.org> Sat, 19 Jun 2021 19:09:51 +0900
wl-beta (2.15.9+0.20210131-2) unstable; urgency=medium
* Update Info handling to use makeinfo
* Update debian/upstream/metadata to use https
* Update dot.wl-highlight-subdued.el
-- Tatsuya Kinoshita <tats@debian.org> Sat, 06 Feb 2021 20:55:40 +0900
wl-beta (2.15.9+0.20210131-1) unstable; urgency=medium
* New upstream version 2.15.9+0.20210131
* Install samples/en/* files into examples directly
* Add dot.wl-highlight-subdued.el to examples
* Update debian/copyright
-- Tatsuya Kinoshita <tats@debian.org> Mon, 01 Feb 2021 20:15:42 +0900
wl-beta (2.15.9+0.20210105-1) unstable; urgency=medium
* New upstream version 2.15.9+0.20210105
* Drop debian/patches
* Add sample configuration for SSL/TLS to README.Debian
* Add gnutls-bin to Suggests
-- Tatsuya Kinoshita <tats@debian.org> Sat, 23 Jan 2021 19:26:21 +0900
wl-beta (2.15.9+0.20201128-2) unstable; urgency=medium
* New patch 010_elmo-date.patch to fix incorrect elmo-date-get-week
* Update debian/copyright
-- Tatsuya Kinoshita <tats@debian.org> Sun, 03 Jan 2021 18:48:31 +0900
wl-beta (2.15.9+0.20201128-1) unstable; urgency=medium
* New upstream version 2.15.9+0.20201128
* Don't install ChangeLog.1 files
* Update README.Debian for built-in GnuTLS and NSM
* Remove unneeded configuration for SSL/TLS
* Remove unneeded configuration for elmo-archive with GNU tar
* Update Standards-Version to 4.5.1
-- Tatsuya Kinoshita <tats@debian.org> Sat, 26 Dec 2020 15:49:12 +0900
wl-beta (2.15.9+0.20201115-1) unstable; urgency=medium
* New upstream version 2.15.9+0.20201115
- Fix dynamically bound variables fail in lexical binding at compile time
* Don't use obsolete wl-cs-local in Texinfo handling
* Remove easypg, gnutls-bin, mule-ucs from Suggests
* Don't set wl-auto-save-drafts-interval to nil in emacsen-startup
(The default value is now 300)
-- Tatsuya Kinoshita <tats@debian.org> Sun, 15 Nov 2020 20:47:32 +0900
wl-beta (2.15.9+0.20201103-1) unstable; urgency=medium
* New upstream version 2.15.9+0.20201103
* Add NEWS.Debian to mention lexical binding
* Update README.Debian to mention NSM
* Drop 020_ssl-cert-info.patch
* Update emacsen-startup for ssl-certificate-information
* Remove unneeded configuration from emacsen-startup
* Don't install obsolete ChangeLog files
* Remove bitmap-mule from Suggests
* Set wl-cs-local for Texinfo files
-- Tatsuya Kinoshita <tats@debian.org> Fri, 06 Nov 2020 23:20:18 +0900
wl-beta (2.15.9+0.20200822-1) unstable; urgency=medium
* New upstream version 2.15.9+0.20200822
* Add debian/upstream/metadata
* Update debian/watch to use mode=git
* Update debhelper-compat to 13
* Drop 030_epg-config.patch
* Update debian/copyright
* Drop emacs23, emacs22 and xemacs21
* No longer recompile mhc
* Prefer utf-8 instead of iso-2022-jp for Texinfo files
* No longer handle CVS stuff
-- Tatsuya Kinoshita <tats@debian.org> Mon, 24 Aug 2020 22:42:53 +0900
wl-beta (2.15.9+0.20200311-1) unstable; urgency=medium
* New upstream version 2.15.9+0.20200311
* Update configration for GnuTLS and NSM
* Add ca-certificates to Recommends
* Add Rules-Requires-Root: no
* Update debian/copyright
* Update Standards-Version to 4.5.0
-- Tatsuya Kinoshita <tats@debian.org> Thu, 12 Mar 2020 19:58:07 +0900
wl-beta (2.15.9+0.20190919-1) unstable; urgency=medium
* New upstream version 2.15.9+0.20190919
* Add the get-orig-source target
-- Tatsuya Kinoshita <tats@debian.org> Sun, 22 Sep 2019 20:34:33 +0900
wl-beta (2.15.9+0.20190623-2) unstable; urgency=medium
* Update debhelper-compat to 12
* Update Standards-Version to 4.4.0
* Skip old flavors xemacs20 and xemacs19
-- Tatsuya Kinoshita <tats@debian.org> Tue, 16 Jul 2019 22:26:24 +0900
wl-beta (2.15.9+0.20190623-1) unstable; urgency=medium
* New upstream version 2.15.9+0.20190623
* Update sample configuration for TLS 1.3
-- Tatsuya Kinoshita <tats@debian.org> Sun, 07 Jul 2019 23:14:33 +0900
wl-beta (2.15.9+0.20190205-2) unstable; urgency=medium
* Update TLS configuration, disable TLS 1.3 for Emacs 26.1
cf. http://lists.gnu.org/archive/html/help-gnu-emacs/2019-02/msg00204.html
-- Tatsuya Kinoshita <tats@debian.org> Thu, 14 Feb 2019 20:59:51 +0900
wl-beta (2.15.9+0.20190205-1) unstable; urgency=medium
* New upstream version 2.15.9+0.20190205
* Use maintscript file instead of manual calls to dpkg-maintscript-helper
-- Tatsuya Kinoshita <tats@debian.org> Sun, 10 Feb 2019 23:27:52 +0900
wl-beta (2.15.9+0.20190112-1) unstable; urgency=medium
* New upstream version 2.15.9+0.20190112
-- Tatsuya Kinoshita <tats@debian.org> Sun, 13 Jan 2019 00:08:18 +0900
wl-beta (2.15.9+0.20181209-1) unstable; urgency=medium
* New upstream version 2.15.9+0.20181209
* Use debhelper-compat 11
* Update debian/copyright
* Update Standards-Version to 4.3.0
-- Tatsuya Kinoshita <tats@debian.org> Sun, 06 Jan 2019 17:17:08 +0900
wl-beta (2.15.9+0.20181117-1) unstable; urgency=medium
[ Ondřej Nový ]
* d/changelog: Remove trailing whitespaces
[ Tatsuya Kinoshita ]
* New upstream version 2.15.9+0.20181117
* Update Standards-Version to 4.2.1
-- Tatsuya Kinoshita <tats@debian.org> Tue, 27 Nov 2018 19:59:32 +0900
wl-beta (2.15.9+0.20180605-1) unstable; urgency=medium
* New upstream version 2.15.9+0.20180605
* Reorder debian/patches
* Fix handling for unversioned emacs flavor
* Fix handling for xemacs21-mule/nomule
* Handle symlinks for emacsen-startup
* Check stamp file so that source file isn't newer
* Update Standards-Version to 4.2.0
-- Tatsuya Kinoshita <tats@debian.org> Wed, 22 Aug 2018 00:02:41 +0900
wl-beta (2.15.9+0.20180526-1) unstable; urgency=medium
* New upstream version 2.15.9+0.20180526
* Accept unversioned emacs flavor for emacsen-common 3.0.0
* Drop workaround for emacsen-common 1.x
* Update debhelper compat version to 11
* Update Standards-Version to 4.1.4
-- Tatsuya Kinoshita <tats@debian.org> Sun, 03 Jun 2018 18:25:27 +0900
wl-beta (2.15.9+0.20180312-1) unstable; urgency=medium
* New upstream version 2.15.9+0.20180312
* Migrate from anonscm.debian.org to salsa.debian.org
-- Tatsuya Kinoshita <tats@debian.org> Tue, 13 Mar 2018 21:29:14 +0900
wl-beta (2.15.9+0.20171209-1) unstable; urgency=medium
* New upstream version 2.15.9+0.20171209
* Update debhelper compat version to 10
* Update Priority to optional
* Update Vcs-Git to https
* Update debian/copyright
* Update Standards-Version to 4.1.3
-- Tatsuya Kinoshita <tats@debian.org> Sat, 06 Jan 2018 13:32:32 +0900
wl-beta (2.15.9+0.20161228-1) unstable; urgency=medium
* New upstream version 2.15.9+0.20161228
* Prefer emacs-nox over emacs
* Update debian/copyright
* Drop 70_xemacs.patch (merged upstream)
-- Tatsuya Kinoshita <tats@debian.org> Sun, 08 Jan 2017 20:51:40 +0900
wl-beta (2.15.9+0.20160912-3) unstable; urgency=medium
* Update 70_xemacs.patch to work wl-draft-send-confirm on XEmacs
* Update debhelper compat version to 9
-- Tatsuya Kinoshita <tats@debian.org> Fri, 28 Oct 2016 20:18:26 +0900
wl-beta (2.15.9+0.20160912-2) unstable; urgency=medium
* New patch 70_xemacs.patch to prevent errors on XEmacs
-- Tatsuya Kinoshita <tats@debian.org> Sun, 16 Oct 2016 16:42:05 +0900
wl-beta (2.15.9+0.20160912-1) unstable; urgency=medium
* Imported Upstream version 2.15.9+0.20160912
* Accept emacs25
-- Tatsuya Kinoshita <tats@debian.org> Sun, 09 Oct 2016 14:13:56 +0900
wl-beta (2.15.9+0.20160430-1) unstable; urgency=medium
* Imported Upstream version 2.15.9+0.20160430
* Update Standards-Version to 3.9.8
-- Tatsuya Kinoshita <tats@debian.org> Sat, 04 Jun 2016 20:25:31 +0900
wl-beta (2.15.9+0.20160305-1) unstable; urgency=medium
* Imported Upstream version 2.15.9+0.20160305
* Update debian/copyright
* Update Standards-Version to 3.9.7
-- Tatsuya Kinoshita <tats@debian.org> Sun, 06 Mar 2016 15:33:12 +0900
wl-beta (2.15.9+0.20151119-1) unstable; urgency=medium
* Imported Upstream version 2.15.9+0.20151119
* Update debian/copyright
* Update Vcs-Browser to https
-- Tatsuya Kinoshita <tats@debian.org> Fri, 20 Nov 2015 22:13:59 +0900
wl-beta (2.15.9+0.20150909-1) unstable; urgency=medium
* Imported Upstream version 2.15.9+0.20150909
-- Tatsuya Kinoshita <tats@debian.org> Sat, 12 Sep 2015 01:23:28 +0900
wl-beta (2.15.9+0.20150725-1) unstable; urgency=medium
* Imported Upstream version 2.15.9+0.20150725
-- Tatsuya Kinoshita <tats@debian.org> Sun, 09 Aug 2015 12:34:26 +0900
wl-beta (2.15.9+0.20150526-1) unstable; urgency=medium
* Imported Upstream version 2.15.9+0.20150526
* Update debian/copyright
-- Tatsuya Kinoshita <tats@debian.org> Wed, 17 Jun 2015 19:42:51 +0900
wl-beta (2.15.9+0.20150308-1) unstable; urgency=medium
* Imported Upstream version 2.15.9+0.20150308
* Update debian/copyright
* Update Vcs-Browser
* Drop 40_idle-timer.patch
* Drop 10_docfix.patch
-- Tatsuya Kinoshita <tats@debian.org> Sun, 26 Apr 2015 15:01:51 +0900
wl-beta (2.15.9+0.20141019-4) unstable; urgency=medium
* Update 40_idle-timer.patch from upstream to really fix wl-biff
-- Tatsuya Kinoshita <tats@debian.org> Sat, 15 Nov 2014 06:48:02 +0900
wl-beta (2.15.9+0.20141019-3) unstable; urgency=medium
* New patch 40_idle-timer.patch to fix timer arguments (closes: #768910)
-- Tatsuya Kinoshita <tats@debian.org> Wed, 12 Nov 2014 07:54:35 +0900
wl-beta (2.15.9+0.20141019-2) unstable; urgency=medium
* New patch 10_docfix.patch from upstream
-- Tatsuya Kinoshita <tats@debian.org> Sat, 25 Oct 2014 16:10:15 +0900
wl-beta (2.15.9+0.20141019-1) unstable; urgency=medium
* Imported Upstream version 2.15.9+0.20141019
* Drop 50_support-raw-gmail-search.patch (rejected upstream)
- Use new variable elmo-imap4-search-keys instead
* Drop 40_support-mu-notmuch.patch (merged upstream)
* Mention gnutls.el, tls.el and ssl.el in docs
* Update debian/copyright
-- Tatsuya Kinoshita <tats@debian.org> Sun, 19 Oct 2014 22:31:23 +0900
wl-beta (2.15.9+0.20140915-3) unstable; urgency=medium
* Add sample configuration for gnutls.el in README.Debian
-- Tatsuya Kinoshita <tats@debian.org> Sat, 18 Oct 2014 21:04:54 +0900
wl-beta (2.15.9+0.20140915-2) unstable; urgency=medium
* Update ssl-program-arguments to disable SSLv3 [CVE-2014-3566]
* New patch 40_support-mu-notmuch.patch
* New patch 50_support-raw-gmail-search.patch
* Add maildir-utils and notmuch to Suggests
* Update debian/copyright
* Update Standards-Version to 3.9.6
-- Tatsuya Kinoshita <tats@debian.org> Thu, 16 Oct 2014 18:40:12 +0900
wl-beta (2.15.9+0.20140915-1) unstable; urgency=medium
* Imported Upstream version 2.15.9+0.20140915
-- Tatsuya Kinoshita <tats@debian.org> Tue, 16 Sep 2014 21:35:59 +0900
wl-beta (2.15.9+0.20140709-1) unstable; urgency=medium
* Imported Upstream version 2.15.9+0.20140709
-- Tatsuya Kinoshita <tats@debian.org> Thu, 31 Jul 2014 19:27:05 +0900
wl-beta (2.15.9+0.20140616-1) unstable; urgency=medium
* Imported Upstream version 2.15.9+0.20140616
* Drop 10_ikazuhiro.patch
-- Tatsuya Kinoshita <tats@debian.org> Mon, 16 Jun 2014 20:10:12 +0900
wl-beta (2.15.9+0.20140603-1) unstable; urgency=medium
* Imported Upstream version 2.15.9+0.20140603
* Disable 10_ikazuhiro.patch (merged upstream)
-- Tatsuya Kinoshita <tats@debian.org> Wed, 04 Jun 2014 22:19:28 +0900
wl-beta (2.15.9+0.20140519-2) unstable; urgency=medium
* Sync 10_ikazuhiro.patch on 2014-05-23
* Depend on emacsen-common 2.0.8
-- Tatsuya Kinoshita <tats@debian.org> Sat, 24 May 2014 00:17:19 +0900
wl-beta (2.15.9+0.20140519-1) unstable; urgency=medium
* Imported Upstream version 2.15.9+0.20140519
* Sync 10_ikazuhiro.patch on 2014-05-18
-- Tatsuya Kinoshita <tats@debian.org> Mon, 19 May 2014 23:12:41 +0900
wl-beta (2.15.9+0.20140504-1) unstable; urgency=medium
* Imported Upstream version 2.15.9+0.20140504
- Merge branch heimkehr (closes: #735765)
* Sync 10_ikazuhiro.patch on 2014-05-05
* Update debian/copyright
-- Tatsuya Kinoshita <tats@debian.org> Mon, 05 May 2014 21:51:52 +0900
wl-beta (2.15.9+0.20130701-7) unstable; urgency=medium
* Sync 10_ikazuhiro.patch on 2014-03-31 to fix elmo-util (closes: #742206)
-- Tatsuya Kinoshita <tats@debian.org> Tue, 01 Apr 2014 20:44:40 +0900
wl-beta (2.15.9+0.20130701-6) unstable; urgency=medium
* Update 10_ikazuhiro.patch, sync on 2014-02-22
-- Tatsuya Kinoshita <tats@debian.org> Sat, 01 Mar 2014 20:53:19 +0900
wl-beta (2.15.9+0.20130701-5) unstable; urgency=medium
* Update 10_ikazuhiro.patch, sync on 2014-02-08
* Install a compat file with emacsen-compat
* Add emacsen-common (<< 2.0.0) to Conflicts
* Handle an installed file to follow emacsen-common 2.0.7
-- Tatsuya Kinoshita <tats@debian.org> Sat, 15 Feb 2014 20:20:23 +0900
wl-beta (2.15.9+0.20130701-4) unstable; urgency=medium
* Update 10_ikazuhiro.patch, sync on 2014-01-20
-- Tatsuya Kinoshita <tats@debian.org> Sun, 26 Jan 2014 19:58:10 +0900
wl-beta (2.15.9+0.20130701-3) unstable; urgency=medium
* New patch 10_ikazuhiro.patch to sync ikazuhiro branch
* Update README.Debian to mention gnutls.el is used for emacs24
* Update debian/copyright
-- Tatsuya Kinoshita <tats@debian.org> Sat, 11 Jan 2014 00:47:55 +0900
wl-beta (2.15.9+0.20130701-2) unstable; urgency=low
* Workaround for emacsen-common <2 and debhelper <9.20131104
* Do not byte-compile for emacs22|emacs21|emacs20
* Use dpkg-maintscript-helper to remove obsolete conffile
* Update Standards-Version to 3.9.5
-- Tatsuya Kinoshita <tats@debian.org> Mon, 09 Dec 2013 22:09:08 +0900
wl-beta (2.15.9+0.20130701-1) unstable; urgency=low
* Imported Upstream version 2.15.9+0.20130701
* Remove 10_ikazuhiro-branch.patch (merged upstream)
-- Tatsuya Kinoshita <tats@debian.org> Fri, 05 Jul 2013 19:24:47 +0900
wl-beta (2.15.9+0.20120923-2) unstable; urgency=low
* New patch 10_ikazuhiro-branch.patch
* Remove 10_elmo-intern-soft.patch (merged ikazuhiro's branch)
* Update debian/copyright
* Add Vcs-Git and Vcs-Browser
-- Tatsuya Kinoshita <tats@debian.org> Sat, 22 Jun 2013 20:01:25 +0900
wl-beta (2.15.9+0.20120923-1) unstable; urgency=low
* Imported Upstream version 2.15.9+0.20120923
* Update debian/docs to install README.md
* Add emacs24 to Build-Depends-Indep
* Switch Homepage from gohome.org to github.com
* Update Standards-Version to 3.9.4
* Update debian/watch
* debian/copyright: Updated
-- Tatsuya Kinoshita <tats@debian.org> Tue, 07 May 2013 21:03:48 +0900
wl-beta (2.15.9+0.20120411-1) unstable; urgency=low
* New upstream release. (development snapshot on 2012-04-11,
wanderlust-wanderlust-d807929, downloaded from
<https://github.com/wanderlust/wanderlust>)
* debian/copyright:
- Point to the repository at github.com instead of the official
repository at cvs.m17n.org which is no longer available.
- Switch to copyright-format-1.0.
* debian/control:
- Don't mention a stable version in Description.
- Update Standards-Version to 3.9.3.
-- Tatsuya Kinoshita <tats@debian.org> Thu, 03 May 2012 23:57:37 +0900
wl-beta (2.15.9+0.20120101-1) unstable; urgency=medium
* New upstream release. (CVS trunk on 2012-01-01)
* debian/patches/30_epg-config.patch: Don't use the epg-configuration
function which causes the creation of "$HOME/.gnupg". (closes: #657131)
* debian/rules: New targets build-arch and build-indep.
* debian/copyright: Updated.
-- Tatsuya Kinoshita <tats@debian.org> Sun, 12 Feb 2012 10:23:09 +0900
wl-beta (2.15.9+0.20110420-1) unstable; urgency=low
* New upstream release. (CVS trunk on 2011-04-20)
* debian/patches/30_elmo-folder-open.patch: Removed. (merged upstream)
* debian/control: Update Standards-Version to 3.9.2.
* debian/copyright: Switch to the DEP-5 format.
-- Tatsuya Kinoshita <tats@debian.org> Sun, 15 May 2011 19:41:19 +0900
wl-beta (2.15.9+0.20100801-2) unstable; urgency=medium
* debian/patches/30_elmo-folder-open.patch: Fix that elmo database gets out
of sync, patch from upstream. (closes: #593396)
-- Tatsuya Kinoshita <tats@debian.org> Wed, 18 Aug 2010 07:42:30 +0900
wl-beta (2.15.9+0.20100801-1) unstable; urgency=low
* New upstream release. (CVS trunk on 2010-08-01)
* debian/control:
- Add GNU Emacs flavors to Build-Depends-Indep.
- Update Standards-Version to 3.9.1.
-- Tatsuya Kinoshita <tats@debian.org> Tue, 03 Aug 2010 00:30:59 +0900
wl-beta (2.15.9+0.20100525-3) unstable; urgency=low
* debian/README.Debian: Add information to customize gnutls-cli options.
(closes: #584615)
* debian/emacsen-startup.in: Remove useless configuration of
ssl-certificate-verification-policy.
-- Tatsuya Kinoshita <tats@debian.org> Sun, 06 Jun 2010 18:28:13 +0900
wl-beta (2.15.9+0.20100525-2) unstable; urgency=low
* debian/README.Debian: Add information to use the ssl feature.
(closes: #584302)
* debian/emacsen-startup.in: Add comment to mention the default value
of ssl-program-name.
* debian/patches/20_ssl-cert-info.patch: Use "opsnssl" instead of
ssl-program-name for ssl-certificate-information.
* debian/patches: Renumbered.
-- Tatsuya Kinoshita <tats@debian.org> Thu, 03 Jun 2010 22:14:27 +0900
wl-beta (2.15.9+0.20100525-1) unstable; urgency=low
* New upstream release. (CVS trunk on 2010-05-25)
- Fix that negation (!) doesn't work with "flag" filters.
(closes: #573726)
* debian/emacsen-startup.in: Set ssl-program-name and ssl-program-arguments
to use gnutls-cli instead of openssl s_client. (closes: #294659, #539290)
* debian/control: Add gnutls-bin to Suggests.
-- Tatsuya Kinoshita <tats@debian.org> Wed, 02 Jun 2010 06:53:10 +0900
wl-beta (2.15.9+0.20100303-1) unstable; urgency=low
* New upstream release. (CVS trunk on 2010-03-03)
* debian/patches/01elmo-intern-soft.patch: Define elmo-intern-soft to fix
unknown archiver type. Patch from [wl:14407] on 2010-03-02 by Katsuyoshi
Ohara.
-- Tatsuya Kinoshita <tats@debian.org> Sun, 07 Mar 2010 00:32:57 +0900
wl-beta (2.15.9+0.20100216-1) unstable; urgency=low
* New upstream release. (CVS trunk on 2010-02-16)
* debian/control: Depend on semi (>= 1.14.6+0.20100125).
* Switch to dpkg-source 3.0 (quilt) format.
-- Tatsuya Kinoshita <tats@debian.org> Wed, 24 Feb 2010 20:12:19 +0900
wl-beta (2.15.9+0.20100208-1) unstable; urgency=low
* New upstream release. (CVS trunk on 2010-02-08)
* debian/control:
- Add `dpkg (>= 1.15.4) | install-info' to Depends.
- Add ${misc:Depends} to Depends.
- Set Section to lisp.
- Update Standards-Version to 3.8.4.
* debian/copyright: Updated.
-- Tatsuya Kinoshita <tats@debian.org> Sat, 13 Feb 2010 15:45:54 +0900
wl-beta (2.15.6+0.20090322-1) unstable; urgency=low
* New upstream release. (CVS trunk on 2009-03-22)
* debian/emacsen-install: Don't fail with xemacs21-nomule.
* debian/control: Update Standards-Version to 3.8.1.
-- Tatsuya Kinoshita <tats@debian.org> Thu, 09 Apr 2009 00:15:54 +0900
wl-beta (2.15.6+0.20090101-1) unstable; urgency=low
* New upstream release. (CVS trunk on 2009-01-01)
* debian/emacsen-*: Rewritten.
- Set wl-auto-save-drafts-interval to nil in the startup file.
* debian/rules, debian/__env.el: Don't use __env.el.
* debian/compat, debian/control: Update debhelper version to 7.
* debian/control:
- Remove `make' from Depends.
- Update Standards-Version to 3.8.0.
* debian/rules: Use dh_prep instead of `dh_clean -k'.
* debian/copyright: Updated.
-- Tatsuya Kinoshita <tats@debian.org> Mon, 16 Feb 2009 23:33:44 +0900
wl-beta (2.15.6+0.20080307-2) unstable; urgency=low
* debian/control: Build-Depends: debhelper (>= 6).
-- Tatsuya Kinoshita <tats@debian.org> Fri, 21 Mar 2008 22:46:01 +0900
wl-beta (2.15.6+0.20080307-1) unstable; urgency=low
* New upstream release. (CVS trunk on 2008-03-07)
* debian/emacsen-install.in: Don't install utf7.el for Emacs 23.
* debian/control: Remove `Vcs-Cvs:'.
* debian/compat: 5 -> 6.
* debian/copyright: Updated.
-- Tatsuya Kinoshita <tats@debian.org> Fri, 14 Mar 2008 00:38:05 +0900
wl-beta (2.15.5+0.20071215-1) unstable; urgency=low
* New upstream release. (CVS trunk on 2007-12-15)
* debian/control:
- Add fields `Vcs-Cvs:' and `Homepage:'.
- Remove `Homepage:' from Description.
- Revise Description.
-- Tatsuya Kinoshita <tats@debian.org> Sat, 22 Dec 2007 19:48:46 +0900
wl-beta (2.15.5+0.20071110-2) unstable; urgency=low
* debian/control:
- Add wl to Provides.
- Set Standards-Version to 3.7.3.
-- Tatsuya Kinoshita <tats@debian.org> Sat, 08 Dec 2007 07:37:18 +0900
wl-beta (2.15.5+0.20071110-1) unstable; urgency=low
* New upstream release. (CVS trunk on 2007-11-10)
* debian/copyright: Updated.
-- Tatsuya Kinoshita <tats@debian.org> Sun, 25 Nov 2007 00:02:09 +0900
wl-beta (2.15.5+0.20070805-1) unstable; urgency=low
* New upstream release. (CVS trunk on 2007-08-05)
-- Tatsuya Kinoshita <tats@debian.org> Sat, 18 Aug 2007 19:07:56 +0900
wl-beta (2.15.5+0.20070424-4) unstable; urgency=low
* debian/rules: Use emacs instead of emacs21.
-- Tatsuya Kinoshita <tats@debian.org> Mon, 09 Jul 2007 22:03:04 +0900
wl-beta (2.15.5+0.20070424-3) unstable; urgency=low
* debian/control:
- Prefer emacs to emacs21.
- Revise Description.
* debian/README.Debian.in: Typo fix.
-- Tatsuya Kinoshita <tats@debian.org> Sun, 08 Jul 2007 21:09:02 +0900
wl-beta (2.15.5+0.20070424-2) unstable; urgency=low
* debian/emacsen-install.in: Make symlink for elmo-shimbun.el,
elsp-spamfilter.el, bbdb-wl.el and ssl.el.
* debian/README.Debian.in:
- Remove "Extra packages" section.
- Rename from README.Debian for wl and wl-beta.
* debian/rules: Generate README.Debian from README.Debian.in.
* debian/control: Add easypg to Suggests.
-- Tatsuya Kinoshita <tats@debian.org> Mon, 07 May 2007 23:02:37 +0900
wl-beta (2.15.5+0.20070424-1) unstable; urgency=medium
* New upstream release. (CVS trunk on 2007-04-24)
- elmo/elmo-pop3.el (elmo-pop3-auth-apop): Use more strict regexp.
[CVE-2007-1558]
* debian/emacsen-install.in: Don't byte-compile bbdb-wl.el.
* debian/control: Remove version of wanderlust2 from Replaces/Conflicts.
* Rename debian/env.el to debian/__env.el.
-- Tatsuya Kinoshita <tats@debian.org> Tue, 24 Apr 2007 23:38:24 +0900
wl-beta (2.15.5+0.20070406-1) unstable; urgency=low
* New upstream release. (CVS trunk on 2007-04-06)
* debian/control: Depends apel (>= 10.7).
* debian/watch: Set Action to uupdate.
* debian/copyright: Updated.
-- Tatsuya Kinoshita <tats@debian.org> Sun, 08 Apr 2007 20:10:46 +0900
wl-beta (2.15.5+0.20061203-1) unstable; urgency=low
* New upstream release. (CVS trunk on 2006-12-03)
-- Tatsuya Kinoshita <tats@debian.org> Sun, 3 Dec 2006 17:15:35 +0900
wl-beta (2.15.4+0.20061015-1) unstable; urgency=low
* New upstream release. (CVS trunk on 2006-10-15)
-- Tatsuya Kinoshita <tats@debian.org> Sat, 28 Oct 2006 08:44:32 +0900
wl-beta (2.15.4+0.20061002-1) unstable; urgency=low
* New upstream release. (CVS trunk on 2006-10-02)
* debian/copyright: Mention Debian packaging condition.
-- Tatsuya Kinoshita <tats@debian.org> Thu, 12 Oct 2006 21:46:58 +0900
wl-beta (2.15.3+0.20060823-1) unstable; urgency=low
* New upstream release. (CVS trunk on 2006-08-23)
* debian/control (Description): Use `Homepage:'.
* debian/copyright: Change URL of mirror site.
* debian/watch: Use mirror site.
-- Tatsuya Kinoshita <tats@debian.org> Thu, 24 Aug 2006 23:20:22 +0900
wl-beta (2.15.3+0.20060725-1) unstable; urgency=low
* New upstream release. (CVS trunk on 2006-07-25)
-- Tatsuya Kinoshita <tats@debian.org> Sat, 29 Jul 2006 07:05:33 +0900
wl-beta (2.15.3+0.20060624-1) unstable; urgency=low
* New upstream release. (CVS trunk on 2006-06-24)
-- Tatsuya Kinoshita <tats@debian.org> Sun, 25 Jun 2006 02:01:24 +0900
wl-beta (2.15.3+0.20060604-1) unstable; urgency=low
* New upstream release. (CVS trunk on 2006-06-04)
* debian/control (Build-Depends): Depend on debhelper version 5.
* debian/control (Standards-Version): 3.6.2 -> 3.7.2.
-- Tatsuya Kinoshita <tats@debian.org> Wed, 7 Jun 2006 20:49:48 +0900
wl-beta (2.15.2+0.20060122-1) unstable; urgency=low
* New upstream release. (CVS trunk on 2006-01-22)
* debian/control (Build-Depends-Indep): Depend on debhelper version 5.
* debian/compat: 3 -> 5.
* debian/control (Maintainer): tats@vega.ocn.ne.jp -> tats@debian.org.
* debian/copyright: Ditto.
-- Tatsuya Kinoshita <tats@debian.org> Mon, 23 Jan 2006 02:06:02 +0900
wl-beta (2.15.1+0.20050808-1) unstable; urgency=low
* New upstream release. (CVS trunk on 2005-08-08)
* debian/emacsen-install.in: Don't remove wl-news.el.
* debian/emacsen-install.in: Don't run `make clean'.
* debian/copyright: Update the postal address of the Free Software
Foundation.
* debian/control (Standards-Version): 3.6.1 -> 3.6.2.
* Sponsored by Fumitoshi UKAI
* debian/control: add semi, flim to build-depends:
* debian/postinst: fix bashism. [ -a -> &&
-- Tatsuya Kinoshita <tats@vega.ocn.ne.jp> Sat, 13 Aug 2005 14:46:46 +0900
wl-beta (2.15.1+0.20050607-1) unstable; urgency=low
* New upstream release. (CVS trunk on 2005-06-07)
* debian/rules: Load WL-MK to use the wl-texinfo-format function.
* debian/rules: Set file modes of *.el to 0644 explicitly.
* debian/rules: Don't install `CVS' directories.
* debian/env.el: Prefer iso-2022-jp instead of euc-jp.
* debian/emacsen-startup.in: Remove setting of threading characters for
nomule emacsen (integrated in the upstream).
* debian/emacsen-startup.in: Set the ssl-certificate-directory variable
to "/etc/ssl/certs", and set the ssl-certificate-verification-policy
variable to 3.
* debian/emacsen-install.in: Ready for emacsen flavors sxemacs*.
* debian/control: Add `starttls' to `Suggests'.
* debian/control: Revise description.
* debian/watch: New file.
* debian/copyright: Updated.
-- Tatsuya Kinoshita <tats@vega.ocn.ne.jp> Tue, 7 Jun 2005 18:31:23 +0900
wl-beta (2.11.30+0.20040810-2) unstable; urgency=medium
* Patches for utf7.el from upstrem CVS version.
- utf7.el (utf7-fragment-encode): Don't use narrow-to-region to
avoid the bug of Emacs 21.3.
- utf7.el (utf7-utf-16-coding-system): Avoid error when the
function find-coding-system does not exist.
-- Tatsuya Kinoshita <tats@vega.ocn.ne.jp> Tue, 31 Aug 2004 23:28:28 +0900
wl-beta (2.11.30+0.20040810-1) unstable; urgency=low
* New upstream release. (CVS snapshot on 2004-08-10 at 21:28 +0900)
* debian/control: Depends on apel (>= 10.6), flim (>= 1:1.14.6) and
semi (>= 1.14.6).
* debian/control: Suggests `mu-cite'.
-- Tatsuya Kinoshita <tats@vega.ocn.ne.jp> Wed, 11 Aug 2004 20:38:32 +0900
wl-beta (2.11.30+0.20040801-1) unstable; urgency=low
* New upstream release. (CVS snapshot on 2004-08-01 at 11:37 +0900)
-- Tatsuya Kinoshita <tats@vega.ocn.ne.jp> Sun, 1 Aug 2004 15:49:02 +0900
wl-beta (2.11.30+0.20040721-1) unstable; urgency=medium
* New upstream release. (CVS snapshot on 2004-07-21 at 07:02 +0900)
- Fixed bug to lost messages on refiling failure.
-- Tatsuya Kinoshita <tats@vega.ocn.ne.jp> Wed, 21 Jul 2004 07:26:39 +0900
wl-beta (2.11.30+0.20040704-1) unstable; urgency=low
* New upstream release. (CVS snapshot on 2004-07-04 at 20:58 +0900)
* debian/emacsen-install.in: Create *.el symlinks.
* debian/copyright: Updated.
-- Tatsuya Kinoshita <tats@vega.ocn.ne.jp> Mon, 5 Jul 2004 21:54:57 +0900
wl-beta (2.11.24+0.20040403-1) unstable; urgency=low
* New upstream release. (CVS snapshot on 2004-04-03 at 23:00 +0900)
* debian/control (Suggests): `bogofilter | bsfilter | spamassassin'.
-- Tatsuya Kinoshita <tats@vega.ocn.ne.jp> Sun, 4 Apr 2004 20:05:23 +0900
wl-beta (2.11.23+0.20040203-1) unstable; urgency=low
* New upstream release. (CVS snapshot on 2004-02-03 at 21:34 +0900)
- Add "Spam filter" chapter to the Info documents.
- elmo/elsp-bsfilter.el: Bsfilter support for elmo-spam.
- elmo/elsp-sa.el: SpamAssassin support for elmo-spam.
- New user option `elmo-spam-bogofilter-arguments-alist'. (Follow the
options change of latest bogofilter.)
- New user option `elmo-spam-bogofilter-max-messages-per-process'.
- wl/wl-draft.el (wl-draft-highlight-and-recenter): Redraw frame just
before calling `recenter' in order to cope with an XEmacs bug.
* debian/README.Debian: Revised. (im-wl conditional was removed)
* debian/copyright: Updated.
-- Tatsuya Kinoshita <tats@vega.ocn.ne.jp> Tue, 3 Feb 2004 21:45:40 +0900
wl-beta (2.11.22+0.20040103-1) unstable; urgency=low
* New upstream release. (CVS snapshot on 2004-01-03 at 22:09 +0900)
- Fix wl-address mis-deleting.
- Fix coding system problem in wl-message-verify-pgp-nonmime.
- Fix wl-summary-mark-as-important problem.
- Fix filter folder problem.
- Fix message/partial problem.
- wl-spam.el (wl-spam-auto-check-folder-regexp-list): Changed
default value to nil.
(wl-spam-setup): Added `wl-summary-auto-check-spam' to
`wl-summary-prepare-hook'; Replace refile action to
`wl-summary-exec-action-refile-with-register'.
- wl-spam.el (wl-spam-folder): Renamed from `wl-spam-folder-name'.
- New variable `wl-demo-icon-name-alist' and new function
`wl-demo-icon-name'.
* debian/README.Debian: Describe extra packages. (closes: #225746)
* debian/control (Suggests): Add `namazu2' and `bogofilter'.
(closes: #225747)
* debian/copyright: Further clarification.
-- Tatsuya Kinoshita <tats@vega.ocn.ne.jp> Sun, 4 Jan 2004 11:23:34 +0900
wl-beta (2.11.21+0.20031121-1) unstable; urgency=medium
* New upstream release. (CVS snapshot on 2003-11-21 at 00:24AM +0900)
- Fix that handling of pipe folder fails with modb-standard.
* debian/emacsen-startup.in: Don't fail when /etc/mailname doesn't
exist on XEmacs. (closes: #221474)
-- Tatsuya Kinoshita <tats@vega.ocn.ne.jp> Fri, 21 Nov 2003 00:35:31 +0900
wl-beta (2.11.20+0.20031116-1) unstable; urgency=low
* New upstream release. (CVS snapshot on 2003-11-16 at 00:01AM +0900)
- New feature wl-spam (spam filter module).
- New feature wl-batch (batch processing module).
- New draft saving function which can treat IMAP draft folder. As a
result, you can set (setq wl-draft-folder "%Drafts").
- elmo-mark -> elmo-flag.
- New implement of msgdb (modb-standard). New user options
elmo-msgdb-default-type and elmo-msgdb-convert-type.
- New elmo APIs, elmo-msgdb with luna.
- New user options, wl-summary-lazy-update-mark,
wl-message-use-header-narrowing, wl-use-flag-folder-help-echo,
wl-draft-preview-attributes, wl-summary-answered-cached-mark,
wl-summary-answered-uncached-mark, and wl-summary-flag-priority-list.
* debian/control (Build-Depends-Indep): Depend on emacs21 instead of
emacs20.
* debian/rules: Use emacs21 instead of emacs20.
* debian/emacsen-startup.in: Evaluate the user-mail-address function for
XEmacs. (closes: #219810)
* debian/emacsen-install.in: Set file mode to 644 explicitly.
* debian/emacsen-install.in: Check semi/compile-stamp.
* debian/control (Suggests): Add `bitmap-mule'.
* Use debian/compat instead of DH_COMPAT.
- debian/compat: New file.
- debian/rules: Remove `export DH_COMPAT=3'.
- debian/control (Build-Depends-Indep): debhelper (>= 3.4.4).
* debian/control (Standards-Version): 3.6.0 -> 3.6.1.
-- Tatsuya Kinoshita <tats@vega.ocn.ne.jp> Sun, 16 Nov 2003 01:02:16 +0900
wl-beta (2.11.7+0.20030814-1) unstable; urgency=low
* New upstream release. (CVS snapshot on 2003-08-14 at 09:41PM +0900)
- Merge elmo-mark branch, new marks `A' and `&' for answered messages.
- elmo/elmo-imap4.el (elmo-imap4-folder-diff-plugged): Fix incomplete
elmo-use-select-to-update-status (a patch from Bug#145934, thanks to
David Smith <ultrasoul@ultrasoul.com>)
- Arrange wl-summary-sync.
- Improve elmo-msgdb.
* debian/README.Debian.in: New file. Describe how to set mail-user-agent.
* debian/rules: Install README.Debian.
* debian/emacsen-startup.in: Add autoload for wl-user-agent-compose.
* debian/emacsen-startup.in: Set wl-from if user-mail-address doesn't exist.
* debian/emacsen-startup.in: Set elmo-archive-tar-method-alist and
elmo-archive-tgz-method-alist to use `tar' instead of `gtar'.
* debian/control (Suggests): Add `mhc'.
* debian/rules: Don't modify `elmo/elmo-archive.el'.
* debian/emacsen-install.in (DOCDIR): Removed.
* debian/copyright: Revised.
-- Tatsuya Kinoshita <tats@vega.ocn.ne.jp> Sat, 16 Aug 2003 01:43:50 +0900
wl-beta (2.11.3+cvs.20030718.1529-1) unstable; urgency=low
* New upstream release (snapshots/wanderlust-200307181529.tar.gz)
* Change default value of the wl-summary-weekday-name-lang variable.
On Japanese environment, "ja" is used by default.
(reject Debian patch for wl-vars.el)
* Don't reject xemacs21-nomule. (reject Debian patch for WL-MK)
* debian/emacsen-startup: Set threading characters for nomule emacsen.
* debian/control (Depends): Add `make'.
* debian/control (Standards-Version): 3.6.0.
* debian/*: Merge wl and wl-beta.
- Cleanup installation scripts. (closes: #159835)
- Rewrite Info files installation.
- debian/emacsen-install: Recompile mhc for mhc-wl.
- debian/control: Conflict with xbase (<< 3.3.2.3a-2).
- debian/rules: Don't leave install-stamp when `debuild clean'.
- debian/rules: Use binary-indep instead of binary-arch.
- debian/rules: Install changelog.utils.
- debian/control: Use Build-Depends-Indep instead of Build-Depends.
- debian/control: Build-depend on emacs20 instead of emacs21.
- debian/docs: Don't contain install documentation.
- debian/docs: Add doc/TODO.
- debian/docs: Remove doc/wl-ja.texi.
- debian/prerm: Removed.
- debian/control (Depends): Prefer emacs21 instead of emacs20.
- debian/control (Depends): semi (>= 1.14) -> (>= 1.14.3).
- debian/control (Suggests): Add bbdb and im.
- debian/control (Description): Revised.
- debian/env.el: Use prefer-coding-system instead of
set-default-coding-systems.
- debian/copyright: Revised.
* New maintainer. (with previous maintainer's consent)
-- Tatsuya Kinoshita <tats@vega.ocn.ne.jp> Tue, 22 Jul 2003 00:53:15 +0900
wl-beta (2.11.3+cvs.2003.06.07-1) unstable; urgency=low
* New upstream release
-- Takuo KITAME <kitame@debian.org> Mon, 9 Jun 2003 12:51:37 +0900
wl-beta (2.11.3-2) unstable; urgency=low
* Fix byte-compilation problem
-- Takuo KITAME <kitame@debian.org> Mon, 9 Jun 2003 11:39:17 +0900
wl-beta (2.11.3-1) unstable; urgency=low
* New upstream release
-- Takuo KITAME <kitame@debian.org> Fri, 6 Jun 2003 14:08:14 +0900
wl-beta (2.9.15+cvs.2002.10.22-1) unstable; urgency=low
* New upstream release
* Change Maintainer address to @debian.org
* fix info dir entry (closes: #164718)
-- Takuo KITAME <kitame@debian.org> Wed, 23 Oct 2002 14:12:38 +0900
wl-beta (2.9.15+cvs.2002.09.09-1) unstable; urgency=low
* New upstream release
* (setq wl-install-utils t) in WL-CFG
-- Takuo KITAME <kitame@northeye.org> Mon, 9 Sep 2002 13:10:53 +0900
wl-beta (2.9.14+cvs.2002.07.18-1) unstable; urgency=low
* New upstream release
-- Takuo KITAME <kitame@northeye.org> Fri, 19 Jul 2002 01:36:49 +0900
wl-beta (2.9.13+cvs.2002.06.21-1) unstable; urgency=low
* New upstream release
-- Takuo KITAME <kitame@northeye.org> Fri, 21 Jun 2002 11:49:50 +0900
wl-beta (2.9.13+cvs.2002.05.29-2) unstable; urgency=low
* applied patch of #145934: elmo-use-select-to-update-status incomplete
closes: #145934
-- Takuo KITAME <kitame@northeye.org> Fri, 31 May 2002 16:11:47 +0900
wl-beta (2.9.13+cvs.2002.05.29-1) unstable; urgency=low
* New upstream release
-- Takuo KITAME <kitame@northeye.org> Wed, 29 May 2002 14:20:14 +0900
wl-beta (2.9.11+cvs.2002.05.05-1) unstable; urgency=low
* New upstream release
-- Takuo KITAME <kitame@northeye.org> Sun, 5 May 2002 15:25:35 +0900
wl-beta (2.9.9+cvs.2002.04.10-1) unstable; urgency=low
* New upstream release
* added autoload wl-other-frame (closes: #141713)
-- Takuo KITAME <kitame@northeye.org> Thu, 11 Apr 2002 10:06:20 +0900
wl-beta (2.9.9+cvs.2002.04.07-1) unstable; urgency=low
* New upstream release
-- Takuo KITAME <kitame@northeye.org> Sun, 7 Apr 2002 16:54:22 +0900
wl-beta (2.9.8+cvs.2002.03.29-1) unstable; urgency=low
* New upstream release
-- Takuo KITAME <kitame@northeye.org> Fri, 29 Mar 2002 15:53:08 +0900
wl-beta (2.9.8+cvs.2002.03.20-1) unstable; urgency=low
* New upstream release
-- Takuo KITAME <kitame@northeye.org> Wed, 20 Mar 2002 12:03:30 +0900
wl-beta (2.9.7+cvs.2002.02.21-1) unstable; urgency=low
* New upstream release
-- Takuo KITAME <kitame@northeye.org> Thu, 21 Feb 2002 14:21:36 +0900
wl-beta (2.9.6+cvs.2002.02.03-1) unstable; urgency=low
* New upstream release
-- Takuo KITAME <kitame@northeye.org> Sun, 3 Feb 2002 22:44:53 +0900
wl-beta (2.9.5+cvs.2002.01.20-1) unstable; urgency=low
* New upstream release
-- Takuo KITAME <kitame@northeye.org> Sun, 20 Jan 2002 02:40:33 +0900
wl-beta (2.9.4+cvs.2002.01.09-1) unstable; urgency=low
* New upstream release
-- Takuo KITAME <kitame@northeye.org> Wed, 9 Jan 2002 16:11:45 +0900
wl-beta (2.9.2+cvs.2001.12.29-1) unstable; urgency=low
* New upstream release
* wl/wl-vars.el(wl-summary-weekday-name-lang): default is en.
remove setq from emacsen-startup.
-- Takuo KITAME <kitame@northeye.org> Wed, 2 Jan 2002 03:05:08 +0900
wl-beta (2.9.2+cvs.2001.12.28-1) unstable; urgency=low
* New upstream release
-- Takuo KITAME <kitame@northeye.org> Fri, 28 Dec 2001 18:37:05 +0900
wl-beta (2.9.1+cvs.2001.12.22-1) unstable; urgency=low
* New upstream release
-- Takuo KITAME <kitame@northeye.org> Sun, 23 Dec 2001 03:15:11 +0900
wl-beta (2.9.0+cvs.2001.12.18-1) unstable; urgency=low
* New upstream release
* debian/emacsen-startup:
- remove code to use w3m. It's in semi package.
* debian/control:
- Suggests: + gnupg
-- Takuo KITAME <kitame@northeye.org> Tue, 18 Dec 2001 11:10:11 +0900
wl-beta (2.7.7+cvs.2001.12.15-1) unstable; urgency=low
* New upstream release
* fix removeing 60wl-beta.el script in preinst (closes: #124054)
* priority 60 to 65
-- Takuo KITAME <kitame@northeye.org> Sat, 15 Dec 2001 15:34:41 +0900
wl-beta (2.7.7+cvs.2001.12.14-1) unstable; urgency=low
* New upstream release
* fix y-or-n-p format strings (closese: #117165)
* Depends on flim (>= 1:1.14.3-7) according to Bug#123758
-- Takuo KITAME <kitame@northeye.org> Fri, 14 Dec 2001 18:07:16 +0900
wl-beta (2.7.7+cvs.2001.12.12-1) unstable; urgency=low
* New upstream release
* don't use wl-icon-dir, use wl-icon-directory instead. (closes: #123576)
* set load-path to apel, flim and semi before compile.
* use emacs-w3m for text/html if available
* change site priority to 60
-- Takuo KITAME <kitame@northeye.org> Wed, 12 Dec 2001 19:51:56 +0900
wl-beta (2.7.7+cvs.2001.12.11-1) unstable; urgency=low
* New upstream release
* change versioning policy
* /etc/emacs/site-start.d/50wl-beta.el as conffiles
-- Takuo KITAME <kitame@northeye.org> Tue, 11 Dec 2001 20:30:35 +0900
wl-beta (2.7.6.20011201cvs-1) unstable; urgency=low
* New upstream release
* closes: #121394 : wl-beta: ChangeLog files in elisp dirs
* default date string is English.
Japanese is not Universal. (close: #117163)
-- Takuo KITAME <kitame@northeye.org> Sat, 1 Dec 2001 21:54:29 +0900
wl-beta (2.7.6.20011124cvs-1) unstable; urgency=low
* New upstream release
* remove wemi dependency, it's orphaned.
-- Takuo KITAME <kitame@northeye.org> Sat, 24 Nov 2001 23:04:59 +0900
wl-beta (2.7.5.20011026cvs-1) unstable; urgency=low
* New upstream release
* Install English info (closes: #117161)
-- Takuo KITAME <kitame@northeye.org> Fri, 26 Oct 2001 20:29:47 +0900
wl-beta (2.7.5.20011019cvs-1) unstable; urgency=low
* New upstream release
* remove old info
-- Takuo KITAME <kitame@northeye.org> Fri, 19 Oct 2001 16:39:05 +0900
wl-beta (2.7.5.20011009cvs-1) unstable; urgency=low
* New upstream release
* change icon directory from /usr/X11R6/include/X11 to /usr/share
* make info (closes: #115226)
-- Takuo KITAME <kitame@northeye.org> Thu, 11 Oct 2001 19:44:54 +0900
wl-beta (2.7.4.20011005cvs-1) unstable; urgency=low
* New upstream release
-- Takuo KITAME <kitame@northeye.org> Fri, 5 Oct 2001 17:11:45 +0900
wl-beta (2.7.4.20010918cvs-1) unstable; urgency=low
* New upstream release
-- Takuo KITAME <kitame@northeye.org> Tue, 18 Sep 2001 23:14:29 +0900
wl-beta (2.7.3.20010901-1) unstable; urgency=low
* New upstream release
-- Takuo KITAME <kitame@northeye.org> Sat, 1 Sep 2001 23:53:56 +0900
wl-beta (2.7.1.20010723-1) unstable; urgency=low
* New upstream release
-- Takuo KITAME <kitame@northeye.org> Mon, 23 Jul 2001 23:42:08 +0900
wl-beta (2.7.0.20010713-2) unstable; urgency=low
* WL-MK: added load-path for shimbun
-- Takuo KITAME <kitame@northeye.org> Mon, 16 Jul 2001 00:32:35 +0900
wl-beta (2.7.0.20010713-1) unstable; urgency=low
* New upstream release (CVS update)
-- Takuo KITAME <kitame@northeye.org> Sat, 14 Jul 2001 02:37:48 +0900
wl-beta (2.7.0.20010706cvs-1) unstable; urgency=low
* New upstream release (CVS update)
-- Takuo KITAME <kitame@northeye.org> Fri, 6 Jul 2001 12:27:51 +0900
wl-beta (2.7.0.20010625cvs-1) unstable; urgency=low
* New upstream release (CVS update)
-- Takuo KITAME <kitame@northeye.org> Mon, 25 Jun 2001 22:46:03 +0900
wl-beta (2.7.0.20010620cvs-1) unstable; urgency=low
* New upstream release
-- Takuo KITAME <kitame@northeye.org> Wed, 20 Jun 2001 13:23:11 +0900
wl-beta (2.7.0.20010619cvs-1) unstable; urgency=low
* New upstream release
* fixed #94184: wl-beta: xemacs21 loadup error in wl-beta initialize
(closes: Bug#94184)
* Suggests: openssl
-- Takuo KITAME <kitame@northeye.org> Tue, 19 Jun 2001 13:34:16 +0900
wl-beta (2.5.8.20010510cvs-1.0) unstable; urgency=low
* New upstream release
* site-lisp/wl-beta -> site-lisp/wl
-- Takuo KITAME <kitame@northeye.org> Wed, 16 May 2001 05:09:35 +0900
wl-beta (2.5.8.20010412cvs-1) unstable; urgency=low
* New upstream release
-- Takuo KITAME <kitame@northeye.org> Sat, 14 Apr 2001 03:00:01 +0900
wl-beta (2.5.8.20010320cvs-1) unstable; urgency=low
* New upstream release
-- Takuo KITAME <kitame@northeye.org> Wed, 21 Mar 2001 16:03:04 +0900
wl-beta (2.5.8.20010305cvs-1) unstable; urgency=low
* New upstream release
-- Takuo KITAME <kitame@northeye.org> Tue, 6 Mar 2001 16:56:35 +0900
wl-beta (2.5.8.20010226cvs-1) unstable; urgency=low
* New upstream release
-- Takuo KITAME <kitame@northeye.org> Mon, 26 Feb 2001 20:54:14 +0900
wl-beta (2.5.7.20010216cvs-1) unstable; urgency=low
* New upstream release
-- Takuo KITAME <kitame@northeye.org> Sat, 17 Feb 2001 03:19:39 +0900
wl-beta (2.5.7.20010201cvs-1) unstable; urgency=low
* New upstream release
-- Takuo KITAME <kitame@northeye.org> Thu, 1 Feb 2001 21:23:48 +0900
wl-beta (2.5.6.20010130cvs-1) unstable; urgency=low
* New upstream release
-- Takuo KITAME <kitame@northeye.org> Wed, 31 Jan 2001 01:37:31 +0900
wl-beta (2.5.6.20010125cvs-1) unstable; urgency=low
* New upstream release
-- Takuo KITAME <kitame@northeye.org> Thu, 25 Jan 2001 14:10:02 +0900
wl-beta (2.5.5.20010121cvs-1) unstable; urgency=low
* New upstream release
-- Takuo KITAME <kitame@northeye.org> Mon, 22 Jan 2001 11:09:09 +0900
wl-beta (2.5.5.20010118cvs-1) unstable; urgency=low
* New upstream release
-- Takuo KITAME <kitame@northeye.org> Fri, 19 Jan 2001 14:36:15 +0900
wl-beta (2.5.4.20001230cvs-1) unstable; urgency=low
* New upstream release
-- Takuo KITAME <kitame@northeye.org> Sun, 31 Dec 2000 21:04:43 +0900
wl-beta (2.5.4.20001215cvs-1) unstable; urgency=low
* New upstream release
-- Takuo KITAME <kitame@northeye.org> Sat, 16 Dec 2000 13:16:21 +0900
wl-beta (2.5.4.20001130cvs-1) unstable; urgency=low
* New upstream release
-- Takuo KITAME <kitame@northeye.org> Thu, 30 Nov 2000 17:27:52 +0900
wl-beta (2.5.3.20001127cvs-1) unstable; urgency=low
* New upstream release
-- Takuo KITAME <kitame@northeye.org> Mon, 27 Nov 2000 22:29:13 +0900
wl-beta (2.5.3.20001122cvs-1) unstable; urgency=low
* New upstream release
-- Takuo KITAME <kitame@northeye.org> Thu, 23 Nov 2000 00:18:07 +0900
wl-beta (2.5.2.20001121cvs-1) unstable; urgency=low
* New upstream release
-- Takuo KITAME <kitame@northeye.org> Tue, 21 Nov 2000 16:49:00 +0900
wl-beta (2.5.2.20001120cvs-1) unstable; urgency=low
* New upstream release
-- Takuo KITAME <kitame@northeye.org> Mon, 20 Nov 2000 19:37:59 +0900
wl-beta (2.5.1.20001115cvs-1) unstable; urgency=low
* New upstream release
-- Takuo KITAME <kitame@northeye.org> Wed, 15 Nov 2000 17:29:31 +0900
wl-beta (2.5.0.20001108cvs-1) unstable; urgency=low
* New upstream release
-- Takuo KITAME <kitame@northeye.org> Wed, 8 Nov 2000 17:52:39 +0900
wl-beta (2.3.92.20001106cvs-1.1) unstable; urgency=low
* New upstream release
-- Takuo KITAME <kitame@northeye.org> Tue, 7 Nov 2000 02:29:44 +0900
wl-beta (2.3.92.20001101cvs-1) unstable; urgency=low
* New upstream release
-- Takuo KITAME <kitame@northeye.org> Wed, 1 Nov 2000 18:57:28 +0900
wl-beta (2.3.92.20001030cvs-1) unstable; urgency=low
* New upstream release
-- Takuo KITAME <kitame@northeye.org> Tue, 31 Oct 2000 03:34:33 +0900
wl-beta (2.3.92.20001028cvs-1) unstable; urgency=low
* New upstream release
-- Takuo KITAME <kitame@northeye.org> Sun, 29 Oct 2000 02:08:35 +0900
wl-beta (2.3.92.20001022cvs-1) unstable; urgency=low
* New upstream release
-- Takuo KITAME <kitame@northeye.org> Mon, 23 Oct 2000 15:25:55 +0900
wl-beta (2.3+0pre20001018cvs-1) unstable; urgency=low
* New upstream release
* xemacs-mule check in WL-MK (closes:Bug#69520)
-- Takuo KITAME <kitame@northeye.org> Wed, 18 Oct 2000 17:51:23 +0900
wl-beta (2.3+0pre20001015cvs-1) unstable; urgency=low
* New upstream release
-- Takuo KITAME <kitame@northeye.org> Mon, 16 Oct 2000 10:57:59 +0900
wl-beta (2.3+0pre20001011cvs-1) unstable; urgency=low
* New upstream release
* Package was renamed to wl-beta
-- Takuo KITAME <kitame@northeye.org> Thu, 12 Oct 2000 13:05:40 +0900
wanderlust2 (2.3+0pre20001005cvs-1) unstable; urgency=low
* New upstream release
-- Takuo KITAME <kitame@northeye.org> Fri, 6 Oct 2000 04:31:50 +0900
wanderlust2 (2.3+0pre20000930cvs-1) unstable; urgency=low
* New upstream release
-- Takuo KITAME <kitame@northeye.org> Sun, 1 Oct 2000 02:13:15 +0900
wanderlust2 (2.3+0pre20000919cvs-1) unstable; urgency=low
* New upstream release
-- Takuo KITAME <kitame@northeye.org> Wed, 20 Sep 2000 02:59:53 +0900
wanderlust2 (2.3+0pre20000917cvs-1) unstable; urgency=low
* New upstream release
-- Takuo KITAME <kitame@northeye.org> Mon, 18 Sep 2000 09:35:02 +0900
wanderlust2 (2.3+0pre20000913cvs-1) unstable; urgency=low
* New upstream release
-- Takuo KITAME <kitame@northeye.org> Wed, 13 Sep 2000 19:42:38 +0900
wanderlust2 (2.3+0pre20000908cvs-1) unstable; urgency=low
* New upstream release
-- Takuo KITAME <kitame@northeye.org> Sat, 9 Sep 2000 03:08:41 +0900
wanderlust2 (2.3+0pre20000905cvs-1) unstable; urgency=low
* New upstream release
-- Takuo KITAME <kitame@northeye.org> Tue, 5 Sep 2000 16:40:14 +0900
wanderlust2 (2.3+0pre20000808-1) unstable; urgency=low
* New upstream release
-- Takuo KITAME <kitame@northeye.org> Wed, 9 Aug 2000 11:15:46 +0900
wanderlust2 (2.3+0pre20000725-1) unstable; urgency=low
* New upstream release
-- Takuo KITAME <kitame@northeye.org> Tue, 25 Jul 2000 23:55:16 +0900
wanderlust2 (2.3+0pre20000701-1) unstable; urgency=low
* New upstream release
-- Takuo KITAME <kitame@northeye.org> Mon, 3 Jul 2000 05:07:26 +0900
wanderlust2 (2.3+0pre20000623-1) unstable; urgency=low
* New upstream release
* debian/emacsen-install: install utils/sasl/*.elc to ${ELCDIR}
-- Takuo KITAME <kitame@northeye.org> Sat, 24 Jun 2000 01:21:10 +0900
wanderlust2 (2.3+0pre20000617-1) unstable; urgency=low
* New upstream release
-- Takuo KITAME <kitame@stormix.com> Sat, 17 Jun 2000 16:34:53 +0900
wanderlust2 (2.3+0pre20000616-1) unstable; urgency=low
* New upstream release (CVS as 2000.06.16)
-- Takuo KITAME <kitame@stormix.com> Sat, 17 Jun 2000 02:58:05 +0900
wanderlust2 (2.3+0pre20000521-1) unstable; urgency=low
* New upstream release
-- Takuo KITAME <kitame@stormix.com> Sun, 21 May 2000 11:34:22 +0900
wanderlust2 (2.3+0pre20000510-1) unstable; urgency=low
* New upstream release
-- Takuo KITAME <kitame@stormix.com> Sun, 14 May 2000 07:21:49 +0900
wanderlust2 (2.2.18.stable1.1.0-1) unstable; urgency=low
* New upstream release
-- Takuo KITAME <kitame@northeye.org> Fri, 24 Mar 2000 16:17:22 +0900
wanderlust2 (2.2.18+stable.1.1.0pre6-1) unstable; urgency=low
* New upstream release
-- Takuo KITAME <kitame@northeye.org> Thu, 23 Mar 2000 19:13:06 +0900
wanderlust2 (2.2.18+stable.1.1.0pre5-1) unstable; urgency=low
* New upstream release
-- Takuo KITAME <kitame@northeye.org> Wed, 22 Mar 2000 22:09:48 +0900
wanderlust2 (2.2.18+stable.1.1.0pre4-1) unstable; urgency=low
* New upstream release
-- Takuo KITAME <kitame@northeye.org> Tue, 14 Mar 2000 21:06:27 +0900
wanderlust2 (2.2.18+stable.1.1.0pre3-1) unstable; urgency=low
* New upstream release
-- Takuo KITAME <kitame@northeye.org> Fri, 10 Mar 2000 11:44:30 +0900
wanderlust2 (2.2.18-1) unstable; urgency=low
* New upstream release
-- Takuo KITAME <kitame@northeye.org> Fri, 18 Feb 2000 20:39:24 +0900
wanderlust2 (2.2.17+20000208-1) unstable; urgency=low
* New upstream release with patches on WL-ML(from released day to 2000.02.08)
-- Takuo KITAME <kitame@northeye.org> Wed, 9 Feb 2000 06:37:11 +0900
wanderlust2 (2.2.16-1) unstable; urgency=low
* New upstream release
-- Takuo KITAME <kitame@northeye.org> Thu, 27 Jan 2000 03:46:45 +0900
wanderlust2 (2.2.15+20000111-1) unstable; urgency=low
* New upstream release.
* applied patch for wl-draft.el.([Wanderlust:03792],[Wanderlust:03793])
-- Takuo KITAME <kitame@northeye.org> Wed, 12 Jan 2000 12:08:58 +0900
wanderlust2 (2.2.13-1) unstable; urgency=low
* New upstream release
-- Takuo KITAME <kitame@northeye.org> Wed, 29 Dec 1999 12:54:31 +0900
wanderlust2 (2.2.12-1) unstable; urgency=low
* New upstream release
-- Takuo KITAME <kitame@northeye.org> Tue, 7 Dec 1999 15:07:29 +0900
wanderlust2 (2.2.11-1) unstable; urgency=low
* New upstream release
-- Takuo KITAME <kitame@northeye.org> Mon, 6 Dec 1999 21:40:45 +0900
wanderlust2 (2.2.10-1) unstable; urgency=low
* New upstream release
-- Takuo KITAME <kitame@northeye.org> Sat, 4 Dec 1999 11:57:12 +0900
wanderlust2 (2.2.9-2) unstable; urgency=low
* install wl-log.xbm.
-- Takuo KITAME <kitame@northeye.org> Thu, 18 Nov 1999 16:30:49 +0900
wanderlust2 (2.2.9-1) unstable; urgency=low
* New upstream release
-- Takuo KITAME <kitame@northeye.org> Tue, 16 Nov 1999 16:04:11 +0900
wanderlust2 (2.2.8-1) unstable; urgency=low
* New upstream release
-- Takuo KITAME <kitame@northeye.org> Tue, 9 Nov 1999 11:35:29 +0900
wanderlust2 (2.2.7-1) unstable; urgency=low
* New upstream release
-- Takuo KITAME <kitame@northeye.org> Thu, 4 Nov 1999 20:11:24 +0900
wanderlust2 (2.2.6-2) unstable; urgency=low
* debian/rules: install WL-ELS. (closes: Bug#49109)
-- Takuo KITAME <kitame@northeye.org> Thu, 4 Nov 1999 04:31:54 +0900
wanderlust2 (2.2.6-1) unstable; urgency=low
* New upstream release
-- Takuo KITAME <kitame@northeye.org> Wed, 3 Nov 1999 02:33:52 +0900
wanderlust2 (2.2.5-1) unstable; urgency=low
* New upstream release
-- Takuo KITAME <kitame@northeye.org> Mon, 25 Oct 1999 10:31:39 +0900
wanderlust2 (2.2.4-1) unstable; urgency=low
* New upstream release
-- Takuo KITAME <kitame@northeye.org> Tue, 19 Oct 1999 14:32:06 +0900
wanderlust2 (2.2.3-4) unstable; urgency=low
* emacsen-common: any FLAVOR allowed (except emacs).
-- Takuo KITAME <kitame@northeye.org> Tue, 19 Oct 1999 11:37:46 +0900
wanderlust2 (2.2.3-3) unstable; urgency=low
* emacsen-install: a little modified.
-- Takuo KITAME <kitame@northeye.org> Thu, 14 Oct 1999 01:44:28 +0900
wanderlust2 (2.2.3-2) unstable; urgency=low
* Add X resource for Japanese.
-- Takuo KITAME <kitame@debian.gr.jp> Wed, 13 Oct 1999 05:01:38 +0900
wanderlust2 (2.2.3-1) unstable; urgency=low
* New upstream release
-- Takuo KITAME <kitame@northeye.org> Wed, 13 Oct 1999 00:58:09 +0900
wanderlust2 (2.2.2-3) unstable; urgency=low
* control: Standards-Version: 3.0.0
* control: Depends: (mule supported emacsen)
* emacsen-install: new version script.
-- Takuo KITAME <kitame@northeye.org> Tue, 12 Oct 1999 06:38:44 +0900
wanderlust2 (2.2.2-2) unstable; urgency=low
* Fixed: does not splash wl-logo at startup (xemacs)
-- Takuo KITAME <kitame@northeye.org> Sun, 10 Oct 1999 03:37:46 +0900
wanderlust2 (2.2.2-1) unstable; urgency=low
* New upstream release
-- Takuo KITAME <kitame@northeye.org> Tue, 21 Sep 1999 22:53:51 +0900
wanderlust2 (2.2.1-1) unstable; urgency=low
* New upstream release
-- Takuro KITAME <kitame@debian.or.jp> Tue, 14 Sep 1999 21:22:30 +0900
wanderlust2 (2.2.0-1) unstable; urgency=low
* New upstream release
-- Takuro KITAME <kitame@debian.or.jp> Tue, 14 Sep 1999 03:42:07 +0900
wanderlust2 (2.1.5-1) unstable; urgency=low
* New upstream release
* for FHS compliance
-- Takuro KITAME <kitame@debian.or.jp> Sat, 11 Sep 1999 11:53:54 +0900
wanderlust2 (2.1.4-1) unstable; urgency=low
* New upstream release
-- Takuro KITAME <kitame@debian.or.jp> Wed, 25 Aug 1999 22:34:16 +0900
wanderlust2 (2.1.3-4) unstable; urgency=low
* Removed Depends: |tm . tm is obsolete package.
-- Takuro KITAME <kitame@debian.or.jp> Mon, 9 Aug 1999 04:58:32 +0900
wanderlust2 (2.1.3-3) unstable; urgency=low (high for xemacs20)
* Misstake of 2.1.3-2 fixed. byte-compile with semi (not tm ;-))
-- Takuro KITAME <kitame@debian.or.jp> Sun, 8 Aug 1999 16:00:30 +0900
wanderlust2 (2.1.3-2) unstable; urgency=low (high for xemacs20)
* Fixed failing byte compile with xemacs20
-- Takuro KITAME <kitame@debian.or.jp> Sun, 8 Aug 1999 03:54:11 +0900
wanderlust2 (2.1.3-1) unstable; urgency=low
* New upstream release
-- Takuro KITAME <kitame@debian.or.jp> Thu, 5 Aug 1999 01:45:34 +0900
wanderlust2 (2.1.2-1) unstable; urgency=low
* New upstream release
-- Takuro KITAME <kitame@debian.or.jp> Thu, 15 Jul 1999 22:46:05 +0900
wanderlust2 (2.1.1-1) unstable; urgency=low
* New upstream release
-- Takuro KITAME <kitame@debian.or.jp> Tue, 13 Jul 1999 22:11:34 +0900
wanderlust2 (2.1.0-1) unstable; urgency=low
* New upstream release
-- Takuro KITAME <kitame@debian.or.jp> Wed, 7 Jul 1999 00:03:43 +0900
wanderlust2 (2.0.1-1) unstable; urgency=low
* New upstream release
-- Takuro KITAME <kitame@debian.or.jp> Thu, 24 Jun 1999 23:23:49 +0900
wanderlust2 (2.0.0-2) unstable; urgency=low
* emacsen-{install,remove} scripts modified for xemacs21
-- Takuro KITAME <kitame@debian.or.jp> Sun, 20 Jun 1999 22:33:25 +0900
wanderlust2 (2.0.0-1) unstable; urgency=low
* New Upstream release. (Unstable Version)
-- Takuro KITAME <kitame@debian.or.jp> Mon, 14 Jun 1999 02:41:08 +0900
wl (1.0.2-1) unstable; urgency=low
* New upstream release
-- Takuro KITAME <kitame@debian.or.jp> Fri, 11 Jun 1999 13:39:45 +0900
wl (1.0.1-1) unstable; urgency=low
* New upstream release
-- Takuro KITAME <kitame@debian.or.jp> Tue, 1 Jun 1999 13:24:42 +0900
wl (1.0.0-1) unstable; urgency=low
* New upstream release
-- Takuro KITAME <kitame@debian.or.jp> Wed, 19 May 1999 01:39:06 +0900
wl (0.10.3+1.0.0.pre0-1) unstable; urgency=low
* New upstream release
-- Takuro KITAME <kitame@debian.or.jp> Mon, 17 May 1999 22:42:56 +0900
wl (0.10.3-1) unstable; urgency=low
* New upstream release
-- Takuro KITAME <kitame@debian.or.jp> Mon, 17 May 1999 19:45:41 +0900
wl (0.10.2-1) unstable; urgency=low
* New upstream release
-- Takuro KITAME <kitame@debian.or.jp> Wed, 12 May 1999 19:59:41 +0900
wl (0.10.1-3) unstable; urgency=low
* Refix compile error with xemacs20 on unset LANG or LANG=C .
(mistake on 0.10.1-1, -2)
-- Takuro KITAME <kitame@debian.or.jp> Mon, 10 May 1999 23:35:53 +0900
wl (0.10.1-2) unstable; urgency=low
* Fixed problems with emacs19.
-- Takuro KITAME <kitame@debian.or.jp> Mon, 10 May 1999 17:31:02 +0900
wl (0.10.1-1) unstable; urgency=low
* New upstream release
-- Takuro KITAME <kitame@debian.or.jp> Mon, 10 May 1999 14:25:39 +0900
wl (0.10.0-1) unstable; urgency=low
* New upstream release
-- Takuro KITAME <kitame@debian.or.jp> Tue, 27 Apr 1999 21:42:34 +0900
wl (0.9.8-2) unstable; urgency=low (high for xemacs20)
* # Fix compile error with xemacs20 on unset LANG or LANG=C .
(Added 'export LANG=ja_JP' in emacsen-install script.) (Bug#36672)
-- Takuro KITAME <kitame@debian.or.jp> Mon, 26 Apr 1999 05:01:49 +0900
wl (0.9.8-1) unstable; urgency=low
* New upstream release
-- Takuro KITAME <kitame@debian.or.jp> Tue, 13 Apr 1999 09:39:40 +0900
wl (0.9.7-1) unstable; urgency=low
* New upstream release
-- Takuro KITAME <kitame@debian.or.jp> Sat, 20 Mar 1999 22:39:20 +0900
wl (0.9.6-1) unstable; urgency=low
* New upstream release
* Compilation log will be redirect to file.
-- Takuro KITAME <kitame@debian.or.jp> Thu, 4 Mar 1999 01:35:19 +0900
wl (0.9.5-2) unstable; urgency=low
* Fixed typo in debian/control.
-- Takuro KITAME <kitame@debian.or.jp> Mon, 1 Mar 1999 16:13:14 +0900
wl (0.9.5-1) unstable; urgency=low
* New upstream release
-- Takuro KITAME <kitame@debian.or.jp> Thu, 25 Feb 1999 20:48:58 +0900
wl (0.9.4-3) unstable; urgency=low
* Modified Description field in debian/control
-- Takuro KITAME <kitame@debian.or.jp> Wed, 17 Feb 1999 01:07:58 +0900
wl (0.9.4-2) unstable; urgency=low
* Added
(autoload 'wl-draft "wl" "Write draft with Wanderlust." t)
in /etc/emacs/site-start.d/51wl.el
-- Takuro KITAME <kitame@debian.or.jp> Tue, 16 Feb 1999 11:36:34 +0900
wl (0.9.4-1) unstable; urgency=low
* New upstream release
-- Takuro KITAME <kitame@debian.or.jp> Wed, 13 Jan 1999 23:34:08 +0900
wl (0.9.3-3) unstable; urgency=high
* Fixed didn't compile problem.
-- Takuro KITAME <kitame@debian.or.jp> Wed, 07 Jan 1998 16:38:40 +0900
wl (0.9.3-2) unstable; urgency=low
* s/gtar/tar/ in elmo/elmo-archive.el
-- Takuro KITAME <kitame@debian.or.jp> Tue, 06 Jan 1998 16:46:34 +0900
wl (0.9.3-1) unstable; urgency=low
* New upstream release
-- Takuro KITAME <kitame@debian.or.jp> Fri, 25 Dec 1998 02:32:01 +0900
wl (0.9.2-1) unstable; urgency=low
* New upstream release
-- Takuro KITAME <kitame@debian.or.jp> Fri, 18 Dec 1998 02:56:54 +0900
wl (0.9.1-4) unstable; urgency=high
* modified dependency info.
-- Takuro KITAME <kitame@debian.or.jp> Fri, 11 Dec 1998 23:00:43 +0900
wl (0.9.1-3) unstable; urgency=high
* added add-semi-path.el for byte compile on xemacs20.
-- Takuro KITAME <kitame@debian.or.jp> Fri, 11 Dec 1998 12:25:12 +0900
wl (0.9.1-2) unstable; urgency=high
* with SEMI on XEmacs problem fixed.
-- Takuro KITAME <kitame@debian.or.jp> Fri, 11 Dec 1998 11:01:25 +0900
wl (0.9.1-1) unstable; urgency=low
* New upstream release
-- Takuro KITAME <kitame@debian.or.jp> Fri, 11 Dec 1998 10:14:09 +0900
wl (0.9.0-1) unstable; urgency=low
* New upstream release
-- Takuro KITAME <kitame@debian.or.jp> Thu, 10 Dec 1998 22:49:09 +0900
wl (0.8.8-1) unstable; urgency=low
* New upstream release
-- Takuro KITAME <kitame@debian.or.jp> Wed, 2 Dec 1998 16:40:11 +0900
wl (0.8.7-2) experimental; urgency=low
* Fixed Bug#JP/683
-- Takuro KITAME <kitame@debian.or.jp> Tue, 1 Dec 1998 08:43:08 +0900
wl (0.8.7-1) unstable; urgency=low
* New upstream release
-- Takuro KITAME <kitame@debian.or.jp> Mon, 30 Nov 1998 18:26:13 +0900
wl (0.8.6-1) experimental; urgency=low
* New upstream release
-- Takuro KITAME <kitame@debian.or.jp> Fri, 27 Nov 1998 20:28:15 +0900
wl (0.8.5-1) experimental; urgency=low
* New upstream release
-- Takuro KITAME <kitame@debian.or.jp> Thu, 26 Nov 1998 08:41:48 +0900
wl (0.8.4-1) unstable; urgency=low
* New upstream release
-- Takuro KITAME <kitame@debian.or.jp> Tue, 24 Nov 1998 21:06:43 +0900
wl (0.8.3-1) unstable; urgency=low
* New upstream release
-- Takuro KITAME <kitame@debian.or.jp> Tue, 24 Nov 1998 17:27:37 +0900
wl (0.8.1-4) frozen-jp unstable-jp; urgency=low
* Display wl-logo.xpm at startup wl on xemacs20.
-- Takuro KITAME <kitame@debian.or.jp> Fri, 20 Nov 1998 05:35:12 +0900
wl (0.8.1-3) frozen-jp unstable-jp; urgency=low
* Fixed typo of distribution filed. (froaen -> frozen).
-- Takuro KITAME <kitame@debian.or.jp> Sat, 14 Nov 1998 21:53:22 +0900
wl (0.8.1-2) froaen-jp unstable-jp; urgency=high
* Fixed complie problem.
-- Takuro KITAME <kitame@debian.or.jp> Sat, 14 Nov 1998 21:25:03 +0900
wl (0.8.1-1) unstable; urgency=low
* New upstream release.
-- Takuro KITAME <kitame@debian.or.jp> Wed, 11 Nov 1998 13:07:03 +0900
wl (0.8.0-2) unstable; urgency=low
* Applid Masahiro MURATA <muse@ba2.so-net.ne.jp> 's patch
elmo-nntp.el.diff
* Modified Dependency info.
apel(>=9.8), flim(>=1.11.3), semi(>=1.10.1)
-- Takuro KITAME <kitame@debian.or.jp> Wed, 4 Nov 1998 14:55:08 +0900
wl (0.8.0-1) unstable; urgency=low
* New upstream release
-- Takuro KITAME <kitame@debian.or.jp> Wed, 4 Nov 1998 14:55:08 +0900
wl (0.7.4-1) unstable; urgency=low
* New upstream release
-- Takuro KITAME <kitame@debian.or.jp> Thu, 29 Oct 1998 13:10:24 +0900
wl (0.7.3-1) unstable; urgency=low
* New upstream release
-- Takuro KITAME <kitame@debian.or.jp> Thu, 22 Oct 1998 08:55:36 +0900
wl (0.7.2-1) unstable; urgency=low
* New upstream release
-- Takuro KITAME <kitame@debian.or.jp> Wed, 14 Oct 1998 16:49:48 +0900
wl (0.7.1-1) unstable; urgency=low
* New upstream release
-- Takuro KITAME <kitame@debian.or.jp> Mon, 12 Oct 1998 21:55:08 +0900
wl (0.7.0-1) unstable; urgency=low
* New upstream release
-- Takuro KITAME <kitame@debian.or.jp> Tue, 6 Oct 1998 08:44:14 +0900
wl (0.6.6-1) unstable; urgency=low
* New upstream release
-- Takuro KITAME <kitame@debian.or.jp> Thu, 1 Oct 1998 09:51:13 +0900
wl (0.6.5-3) unstable; urgency=low
* Install wl-ja.info. (Bug#JP/560)
-- Takuro KITAME <kitame@debian.or.jp> Mon, 28 Sep 1998 15:53:10 +0900
wl (0.6.5-2) unstable; urgency=low
* Added some documents in /usr/doc/wl/
-- Takuro KITAME <kitame@debian.or.jp> Sat, 26 Sep 1998 09:45:48 +0900
wl (0.6.5-1) unstable; urgency=low
* New upstream release
-- Takuro KITAME <kitame@debian.or.jp> Thu, 24 Sep 1998 13:47:54 +0900
wl (0.6.4-1) unstable; urgency=low
* New upstream release
-- Takuro KITAME <kitame@debian.or.jp> Mon, 21 Sep 1998 17:14:36 +0900
wl (0.6.3-1) unstable; urgency=low
* New upstream release
-- Takuro KITAME <kitame@debian.or.jp> Fri, 18 Sep 1998 11:03:04 +0900
wl (0.6.2-1) unstable; urgency=low
* New upstream release
-- Takuro KITAME <kitame@debian.or.jp> Thu, 17 Sep 1998 01:44:43 +0900
wl (0.6.1-4) unstable; urgency=low
* Modified Porvides field. (imap4-client -> imap-client)
-- Takuro KITAME <kitame@debian.or.jp> Tue, 15 Sep 1998 02:04:10 +0900
wl (0.6.1-3) unstable; urgency=low
* Maintainer-release.
-- Takuro KITAME <kitame@debian.or.jp> Tue, 15 Sep 1998 01:18:08 +0900
wl (0.6.1-1.0) unstable; urgency=low
* New upstream release.
* non maintainer release.
-- Masato Taruishi <taru@debian.or.jp> Sun, 13 Sep 1998 01:41:12 +0900
wl (0.6.0-1) unstable; urgency=low
* New upstream release
-- Takuro KITAME <kitame@debian.or.jp> Thu, 10 Sep 1998 10:27:07 +0900
wl (0.5.4-1) unstable; urgency=low
* New upstream release
-- Takuro KITAME <kitame@debian.or.jp> Fri, 4 Sep 1998 11:55:23 +0900
wl (0.5.3-1) unstable; urgency=low
* New upstream release
-- Takuro KITAME <kitame@debian.or.jp> Wed, 2 Sep 1998 10:47:49 +0900
wl (0.5.2-1) unstable; urgency=low
* New upstream release
-- Takuro KITAME <kitame@debian.or.jp> Wed, 2 Sep 1998 00:26:38 +0900
wl (0.5.1-3) unstable; urgency=low
* Fixed Bug#JP/533
-- Takuro KITAME <kitame@debian.or.jp> Tue, 1 Sep 1998 20:26:28 +0900
wl (0.5.1-2) unstable; urgency=low
* Added elmo/elmo-filter.el
-- Takuro KITAME <kitame@debian.or.jp> Mon, 31 Aug 1998 15:00:56 +0900
wl (0.5.1-1) unstable; urgency=low
* New upstream release
-- Takuro KITAME <kitame@debian.or.jp> Mon, 31 Aug 1998 14:26:42 +0900
wl (0.4.4-1) unstable; urgency=low
* New upstream release
-- Takuro KITAME <kitame@debian.or.jp> Mon, 17 Aug 1998 22:36:42 +0900
wl (0.4.3-1) unstable; urgency=low
* New upstream release
-- Takuro KITAME <kitame@debian.or.jp> Tue, 11 Aug 1998 01:16:57 +0900
wl (0.4.2-1) experimental; urgency=low
* New upstream release
-- Takuro KITAME <kitame@debian.or.jp> Sun, 9 Aug 1998 02:12:15 +0900
wl (0.4.1-1) experimental; urgency=low
* New upstream release
-- Takuro KITAME <kitame@debian.or.jp> Thu, 6 Aug 1998 10:27:56 +0900
wl (0.3.6-1) experimental; urgency=low
* New upstream release
-- Takuro KITAME <kitame@debian.or.jp> Thu, 23 Jul 1998 23:00:53 +0900
wl (0.3.5-2) unstable; urgency=low
* Applied MURATA fix and extend patch.
-- Takuro KITAME <kitame@debian.or.jp> Thu, 23 Jul 1998 11:18:40 +0900
wl (0.3.5-1) unstable; urgency=low
* New upstream release
-- Takuro KITAME <kitame@debian.or.jp> Tue, 21 Jul 1998 11:38:48 +0900
wl (0.3.4-1) unstable; urgency=low
* New upstream release
-- Takuro KITAME <kitame@debian.or.jp> Thu, 16 Jul 1998 08:42:28 +0900
wl (0.3.3-1) unstable; urgency=low
* New upstream release
-- Takuro KITAME <kitame@debian.or.jp> Mon, 13 Jul 1998 18:51:24 +0900
wl (0.3.1-1) unstable; urgency=low
* New upstream release
-- Takuro KITAME <kitame@debian.or.jp> Fri, 3 Jul 1998 11:22:40 +0900
wl (0.3.0-1) unstable; urgency=low
* New upstream release
-- Takuro KITAME <kitame@debian.or.jp> Thu, 2 Jul 1998 16:13:58 +0900
wl (0.2.2-1) unstable; urgency=low
* New upstream release
-- Takuro KITAME <kitame@debian.or.jp> Tue, 30 Jun 1998 10:20:35 +0900
wl (0.2.1-2) unstable; urgency=low
* Included sample.wlrc
* Dependency ploblems fixed
-- Takuro KITAME <kitame@debian.or.jp> Wed, 24 Jun 1998 18:45:33 +0900
wl (0.2.1-1) unstable; urgency=low
* Initial Release.
-- Takuro KITAME <kitame@debian.or.jp> Wed, 24 Jun 1998 10:53:33 +0900
|