summaryrefslogtreecommitdiff
blob: 8542851557eb611862f5ef4c496b1b8c41987aac (plain)
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
# ChangeLog for app-editors/nano
# Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2
# $Header: /var/cvsroot/gentoo-x86/app-editors/nano/ChangeLog,v 1.278 2012/09/06 19:56:00 vapier Exp $

  06 Sep 2012; Mike Frysinger <vapier@gentoo.org> nano-2.3.1-r2.ebuild:
  Make man-html removal non-fatal #432958 by Oleg.

*nano-2.3.1-r2 (26 Aug 2012)

  26 Aug 2012; Mike Frysinger <vapier@gentoo.org>
  +files/nano-2.3.1-bind-unbind-docs.patch, +files/nano-2.3.1-drop-target.patch,
  +files/nano-2.3.1-gentoo-nanorc.patch, +files/nano-2.3.1-shell-nanorc.patch,
  +nano-2.3.1-r2.ebuild, metadata.xml:
  Update nanorc files #397413 by Davide Pesavento.  Split USE=nls dependency
  #398975 by Maxim Kammerer.

  29 Jul 2012; Raúl Porcel <armin76@gentoo.org> nano-2.3.1-r1.ebuild:
  alpha/sparc stable wrt #413897

  29 May 2012; Brent Baude <ranger@gentoo.org> nano-2.3.1-r1.ebuild:
  Marking nano-2.3.1-r1 ppc for bug 413897

  29 May 2012; Brent Baude <ranger@gentoo.org> nano-2.3.1-r1.ebuild:
  Marking nano-2.3.1-r1 ppc64 for bug 413897

  21 May 2012; Pawel Hajdan jr <phajdan.jr@gentoo.org> nano-2.3.1-r1.ebuild:
  x86 stable wrt bug #413897

  17 May 2012; Jeroen Roovers <jer@gentoo.org> nano-2.3.1-r1.ebuild:
  Stable for HPPA (bug #413897).

  06 May 2012; Mike Frysinger <vapier@gentoo.org> nano-2.3.1-r1.ebuild:
  Mark ia64/m68k/s390/sh stable #413897.

  04 May 2012; Alexis Ballier <aballier@gentoo.org> nano-2.3.1-r1.ebuild:
  keyword ~amd64-fbsd

  03 May 2012; Markus Meier <maekke@gentoo.org> nano-2.3.1-r1.ebuild:
  arm stable, bug #413897

  03 May 2012; Jeff Horelick <jdhore@gentoo.org> nano-2.3.1-r1.ebuild:
  dev-util/pkgconfig -> virtual/pkgconfig

  01 May 2012; Agostino Sarubbo <ago@gentoo.org> nano-2.3.1-r1.ebuild:
  Stable for amd64, wrt bug #413897

  01 Jan 2012; Mike Frysinger <vapier@gentoo.org> nano-2.3.1-r1.ebuild,
  +files/nano-2.3.1-ncurses-pkg-config.patch:
  Search for ncurses via pkg-config files.

*nano-2.3.1-r1 (29 Aug 2011)

  29 Aug 2011; Fabian Groffen <grobian@gentoo.org> +nano-2.3.1-r1.ebuild:
  Add fixes for Prefix, bug #361251

*nano-2.3.1 (11 May 2011)

  11 May 2011; Mike Frysinger <vapier@gentoo.org> +nano-2.3.1.ebuild:
  Version bump.

  21 Mar 2011; Kacper Kowalik <xarthisius@gentoo.org> nano-2.2.5.ebuild:
  ppc64 stable wrt #351707

*nano-2.3.0 (28 Feb 2011)

  28 Feb 2011; Mike Frysinger <vapier@gentoo.org> +nano-2.3.0.ebuild:
  Version bump.

  28 Feb 2011; Brent Baude <ranger@gentoo.org> nano-2.2.5.ebuild:
  stable ppc, bug 351707

  29 Jan 2011; Raúl Porcel <armin76@gentoo.org> nano-2.2.5.ebuild:
  alpha/arm/ia64/m68k/s390/sh/sparc stable wrt #351707

  22 Jan 2011; Christian Faulhammer <fauli@gentoo.org> nano-2.2.5.ebuild:
  stable x86, bug 351707

  21 Jan 2011; Jeroen Roovers <jer@gentoo.org> nano-2.2.5.ebuild:
  Stable for HPPA (bug #351707).

  14 Jan 2011; Markos Chandras <hwoarang@gentoo.org> nano-2.2.5.ebuild:
  Stable on amd64 wrt bug #351707

*nano-2.2.5 (06 Aug 2010)

  06 Aug 2010; Mike Frysinger <vapier@gentoo.org> +nano-2.2.5.ebuild:
  Version bump.

  30 Apr 2010; Brent Baude <ranger@gentoo.org> nano-2.2.4.ebuild:
  Marking nano-2.2.4 ppc64 for bug 315355

  30 Apr 2010; Brent Baude <ranger@gentoo.org> nano-2.2.4.ebuild:
  Marking nano-2.2.4 ppc for bug 315355

  26 Apr 2010; Markus Meier <maekke@gentoo.org> nano-2.2.4.ebuild:
  amd64 stable, bug #315355

  23 Apr 2010; Raúl Porcel <armin76@gentoo.org> nano-2.2.4.ebuild:
  alpha/arm/ia64/m68k/s390/sh/sparc stable wrt #315355

  23 Apr 2010; Jeroen Roovers <jer@gentoo.org> nano-2.2.4.ebuild:
  Stable for HPPA (bug #315355).

  23 Apr 2010; Christian Faulhammer <fauli@gentoo.org> nano-2.2.4.ebuild:
  stable x86, security bug 315355

  15 Apr 2010; Jeremy Olexa <darkside@gentoo.org> nano-2.2.4.ebuild:
  Import Gentoo Prefix changes, convert to EAPI3, add keywords. bug 315513

*nano-2.2.4 (15 Apr 2010)

  15 Apr 2010; Mike Frysinger <vapier@gentoo.org> +nano-2.2.4.ebuild:
  Version bump.

  07 Mar 2010; Mike Frysinger <vapier@gentoo.org> metadata.xml:
  Extend USE="debug minimal" flags by Doktor Notor #306653.

*nano-2.2.3 (11 Feb 2010)

  11 Feb 2010; Mike Frysinger <vapier@gentoo.org> +nano-2.2.3.ebuild:
  Version bump.

*nano-2.2.2 (18 Jan 2010)

  18 Jan 2010; Mike Frysinger <vapier@gentoo.org> +nano-2.2.2.ebuild:
  Version bump.

*nano-2.2.1 (13 Dec 2009)

  13 Dec 2009; Mike Frysinger <vapier@gentoo.org> +nano-2.2.1.ebuild:
  Version bump.

*nano-2.2.0 (30 Nov 2009)

  30 Nov 2009; Mike Frysinger <vapier@gentoo.org> +nano-2.2.0.ebuild:
  Version bump.

*nano-2.1.11 (02 Nov 2009)

  02 Nov 2009; Mike Frysinger <vapier@gentoo.org> +nano-2.1.11.ebuild,
  +files/nano-2.1.11-proto.patch:
  Version bump.

  31 Oct 2009; Brent Baude <ranger@gentoo.org> nano-2.1.10.ebuild:
  Marking nano-2.1.10 ppc64 for bug 287407

  12 Oct 2009; Jeroen Roovers <jer@gentoo.org> nano-2.1.10.ebuild:
  Stable for HPPA (bug #287407).

  04 Oct 2009; Mounir Lamouri <volkmar@gentoo.org> nano-2.1.10.ebuild:
  Stable for ppc, bug 287407

  04 Oct 2009; Raúl Porcel <armin76@gentoo.org> nano-2.1.10.ebuild:
  alpha/arm/ia64/m68k/s390/sh/x86 stable wrt #287407

  03 Oct 2009; Tiago Cunha <tcunha@gentoo.org> nano-2.1.10.ebuild:
  stable sparc, bug 287407

  03 Oct 2009; Romain Perier <mrpouet@gentoo.org>
  nano-2.1.10.ebuild:
  Stable for amd64 per bug #287407.

  31 Aug 2009; Brent Baude <ranger@gentoo.org> nano-2.1.9.ebuild:
  Marking nano-2.1.9 ppc64 for bug 281269

  29 Aug 2009; nixnut <nixnut@gentoo.org> nano-2.1.9.ebuild:
  ppc stable #281269

  25 Aug 2009; Jeroen Roovers <jer@gentoo.org> nano-2.1.9.ebuild:
  Stable for HPPA (bug #281269).

  14 Aug 2009; Raúl Porcel <armin76@gentoo.org> nano-2.1.9.ebuild:
  alpha/arm/ia64/m68k/s390/sh/x86 stable wrt #281269

  13 Aug 2009; Tiago Cunha <tcunha@gentoo.org> nano-2.1.9.ebuild:
  stable sparc, bug 281269

  13 Aug 2009; Dawid Węgliński <cla@gentoo.org> nano-2.1.9.ebuild:
  Stable on amd64 (bug #281269)

*nano-2.1.10 (13 Aug 2009)

  13 Aug 2009; Mike Frysinger <vapier@gentoo.org> +nano-2.1.10.ebuild:
  Version bump.

*nano-2.1.9 (17 Feb 2009)

  17 Feb 2009; Mike Frysinger <vapier@gentoo.org> +nano-2.1.9.ebuild:
  Version bump.

  04 Jan 2009; Mike Frysinger <vapier@gentoo.org> nano-1.3.12-r1.ebuild,
  nano-2.0.9.ebuild, nano-2.1.7-r1.ebuild:
  Use einfo, not elog for doc hint #253704 by Todd Walton.

*nano-2.1.7-r1 (30 Dec 2008)

  30 Dec 2008; Christoph Mende <angelos@gentoo.org> +nano-2.1.7-r1.ebuild:
  Straight to stable revbump for EAPI2, needed by releng

  28 Dec 2008; Guy Martin <gmsoft@gentoo.org> nano-2.1.7.ebuild:
  hppa stable, #252601

  28 Dec 2008; Tobias Scherbaum <dertobi123@gentoo.org> nano-2.1.7.ebuild:
  ppc stable, bug #252601

  27 Dec 2008; Brent Baude <ranger@gentoo.org> nano-2.1.7.ebuild:
  stable ppc64, bug 252601

  27 Dec 2008; Raúl Porcel <armin76@gentoo.org> nano-2.1.7.ebuild:
  alpha/arm/ia64/s390/sh/x86 stable wrt #252601

  27 Dec 2008; Jeremy Olexa <darkside@gentoo.org> nano-2.1.7.ebuild:
  amd64 stable, bug 252601

  26 Dec 2008; Friedrich Oslage <bluebird@gentoo.org> nano-2.1.7.ebuild:
  Stable on sparc, bug #252601

*nano-2.1.7 (10 Nov 2008)

  10 Nov 2008; Mike Frysinger <vapier@gentoo.org> +nano-2.1.7.ebuild:
  Version bump.

*nano-2.1.6-r2 (19 Oct 2008)

  19 Oct 2008; Mike Frysinger <vapier@gentoo.org>
  +files/nano-2.1.6-cut-last.patch, +nano-2.1.6-r2.ebuild:
  Add fix from upstream for cutting at end of file #240330 by amadeus.bit.

  08 Oct 2008; Raúl Porcel <armin76@gentoo.org> nano-2.0.9.ebuild,
  nano-2.1.5.ebuild:
  alpha/ia64 stable wrt #240034

  07 Oct 2008; Friedrich Oslage <bluebird@gentoo.org> nano-2.0.9.ebuild,
  nano-2.1.5.ebuild:
  Stable on sparc, bug #240032 and bug #240034

  06 Oct 2008; Brent Baude <ranger@gentoo.org> nano-2.1.5.ebuild:
  stable ppc, bug 240034

  06 Oct 2008; Brent Baude <ranger@gentoo.org> nano-2.1.5.ebuild:
  stable ppc64, bug 240034

  06 Oct 2008; Brent Baude <ranger@gentoo.org> nano-2.0.9.ebuild:
  stable ppc64, bug 240032

  06 Oct 2008; Brent Baude <ranger@gentoo.org> nano-2.0.9.ebuild:
  stable ppc, bug 240032

  06 Oct 2008; Markus Meier <maekke@gentoo.org> nano-2.1.5.ebuild:
  amd64/x86 stable, bug #240034

  06 Oct 2008; Markus Meier <maekke@gentoo.org> nano-2.0.9.ebuild:
  amd64/x86 stable, bug #240032

  06 Oct 2008; Jeroen Roovers <jer@gentoo.org> nano-2.0.9.ebuild:
  Stable for HPPA (bug #240032).

  06 Oct 2008; Jeroen Roovers <jer@gentoo.org> nano-2.1.5.ebuild:
  Stable for HPPA (bug #240034).

*nano-2.1.6-r1 (05 Oct 2008)

  05 Oct 2008; Mike Frysinger <vapier@gentoo.org>
  +files/nano-2.1.6-cut-paste-segv.patch, +nano-2.1.6-r1.ebuild:
  Add fix from upstream for segv when cutting & pasting between files.

*nano-2.1.6 (05 Oct 2008)

  05 Oct 2008; Mike Frysinger <vapier@gentoo.org> +nano-2.1.6.ebuild:
  Version bump.

*nano-2.0.9 (07 Sep 2008)

  07 Sep 2008; Mike Frysinger <vapier@gentoo.org> +nano-2.0.9.ebuild:
  Version bump.

*nano-2.1.5 (05 Sep 2008)

  05 Sep 2008; Mike Frysinger <vapier@gentoo.org> +nano-2.1.5.ebuild:
  Version bump.

*nano-2.0.8 (25 Aug 2008)

  25 Aug 2008; Mike Frysinger <vapier@gentoo.org> +nano-2.0.8.ebuild:
  Version bump.

  18 Aug 2008; Mike Frysinger <vapier@gentoo.org>
  +files/nano-2.1.4-debug.patch, nano-2.1.4.ebuild:
  Fix byBedOS_Gui for building with USE=debug #234959.

*nano-2.1.4 (16 Aug 2008)

  16 Aug 2008; Mike Frysinger <vapier@gentoo.org>
  +files/nano-2.1.4-open-mode.patch, +nano-2.1.4.ebuild:
  Version bump and fix by Magnus Granberg for open(O_CREAT) bug #232079.

  28 Jul 2008; Ulrich Mueller <ulm@gentoo.org> metadata.xml:
  Add USE flag description to metadata wrt GLEP 56.

  01 Jul 2008; Raúl Porcel <armin76@gentoo.org> nano-2.1.2-r1.ebuild:
  alpha/ia64/x86 stable wrt #230001

  01 Jul 2008; Jeroen Roovers <jer@gentoo.org> nano-2.1.2-r1.ebuild:
  Stable for HPPA (bug #230001).

  30 Jun 2008; Ferris McCormick <fmccor@gentoo.org> nano-2.1.2-r1.ebuild:
  Sparc stable, Bug #230001. It works fine, but see the bug for concerns about
  the IUSE= flags.

  30 Jun 2008; nixnut <nixnut@gentoo.org> nano-2.1.2-r1.ebuild:
  Stable on ppc wrt bug 230001

  30 Jun 2008; Kenneth Prugh <ken69267@gentoo.org> nano-2.1.2-r1.ebuild:
  amd64 stable, bug #230001

  29 Jun 2008; Markus Rothe <corsair@gentoo.org> nano-2.1.2-r1.ebuild:
  Stable on ppc64; bug #230001

*nano-2.1.2-r1 (29 Jun 2008)

  29 Jun 2008; Mike Frysinger <vapier@gentoo.org>
  +files/nano-2.1.2-history-justify.patch, +nano-2.1.2-r1.ebuild:
  Fix from upstream for search history when justify is disabled.

*nano-2.1.2 (27 Jun 2008)

  27 Jun 2008; Mike Frysinger <vapier@gentoo.org> +nano-2.1.2.ebuild:
  Version bump.

  16 Jun 2008; Joseph Jezak <josejx@gentoo.org> nano-2.1.1-r1.ebuild:
  Marked ppc/ppc64 stable.

  12 May 2008; Markus Rothe <corsair@gentoo.org> nano-2.1.1.ebuild:
  Stable on ppc64

  10 May 2008; Mike Frysinger <vapier@gentoo.org>
  +files/nano-2.1.0-disable-speller.patch, nano-2.1.0.ebuild,
  nano-2.1.1.ebuild, nano-2.1.1-r1.ebuild:
  Fix building with USE=-spell #221219 by Jan.

  10 May 2008; Mike Frysinger <vapier@gentoo.org> nano-1.2.5.ebuild,
  nano-1.3.12-r1.ebuild, nano-2.0.7.ebuild, nano-2.1.0.ebuild,
  nano-2.1.1.ebuild, nano-2.1.1-r1.ebuild:
  Fix spell configure flag: it is --enable-speller, not --enable-spell.

*nano-2.1.1-r1 (10 May 2008)

  10 May 2008; Mike Frysinger <vapier@gentoo.org> +files/awk.nanorc,
  +files/css.nanorc, +files/xml.nanorc, +nano-2.1.1-r1.ebuild:
  Add awk syntax #220821 by Donnie Berkholz and xml/css #163723 by Jan
  Vansteenkiste.

  01 May 2008; Raúl Porcel <armin76@gentoo.org> nano-2.1.1.ebuild:
  alpha/ia64/sparc/x86 stable

*nano-2.1.1 (02 Apr 2008)

  02 Apr 2008; Mike Frysinger <vapier@gentoo.org> +nano-2.1.1.ebuild:
  Version bump.

  29 Mar 2008; Mike Frysinger <vapier@gentoo.org> nano-2.1.0.ebuild:
  Bind the color/multibuffer/nanorc options to USE=-minimal #214132 by John SJ
  Anderson.

*nano-2.1.0 (19 Mar 2008)

  19 Mar 2008; Mike Frysinger <vapier@gentoo.org> +nano-2.1.0.ebuild:
  Version bump.

  26 Feb 2008; Richard Freeman <rich0@gentoo.org> nano-2.0.7.ebuild:
  amd64 stable - 211150

  23 Feb 2008; Brent Baude <ranger@gentoo.org> nano-2.0.7.ebuild:
  stable ppc, bug 211150

  05 Feb 2008; Markus Rothe <corsair@gentoo.org> nano-2.0.7.ebuild:
  Stable on ppc64

  04 Feb 2008; Jeroen Roovers <jer@gentoo.org> nano-2.0.7.ebuild:
  Stable for HPPA too.

  26 Jan 2008; Raúl Porcel <armin76@gentoo.org> nano-2.0.7.ebuild:
  alpha/ia64/sparc/x86 stable

*nano-2.0.7 (21 Dec 2007)

  21 Dec 2007; Mike Frysinger <vapier@gentoo.org> +nano-2.0.7.ebuild:
  Version bump.

  24 Nov 2007; <solar@gentoo.org> +files/tcl.nanorc:
  - add temp tcl.nanorc till one comes from upstream

  10 Oct 2007; Christian Faulhammer <opfer@gentoo.org> nano-1.2.5.ebuild,
  nano-1.3.12-r1.ebuild, nano-2.0.3.ebuild, nano-2.0.4.ebuild,
  nano-2.0.6.ebuild:
  remove PROVIDE=virtual/editor as we have now a new-style virtual

  07 Jul 2007; Jeroen Roovers <jer@gentoo.org> nano-2.0.6.ebuild:
  Stable for HPPA (bug #184313).

  07 Jul 2007; Joshua Kinard <kumba@gentoo.org> nano-2.0.6.ebuild:
  Stable on mips, per #184313.

  06 Jul 2007; Brent Baude <ranger@gentoo.org> nano-2.0.6.ebuild:
  Marking nano-2.0.6 ppc64 for bug 184313

  06 Jul 2007; Joseph Jezak <josejx@gentoo.org> nano-2.0.6.ebuild:
  Marked ppc stable for bug #184313.

  05 Jul 2007; Christoph Mende <angelos@gentoo.org> nano-2.0.6.ebuild:
  Stable on amd64 wrt bug #184313

  05 Jul 2007; Gustavo Zacarias <gustavoz@gentoo.org> nano-2.0.6.ebuild:
  Stable on sparc wrt #184313

  03 Jul 2007; Raúl Porcel <armin76@gentoo.org> nano-2.0.6.ebuild:
  alpha/ia64/x86 stable

  25 May 2007; Christian Faulhammer <opfer@gentoo.org> ChangeLog:
  corrected ChangeLog, so it conforms to our standards

  11 May 2007; Jose Luis Rivero <yoswink@gentoo.org> nano-2.0.4.ebuild:
  Stable on alpha wrt bug #176601

  11 May 2007; Joshua Kinard <kumba@gentoo.org> nano-2.0.4.ebuild:
  Stable on mips, per #176601.

  03 May 2007; Daniel Gryniewicz <dang@gentoo.org> nano-2.0.4.ebuild:
  Marked stable on amd64 for bug #176601

  01 May 2007; Tony Vroon <chainsaw@gentoo.org> nano-2.0.4.ebuild:
  Stabilize on PPC & PPC64. Tested on a PowerBook 5,9 and a PowerMac 7,3
  (64UL) respectively. Both on GCC 4.1.2. For bug #176601.

  01 May 2007; Raúl Porcel <armin76@gentoo.org> nano-2.0.4.ebuild:
  x86 stable wrt #176601

  30 Apr 2007; Gustavo Zacarias <gustavoz@gentoo.org> nano-2.0.4.ebuild:
  Stable on sparc wrt #176601

*nano-2.0.6 (30 Apr 2007)

  30 Apr 2007; Mike Frysinger <vapier@gentoo.org> +nano-2.0.6.ebuild:
  Version bump.

*nano-2.0.4 (06 Apr 2007)

  06 Apr 2007; Mike Frysinger <vapier@gentoo.org> +nano-2.0.4.ebuild:
  Version bump.

  12 Mar 2007; Bryan Østergaard <kloeri@gentoo.org> nano-2.0.3.ebuild:
  Stable on Alpha, bug 170333.

  12 Mar 2007; Alexander H. Færøy <eroyf@gentoo.org> nano-2.0.3.ebuild:
  Stable on MIPS; bug #170333

  12 Mar 2007; Gustavo Zacarias <gustavoz@gentoo.org> nano-2.0.3.ebuild:
  Stable on sparc wrt #170333

  11 Mar 2007; Guy Martin <gmsoft@gentoo.org> nano-2.0.3.ebuild:
  Stable on hppa

  11 Mar 2007; Peter Weller <welp@gentoo.org> nano-2.0.3.ebuild:
  Stable on amd64, bug 170333

  11 Mar 2007; Andrej Kacian <ticho@gentoo.org> nano-2.0.3.ebuild:
  Stable on x86, bug #170333.

  10 Mar 2007; Tony Vroon <chainsaw@gentoo.org> nano-2.0.3.ebuild:
  Marking stable on PPC & PPC64, bug #170333. PPC64 tested on 64UL with GCC 4.1.2

  22 Feb 2007; Fernando J. Pereda <ferdy@gentoo.org> nano-2.0.2.ebuild:
  Stable on alpha as per bug #164416

  03 Feb 2007; Alexander H. Færøy <eroyf@gentoo.org> nano-2.0.2.ebuild:
  Stable on MIPS; bug #164416

  31 Jan 2007; Markus Rothe <corsair@gentoo.org> nano-2.0.2.ebuild:
  Stable on ppc64; bug #164416

  31 Jan 2007; Joseph Jezak <josejx@gentoo.org> nano-2.0.2.ebuild:
  Marked ppc stable for bug #164416.

  30 Jan 2007; Steve Dibb <beandog@gentoo.org> nano-2.0.2.ebuild:
  amd64 stable, bug 164416

  29 Jan 2007; Raúl Porcel <armin76@gentoo.org> nano-2.0.2.ebuild:
  x86 stable wrt bug 164416

  29 Jan 2007; Gustavo Zacarias <gustavoz@gentoo.org> nano-2.0.2.ebuild:
  Stable on sparc wrt #164416

*nano-2.0.3 (29 Jan 2007)

  29 Jan 2007; Mike Frysinger <vapier@gentoo.org> +nano-2.0.3.ebuild:
  Version bump.

  24 Jan 2007; Marius Mauch <genone@gentoo.org> nano-1.3.11-r2.ebuild,
  nano-1.3.12-r1.ebuild, nano-2.0.0.ebuild, nano-2.0.1.ebuild,
  nano-2.0.2.ebuild:
  Replacing einfo with elog

  19 Jan 2007; Alexander H. Færøy <eroyf@gentoo.org> nano-2.0.1.ebuild:
  Stable on MIPS; bug #158656

  30 Dec 2006; Bryan Østergaard <kloeri@gentoo.org> nano-2.0.1.ebuild:
  Stable on Alpha, bug 158656.

  21 Dec 2006; Andrej Kacian <ticho@gentoo.org> nano-2.0.1.ebuild:
  Stable on x86, bug #158656.

*nano-2.0.2 (21 Dec 2006)

  21 Dec 2006; Mike Frysinger <vapier@gentoo.org> +nano-2.0.2.ebuild:
  Version bump.

  20 Dec 2006; Brent Baude <ranger@gentoo.org> nano-2.0.1.ebuild:
  Marking nano-2.0.1 ppc64 stable for bug # 158656

  20 Dec 2006; Timothy Redaelli <drizzt@gentoo.org> nano-2.0.1.ebuild:
  Stable on ppc wrt bug #158656

  20 Dec 2006; Fabian Groffen <grobian@gentoo.org> nano-1.3.11-r2.ebuild,
  nano-1.3.12-r1.ebuild, nano-2.0.0.ebuild, nano-2.0.1.ebuild,
  nano-2.0.1-r1.ebuild:
  Dropped ppc-macos keyword, see you in prefix

  20 Dec 2006; Jeroen Roovers <jer@gentoo.org> nano-2.0.1.ebuild:
  Stable for HPPA (bug #158656).

  20 Dec 2006; Steve Dibb <beandog@gentoo.org> nano-2.0.1.ebuild:
  amd64 stable, bug 158656

  20 Dec 2006; Gustavo Zacarias <gustavoz@gentoo.org> nano-2.0.1.ebuild:
  Stable on sparc wrt #158656

*nano-2.0.1 (26 Nov 2006)

  26 Nov 2006; Mike Frysinger <vapier@gentoo.org> +nano-2.0.1.ebuild:
  Version bump.

*nano-2.0.0 (06 Nov 2006)

  06 Nov 2006; Mike Frysinger <vapier@gentoo.org> +nano-2.0.0.ebuild:
  Version bump.

  17 Oct 2006; Roy Marples <uberlord@gentoo.org> nano-1.3.12-r1.ebuild:
  Added ~sparc-fbsd keyword.

  18 Sep 2006; Gustavo Zacarias <gustavoz@gentoo.org> nano-1.3.12-r1.ebuild:
  Stable on sparc wrt #147882

  17 Sep 2006; Torsten Veller <tove@gentoo.org> nano-1.3.12-r1.ebuild:
  Stable on x86 (#147882)

  17 Sep 2006; Marcus D. Hanwell <cryos@gentoo.org> nano-1.3.12-r1.ebuild:
  Stable on amd64, bug 147882.

  17 Sep 2006; Thomas Cort <tcort@gentoo.org> nano-1.3.12-r1.ebuild:
  Stable on alpha wrt Bug #147882.

  17 Sep 2006; Tobias Scherbaum <dertobi123@gentoo.org>
  nano-1.3.12-r1.ebuild:
  ppc stable, bug #147882

  17 Sep 2006; Fabian Groffen <grobian@gentoo.org> nano-1.3.12-r1.ebuild:
  Marked ppc-macos stable for progressive users (bug #147882)

  17 Sep 2006; Markus Rothe <corsair@gentoo.org> nano-1.3.12-r1.ebuild:
  Stable on ppc64; bug #147882

  19 Jul 2006; Mike Frysinger <vapier@gentoo.org>
  +files/nano-1.3.12-fix2.patch, nano-1.3.12-r1.ebuild:
  Minor build fix from upstream.

  17 Jul 2006; Mike Frysinger <vapier@gentoo.org> +files/gentoo.nanorc,
  nano-1.3.12-r1.ebuild:
  Switch nanorc file over to new include system and add some more colorization
  by Benno Schulenberg #138056.

*nano-1.3.12-r1 (15 Jul 2006)

  15 Jul 2006; Mike Frysinger <vapier@gentoo.org>
  +files/nano-1.3.12-scroll.patch, +files/nano-1.3.12-path.patch,
  +nano-1.3.12-r1.ebuild:
  Fixes from upstream.

  09 Jul 2006; Joshua Kinard <kumba@gentoo.org> nano-1.3.11-r2.ebuild:
  Marked stable on mips.

  27 Jun 2006; Chris Gianelloni <wolf31o2@gentoo.org> nano-1.3.11-r2.ebuild:
  Stable on x86 wrt bug #138086.

  27 Jun 2006; Fabian Groffen <grobian@gentoo.org> nano-1.3.11-r2.ebuild:
  Marked ppc-macos stable for progressive users (bug #138086)

  27 Jun 2006; Thomas Cort <tcort@gentoo.org> nano-1.3.11-r2.ebuild:
  Stable on alpha wrt Bug #138086.

  26 Jun 2006; Markus Rothe <corsair@gentoo.org> nano-1.3.11-r2.ebuild:
  Stable on ppc64; bug #138086

  26 Jun 2006; Simon Stelling <blubb@gentoo.org> nano-1.3.11-r2.ebuild:
  stable on amd64

  26 Jun 2006; Lars Weiler <pylon@gentoo.org> nano-1.3.11-r2.ebuild:
  Stable on ppc; wrt bug #138086.

  26 Jun 2006; Gustavo Zacarias <gustavoz@gentoo.org> nano-1.3.11-r2.ebuild:
  Stable on sparc wrt #138086

*nano-1.3.12 (26 Jun 2006)

  26 Jun 2006; Mike Frysinger <vapier@gentoo.org> +nano-1.3.12.ebuild:
  Version bump.

*nano-1.3.11-r2 (24 May 2006)

  24 May 2006; Mike Frysinger <vapier@gentoo.org>
  +files/nano-1.3.11-backupfix.patch, +files/nano-1.3.11-columnfix.patch,
  +files/nano-1.3.11-parse.patch, +files/nano-1.3.11-wrapfix.patch,
  +nano-1.3.11-r2.ebuild:
  Grab fixes from upstream.

  09 May 2006; Diego Pettenò <flameeyes@gentoo.org> nano-1.3.11.ebuild:
  Drop ~x86-fbsd keyword from old package to force update to -r1 that has no
  more errors on regex.

*nano-1.3.11-r1 (09 May 2006)

  09 May 2006; Mike Frysinger <vapier@gentoo.org>
  +files/nano-1.3.11-regexfix.patch, +nano-1.3.11-r1.ebuild:
  Grab patch from upstream for crashes in regex code.

  27 Apr 2006; Marien Zwart <marienz@gentoo.org> files/digest-nano-1.2.5,
  files/digest-nano-1.3.9, files/digest-nano-1.3.10-r1,
  files/digest-nano-1.3.11, Manifest:
  Fixing SHA256 digest for real, pass three...

  27 Apr 2006; Marien Zwart <marienz@gentoo.org> files/digest-nano-1.2.5,
  files/digest-nano-1.3.9, files/digest-nano-1.3.10-r1,
  files/digest-nano-1.3.11, Manifest:
  Fixing SHA256 digest, pass two.

  24 Apr 2006; Joshua Kinard <kumba@gentoo.org> nano-1.3.10-r1.ebuild:
  Marked stable on mips.

  24 Apr 2006; Joseph Jezak <josejx@gentoo.org> nano-1.3.10-r1.ebuild:
  Marked ppc stable for bug #131054.

  24 Apr 2006; Thomas Cort <tcort@gentoo.org> nano-1.3.10-r1.ebuild:
  Stable on alpha wrt Bug #131054.

  24 Apr 2006; Fabian Groffen <grobian@gentoo.org> nano-1.3.10-r1.ebuild:
  Marked ppc-macos stable (bug #131054)

  24 Apr 2006; Gustavo Zacarias <gustavoz@gentoo.org> nano-1.3.10-r1.ebuild:
  Stable on sparc wrt #131054

  24 Apr 2006; Patrick McLean <chutzpah@gentoo.org> nano-1.3.10-r1.ebuild:
  Stable on amd64 (bug #131054)

  24 Apr 2006; Markus Rothe <corsair@gentoo.org> nano-1.3.10-r1.ebuild:
  Stable on ppc64; bug #131054

  24 Apr 2006; Krzysiek Pawlik <nelchael@gentoo.org> nano-1.3.10-r1.ebuild:
  Stable on x86, see bug 131054.

  02 Apr 2006; Diego Pettenò <flameeyes@gentoo.org> nano-1.3.9.ebuild,
  nano-1.3.11.ebuild:
  Update ~x86-fbsd keyword.

  30 Mar 2006; Diego Pettenò <flameeyes@gentoo.org> nano-1.3.9.ebuild:
  Add ~x86-fbsd keyword.

*nano-1.3.11 (30 Mar 2006)

  30 Mar 2006; Mike Frysinger <vapier@gentoo.org> +nano-1.3.11.ebuild:
  Version bump.

*nano-1.3.10-r1 (03 Feb 2006)

  03 Feb 2006; Mike Frysinger <vapier@gentoo.org>
  +files/nano-1.3.10-crash.patch, -nano-1.3.10.ebuild,
  +nano-1.3.10-r1.ebuild:
  Grab fix from upstream for segfaults with some files #111564.

  17 Jan 2006; Stuart Longland <redhatter@gentoo.org> nano-1.3.9.ebuild:
  Marked nano-1.3.9 stable on mips as per bug #118946

  15 Jan 2006; Markus Rothe <corsair@gentoo.org> nano-1.3.9.ebuild:
  Stable on ppc64

  15 Jan 2006; Jason Wever <weeve@gentoo.org> nano-1.3.9.ebuild:
  Stable on SPARC wrt bug #118946.

  14 Jan 2006; Fabian Groffen <grobian@gentoo.org> nano-1.3.9.ebuild:
  Marked ppc-macos stable (bug #118946)

  14 Jan 2006; Marcus D. Hanwell <cryos@gentoo.org> nano-1.3.9.ebuild:
  Stable on amd64, bug 118946.

  14 Jan 2006; Jose Luis Rivero <yoswink@gentoo.org> nano-1.3.9.ebuild:
  Stable on alpha wrt bug #118946

  14 Jan 2006; Tobias Scherbaum <dertobi123@gentoo.org> nano-1.3.9.ebuild:
  ppc stable, bug #118946

  14 Jan 2006; Saleem Abdulrasool <compnerd@gentoo.org> nano-1.3.9.ebuild:
  stable on x86 as per bug #118946

  11 Jan 2006; Mike Frysinger <vapier@gentoo.org>
  +files/nano-1.3.10-disp.patch, nano-1.3.10.ebuild:
  Fix from upstream.

*nano-1.3.10 (24 Dec 2005)

  24 Dec 2005; Mike Frysinger <vapier@gentoo.org> +nano-1.3.10.ebuild:
  Version bump.

*nano-1.3.9 (26 Oct 2005)

  26 Oct 2005; Mike Frysinger <vapier@gentoo.org> +nano-1.3.9.ebuild:
  Version bump.

  03 Oct 2005; Mike Frysinger <vapier@gentoo.org> nano-1.3.8.ebuild:
  Pass --disable-wrapping-as-root to configure #107877.

  15 Sep 2005; Kito <kito@gentoo.org> nano-1.3.7.ebuild:
  stable on ppc-macos

  14 Sep 2005; Mike Frysinger <vapier@gentoo.org>
  +files/nano-1.3.8-display.patch, nano-1.3.8.ebuild:
  Fix from upstream for minor bug in display not being updated properly.

  03 Aug 2005; Bryan Østergaard <kloeri@gentoo.org> nano-1.3.7.ebuild:
  Stable on alpha.

*nano-1.3.8 (02 Jul 2005)

  02 Jul 2005; Mike Frysinger <vapier@gentoo.org> files/nanorc-gentoo,
  +nano-1.3.8.ebuild:
  Version bump.

*nano-1.2.5 (18 May 2005)

  18 May 2005; Mike Frysinger <vapier@gentoo.org> +nano-1.2.5.ebuild:
  Version bump.

*nano-1.3.7 (14 Apr 2005)

  14 Apr 2005; Mike Frysinger <vapier@gentoo.org> +nano-1.3.7.ebuild:
  Version bump.

*nano-1.3.6 (22 Mar 2005)

  22 Mar 2005; Mike Frysinger <vapier@gentoo.org>
  +files/nano-1.3.6-nomac.patch, +nano-1.3.6.ebuild:
  Version bump.

  28 Dec 2004; Ciaran McCreesh <ciaranm@gentoo.org> :
  Change encoding to UTF-8 for GLEP 31 compliance

  27 Nov 2004; Jeremy Huddleston <eradicator@gentoo.org>
  +files/nano-1.3.5-break_line.patch, nano-1.3.5.ebuild:
  Fix compilation because of conflicting types of break_line()

*nano-1.3.5 (22 Nov 2004)

  22 Nov 2004; Mike Frysinger <vapier@gentoo.org> +files/1.3.5-nomac.patch,
  +nano-1.3.5.ebuild:
  Version bump.

  19 Sep 2004; Bryan Østergaard,,, <kloeri@gentoo.org> nano-1.3.4.ebuild:
  Stable on alpha.

  19 Sep 2004; Joshua Kinard <kumba@gentoo.org> nano-1.3.4.ebuild:
  Marked stable on mips.

  09 Sep 2004; Gustavo Zacarias <gustavoz@gentoo.org> nano-1.3.4.ebuild:
  Stable on sparc

*nano-1.3.4 (08 Aug 2004)

  08 Aug 2004; Mike Frysinger <vapier@gentoo.org> :
  Version bump.

*nano-1.3.3-r1 (06 Jul 2004)
*nano-1.3.2-r1 (06 Jul 2004)

  09 Jul 2004; Mike Frysinger <vapier@gentoo.org>
  +files/1.3.3-debug-printf-fix.patch:
  Add patch by Jon Oberheide to fix building with USE=debug #56494 by Nanouck.

  06 Jul 2004; Mike Frysinger <vapier@gentoo.org>
  +files/1.3-nanopermsfix.patch, +nano-1.3.2-r1.ebuild, -nano-1.3.2.ebuild,
  +nano-1.3.3-r1.ebuild, -nano-1.3.3.ebuild:
  Add umask fix from upstream for #55780 by Toni Suokas.

  29 Jun 2004; Aron Griffis <agriffis@gentoo.org> nano-1.3.2.ebuild:
  stable on alpha, ia64

*nano-1.3.3 (28 Jun 2004)

  28 Jun 2004; Mike Frysinger <vapier@gentoo.org> +files/1.3.3-ifdeffix.patch,
  +files/1.3.3-nomac.patch, +files/1.3.3-ws-default-off.patch,
  +nano-1.3.3.ebuild:
  Version bumpage.

*nano-1.2.4 (27 Jun 2004)

  27 Jun 2004; Mike Frysinger <vapier@gentoo.org> +nano-1.2.4.ebuild:
  Version bump.

  05 Jun 2004; <tuxus@gentoo.org> nano-1.3.2.ebuild:
  Stable on mips

  01 Jun 2004; Aron Griffis <agriffis@gentoo.org> nano-1.2.2.ebuild:
  Fix use invocation

  04 May 2004; Bryan Østergaard <kloeri@gentoo.org> nano-1.3.1.ebuild:
  Stable on alpha.

  30 Apr 2004; Gustavo Zacarias <gustavoz@gentoo.org> nano-1.3.2.ebuild:
  Stable on sparc

  28 Apr 2004; Jon Portnoy <avenj@gentoo.org> nano-1.3.2.ebuild :
  Stable on x86 and AMD64.

  26 Apr 2004; Michael McCabe <randy@gentoo.org> nano-1.3.2.ebuild:
  stable on s390

  04 Apr 2004; Guy Martin <gmsoft@gentoo.org> :
  Marked stable on hppa.

*nano-1.3.2 (04 Apr 2004)

  04 Apr 2004; Mike Frysinger <vapier@gentoo.org> :
  Version bump.

*nano-1.2.3 (16 Jan 2004)

  29 Mar 2004; Gustavo Zacarias <gustavoz@gentoo.org> nano-1.2.3.ebuild:
  stable on sparc, thanks to txromeo for additional testing

  16 Jan 2004; Mike Frysinger <vapier@gentoo.org> :
  Version bump for stable tree.

*nano-1.3.1 (10 Jan 2004)

  26 Jan 2004; Mike Frysinger <vapier@gentoo.org> :
  Add local USE flags to control disabling mac output and white space converting.

  10 Jan 2004; Mike Frysinger <vapier@gentoo.org> :
  Version bump ... should fix input routines #34628 #34817.

*nano-1.3.0 (25 Oct 2003)

  25 Oct 2003; Mike Frysinger <vapier@gentoo.org> :
  Version bumpage.

*nano-1.2.2 (18 Aug 2003)

  17 Oct 2003; Aron Griffis <agriffis@gentoo.org> nano-1.2.2.ebuild:
  Stable on alpha

  02 Oct 2003; Mike Frysinger <vapier@gentoo.org> :
  Add patch to fix run away nano's #17878.

  30 Sep 2003; Joshua Kinard <kumba@gentoo.org> nano-1.2.2.ebuild:
  Changed ~mips to mips in KEYWORDS

  26 Sep 2003; Mike Frysinger <vapier@gentoo.org> :
  Add a bunch of example nanorc stuff and install to /etc/nanorc.

  18 Aug 2003; Mike Frysinger <vapier@gentoo.org> :
  Add back in optional slang support + add in debug support.
  Also fix symlink so it points at ../../bin/nano rather than /bin/nano.
  Also add in a small patch to add support for a 'tab conversion' character.

*nano-1.2.1 (25 Apr 2003)

  22 Jul 2003; Mike Frysinger <vapier@gentoo.org> :
  Add local USE flag justify to control the justify configure option.

  06 Jul 2003; Joshua Kinard <kumba@gentoo.org> nano-1.2.1.ebuild:
  Changed ~mips to mips in KEYWORDS

  20 Jun 2003; Jason Wever <weeve@gentoo.org> nano-1.2.1.ebuild:
  Changed ~sparc keyword to sparc.

  19 Jun 2003; Guy Martin <gmsoft@gentoo.org> nano-1.2.1.ebuild :
  Changed ~hppa to hppa in KEYWORDS.

  03 May 2003; Jon Portnoy <avenj@gentoo.org> nano-1.2.1.ebuild :
  Removed slang from IUSE since it's no longer used.

  25 Apr 2003; Jon Portnoy <avenj@gentoo.org> nano-1.2.1.ebuild :
  Version bump.

*nano-1.2.0 (22 Feb 2003)

  16 Apr 2003; Guy Martin <gmsoft@gentoo.org> nano-1.2.0.ebuild :
  Marked stable on hppa.

  29 Mar 2003; Christian Birchinger <joker@gentoo.org> nano-1.2.0.ebuild:
  Added sparc stable keyword

  09 Mar 2003; Aron Griffis <agriffis@gentoo.org> nano-1.2.0.ebuild:
  Mark stable on alpha

  28 Feb 2003; Zach Welch <zwelch@gentoo.org> nano-1.2.0.ebuild:
  add arm keyword dropped during version bump!!

  22 Feb 2003; Mike Frysinger <vapier@gentoo.org> :
  Version bump.

*nano-1.1.99_pre3 (14 Feb 2003)

  21 Feb 2003; Zach Welch <zwelch@gentoo.org> :
  Added arm to keywords.

  14 Feb 2003; Mike Frysinger <vapier@gentoo.org> :
  Version bump (thank god they fixed disable justify).

*nano-1.1.99_pre2 (06 Feb 2003)

  11 Feb 2003; Guy Martin <gmsoft@gentoo.org> :
  Added hppa to keywords.

  06 Feb 2003; Mike Frysinger <vapier@gentoo.org> :
  Version bump (god i hate justify).

*nano-1.1.99_pre1 (25 Jan 2003)

  25 Jan 2003; Mike Frysinger <vapier@gentoo.org> :
  Version bump #14521.

*nano-1.0.9-r2 (01 Dec 2002)

  18 Jan 2003; Jan Seidel <tuxus@gentoo.org> :
  Added mips to keywords

  06 Jan 2003; Seemant Kulleen <seemant@gentoo.org> nano-1.0.9-r2.ebuild :

  PROVIDE virtual/editor

  06 Dec 2002; Rodney Rees <manson@gentoo.org> : changed sparc ~sparc keywords

  01 Dec 2002; Mike Frysinger <vapier@gentoo.org> :
  Added a symlink for /usr/bin/nano to /bin/nano #10916

*nano-1.0.9-r1 (30 Nov 2002)

  30 Nov 2002; Matthew Kennedy <mkennedy@gentoo.org>
  nano-1.0.9-r1.ebuild, files/digest-nano-1.0.9-r1,
  files/newfile-gentoo.patch, ChangeLog :

  Removed bizarre patch. Installed nano into /bin (resolves bug 11216 --
  Lack of text editor in / mount point). Removed slang option (which
  links into to /usr/ -- where does the madness end?)

*nano-1.0.9 (25 Sep 2002)

  23 Oct 2002; Mike Frysinger <vapier@gentoo.org> :
  Removed bootcd USE flag

  25 Sep 2002; Mike Frysinger <vapier@gentoo.org> :
  bumped version

*nano-1.0.8-r1 (12 Mar 2002)

  23 Oct 2002; Mike Frysinger <vapier@gentoo.org> :
  Removed bootcd USE flag

  15 Jul 2002; Owen Stampflee <owen@gentoo.org> :
  Added KEYWORDS.

  11 Apr 2002; Seemant Kulleen <seemant@gentoo.org> nano-1.0.8-r1.ebuild :

  I did not bump the revision number of this, but I added a flag to
  disable text wrapping as root, for when nano is built for the bootcd
  or build environments.  This means that the nano -w instruction in
  our Gentoo Installation docs will need to be adjusted to just say
  "nano" now.  Thanks to chrisa@asty.org (Chris Allegretta) in bug
  # 1565

  12 Mar 2002; Seemant Kulleen <seemant@gentoo.org>
  Add USE-conditional nls compilation

*nano-1.0.8 (20 Feb 2002)

  20 Feb 2002; Aron Griffis <agriffis@gentoo.org> nano-1.0.8.ebuild :
  Updated to 1.0.8.  Added USE-conditional slang compilation.

*nano-1.0.6 (1 Feb 2002)

  1 Feb 2002; G.Bevin <gbevin@gentoo.org> ChangeLog :
  Added initial ChangeLog which should be updated whenever the package is
  updated in any way. This changelog is targetted to users. This means that
  the comments should well explained and written in clean English. The
  details about writing correct changelogs are explained in the
  skel.ChangeLog file which you can find in the root directory of the
  portage repository.