File: changelog

package info (click to toggle)
wl 2.15.9%2B0.20141019-6
  • links: PTS, VCS
  • area: main
  • in suites: stretch
  • size: 9,720 kB
  • ctags: 6,246
  • sloc: lisp: 50,500; sh: 165; makefile: 141
file content (1207 lines) | stat: -rw-r--r-- 35,403 bytes parent folder | download
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
wl (2.15.9+0.20141019-6) unstable; urgency=medium

  * New patch 90_truncate-lines.patch to refer truncate-lines

 -- Tatsuya Kinoshita <tats@debian.org>  Sun, 08 Jan 2017 20:39:58 +0900

wl (2.15.9+0.20141019-5) unstable; urgency=medium

  * New patch 80_pwgarbage.patch to not let passwords become a garbage
  * Prefer emacs-nox over emacs
  * Update debian/copyright

 -- Tatsuya Kinoshita <tats@debian.org>  Thu, 05 Jan 2017 23:17:52 +0900

wl (2.15.9+0.20141019-4) 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:43:34 +0900

wl (2.15.9+0.20141019-3) unstable; urgency=medium

  * New patch 60_elmo-string.patch to fix typo for elmo-string
  * Update debian/copyright
  * Update Vcs-Browser to https
  * Update Standards-Version to 3.9.8
  * Accept emacs25
  * New patch 70_xemacs.patch to prevent errors on XEmacs

 -- Tatsuya Kinoshita <tats@debian.org>  Sun, 16 Oct 2016 12:44:17 +0900

wl (2.15.9+0.20141019-2) unstable; urgency=medium

  * New patch 50_imap4-uid.patch to fix typo

 -- Tatsuya Kinoshita <tats@debian.org>  Sun, 09 Aug 2015 13:03:52 +0900

wl (2.15.9+0.20141019-1) unstable; urgency=medium

  * Imported Upstream version 2.15.9+0.20141019
  * Drop 40_Add-coding-tag.patch
  * Drop 10_elmo-intern-soft.patch
  * New patch 10_docfix.patch from upstream
  * New patch 40_idle-timer.patch to fix wl-biff
  * Update debian/copyright
  * Add maildir-utils and notmuch to Suggests
  * Mention gnutls.el, tls.el and ssl.el in docs
  * Update Vcs-Browser

 -- Tatsuya Kinoshita <tats@debian.org>  Sun, 26 Apr 2015 23:17:48 +0900

wl (2.15.9+0.20120411-5) unstable; urgency=medium

  * Update ssl-program-arguments to disable SSLv3 [CVE-2014-3566]
  * Update debian/copyright
  * Update Standards-Version to 3.9.6

 -- Tatsuya Kinoshita <tats@debian.org>  Thu, 16 Oct 2014 18:53:37 +0900

wl (2.15.9+0.20120411-4) unstable; urgency=medium

  * Depend on emacsen-common 2.0.8
  * Install a compat file with emacsen-compat
  * Update debian/copyright

 -- Tatsuya Kinoshita <tats@debian.org>  Sun, 24 Aug 2014 18:52:39 +0900

wl (2.15.9+0.20120411-3) 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 20:17:42 +0900

wl (2.15.9+0.20120411-2) unstable; urgency=low

  * New patch 40_Add-coding-tag.patch
  * Add Vcs-Git and Vcs-Browser

 -- Tatsuya Kinoshita <tats@debian.org>  Sat, 22 Jun 2013 21:21:55 +0900

wl (2.15.9+0.20120411-1) unstable; urgency=low

  * Imported Upstream version 2.15.9+0.20120411
    - Switch upstream to the development snapshot, because the upstream
      version 2.14.0 released on 2005-03-25 is too old and hard to maintain.
      The upstream tarball is from Debian wheezy, package wl-beta.
  * debian/*: Sync with wl-beta

 -- Tatsuya Kinoshita <tats@debian.org>  Tue, 07 May 2013 21:34:52 +0900

wl (2.14.0-12) unstable; urgency=low

  * debian/emacsen-startup.in: Set ssl-program-name and ssl-program-arguments
    to use gnutls-cli instead of openssl s_client. (closes: #294658)
  * debian/README.Debian.in: Add information to customize gnutls-cli options.
  * debian/control: Add gnutls-bin to Suggests.
  * debian/patches/20_ssl-cert-info.patch: Use "opsnssl" instead of
    ssl-program-name for ssl-certificate-information.
  * debian/patches/10_elmo-intern-soft.patch: Define elmo-intern-soft to fix
    unknown archiver type.  Patch from [wl:14407] on 2010-03-02 by Katsuyoshi
    Ohara.
  * debian/patches/0*.patch: Generated from applied patches.
  * Switch to dpkg-source 3.0 (quilt) format.

 -- Tatsuya Kinoshita <tats@debian.org>  Sun, 20 Jun 2010 21:35:01 +0900

wl (2.14.0-11) unstable; urgency=low

  * 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:43:49 +0900

wl (2.14.0-10) unstable; urgency=low

  * debian/emacsen-*: Rewritten.
    - Don't install utf7.el for Emacs 23.
    - 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.
    - Move `Homepage:' from Description to the header.
    - Update Standards-Version to 3.8.1.
  * debian/rules: Use dh_prep instead of `dh_clean -k'.
  * debian/copyright: Updated.

 -- Tatsuya Kinoshita <tats@debian.org>  Thu, 09 Apr 2009 00:08:33 +0900

wl (2.14.0-9) unstable; urgency=low

  * debian/rules: Use emacs instead of emacs21.

 -- Tatsuya Kinoshita <tats@debian.org>  Mon, 09 Jul 2007 22:02:08 +0900

wl (2.14.0-8) 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:27:01 +0900

wl (2.14.0-7) 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.

 -- Tatsuya Kinoshita <tats@debian.org>  Mon,  7 May 2007 23:02:47 +0900

wl (2.14.0-6) unstable; urgency=medium

  * elmo-pop3.el (elmo-pop3-auth-apop): Use more strict regexp.
    [CVE-2007-1558]
  * debian/control: Conflict with wanderlust2.
  * Rename debian/env.el to debian/__env.el.

 -- Tatsuya Kinoshita <tats@debian.org>  Tue, 24 Apr 2007 23:14:01 +0900

wl (2.14.0-5) unstable; urgency=low

  * wl/wl-draft.el (wl-smtp-extension-bind): Don't bind smtp-end-of-line.
    (from CVS 2006-02-09 Yoichi NAKAYAMA, closes: #419187)
  * debian/emacsen-install.in: Don't byte-compile bbdb-wl.el.
  * debian/control:
    - (Description): Use `Homepage:'.
    - (Priority): optional -> extra.
  * debian/watch:
    - Set Action to uupdate.
    - Use mirror site.
  * debian/copyright:
    - Change URL of mirror site.
    - Mention Debian packaging condition.

 -- Tatsuya Kinoshita <tats@debian.org>  Sat, 14 Apr 2007 19:13:17 +0900

wl (2.14.0-4) unstable; urgency=medium

  * elmo/elmo-imap4.el: Fix "IMAP error: No `OK' response from server",
    patch from upstream CVS version. (closes: #405284)

 -- Tatsuya Kinoshita <tats@debian.org>  Tue,  2 Jan 2007 21:08:54 +0900

wl (2.14.0-3) unstable; urgency=low

  * debian/control (Build-Depends): Depend on debhelper version 5.
  * debian/compat: 3 -> 5.
  * debian/control (Standards-Version): 3.6.2 -> 3.7.2.
  * debian/control (Maintainer): tats@vega.ocn.ne.jp -> tats@debian.org.
  * debian/copyright: Ditto.

 -- Tatsuya Kinoshita <tats@debian.org>  Thu,  8 Jun 2006 01:21:26 +0900

wl (2.14.0-2) unstable; urgency=low

  * 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 13:45:19 +0900

wl (2.14.0-1) unstable; urgency=low

  * New upstream release. (closes: #293730)
    - wl-draft-folder can be set to Maildir folder (closes: #278140)
  * 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.
  * debian/README.Debian: Update the "Extra packages" section.

 -- Tatsuya Kinoshita <tats@vega.ocn.ne.jp>  Sat,  4 Jun 2005 15:38:08 +0900

wl (2.10.1+0.20040728-2) unstable; urgency=low

  * 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 (2.10.1+0.20040728-1) unstable; urgency=low

  * New upstream release. (CVS snapshot, wl-2_10 branch on 2004-07-28 at
    23:02 +0900)
    - wl-summary.el (wl-summary-insert-thread): Fixed the logic to
      detect thread loop.

 -- Tatsuya Kinoshita <tats@vega.ocn.ne.jp>  Thu, 29 Jul 2004 19:08:51 +0900

wl (2.10.1+0.20040721-1) unstable; urgency=medium

  * New upstream release. (CVS snapshot, wl-2_10 branch 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 (2.10.1+0.20040524-1) unstable; urgency=low

  * New upstream release. (CVS snapshot, wl-2_10 branch on 2004-05-24 at
    23:50 +0900)
  * debian/00wl.patch*: Removed. (merged into the upstream wl-2_10)
  * debian/emacsen-install.in: Create *.el symlinks.
  * debian/copyright: Updated.

 -- Tatsuya Kinoshita <tats@vega.ocn.ne.jp>  Sun, 30 May 2004 21:03:00 +0900

wl (2.10.1-7) unstable; urgency=low

  * wl-highlight.el (wl-highlight-signature-search): Don't use
    re-search-backward for a long word since it is possible to crash
    XEmacs because of a bug. (patch from upstream CVS on 2004-02-19)

 -- Tatsuya Kinoshita <tats@vega.ocn.ne.jp>  Sun,  7 Mar 2004 00:40:45 +0900

wl (2.10.1-6) unstable; urgency=low

  * wl-draft.el (wl-draft-highlight-and-recenter): Redraw frame just
    before calling `recenter' in order to cope with an XEmacs bug.
    (patch from upstream CVS on 2004-01-16)

 -- Tatsuya Kinoshita <tats@vega.ocn.ne.jp>  Tue,  3 Feb 2004 07:50:01 +0900

wl (2.10.1-5) unstable; urgency=low

  * wl/wl-address.el (wl-address-delete): Fix mis-deleting. (patch from
    upstream CVS on 2004-01-03)
  * debian/README.Debian: Describe extra packages.
  * debian/control (Suggests): Add `namazu2'.
  * debian/copyright: Further clarification.

 -- Tatsuya Kinoshita <tats@vega.ocn.ne.jp>  Sun,  4 Jan 2004 15:12:39 +0900

wl (2.10.1-4) unstable; urgency=medium

  * debian/emacsen-startup.in: Don't fail when /etc/mailname doesn't
    exist on XEmacs. (closes: #221473)

 -- Tatsuya Kinoshita <tats@vega.ocn.ne.jp>  Fri, 21 Nov 2003 00:30:16 +0900

wl (2.10.1-3) unstable; urgency=low

  * debian/control (Build-Depends-Indep): Depend on emacs21 instead of
    emacs20.
  * debian/rules: Use emacs21 instead of emacs20.
  * debian/README.Debian.in: New file.  Describe how to set mail-user-agent.
  * debian/rules: Install README.Debian.
  * debian/emacsen-startup.in: Evaluate the user-mail-address function for
    XEmacs.
  * 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/rules: Don't modify `elmo/elmo-archive.el'.
  * debian/emacsen-install.in: Set file mode to 644 explicitly.
  * debian/emacsen-install.in: Check semi/compile-stamp.
  * debian/control (Suggests): Add `bitmap-mule'.
  * debian/control (Suggests): Add `mhc'.
  * debian/control (Suggests): Really add `mule-ucs'.
  * debian/control (Replaces): Add `wl-beta'.
  * debian/emacsen-install.in (DOCDIR): Removed.
  * debian/copyright: Revised.
  * 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>  Wed, 12 Nov 2003 00:43:17 +0900

wl (2.10.1-2) unstable; urgency=low

  * wl/wl-draft.el (wl-draft-normal-send-func): Fixed bug for removing empty
    lines. (apply patch from upstream cvs, wl-2_10 branch)
  * elmo/elmo-imap4.el (elmo-imap4-folder-diff-plugged): Fix incomplete
    elmo-use-select-to-update-status (apply patch from Bug#145934, thanks
    to David Smith <ultrasoul@ultrasoul.com>)
  * debian/emacsen-startup: Set threading characters for nomule emacsen.
  * debian/control (Depends): Add `make'.
  * debian/control (Standards-Version): 3.6.0.
  * debian/preinst.in: Support for wl and wl-beta.
  * debian/copyright: Revised.
  * debian/*: Merge wl and wl-beta.
    - Cleanup installation scripts.
    - Install NEWS* files in the site-lisp directory.
    - debian/copyright: Revised.
    - debian/control (Suggests): Add `mule-ucs'.

 -- Tatsuya Kinoshita <tats@vega.ocn.ne.jp>  Mon, 28 Jul 2003 21:40:03 +0900

wl (2.10.1-1) unstable; urgency=low

  * New upstream release
  * 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)
  * Rewrite Info files installation.
    - Fix duplicate menuentry. (closes: #199676)
  * Don't reject xemacs21-nomule. (reject Debian patch for WL-MK)
  * Cleanup installation scripts.
  * Ready for xemacs21-{mule,nomule} flavors.
  * debian/emacsen-install: Recompile mhc for mhc-wl.
  * debian/emacsen-startup: Cleanup.
  * 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 (Standards-Version): 3.5.2 -> 3.5.10.
  * debian/control (Description): Revised.
  * debian/copyright: Revised.
  * debian/env.el: Use prefer-coding-system instead of
    set-default-coding-systems.
  * debian/README.Debian: Removed.
  * New maintainer. (with previous maintainer's consent)

 -- Tatsuya Kinoshita <tats@vega.ocn.ne.jp>  Sun,  6 Jul 2003 22:19:31 +0900

wl (2.10.0-1) unstable; urgency=low

  * New upstream release (closes: #177154)

 -- Takuo KITAME <kitame@debian.org>  Thu, 23 Jan 2003 13:21:32 +0900

wl (2.8.1-6) unstable; urgency=low

  * change Maintainer address to @debian.org

 -- Takuo KITAME <kitame@debian.org>  Wed, 13 Nov 2002 12:58:43 +0900

wl (2.8.1-5) unstable; urgency=low

  * bbdb-wl.el from CVS trunk (closes: #144494)

 -- Takuo KITAME <kitame@northeye.org>  Fri, 26 Apr 2002 13:03:35 +0900

wl (2.8.1-4) unstable; urgency=low

  * emacsen-startup:
    - remove (setq mime-edit-split-message nil).
    It should be in semi package. (closes: #132303)

 -- Takuo KITAME <kitame@northeye.org>  Wed, 24 Apr 2002 10:15:14 +0900

wl (2.8.1-3) unstable; urgency=high

  * fix build problem (closes: #134861)
  * build-depends: apel

 -- Takuo KITAME <kitame@northeye.org>  Wed, 20 Feb 2002 21:51:16 +0900

wl (2.8.1-2) unstable; urgency=low

  * wl/wl-vars.el(wl-summary-weekday-name-lang): default is en.
    remove setq from emacsen-startup. (closes: #127315)

 -- Takuo KITAME <kitame@northeye.org>  Wed,  2 Jan 2002 02:59:19 +0900

wl (2.8.1-1) unstable; urgency=low

  * New upstream release

 -- Takuo KITAME <kitame@northeye.org>  Fri, 28 Dec 2001 18:32:56 +0900

wl (2.8+pre-1) unstable; urgency=low

  * New upstream release (pre 2.8.0 as 2001.12.18)
  * debian/control:
    - Suggests: gnupg, openssl, x-face-el, w3m-el
  * debian/emacsen-startup:
    - remove code to use w3m. It's in semi package.
    - merge wl-beta's emacsen-startup code

 -- Takuo KITAME <kitame@northeye.org>  Tue, 18 Dec 2001 10:53:07 +0900

wl (2.6.1-4) unstable; urgency=low

  * control:
    - Depends: + flim (>= 1:1.14.3-7) (closes: #123581)
  * emacsen-startup:
    - use emacs-w3m for text/html if available
    - change priority 50 to 65

 -- Takuo KITAME <kitame@northeye.org>  Fri, 14 Dec 2001 15:40:37 +0900

wl (2.6.1-3) unstable; urgency=low

  * set load-path to apel flim and semi when compile. 
    It may fix cannot install problem. (closes: #123581)

 -- Takuo KITAME <kitame@northeye.org>  Wed, 12 Dec 2001 20:14:14 +0900

wl (2.6.1-2) unstable; urgency=low

  * /etc/emacs/site-start.d/50wl.el as conffile

 -- Takuo KITAME <kitame@northeye.org>  Tue, 11 Dec 2001 20:25:11 +0900

wl (2.6.1-1) unstable; urgency=low

  * New upstream release
  * wl-init.el: (setq wl-summary-weekday-name-lang "en").
    "ja" is not universal.
  
 -- Takuo KITAME <kitame@northeye.org>  Sun,  2 Dec 2001 15:49:41 +0900

wl (2.6.0.20011029cvs-2) unstable; urgency=low

  * remove wemi dependency, (it will be removed from ftp)

 -- Takuo KITAME <kitame@northeye.org>  Sat,  1 Dec 2001 21:29:29 +0900

wl (2.6.0.20011029cvs-1) unstable; urgency=low

  * New upstream release (CVS)
  * include english info (closes: #109597)

 -- Takuo KITAME <kitame@northeye.org>  Mon, 29 Oct 2001 22:35:39 +0900

wl (2.6.0.20011009cvs-1) unstable; urgency=low

  * New upstream release
  * change pixmap directory from /usr/X11R6/include/X11/pixmaps to /usr/share/pixmaps

 -- Takuo KITAME <kitame@northeye.org>  Thu, 11 Oct 2001 19:41:57 +0900

wl (2.6.0.20011005cvs-1) unstable; urgency=low

  * New upstream release

 -- Takuo KITAME <kitame@northeye.org>  Fri,  5 Oct 2001 18:08:48 +0900

wl (2.6.0.20010918cvs-1) unstable; urgency=low

  * New upstream release

 -- Takuo KITAME <kitame@northeye.org>  Tue, 18 Sep 2001 23:11:15 +0900

wl (2.6.0.20010903cvs-1) unstable; urgency=low

  * New upstream release

 -- Takuo KITAME <kitame@northeye.org>  Tue,  4 Sep 2001 02:11:21 +0900

wl (2.6.0.20010713-1) unstable; urgency=low

  * New upstream release

 -- Takuo KITAME <kitame@northeye.org>  Sat, 14 Jul 2001 02:35:07 +0900

wl (2.6.0.20010706cvs-1) unstable; urgency=low

  * New upstream release (real 2.6.0)

 -- Takuo KITAME <kitame@northeye.org>  Fri,  6 Jul 2001 12:13:22 +0900

wl (2.6.0.20010625cvs-1) unstable; urgency=low

  * New upstream release (CVS update)

 -- Takuo KITAME <kitame@northeye.org>  Mon, 25 Jun 2001 22:42:31 +0900

wl (2.6.0.20010618cvs-1) unstable; urgency=low

  * New upstream release

 -- Takuo KITAME <kitame@northeye.org>  Wed, 20 Jun 2001 11:59:30 +0900

wl (2.4.1.20010412cvs-2.0) unstable; urgency=low

  * support mule2 wih clime

 -- Takuo KITAME <kitame@northeye.org>  Wed, 16 May 2001 04:59:43 +0900

wl (2.4.1.20010412cvs-1) unstable; urgency=low

  * New upstream release

 -- Takuo KITAME <kitame@northeye.org>  Sat, 14 Apr 2001 02:49:09 +0900

wl (2.4.1.20010226cvs-1) unstable; urgency=low

  * New upstream release

 -- Takuo KITAME <kitame@northeye.org>  Mon, 26 Feb 2001 19:17:34 +0900

wl (2.4.1.20010216cvs-1) unstable; urgency=low

  * New upstream release

 -- Takuo KITAME <kitame@northeye.org>  Sat, 17 Feb 2001 03:17:04 +0900

wl (2.4.1.20010201cvs-1) unstable; urgency=low

  * New upstream release

 -- Takuo KITAME <kitame@northeye.org>  Thu,  1 Feb 2001 21:21:09 +0900

wl (2.4.1.20010130cvs-1) unstable; urgency=low

  * New upstream release

 -- Takuo KITAME <kitame@northeye.org>  Wed, 31 Jan 2001 01:35:19 +0900

wl (2.4.1.20010125cvs-1) unstable; urgency=low

  * New upstream release

 -- Takuo KITAME <kitame@northeye.org>  Thu, 25 Jan 2001 14:20:29 +0900

wl (2.4.1.20010121cvs-1) unstable; urgency=low

  * New upstream release

 -- Takuo KITAME <kitame@northeye.org>  Mon, 22 Jan 2001 10:35:49 +0900

wl (2.4.0.20010118cvs-1) unstable; urgency=low

  * New upstream release

 -- Takuo KITAME <kitame@northeye.org>  Fri, 19 Jan 2001 14:34:01 +0900

wl (2.4.0.20010116cvs-1) unstable; urgency=low

  * New upstream release

 -- Takuo KITAME <kitame@northeye.org>  Wed, 17 Jan 2001 12:15:57 +0900

wl (2.4.0.20001230cvs-1) unstable; urgency=low

  * New upstream release

 -- Takuo KITAME <kitame@northeye.org>  Sun, 31 Dec 2000 21:01:55 +0900

wl (2.4.0.20001225cvs-1) unstable; urgency=low

  * New upstream release

 -- Takuo KITAME <kitame@northeye.org>  Mon, 25 Dec 2000 10:57:11 +0900

wl (2.4.0.20001220cvs-1) unstable; urgency=low

  * New upstream release

 -- Takuo KITAME <kitame@northeye.org>  Wed, 20 Dec 2000 17:37:41 +0900

wl (2.4.0.20001215cvs-1) unstable; urgency=low

  * New upstream release

 -- Takuo KITAME <kitame@northeye.org>  Sat, 16 Dec 2000 13:11:29 +0900

wl (2.4.0-1) unstable; urgency=low

  * New upstream release

 -- Takuo KITAME <kitame@northeye.org>  Thu, 30 Nov 2000 17:05:05 +0900

wl (1.1.1-4) unstable; urgency=low

  * Depends: flim1.13 only (not flim(>= 1:1.14))
    closes: Bug#75547

 -- Takuo KITAME <kitame@northeye.org>  Wed, 25 Oct 2000 21:37:06 +0900

wl (1.1.1-3) unstable; urgency=low

  * debian/control: Depends: flim (>= 1:1.14)|flim1.13
    Conflicts: wl-beta
  
 -- Takuo KITAME <kitame@northeye.org>  Mon, 23 Oct 2000 15:18:00 +0900

wl (1.1.1-2) unstable; urgency=low

  * debian/emacsen-install: install utils/sasl/lisp/*.elc to ${ELCDIR}
  * closes: Bug#66132: wl: icon location

 -- Takuo KITAME <kitame@northeye.org>  Sat, 24 Jun 2000 01:45:51 +0900

wl (1.1.1-1) unstable; urgency=low

  * New upstream release

 -- Takuo KITAME <kitame@northeye.org>  Wed, 10 May 2000 11:44:04 +0900

wl (1.1.0-1) unstable; urgency=low

  * New upstream release

 -- Takuo KITAME <kitame@northeye.org>  Fri, 24 Mar 2000 16:02:12 +0900

wl (1.0.3-9) unstable; urgency=low

  * emacsen-common: modified.
  * Installing Xresource for ja.

 -- Takuo KITAME <kitame@northeye.org>  Tue,  2 Nov 1999 00:09:51 +0900

wl (1.0.3-8) unstable; urgency=low

  * emacsen-comon: any FLAVOR allowed (except emacs).

 -- Takuo KITAME <kitame@northeye.org>  Sun, 17 Oct 1999 23:18:49 +0900

wl (1.0.3-7) unstable; urgency=low

  * emacsen-install: a little modified.

 -- Takuo KITAME <kitame@northeye.org>  Wed, 13 Oct 1999 23:38:54 +0900

wl (1.0.3-6) unstable; urgency=low

  * FHS compliance.
  * 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 05:57:13 +0900

wl (1.0.3-5) unstable; urgency=low

  * Maintainer address was changed.

 -- Takuo KITAME <kitame@northeye.org>  Wed,  6 Oct 1999 22:47:49 +0900

wl (1.0.3-4) unstable; urgency=low

  * Removed Depends: |tm . tm is obsolete package

 -- Takuro KITAME <kitame@debian.or.jp>  Mon,  9 Aug 1999 04:56:23 +0900

wl (1.0.3-3) unstable; urgency=low (high for xemacs20)

  * Fixed failing byte compile with xemacs20.(closes: Bug#40587, Bug#42310)
    (fix with flim_1.12.7-4, flim1.13_1.13.1.19990728cvs-2(wanderlust2))

 -- Takuro KITAME <kitame@debian.or.jp>  Sun,  8 Aug 1999 03:59:48 +0900

wl (1.0.3-2) unstable; urgency=low

  * Depends semi1.12|wemi1.12 (can not work on FLIM 1.13 API(SEMI 1.13))

 -- Takuro KITAME <kitame@debian.or.jp>  Mon,  2 Aug 1999 02:10:54 +0900

wl (1.0.3-1) unstable; urgency=low

  * New upstream release

 -- Takuro KITAME <kitame@debian.or.jp>  Mon, 28 Jun 1999 21:37:47 +0900

wl (1.0.2-2) unstable; urgency=low

  * emacsen-{install,remove} scripts modified for xemacs21
  * Fixed code name (remove -pre)

 -- Takuro KITAME <kitame@debian.or.jp>  Sun, 20 Jun 1999 22:33:01 +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>  Thu,  7 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>  Wed,  6 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