summaryrefslogtreecommitdiff
blob: 280eceeb187fad4d1cba770937d6b0c8b7927629 (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
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
# ChangeLog for sys-apps/file
# Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2
# $Header: /var/cvsroot/gentoo-x86/sys-apps/file/ChangeLog,v 1.313 2015/07/09 15:43:24 vapier Exp $

*file-5.24 (09 Jul 2015)

  09 Jul 2015; Mike Frysinger <vapier@gentoo.org> +file-5.24.ebuild:
  Version bump.

*file-5.23 (15 Jun 2015)

  15 Jun 2015; Lars Wendler <polynomial-c@gentoo.org> +file-5.23.ebuild:
  Version bump.

  08 Apr 2015; Michał Górny <mgorny@gentoo.org> file-5.22.ebuild:
  Drop old Python implementations

*file-5.22-r1 (21 Mar 2015)

  21 Mar 2015; Michał Górny <mgorny@gentoo.org> +file-5.22-r1.ebuild,
  file-9999.ebuild:
  EAPI bump, bug #543160.

  05 Feb 2015; Mike Frysinger <vapier@gentoo.org> file-5.22.ebuild:
  Mark arm64/m68/s390/sh stable.

  27 Jan 2015; Lars Wendler <polynomial-c@gentoo.org> -file-5.17.ebuild,
  -file-5.19.ebuild, -file-5.20-r1.ebuild, -file-5.21.ebuild,
  -files/file-5.20-elf-note.patch:
  Removed vulnerable versions.

  25 Jan 2015; Agostino Sarubbo <ago@gentoo.org> file-5.22.ebuild:
  Stable for alpha, wrt bug #532768

  16 Jan 2015; Agostino Sarubbo <ago@gentoo.org> file-5.22.ebuild:
  Stable for ia64, wrt bug #532768

  15 Jan 2015; Agostino Sarubbo <ago@gentoo.org> file-5.22.ebuild:
  Stable for ppc, wrt bug #532768

  14 Jan 2015; Agostino Sarubbo <ago@gentoo.org> file-5.22.ebuild:
  Stable for ppc64, wrt bug #532768

  13 Jan 2015; Agostino Sarubbo <ago@gentoo.org> file-5.22.ebuild:
  Stable for sparc, wrt bug #532768

  11 Jan 2015; Markus Meier <maekke@gentoo.org> file-5.22.ebuild:
  arm stable, bug #532768

  11 Jan 2015; Andreas Schuerch <nativemad@gentoo.org> file-5.22.ebuild:
  x86 stable, bug 532768

  11 Jan 2015; Jeroen Roovers <jer@gentoo.org> file-5.22.ebuild:
  Stable for HPPA (bug #532768).

  09 Jan 2015; Mikle Kolyada <zlogene@gentoo.org> file-5.22.ebuild:
  amd64 stable wrt bug #532768

*file-5.22 (03 Jan 2015)

  03 Jan 2015; Lars Wendler <polynomial-c@gentoo.org> +file-5.22.ebuild:
  Version bump.

  26 Dec 2014; Agostino Sarubbo <ago@gentoo.org> file-5.21.ebuild:
  Stable for sparc, wrt bug #532686

  25 Dec 2014; Agostino Sarubbo <ago@gentoo.org> file-5.21.ebuild:
  Stable for ia64, wrt bug #532686

  24 Dec 2014; Agostino Sarubbo <ago@gentoo.org> file-5.21.ebuild:
  Stable for ppc64, wrt bug #532686

  24 Dec 2014; Agostino Sarubbo <ago@gentoo.org> file-5.21.ebuild:
  Stable for ppc, wrt bug #532686

  23 Dec 2014; Markus Meier <maekke@gentoo.org> file-5.21.ebuild:
  arm stable, bug #532686

  23 Dec 2014; Agostino Sarubbo <ago@gentoo.org> file-5.21.ebuild:
  Stable for alpha, wrt bug #532686

  21 Dec 2014; Agostino Sarubbo <ago@gentoo.org> file-5.21.ebuild:
  Stable for x86, wrt bug #532686

  21 Dec 2014; Agostino Sarubbo <ago@gentoo.org> file-5.21.ebuild:
  Stable for amd64, wrt bug #532686

  17 Dec 2014; Jeroen Roovers <jer@gentoo.org> file-5.21.ebuild:
  Stable for HPPA (bug #532686).

*file-5.21 (12 Dec 2014)

  12 Dec 2014; Lars Wendler <polynomial-c@gentoo.org> -file-5.20.ebuild,
  +file-5.21.ebuild:
  Version bump. Removed old.

  23 Nov 2014; Mikle Kolyada <zlogene@gentoo.org> file-5.19.ebuild:
  ia64 stable wrt bug #524986

  23 Nov 2014; Mikle Kolyada <zlogene@gentoo.org> file-5.19.ebuild:
  alpha stable wrt bug #524986

  23 Nov 2014; Mikle Kolyada <zlogene@gentoo.org> file-5.19.ebuild:
  x86 stable wrt bug #524986

  03 Nov 2014; Mike Frysinger <vapier@gentoo.org> file-5.19.ebuild:
  Mark arm64/m68k/s390/sh stable.

*file-5.20-r1 (24 Oct 2014)

  24 Oct 2014; Mike Frysinger <vapier@gentoo.org> +file-5.20-r1.ebuild,
  +files/file-5.20-elf-note.patch:
  Add fix from upstream for ELF note parsing #526544 by Agostino Sarubbo.

  22 Oct 2014; Markus Meier <maekke@gentoo.org> file-5.19.ebuild:
  arm stable, bug #524986

  11 Oct 2014; Jeroen Roovers <jer@gentoo.org> file-5.19.ebuild:
  Stable for HPPA (bug #524986).

  10 Oct 2014; Mikle Kolyada <zlogene@gentoo.org> file-5.19.ebuild:
  amd64 stable wrt bug #524986

*file-5.20 (10 Oct 2014)

  10 Oct 2014; Lars Wendler <polynomial-c@gentoo.org> -file-5.18-r1.ebuild,
  +file-5.20.ebuild:
  Version bump. Removed old.

  07 Sep 2014; Mike Gilbert <floppym@gentoo.org> file-5.19.ebuild,
  file-9999.ebuild:
  Add python3.4.

  06 Jul 2014; Joshua Kinard <kumba@gentoo.org> file-5.17.ebuild:
  Changed mips -> ~mips: we don't have a stable keyword anymore.

  18 Jun 2014; Michał Górny <mgorny@gentoo.org> file-5.18-r1.ebuild,
  file-5.19.ebuild:
  Update dependencies to require guaranteed EAPI=5 or multilib ebuilds, bug
  #513718.

*file-5.19 (13 Jun 2014)

  13 Jun 2014; Lars Wendler <polynomial-c@gentoo.org> -file-5.18.ebuild,
  +file-5.19.ebuild:
  Version bump. Removed old.

  28 Apr 2014; Michał Górny <mgorny@gentoo.org> file-5.18-r1.ebuild,
  file-9999.ebuild:
  Replace multilib_build_binaries with multilib_is_native_abi, in order to put
  an end to the confusion introduced by having two functions, the proper one
  suggesting it is just for binaries.

  27 Mar 2014; Samuli Suominen <ssuominen@gentoo.org> file-5.18-r1.ebuild:
  Update blockers for libmagic.so* wrt #505936 by Graham Murray

*file-5.18-r1 (27 Mar 2014)

  27 Mar 2014; Mike Frysinger <vapier@gentoo.org> +file-5.18-r1.ebuild,
  file-9999.ebuild:
  Add multilib support.

*file-5.18 (26 Mar 2014)

  26 Mar 2014; Mike Frysinger <vapier@gentoo.org> +file-5.18.ebuild:
  Version bump.

  02 Mar 2014; Mike Frysinger <vapier@gentoo.org> file-5.17.ebuild,
  file-9999.ebuild:
  Mark arm64/m68k/mips/s390/sh stable.

  22 Feb 2014; Lars Wendler <polynomial-c@gentoo.org> -file-5.15.ebuild,
  -file-5.16.ebuild:
  Removed vulnerable versions.

  22 Feb 2014; Agostino Sarubbo <ago@gentoo.org> file-5.17.ebuild:
  Stable for sparc, wrt bug #501574

  20 Feb 2014; Akinori Hattori <hattya@gentoo.org> file-5.17.ebuild:
  ia64 stable wrt bug #501574

  20 Feb 2014; Agostino Sarubbo <ago@gentoo.org> file-5.17.ebuild:
  Stable for ppc, wrt bug #501574

  20 Feb 2014; Agostino Sarubbo <ago@gentoo.org> file-5.17.ebuild:
  Stable for ppc64, wrt bug #501574

  19 Feb 2014; Sergey Popov <pinkbyte@gentoo.org> file-5.17.ebuild:
  Stable on x86, wrt bug #501574

  18 Feb 2014; Mikle Kolyada <zlogene@gentoo.org> file-5.17.ebuild:
  alpha stable wrt bug #501574

  18 Feb 2014; Mikle Kolyada <zlogene@gentoo.org> file-5.17.ebuild:
  arm stable wrt bug #501574

  18 Feb 2014; Richard Freeman <rich0@gentoo.org> file-5.17.ebuild:
  amd64 stable - 501574

  17 Feb 2014; Jeroen Roovers <jer@gentoo.org> file-5.17.ebuild:
  Stable for HPPA (bug #501574).

*file-5.17 (13 Feb 2014)

  13 Feb 2014; Lars Wendler <polynomial-c@gentoo.org> -file-5.12-r1.ebuild,
  +file-5.17.ebuild:
  Security bump (CVE-2014-1943). Removed old.

  18 Jan 2014; Mike Frysinger <vapier@gentoo.org> file-5.15.ebuild,
  file-5.16.ebuild, file-9999.ebuild:
  Add arm64 love.

  18 Jan 2014; Mike Frysinger <vapier@gentoo.org> file-5.15.ebuild:
  Mark m68k/s390/sh stable.

  03 Jan 2014; Matt Turner <mattst88@gentoo.org> file-5.15.ebuild:
  alpha stable, bug 492916.

  23 Dec 2013; Agostino Sarubbo <ago@gentoo.org> file-5.15.ebuild:
  Stable for sparc, wrt bug #492916

  23 Dec 2013; Agostino Sarubbo <ago@gentoo.org> file-5.15.ebuild:
  Stable for ppc, wrt bug #492916

  22 Dec 2013; Agostino Sarubbo <ago@gentoo.org> file-5.15.ebuild:
  Stable for ppc64, wrt bug #492916

  07 Dec 2013; Lars Wendler <polynomial-c@gentoo.org> file-5.15.ebuild:
  x86 stable (bug #492916).

  07 Dec 2013; Lars Wendler <polynomial-c@gentoo.org> file-5.15.ebuild:
  amd64 stable (bug #492916).

  06 Dec 2013; Markus Meier <maekke@gentoo.org> file-5.15.ebuild:
  arm stable, bug #492916

*file-5.16 (01 Dec 2013)

  01 Dec 2013; Lars Wendler <polynomial-c@gentoo.org> +file-5.16.ebuild:
  Version bump.

  01 Dec 2013; Akinori Hattori <hattya@gentoo.org> file-5.15.ebuild:
  ia64 stable wrt bug #492916

  30 Nov 2013; Jeroen Roovers <jer@gentoo.org> file-5.15.ebuild:
  Stable for HPPA (bug #492916).

  28 Nov 2013; Mike Frysinger <vapier@gentoo.org> file-5.12-r1.ebuild,
  file-5.15.ebuild, file-9999.ebuild:
  Block dev-python/python-magic when USE=python #492718 by Andrei Slavoiu.

  27 Sep 2013; Tim Harder <radhermit@gentoo.org> -file-5.05.ebuild,
  -file-5.06.ebuild, -file-5.07.ebuild, -file-5.07-r1.ebuild,
  -file-5.07-r2.ebuild, -file-5.07-r3.ebuild, -file-5.08.ebuild,
  -file-5.09.ebuild, -file-5.10.ebuild, -file-5.11.ebuild, -file-5.12.ebuild,
  -file-5.14.ebuild, -files/file-5.07-postscript-detect.patch,
  -files/file-5.07-zip-detect.patch:
  Remove old.

*file-5.15 (27 Sep 2013)

  27 Sep 2013; Tim Harder <radhermit@gentoo.org> +file-5.15.ebuild,
  file-9999.ebuild:
  Version bump and update live ebuild. Move to EAPI 4 and convert to
  distutils-r1 (bug #460010, patch by mgorny).

  05 Sep 2013; Mike Frysinger <vapier@gentoo.org> file-5.12-r1.ebuild:
  Mark m68k stable #467188.

  02 Jun 2013; Agostino Sarubbo <ago@gentoo.org> file-5.12-r1.ebuild:
  Stable for sh, wrt bug #467188

  25 May 2013; Agostino Sarubbo <ago@gentoo.org> file-5.12-r1.ebuild:
  Stable for sparc, wrt bug #467188

  20 May 2013; Agostino Sarubbo <ago@gentoo.org> file-5.12-r1.ebuild:
  Stable for s390, wrt bug #467188

  18 May 2013; Agostino Sarubbo <ago@gentoo.org> file-5.12-r1.ebuild:
  Stable for alpha, wrt bug #467188

  18 May 2013; Agostino Sarubbo <ago@gentoo.org> file-5.12-r1.ebuild:
  Stable for ia64, wrt bug #467188

  12 May 2013; Agostino Sarubbo <ago@gentoo.org> file-5.12-r1.ebuild:
  Stable for arm, wrt bug #467188

  10 May 2013; Vicente Olivert Riera <vincent@gentoo.org> file-5.12-r1.ebuild:
  amd64 ppc ppc64 x86: stable. bug #467188

  10 May 2013; Jeroen Roovers <jer@gentoo.org> file-5.12-r1.ebuild:
  Stable for HPPA (bug #467188).

  22 Mar 2013; Mike Frysinger <vapier@gentoo.org> file-5.14.ebuild:
  Drop keywords for now #462714.

*file-5.14 (21 Mar 2013)

  21 Mar 2013; Mike Frysinger <vapier@gentoo.org> +file-5.14.ebuild:
  Version bump.

*file-5.12-r1 (09 Feb 2013)

  09 Feb 2013; Mike Frysinger <vapier@gentoo.org> +file-5.12-r1.ebuild:
  Pull magic updates from latest upstream git #450408 by Sergey Popov.

  16 Jan 2013; Tim Harder <radhermit@gentoo.org> file-9999.ebuild:
  Revert to previous install method.

*file-9999 (15 Jan 2013)

  15 Jan 2013; Tim Harder <radhermit@gentoo.org> +file-9999.ebuild:
  Add live ebuild.

*file-5.12 (04 Jan 2013)

  04 Jan 2013; Mike Frysinger <vapier@gentoo.org> +file-5.12.ebuild:
  Version bump.

  06 Nov 2012; Ulrich Müller <ulm@gentoo.org> file-5.05.ebuild,
  file-5.06.ebuild, file-5.07.ebuild, file-5.07-r1.ebuild, file-5.07-r2.ebuild,
  file-5.07-r3.ebuild:
  Change LICENSE to BSD-2 for remaining ebuilds, bug 263551.

  19 Sep 2012; Mike Frysinger <vapier@gentoo.org> file-5.11.ebuild:
  Use BUILD_{CC,CXX} when cross-compiling #435324 by Ambroz Bizjak.

  06 Sep 2012; Mike Frysinger <vapier@gentoo.org> metadata.xml:
  List upstream bugzilla.

  26 Jul 2012; Mike Frysinger <vapier@gentoo.org> file-5.11.ebuild:
  Drop -D_GNU_SOURCE as it does not appear to be needed anymore -- compiles
  clean w/out it #428096 by Pacho Ramos.

  22 Jul 2012; Jeroen Roovers <jer@gentoo.org> file-5.11.ebuild:
  Stable for HPPA (bug #427368).

  22 Jul 2012; Anthony G. Basile <blueness@gentoo.org> file-5.11.ebuild:
  Stable ppc/ppc64, bug #427368

  22 Jul 2012; Raúl Porcel <armin76@gentoo.org> file-5.11.ebuild:
  alpha/arm/ia64/m68k/s390/sh/sparc stable wrt #427368

  22 Jul 2012; Richard Freeman <rich0@gentoo.org> file-5.11.ebuild:
  amd64 stable - 427368

  21 Jul 2012; Jeff Horelick <jdhore@gentoo.org> file-5.11.ebuild:
  marked x86 per bug 427368

  26 Apr 2012; Alexis Ballier <aballier@gentoo.org> file-5.11.ebuild:
  keyword ~amd64-fbsd

*file-5.11 (21 Feb 2012)

  21 Feb 2012; Mike Frysinger <vapier@gentoo.org> +file-5.11.ebuild:
  Version bump.

  02 Feb 2012; Mike Gilbert <floppym@gentoo.org> file-5.05.ebuild,
  file-5.06.ebuild, file-5.07.ebuild, file-5.07-r1.ebuild:
  Restore copyright dates.

  02 Feb 2012; Mike Gilbert <floppym@gentoo.org> file-5.05.ebuild,
  file-5.06.ebuild, file-5.07-r1.ebuild, file-5.07-r2.ebuild,
  file-5.07-r3.ebuild, file-5.07.ebuild, file-5.08.ebuild, file-5.09.ebuild,
  file-5.10.ebuild:
  Inherit toolchain-funcs explicitly. Quote WORKDIR.

  31 Dec 2011; Mike Frysinger <vapier@gentoo.org> file-5.09.ebuild:
  Mark ppc/ppc64 stable #393291.

*file-5.10 (31 Dec 2011)

  31 Dec 2011; Mike Frysinger <vapier@gentoo.org> +file-5.10.ebuild:
  Version bump.

  12 Dec 2011; Agostino Sarubbo <ago@gentoo.org> file-5.09.ebuild:
  Stable for AMD64, wrt bug #393291

  11 Dec 2011; Raúl Porcel <armin76@gentoo.org> file-5.09.ebuild:
  alpha/arm/ia64/m68k/s390/sh/sparc stable wrt #393291

  11 Dec 2011; Pawel Hajdan jr <phajdan.jr@gentoo.org> file-5.09.ebuild:
  x86 stable wrt bug #393291

  05 Dec 2011; Jeroen Roovers <jer@gentoo.org> file-5.09.ebuild:
  Stable for HPPA (bug #393291).

  17 Sep 2011; Mike Frysinger <vapier@gentoo.org> file-5.09.ebuild,
  -files/file-5.09-cdf-arraycount.patch:
  Upstream rebuilt tarball with the arraycount fix.

*file-5.09 (16 Sep 2011)

  16 Sep 2011; Mike Frysinger <vapier@gentoo.org> +file-5.09.ebuild,
  +files/file-5.09-cdf-arraycount.patch:
  Version bump.

  09 Aug 2011; Kacper Kowalik <xarthisius@gentoo.org> file-5.07-r3.ebuild:
  ppc/ppc64 stable wrt #377723

  07 Aug 2011; Raúl Porcel <armin76@gentoo.org> file-5.07-r3.ebuild:
  alpha/arm/ia64/m68k/s390/sh/sparc stable wrt #377723

  07 Aug 2011; Markos Chandras <hwoarang@gentoo.org> file-5.07-r3.ebuild:
  Stable on amd64 wrt bug #377723

  07 Aug 2011; Pawel Hajdan jr <phajdan.jr@gentoo.org> file-5.07-r3.ebuild:
  x86 stable wrt bug #377723

  05 Aug 2011; Jeroen Roovers <jer@gentoo.org> file-5.07-r3.ebuild:
  Stable for HPPA (bug #377723).

  04 Aug 2011; Samuli Suominen <ssuominen@gentoo.org> file-5.08.ebuild:
  Change license from as-is to BSD-2 per COPYING wrt #263551 by Justin Bronder

*file-5.08 (04 Aug 2011)

  04 Aug 2011; Samuli Suominen <ssuominen@gentoo.org> +file-5.08.ebuild:
  Version bump.

*file-5.07-r3 (08 Jul 2011)

  08 Jul 2011; Mike Frysinger <vapier@gentoo.org> +file-5.07-r3.ebuild,
  +files/file-5.07-postscript-detect.patch:
  Add fix from upstream for postscript detection #368121 by Justin Brody and
  Shannon.

*file-5.07-r2 (06 Jun 2011)

  06 Jun 2011; Mike Frysinger <vapier@gentoo.org> +file-5.07-r2.ebuild:
  Add USE=zlib support and handle cross-compiling #362941.

*file-5.07-r1 (21 May 2011)

  21 May 2011; Samuli Suominen <ssuominen@gentoo.org> +file-5.07-r1.ebuild,
  +files/file-5.07-zip-detect.patch:
  Fix zip detection wrt #367417 by Lubos Kolouch.

*file-5.07 (11 May 2011)

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

*file-5.06 (15 Apr 2011)

  15 Apr 2011; Mike Frysinger <vapier@gentoo.org> +file-5.06.ebuild:
  Version bump.

  07 Apr 2011; Arfrever Frehtes Taifersar Arahesis <arfrever@gentoo.org>
  file-5.04.ebuild, file-5.05.ebuild:
  Fix deprecation warnings (bug #362345).

  04 Apr 2011; Samuli Suominen <ssuominen@gentoo.org> file-5.05.ebuild:
  USE="static-libs" and punt libtool archive if it's not set.

  01 Mar 2011; Jeroen Roovers <jer@gentoo.org> file-5.05.ebuild:
  Stable for HPPA (bug #355277).

  01 Mar 2011; Brent Baude <ranger@gentoo.org> file-5.05.ebuild:
  stable ppc64, bug 355277

  27 Feb 2011; Markos Chandras <hwoarang@gentoo.org> file-5.05.ebuild:
  Stable on amd64 wrt bug #355277

  27 Feb 2011; Brent Baude <ranger@gentoo.org> file-5.05.ebuild:
  stable ppc, bug 355277

  26 Feb 2011; Raúl Porcel <armin76@gentoo.org> file-5.05.ebuild:
  alpha/arm/ia64/m68k/s390/sh/sparc stable wrt #355277 wrt #355697

  26 Feb 2011; Pawel Hajdan jr <phajdan.jr@gentoo.org> file-5.05.ebuild:
  x86 stable wrt bug #355277

  18 Jan 2011; Arfrever Frehtes Taifersar Arahesis <arfrever@gentoo.org>
  file-5.05.ebuild:
  Support Python 3, fix PYTHON_MODNAME (bug #352045).

*file-5.05 (18 Jan 2011)

  18 Jan 2011; Mike Frysinger <vapier@gentoo.org> +file-5.05.ebuild:
  Version bump.

  28 Nov 2010; Brent Baude <ranger@gentoo.org> file-5.04.ebuild:
  stable ppc64, bug 340225

  12 Oct 2010; Jeroen Roovers <jer@gentoo.org> file-5.04.ebuild:
  Stable for PPC (bug #340225).

  12 Oct 2010; Jeroen Roovers <jer@gentoo.org> file-5.04.ebuild:
  Stable for HPPA (bug #340225).

  12 Oct 2010; Raúl Porcel <armin76@gentoo.org> file-5.04.ebuild:
  alpha/arm/ia64/m68k/s390/sh/sparc stable wrt #340225

  10 Oct 2010; Pawel Hajdan jr <phajdan.jr@gentoo.org> file-5.04.ebuild:
  x86 stable wrt bug #340225

  10 Oct 2010; Markos Chandras <hwoarang@gentoo.org> file-5.04.ebuild:
  Stable on amd64 wrt bug #340225

  04 Feb 2010; Arfrever Frehtes Taifersar Arahesis <arfrever@gentoo.org>
  file-5.03.ebuild, file-5.04.ebuild:
  Set PYTHON_DEPEND. Set SUPPORT_PYTHON_ABIS. Unset DISTUTILS_DISABLE_PYTHON_DEPENDENCY.
  Restrict installation for Python 3.

*file-5.04 (25 Jan 2010)

  25 Jan 2010; Mike Frysinger <vapier@gentoo.org> +file-5.04.ebuild:
  Version bump.

  05 Oct 2009; Raúl Porcel <armin76@gentoo.org> file-5.03.ebuild:
  ia64/m68k/s390/sh/sparc stable wrt #284347

  30 Sep 2009; Tobias Klausmann <klausman@gentoo.org> file-5.03.ebuild:
  Stable on alpha, bug #284347

  19 Sep 2009; nixnut <nixnut@gentoo.org> file-5.03.ebuild:
  ppc stable #284347

  15 Sep 2009; Jeroen Roovers <jer@gentoo.org> file-5.03.ebuild:
  Stable for HPPA (bug #284347).

  14 Sep 2009; Tom Gall <tgall@gentoo.org> file-5.03.ebuild:
  ppc64 stable, bug #284347

  13 Sep 2009; Markus Meier <maekke@gentoo.org> file-5.03.ebuild:
  arm/x86 stable, bug #284347

  12 Sep 2009; Richard Freeman <rich0@gentoo.org> file-5.03.ebuild:
  amd64 stable - 284347

  09 Sep 2009; Arfrever Frehtes Taifersar Arahesis <arfrever@gentoo.org>
  file-5.03.ebuild:
  Fix dependency on virtual/python (bug #230634).

*file-5.03 (06 May 2009)

  06 May 2009; Mike Frysinger <vapier@gentoo.org> +file-5.03.ebuild:
  Version bump.

*file-5.02 (05 May 2009)

  05 May 2009; Mike Frysinger <vapier@gentoo.org> +file-5.02.ebuild:
  Version bump #268180 by Alex Legler.

*file-5.01 (01 May 2009)

  01 May 2009; Mike Frysinger <vapier@gentoo.org> +file-5.01.ebuild:
  Version bump.

*file-5.00-r2 (21 Feb 2009)

  21 Feb 2009; Mike Frysinger <vapier@gentoo.org>
  +files/file-5.00-short-read.patch, +file-5.00-r2.ebuild:
  Add fix from upstream for some short read errors (like with thumb.db
  files).

*file-5.00-r1 (14 Feb 2009)

  14 Feb 2009; Mike Frysinger <vapier@gentoo.org>
  +files/file-5.00-localization.patch, +file-5.00-r1.ebuild:
  Add fix from upstream for unicode issue #258452 by MarisN. Move data files
  to /usr/share/misc/ #246769 by Ulrich Müller.

*file-5.00 (04 Feb 2009)

  04 Feb 2009; Mike Frysinger <vapier@gentoo.org> +file-5.00.ebuild:
  Version bump.

*file-4.26 (17 Sep 2008)

  17 Sep 2008; Mike Frysinger <vapier@gentoo.org> +file-4.26.ebuild:
  Version bump #237173 by Conrad Kostecki.

  18 Jul 2008; Doug Goldstein <cardoe@gentoo.org> -file-4.24.ebuild:
  remove 4.24 so it doesn't go stable

*file-4.25 (17 Jul 2008)

  17 Jul 2008; Doug Goldstein <cardoe@gentoo.org> +file-4.25.ebuild:
  version bump. fix ogg and gzip detection. bugs #219215 & #215499

  29 Mar 2008; Brent Baude <ranger@gentoo.org> file-4.23.ebuild:
  stable ppc64, bug 215058

*file-4.24 (28 Mar 2008)

  28 Mar 2008; Mike Frysinger <vapier@gentoo.org> +file-4.24.ebuild:
  Version bump.

  28 Mar 2008; Brent Baude <ranger@gentoo.org> file-4.23.ebuild:
  stable ppc, bug 215058

  28 Mar 2008; Jeroen Roovers <jer@gentoo.org> file-4.23.ebuild:
  Stable for HPPA too.

  07 Mar 2008; Santiago M. Mola <coldwind@gentoo.org> file-4.23.ebuild:
  amd64 stable

  07 Feb 2008; Raúl Porcel <armin76@gentoo.org> file-4.23.ebuild:
  alpha/ia64/sparc/x86 stable

*file-4.23 (28 Dec 2007)

  28 Dec 2007; Mike Frysinger <vapier@gentoo.org> +file-4.23.ebuild:
  Version bump.

*file-4.22 (27 Dec 2007)

  27 Dec 2007; Mike Frysinger <vapier@gentoo.org> +file-4.22.ebuild:
  Version bump.

  16 Jul 2007; Markus Rothe <corsair@gentoo.org> file-4.21-r1.ebuild:
  Stable on ppc64; bug #174217

  16 Jul 2007; Gustavo Zacarias <gustavoz@gentoo.org> file-4.21-r1.ebuild:
  Stable on sparc wrt security #174217

  16 Jul 2007; Jeroen Roovers <jer@gentoo.org> file-4.21-r1.ebuild:
  Stable for HPPA (bug #174217).

  15 Jul 2007; Tobias Scherbaum <dertobi123@gentoo.org> file-4.21-r1.ebuild:
  ppc stable, bug #174217

  15 Jul 2007; Steve Dibb <beandog@gentoo.org> file-4.21-r1.ebuild:
  amd64 stable, security bug 174217

  15 Jul 2007; Raúl Porcel <armin76@gentoo.org> file-4.21-r1.ebuild:
  alpha/ia64/x86 stable wrt security #174217

  19 Jul 2007; Joshua Kinard <kumba@gentoo.org> file-4.21-r1.ebuild:
  Stable on mips, per #174217.

*file-4.21-r1 (11 Jul 2007)

  11 Jul 2007; Mike Frysinger <vapier@gentoo.org>
  +files/file-4.21-disable-regex.patch, +file-4.21-r1.ebuild:
  Punt resource hogging regex #174217.

  02 Jun 2007; Joshua Kinard <kumba@gentoo.org> file-4.21.ebuild:
  Stable on mips, per #179583.

  28 May 2007; Gustavo Zacarias <gustavoz@gentoo.org> file-4.21.ebuild:
  Stable on sparc wrt security #179583

  25 May 2007; Tobias Scherbaum <dertobi123@gentoo.org> file-4.21.ebuild:
  ppc stable, bug #179583

  25 May 2007; Brent Baude <ranger@gentoo.org> file-4.21.ebuild:
  Marking 4.21 ppc64 stable for bug #179583

  25 May 2007; Raúl Porcel <armin76@gentoo.org> file-4.21.ebuild:
  alpha/ia64 stable wrt #179583

  25 May 2007; Christian Faulhammer <opfer@gentoo.org> file-4.21.ebuild:
  x86/amd64 stable, security bug 179583

  25 May 2007; Jeroen Roovers <jer@gentoo.org> file-4.21.ebuild:
  Stable for HPPA (bug #179583).

*file-4.21 (24 May 2007)

  24 May 2007; Mike Frysinger <vapier@gentoo.org> +file-4.21.ebuild:
  Version bump.

*file-4.20-r1 (07 Apr 2007)

  07 Apr 2007; Mike Frysinger <vapier@gentoo.org>
  +files/file-4.20-disable-regex.patch, +file-4.20-r1.ebuild:
  Workaround from upstream for crappy regex handling in newer glibcs #173368.

  25 Mar 2007; Mike Frysinger <vapier@gentoo.org> file-4.20.ebuild:
  Grab patch from upstream for non-portable regex flag #172146.

  23 Mar 2007; Tobias Scherbaum <dertobi123@gentoo.org> file-4.20.ebuild:
  Stable on ppc wrt bug #171452.

  23 Mar 2007; Gustavo Zacarias <gustavoz@gentoo.org> file-4.20.ebuild:
  Stable on sparc wrt security #171452

  23 Mar 2007; Christian Faulhammer <opfer@gentoo.org> file-4.20.ebuild:
  stable x86, security bug 171452

  22 Mar 2007; Steve Dibb <beandog@gentoo.org> ChangeLog:
  amd64 stable, security bug 171452

  21 Mar 2007; Jose Luis Rivero <yoswink@gentoo.org> file-4.20.ebuild:
  Stable on alpha bug #171452

  21 Mar 2007; Markus Rothe <corsair@gentoo.org> file-4.20.ebuild:
  Stable on ppc64; bug #171452

  20 Mar 2007; Jeroen Roovers <jer@gentoo.org> file-4.20.ebuild:
  Stable for HPPA (bug #171452).

  19 Mar 2007; Mike Frysinger <vapier@gentoo.org> file-4.20.ebuild:
  Fix building on ppc64 by renaming the __unused define #171178.

*file-4.20 (02 Mar 2007)

  02 Mar 2007; Mike Frysinger <vapier@gentoo.org> +file-4.20.ebuild:
  Version bump.

  13 Feb 2007; Alexander H. Færøy <eroyf@gentoo.org> file-4.19.ebuild:
  Stable on MIPS; bug #165717

  13 Feb 2007; Markus Rothe <corsair@gentoo.org> file-4.19.ebuild:
  Stable on ppc64; bug #165717

  10 Feb 2007; nixnut <nixnut@gentoo.org> ChangeLog:
  Stable on ppc wrt bug 165717

  08 Feb 2007; Luis Medinas <metalgod@gentoo.org> file-4.19.ebuild:
  Stable on amd64. Bug #165717.

  07 Feb 2007; Jeroen Roovers <jer@gentoo.org> file-4.19.ebuild:
  Stable for HPPA (bug #165717).

  07 Feb 2007; Gustavo Zacarias <gustavoz@gentoo.org> file-4.19.ebuild:
  Stable on sparc wrt #165717

  07 Feb 2007; Raúl Porcel <armin76@gentoo.org> file-4.19.ebuild:
  x86 stable wrt bug 165717

*file-4.19-r1 (07 Feb 2007)

  07 Feb 2007; Mike Frysinger <vapier@gentoo.org>
  +files/file-4.19-init-file.patch, +files/file-4.19-wcwidth.patch,
  +file-4.19-r1.ebuild:
  Patch by Jeff Hansen to initialize the file member #163948. Also fix up
  wcwidth prototype.

  22 Dec 2006; Alexander H. Færøy <eroyf@gentoo.org> file-4.18.ebuild:
  Stable on MIPS; bug #144624

  14 Dec 2006; Peter Weller <welp@gentoo.org> file-4.18.ebuild:
  Added amd64 keyword wrt bug #1446244

  14 Dec 2006; Jeroen Roovers <jer@gentoo.org> file-4.18.ebuild:
  Stable for HPPA (bug #144624).

  14 Dec 2006; Brent Baude <ranger@gentoo.org> file-4.18.ebuild:
  Marking file-4.18 ppc64 per bug request 144624

  13 Dec 2006; Tobias Scherbaum <dertobi123@gentoo.org> file-4.18.ebuild:
  ppc stable, bug #144624

  13 Dec 2006; Ferris McCormick <fmccor@gentoo.org> file-4.18.ebuild:
  Stable on sparc --- Bug #144624 --- builds and seems to work fine.

  13 Dec 2006; Christian Faulhammer <opfer@gentoo.org> file-4.18.ebuild:
  stable x86, bugs #144624

*file-4.19 (12 Dec 2006)

  12 Dec 2006; Mike Frysinger <vapier@gentoo.org> +file-4.19.ebuild:
  Version bump which fixes segfault with emf files #151649.

*file-4.18 (31 Oct 2006)

  31 Oct 2006; Mike Frysinger <vapier@gentoo.org> +file-4.18.ebuild:
  Version bump.

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

  09 Jul 2006; Joshua Kinard <kumba@gentoo.org> file-4.17-r1.ebuild:
  Marked stable on mips.

  27 Jun 2006; Chris Gianelloni <wolf31o2@gentoo.org> file-4.17-r1.ebuild:
  Stable on x86 wrt bug #138150.

  27 Jun 2006; Tobias Scherbaum <dertobi123@gentoo.org> file-4.17-r1.ebuild:
  ppc stable, #138150

  27 Jun 2006; Olivier Crête <tester@gentoo.org> file-4.17-r1.ebuild:
  Stable on amd64 per bug #138150

  27 Jun 2006; Thomas Cort <tcort@gentoo.org> file-4.17-r1.ebuild:
  Stable on alpha wrt Bug #138150.

  27 Jun 2006; Ferris McCormick <fmccor@gentoo.org> file-4.17-r1.ebuild:
  Stable on sparc --- Bug #138150 --- at developer request.  Seems fine.

  27 Jun 2006; Markus Rothe <corsair@gentoo.org> file-4.17-r1.ebuild:
  Stable on ppc64; bug #138150

*file-4.17-r1 (14 Mar 2006)

  14 Mar 2006; Mike Frysinger <vapier@gentoo.org>
  +files/file-4.17-init-mem.patch, +file-4.17-r1.ebuild:
  Fix segfault in libmagic #126012.

*file-4.17 (13 Mar 2006)

  13 Mar 2006; Mike Frysinger <vapier@gentoo.org> +file-4.17.ebuild:
  Version bump.

  13 Jan 2006; Mike Frysinger <vapier@gentoo.org>
  +files/file-4.16-fix-array-64bit.patch, file-4.16.ebuild:
  Fix 64bit elf detection when cross-compiling.

*file-4.16 (17 Oct 2005)

  17 Oct 2005; Mike Frysinger <vapier@gentoo.org> +file-4.16.ebuild:
  Versin bump.

*file-4.15-r1 (08 Oct 2005)

  08 Oct 2005; Mike Frysinger <vapier@gentoo.org>
  +files/file-4.15-cracklib-magic.patch, +file-4.15-r1.ebuild:
  Fix from upstream for detection of block devices with -s #108287 by Preston
  Crow.

  17 Sep 2005; Mike Frysinger <vapier@gentoo.org>
  +files/file-4.15-empty-mime-buffer.patch, file-4.15.ebuild:
  Add a check for empty buffers #106152.

  17 Sep 2005; Ciaran McCreesh <ciaranm@gentoo.org> ChangeLog:
  Converted to UTF-8, fixed encoding screwups

  14 Sep 2005; Mike Frysinger <vapier@gentoo.org>
  +files/file-4.15-libtool.patch, file-4.15.ebuild:
  Fix building with people who set LD_LIBRARY_PATH to retarded values #99593.

*file-4.15 (18 Aug 2005)

  18 Aug 2005; Mike Frysinger <vapier@gentoo.org> +file-4.15.ebuild:
  Version bump to fix up #101298 by PIERRE Benoît / #101639 by Preston 
  Crow / #102520 by Daniel Drake.

  24 Jul 2005; Martin Schlemmer <azarah@gentoo.org>
  +files/file-4.14-gcc2.patch, file-4.14.ebuild:
  Fix building with gcc2.

*file-4.14 (17 Jul 2005)

  17 Jul 2005; Mike Frysinger <vapier@gentoo.org> +file-4.14.ebuild:
  Version bump.

*file-4.13 (01 Apr 2005)

  01 Apr 2005; Tony Vroon <chainsaw@gentoo.org>
  +files/file-4.13-cross-compile.patch, +file-4.13.ebuild:
  Version bump, closes bug #87496.

  13 Dec 2004; Mike Frysinger <vapier@gentoo.org>
  +files/file-4.12-cross-compile.patch, file-4.12.ebuild:
  Cross-compiling patch from uClibc.

  11 Dec 2004; Markus Rothe <corsair@gentoo.org> file-4.12.ebuild:
  Stable on ppc64; bug #72521

  09 Dec 2004; Guy Martin <gmsoft@gentoo.org> file-4.12.ebuild:
  Stable on hppa.

  08 Dec 2004; Hardave Riar <hardave@gentoo.org>
  files/file-4.xx-mips-gentoo.diff, file-4.12.ebuild:
  Fixed up mips patch so it applies cleanly. Keyworded stable on mips, bug
  #72521.

  08 Dec 2004; Bryan Østergaard <kloeri@gentoo.org> file-4.12.ebuild:
  Stable on alpha, bug 72521.

  08 Dec 2004; Daniel Black <dragonheart@gentoo.org> file-4.12.ebuild:
  ppc stable as per bug #72521

  07 Dec 2004; Olivier Crete <tester@gentoo.org> file-4.12.ebuild:
  Stable on x86 wrt bug 72521

  07 Dec 2004; <solar@gentoo.org> file-4.12.ebuild:
  - marked stable on x86 bug #72521

  07 Dec 2004; Gustavo Zacarias <gustavoz@gentoo.org> file-4.12.ebuild:
  Stable on sparc wrt #72521

  07 Dec 2004; Mike Doty <kingtaco@gentoo.org> file-4.12.ebuild:
  stable on amd64 per bug #72521

*file-4.12 (25 Nov 2004)

  25 Nov 2004; <solar@gentoo.org> +file-4.12.ebuild:
  version bump. See file-4.12/ChangeLog for more details

  14 Nov 2004; Bryan Østergaard <kloeri@gentoo.org> file-4.10-r1.ebuild:
  Stable on alpha.

  13 Nov 2004; <solar@gentoo.org> +files/file-4.10-mconvert.patch,
  file-4.10-r1.ebuild:
  fixed off by one bug in file-4.10

  12 Nov 2004; Gustavo Zacarias <gustavoz@gentoo.org> file-4.10-r1.ebuild:
  Stable on sparc

  07 Oct 2004; Lina Pezzella <j4rg0n@gentoo.org> file-4.08.ebuild:
  Removed ppc-macos keyword Bug # 65763

  25 Sep 2004; Joshua Kinard <kumba@gentoo.org> file-4.10-r1.ebuild:
  Marked stable on mips.

  22 Sep 2004; Danny van Dyk <kugelfang@gentoo.org> file-4.10.ebuild:
  Marked stable on amd64.

*file-4.10-r1 (13 Sep 2004)

  13 Sep 2004; Rob Holland <tigger@gentoo.org> +file-4.10-r1.ebuild:
  removed -j1 from emake. emerge -C file; MAKEOPTS=-j emerge file worked fine on
  an SMP box

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

  03 Sep 2004; Pieter Van den Abeele <pvdabeel@gentoo.org> file-4.06.ebuild:
  Masked file-4.06.ebuild stable for ppc

  18 Aug 2004; Aron Griffis <agriffis@gentoo.org> file-4.10.ebuild:
  stable on alpha and ia64

*file-4.10 (28 Jul 2004)

  28 Jul 2004; Mike Frysinger <vapier@gentoo.org> +file-4.10.ebuild:
  Version bump.

  25 Jul 2004; Lina Pezzella <j4rg0n@gentoo.org>
  Fixed Manifest.

  24 Jun 2004; Alexander Plank <alexander@gentoo.org> file-4.08.ebuild:
  add macos keyword (emerge 4.09 gives error "emerge: there are no ebuilds to 
  satisfy "virtual/python"."

  22 Jul 2004; <solar@gentoo.org> file-4.09.ebuild:
  enable shared support for uclibc

  14 Jul 2004; Mike Frysinger <vapier@gentoo.org> file-4.09.ebuild:
  Make sure when building the python component we link against the current
  libmagic.so and not the system one found in /usr/lib #54401 by tyarling.

  12 Jul 2004; <solar@gentoo.org> file-4.08.ebuild, file-4.09.ebuild:
  remove the unneeded lib/*.a cruft from a stage1 build

  30 Jun 2004; Aron Griffis <agriffis@gentoo.org> file-3.41.ebuild,
  file-4.02.ebuild, file-4.06.ebuild, file-4.07-r1.ebuild, file-4.07.ebuild,
  file-4.08.ebuild:
  sync IUSE (+build, -uclibc)

  26 Jun 2004; Ciaran McCreesh <ciaranm@gentoo.org> file-4.09.ebuild:
  Stable on sparc, mips

  25 Jun 2004; Aron Griffis <agriffis@gentoo.org> file-3.41.ebuild,
  file-4.02.ebuild, file-4.06.ebuild, file-4.07-r1.ebuild, file-4.07.ebuild:
  QA - fix use invocation

  16 Jun 2004; Daniel Black <dragonheart@gentoo.org>
  +files/file-4.08-uclibc.patch, +files/ltconfig-uclibc.patch,
  file-4.06.ebuild, file-4.08.ebuild:
  uclibc patches thanks to Peter S. Mazinger <ps.m@gmx.net>. Missing build use
  flag on 4.08.

  11 Jun 2004; Bryan Østergaard <kloeri@gentoo.org> file-4.09.ebuild:
  Stable on alpha.

  02 Jun 2004; Travis Tilley <lv@gentoo.org> file-4.09.ebuild:
  stable on amd64

  03 May 2004; Mike Frysinger <vapier@gentoo.org> :
  Add python support #39217 by herve coatanhay.

  30 Apr 2004; Michael McCabe <randy@gentoo.org> file-4.09.ebuild:
  Stable on s390

  27 Apr 2004; Aron Griffis <agriffis@gentoo.org> file-4.06.ebuild,
  file-4.07-r1.ebuild, file-4.07.ebuild:
  Add inherit eutils

*file-4.09 (27 Apr 2004)

  27 Apr 2004; Martin Holzer <mholzer@gentoo.org> file-4.09.ebuild:
  Version bumped.

  27 Apr 2004; Michael McCabe <randy@gentoo.org> file-4.08.ebuild:
  Marked stable on s390

  09 Apr 2004; Travis Tilley <lv@gentoo.org> file-4.06.ebuild:
  stable on amd64

*file-4.08 (23 Mar 2004)

  23 Mar 2004; Martin Holzer <mholzer@gentoo.org> file-4.08.ebuild:
  Version bumped.

  02 Mar 2004; Brian Jackson <iggy@gentoo.org> file-4.07-r1.ebuild:
  adding initial s390 support

  28 Jan 2004; Aron Griffis <agriffis@gentoo.org> file-4.06.ebuild:
  stable on alpha and ia64

*file-4.07-r1 (23 Jan 2004)

  23 Jan 2004; Jared Hudson <jhhudso@gentoo.org> : Added a patch from source
  changes found in the debian file package. This fixes a serious (IMO) bug
  that causes a endless loop (100% cpu usage) when using file against certain
  elf binaries.


  22 Jan 2004; <gustavoz@gentoo.org> file-4.06.ebuild:
  marked stable on sparc

  22 Jan 2004; Martin Holzer <mholzer@gentoo.org> file-4.06.ebuild:
  x86 stable.

  20 Jan 2004; Michael Sterrett <mr_bones_@gentoo.org> file-4.07.ebuild:
  mark the new ebuild all ~

*file-4.07 (20 Jan 2004)

  20 Jan 2004; Michael Sterrett <mr_bones_@gentoo.org> file-4.07.ebuild:
  version bump

  28 Dec 2003; Joshua Kinard <kumba@gentoo.org> file-4.06.ebuild:
  Move to mips stable (~mips -> mips)

  14 Nov 2003; Aron Griffis <agriffis@gentoo.org> file-4.06.ebuild:
  Stable on ia64

*file-4.03 (01 Nov 2003)

  01 Nov 2003; Seemant Kulleen <seemant@gentoo.org> file-3.37.ebuild,
  file-3.39.ebuild, file-4.01.ebuild, file-4.02.ebuild, file-4.03.ebuild,
  file-4.05.ebuild:
  removed old versions, and also changed SRC_URI on file-4.02 point to Gentoo
  mirrors, since upstream doesn't have it available any more. Thanks to: Stony
  Yakovac <stonyy@tek.com> in bug #32513

*file-4.06 (17 Oct 2003)

  19 Nov 2003; Guy Martin <gmsoft@gentoo.org> file-4.06.ebuild :
  Marked stable on hppa. It resolv some segfault problems.

  20 Oct 2003; Joshua Kinard <kumba@gentoo.org> file-4.06.ebuild:
  Added gnuconfig support for mips64

  18 Oct 2003; Joshua Kinard <kumba@gentoo.org> file-4.05.ebuild,
  file-4.06.ebuild, files/file-4.05-mips-gentoo.diff,
  files/file-4.xx-mips-gentoo.diff:
  Renamed the 4.05 patch for mips to 4.xx because it'll likely apply cleanly for
  several versions. Modified file-4.05 and file-4.06 to use this patch.

  17 Oct 2003; Michael Sterrett <mr_bones_@gentoo.org> file-4.06.ebuild:
  fix failure of parallel make.  bug 31356

  17 Oct 2003; Joshua Kinard <kumba@gentoo.org> file-4.05.ebuild,
  file-4.06.ebuild:
  Added "cd ${S}" lines to file-4.05 and file-4.06, as well as removed the
  uneeded sed statement from file-4.06, as the patch level is properly set now.

  17 Oct 2003; Martin Holzer <mholzer@gentoo.org> file-4.06.ebuild:
  Version bumped.

*file-4.05 (09 Oct 2003)

  12 Oct 2003; Joshua Kinard <kumba@gentoo.org> file-4.05.ebuild,
  files/file-4.05-mips-gentoo.diff:
  Added a patch for mips which changes file's output somewhat to allow shared
  libs to be detected.
  Also added a sed command to tweak src/patchlevel.h to
  make file report the proper version. Currently, file-4.05 claims to be
  file-4.04.
  Also added ~mips to KEYWORDS (We're still using file-3.41, update time!)

  09 Oct 2003; Joel Hill <hillster@gentoo.org> file-4.05.ebuild:
  version bump. marking ~ on all arch's

  11 Aug 2003; Alexander Gabert <pappy@gentoo.org> file-4.02.ebuild:
  file command segfaults on hppa when pa8000 schedule for gcc is used

  23 Jun 2003; Aron Griffis <agriffis@gentoo.org> file-4.02.ebuild:
  Mark stable on alpha

  01 Jun 2003; Joshua Kinard <kumba@gentoo.org>
  file-4.01.ebuild, file-4.02.ebuild:
  Removed ~mips from KEYWORDS as file lacks a patch necessary to generate proper
  output used by configure scripts to detect shared libs.

*file-4.02 (04 Apr 2003)

  06 Jul 2003; Guy Martin <gmsoft@gentoo.org> file-4.02.ebuild :
  Marked stable on hppa.

  04 Apr 2003; Daniel Robbins <drobbins@gentoo.org> file-4.02.ebuild:
  Added latest version and marked stable for x86, sparc.

*file-4.01 (26 Mar 2003)

  02 Apr 2003; Christian Birchinger <joker@gentoo.org> file-4.01.ebuild:
  Added stable sparc keyword

  26 Mar 2003; Daniel Robbins <drobbins@gentoo.org>: file-4.01.ebuild: New
  upstream release, marked ~x86.

*file-3.41 (06 Mar 2003)

  06 Mar 2003; Daniel Ahlberg <aliz@gentoo.rg> :
  Security update.

  20 Feb 2003; Zach Welch <zwelch@gentoo.org> file-3.39.ebuild :
  Added arm to keywords.

  09 Feb 2003; Guy Martin <gmsoft@gentoo.org> file-3.39.ebuild :
  Added hppa to keywords.

*file-3.37 (20 Dec 2002)

  20 Dec 2002; Jan Seidel <tuxus@gentoo.org> file-3.37.ebuild :
  Added mips to keywords

  06 Dec 2002; Rodney Rees <manson@gentoo.org> : changed sparc ~sparc keywords
 
*file-3.39 (25 Sep 2002)

  08 Feb 2003; Jan Seidel <tuxus@gentoo.org> :
  Added mips to keywords
  Added a patch for mips that changes the file output so that's work with libtool

  25 Sep 2002; Martin Schlemmer <azarah@gentoo.org> :
  Update version.

*file-3.33-r3.ebuild (14 July 2002)

  14 Jul 2002; phoen][x <phoenix@gentoo.org> file-3.33-r3.ebuild :
  Added LICENSE, KEYWORDS, SLOT.

*file-3.37 (1 Feb 2002)

  14 Jul 2002; phoen][x <phoenix@gentoo.org> file-3.37.ebuild :
  Added KEYWORDS, SLOT.

  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.