summaryrefslogtreecommitdiff
blob: be75c269ba3ed10f6710f0a55228c6bbc7806e3e (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
# ChangeLog for sys-devel/llvm
# Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2
# $Header: /var/cvsroot/gentoo-x86/sys-devel/llvm/ChangeLog,v 1.258 2015/08/06 12:18:45 voyageur Exp $

  06 Aug 2015; Bernard Cafarelli <voyageur@gentoo.org> llvm-3.6.0.ebuild,
  llvm-3.6.1.ebuild, llvm-3.6.2.ebuild, llvm-9999.ebuild:
  Add missing dependencies to finally close #543422 (USE-flag masked on
  sparc/powerpc)

*llvm-3.6.2 (25 Jul 2015)

  25 Jul 2015; Michał Górny <mgorny@gentoo.org> +llvm-3.6.2.ebuild:
  Version bump with bug fixes. Bug #555536.

  19 Jul 2015; Michał Górny <mgorny@gentoo.org> llvm-9999.ebuild:
  Remove no longer needed gcc-4.9 patch. Update clang vesion number.

  29 Jun 2015; Bernard Cafarelli <voyageur@gentoo.org> llvm-3.5.2.ebuild,
  +files/llvm-3.5.2-gcc-5.1.patch:
  Fix compilation with gcc 5.1, bug #550716 (3.6 and later include the fix)

  18 Jun 2015; Bernard Cafarelli <voyageur@gentoo.org> llvm-2.8-r2.ebuild,
  llvm-2.9-r2.ebuild, metadata.xml:
  Remove last llvm-gcc references, this was removed years ago

  15 Jun 2015; Bernard Cafarelli <voyageur@gentoo.org> llvm-9999.ebuild:
  lldb fixes thanks to mgorny's review

  15 Jun 2015; Bernard Cafarelli <voyageur@gentoo.org> llvm-9999.ebuild,
  metadata.xml:
  Add initial support for lldb debugger, bug #464354. Also enable USE=doc by
  default for live ebuild, useful if you want the man pages

  14 Jun 2015; Michał Górny <mgorny@gentoo.org>
  +files/clang-3.6-fbsd-gcc49.patch, llvm-3.6.1.ebuild:
  Apply upstream patch for FreeBSD gcc-4.9 build, bug #548444.
  https://github.com/gentoo/gentoo-portage-rsync-mirror/pull/140 by nigoro.

  13 Jun 2015; Michał Górny <mgorny@gentoo.org> llvm-9999.ebuild:
  Clean multilib_src_install_all() up.

  13 Jun 2015; Michał Górny <mgorny@gentoo.org> llvm-9999.ebuild:
  Simplify doc CMake code

  13 Jun 2015; Michał Górny <mgorny@gentoo.org> llvm-9999.ebuild:
  Rename R600 -> AMDGPU following upstream. Reported by darkbasic.

  11 Jun 2015; Bernard Cafarelli <voyageur@gentoo.org> llvm-9999.ebuild:
  Documentation build can be made optional again, add back pax markings

  09 Jun 2015; Michał Górny <mgorny@gentoo.org> llvm-9999.ebuild:
  Enable EH & RTTI for better compatibility

  09 Jun 2015; Michał Górny <mgorny@gentoo.org>
  +files/cmake/0002-cmake-Support-overriding-Sphinx-HTML-doc-install-dir.patch,
  +files/cmake/0003-cmake-Add-an-ordering-dep-between-HTML-man-Sphinx-ta.patch,
  +files/cmake/0004-cmake-Do-not-install-libgtest.patch, +files/cmake/clang-0001
  -Install-clang-runtime-into-usr-lib-without-suffix.patch,
  +files/cmake/clang-0002-cmake-Make-CLANG_LIBDIR_SUFFIX-overridable.patch, +fil
  es/cmake/compiler-rt-0001-cmake-Install-compiler-rt-into-usr-lib-without-suffi
  .patch, llvm-9999.ebuild:
  Switch the live ebuild to CMake, and few more improvements. Covered by bug
  #456322.

  05 Jun 2015; Bernard Cafarelli <voyageur@gentoo.org> llvm-3.6.1.ebuild,
  llvm-9999.ebuild:
  Add large file support flags, thanks zmedico in bug #550708

  31 May 2015; Fabian Groffen <grobian@gentoo.org> llvm-3.4.2.ebuild,
  llvm-3.5.2.ebuild, llvm-3.6.1.ebuild, llvm-9999.ebuild:
  Fix dependencies for Darwin: only 3.4 can be compiled with gcc-apple-4.2.1,
  later versions need Clang.  We can compile 3.4 without libcxx, later versions
  need it on Darwin, so require it.

  31 May 2015; Fabian Groffen <grobian@gentoo.org> llvm-3.4.2.ebuild,
  llvm-3.5.2.ebuild, llvm-3.6.1.ebuild, llvm-9999.ebuild:
  Allow LLVM to compile itself.  This is useful for Darwin, where LLVM is going
  to be the only compiler available by default.

  29 May 2015; Bernard Cafarelli <voyageur@gentoo.org> llvm-9999.ebuild:
  Revert accidental commit on live ebuild, should fix #550608 and #550682

*llvm-3.6.1 (27 May 2015)

  27 May 2015; Bernard Cafarelli <voyageur@gentoo.org> +llvm-3.6.1.ebuild,
  llvm-9999.ebuild:
  Version bump, mostly MIPS and R600 bug fixes

  04 May 2015; Bernard Cafarelli <voyageur@gentoo.org> llvm-9999.ebuild:
  Fix vim files installation, thanks Tobias Jakobi. Note this does not fix
  USE=clang build, which still needs the cmake rewrite

  16 Apr 2015; Bernard Cafarelli <voyageur@gentoo.org> llvm-3.3-r3.ebuild,
  llvm-3.4.2.ebuild, llvm-3.5.0.ebuild, llvm-3.5.1.ebuild, llvm-3.5.2.ebuild,
  llvm-3.6.0.ebuild, llvm-9999.ebuild:
  Update debug CFLAGS check, bug #545630

  08 Apr 2015; Michał Górny <mgorny@gentoo.org> llvm-3.2.ebuild,
  llvm-3.3-r3.ebuild:
  Drop old Python implementations

*llvm-3.5.2 (03 Apr 2015)

  03 Apr 2015; Bernard Cafarelli <voyageur@gentoo.org> +llvm-3.5.2.ebuild:
  3.5 bugfix release bump

  02 Apr 2015; Bernard Cafarelli <voyageur@gentoo.org> llvm-9999.ebuild,
  +files/llvm-3.7-nodoctargz.patch:
  Fix live ebuild patch, though it requires a rewrite for cmake build system,
  bug #543536

  19 Mar 2015; Bernard Cafarelli <voyageur@gentoo.org> llvm-3.1-r2.ebuild,
  +files/llvm-3.1-docs-pod-markup-fixes.patch,
  +files/llvm-3.6.0-ocaml-ctypes-0.4.0.patch:
  Fix compilation with newer perl versions, bug #541132

  03 Mar 2015; Yixun Lan <dlan@gentoo.org> llvm-3.5.1.ebuild:
  add arm64 support, tested on A53 board

*llvm-3.6.0 (27 Feb 2015)

  27 Feb 2015; Bernard Cafarelli <voyageur@gentoo.org> -llvm-3.6.0_rc4.ebuild,
  +llvm-3.6.0.ebuild:
  Bump to final version

*llvm-3.6.0_rc4 (23 Feb 2015)

  23 Feb 2015; Bernard Cafarelli <voyageur@gentoo.org> -llvm-3.6.0_rc3.ebuild,
  +llvm-3.6.0_rc4.ebuild:
  RC bump

  21 Feb 2015; Agostino Sarubbo <ago@gentoo.org> llvm-3.5.0.ebuild:
  Stable for ppc64, wrt bug #530882

  18 Feb 2015; Bernard Cafarelli <voyageur@gentoo.org> llvm-3.6.0_rc3.ebuild:
  Remove forgotten patch line

  18 Feb 2015; Bernard Cafarelli <voyageur@gentoo.org> llvm-3.6.0_rc3.ebuild,
  metadata.xml:
  go bindings do not integrate with autoconf build system, disable for now

*llvm-3.6.0_rc3 (18 Feb 2015)

  18 Feb 2015; Bernard Cafarelli <voyageur@gentoo.org> +llvm-3.6.0_rc3.ebuild,
  metadata.xml:
  Add 3.6.0 release candidate for testing, still need to fix go bindings

  04 Feb 2015; Michał Górny <mgorny@gentoo.org>
  +files/clang-3.6-gentoo-install.patch, llvm-9999.ebuild:
  Update clang patch, bug #538768. It looks like upstream finally fixed libdir
  for LLVMgold.

  31 Jan 2015; Fabian Groffen <grobian@gentoo.org> llvm-3.4.2.ebuild,
  llvm-3.5.0.ebuild, llvm-3.5.1.ebuild, llvm-9999.ebuild:
  Fixup previous commit, better set binutils-apple dependency in one place ...

  31 Jan 2015; Fabian Groffen <grobian@gentoo.org>
  -files/clang-3.4-darwin_old_linker.patch, llvm-3.4.2.ebuild,
  llvm-3.5.1.ebuild, llvm-9999.ebuild:
  Drop old_linker patch in favour of a dependency on a newer linker

  31 Jan 2015; Fabian Groffen <grobian@gentoo.org> llvm-3.4.2.ebuild,
  llvm-3.5.0.ebuild, llvm-3.5.1.ebuild, llvm-9999.ebuild:
  Update install_name patching, by Michael Weiser, bug #536716

  25 Jan 2015; Bernard Cafarelli <voyageur@gentoo.org> llvm-9999.ebuild:
  Update ocaml tests path for live ebuild, bug #537504

  23 Jan 2015; Bernard Cafarelli <voyageur@gentoo.org> llvm-3.5.1.ebuild,
  llvm-9999.ebuild:
  Disable warnings as errors for Ocaml tests, bug #537308

  21 Jan 2015; Bernard Cafarelli <voyageur@gentoo.org> llvm-3.5.1.ebuild:
  Fix installation with USE=-doc

*llvm-3.5.1 (21 Jan 2015)

  21 Jan 2015; Bernard Cafarelli <voyageur@gentoo.org> +llvm-3.5.1.ebuild:
  Version bump

  11 Jan 2015; Fabian Groffen <grobian@gentoo.org>
  +files/clang-3.4-darwin_old_linker.patch, llvm-3.4.2.ebuild:
  Add workaround for our older (Prefix/Darwin) toolchain

  01 Jan 2015; Markus Meier <maekke@gentoo.org> llvm-3.5.0.ebuild:
  arm stable, bug #530882

  31 Dec 2014; Agostino Sarubbo <ago@gentoo.org> llvm-3.5.0.ebuild:
  Stable for ppc, wrt bug #530882

  31 Dec 2014; Michał Górny <mgorny@gentoo.org>
  +files/llvm-3.6-gentoo-install.patch, llvm-9999.ebuild:
  Update Gentoo patch for -9999, bug #534080.

  31 Dec 2014; Mike Frysinger <vapier@gentoo.org> llvm-3.5.0.ebuild,
  llvm-9999.ebuild:
  Fix typo with location of --disable-shared.

  28 Dec 2014; Agostino Sarubbo <ago@gentoo.org> llvm-3.5.0.ebuild:
  Stable for x86, wrt bug #530882

  27 Dec 2014; Agostino Sarubbo <ago@gentoo.org> llvm-3.5.0.ebuild:
  Stable for amd64, wrt bug #530882

  26 Nov 2014; Bernard Cafarelli <voyageur@gentoo.org> -llvm-3.3.ebuild,
  -llvm-3.4.1-r2.ebuild, llvm-3.4.2.ebuild, llvm-3.5.0.ebuild,
  llvm-9999.ebuild:
  Keep one major version for older releases. Add pax marking for
  lli-child-target, thanks Nikoli in bug #520000

  10 Nov 2014; Fabian Groffen <grobian@gentoo.org> llvm-3.4.2.ebuild,
  llvm-3.5.0.ebuild, llvm-9999.ebuild, +files/clang-3.4-darwin_build_fix.patch,
  +files/clang-3.4-darwin_prefix-include-paths.patch:
  Make clang 3.4.2 find Prefix headers on Darwin

  20 Oct 2014; Michał Górny <mgorny@gentoo.org> llvm-3.5.0.ebuild,
  llvm-9999.ebuild:
  Fix old dev-python/configparser blocker. Bug #525916.

  29 Sep 2014; Michał Górny <mgorny@gentoo.org> llvm-3.5.0.ebuild,
  llvm-9999.ebuild:
  Block configparser-3.2 since it is known to break the build.

  18 Sep 2014; Michał Górny <mgorny@gentoo.org>
  files/clang-3.5-gentoo-runtime-gcc-detection-v3.patch:
  Use simpler llvm::sys::fs::exists() form in gcc version detection code since
  the other one is deprecated. Bug #523082.

  17 Sep 2014; Bernard Cafarelli <voyageur@gentoo.org> llvm-3.4.2.ebuild:
  Also disable troublesome test in 3.4.2, fixes bug #516496

  16 Sep 2014; Bernard Cafarelli <voyageur@gentoo.org> llvm-3.5.0.ebuild,
  +files/llvm-3.5.0-fix_LLVMExports_cmake.patch:
  Backport upstream fix for cmake files, thanks David Hallas <david@cgp.dk> in
  bug #522510

*llvm-3.5.0 (07 Sep 2014)

  07 Sep 2014; Michał Górny <mgorny@gentoo.org>
  +files/clang-3.5-gentoo-runtime-gcc-detection-v3.patch,
  +files/llvm-3.5-gcc-4.9.patch, +llvm-3.5.0.ebuild, llvm-9999.ebuild:
  Version bump, bug #522188.

  14 Jul 2014; Ian Stakenvicius (_AxS_) <axs@gentoo.org> llvm-3.3-r3.ebuild,
  llvm-3.4.1-r2.ebuild, llvm-3.4.2.ebuild, llvm-9999.ebuild:
  Update dependencies to require guaranteed EAPI=5 or multilib ebuilds, bug
  513718

  29 Jun 2014; Michał Górny <mgorny@gentoo.org> llvm-9999.ebuild:
  Rename clang to ${CHOST}-clang-${PV}. Add multilib wrappers.

*llvm-3.4.2 (23 Jun 2014)

  23 Jun 2014; Bernard Cafarelli <voyageur@gentoo.org> +llvm-3.4.2.ebuild:
  Version bump, mostly fixes a gcc 4.9 build failure and change of libLLVM's
  DT_SONAME

  15 Jun 2014; Michał Górny <mgorny@gentoo.org>
  files/clang-3.3-gentoo-install.patch, llvm-3.3-r3.ebuild:
  Restore the old clang patch as clang-3.3-gentoo-install.patch, and use it for
  version 3.3-r3. Bug #513346.

*llvm-3.4.1-r2 (14 Jun 2014)

  14 Jun 2014; Michał Górny <mgorny@gentoo.org> +llvm-3.4.1-r2.ebuild,
  -llvm-3.4-r2.ebuild, -llvm-3.4.1-r1.ebuild,
  files/clang-3.4-gentoo-install.patch:
  Fix fixing LLVMgold.so plugin path for GNU linker, bug #508838.

  11 Jun 2014; Michał Górny <mgorny@gentoo.org>
  +files/llvm-3.4-cmake-configparser.patch, llvm-3.4-r2.ebuild,
  llvm-3.4.1-r1.ebuild:
  Always use built-in ConfigParser to work-around issues with configparser-3.2,
  bug #500856.

  11 May 2014; Michał Górny <mgorny@gentoo.org> -llvm-3.3-r1.ebuild,
  -llvm-3.4-r1.ebuild, -llvm-3.4.ebuild:
  Clean old versions up.

*llvm-3.4.1-r1 (10 May 2014)

  10 May 2014; Michał Górny <mgorny@gentoo.org> +llvm-3.4.1-r1.ebuild,
  -llvm-3.4.1.ebuild:
  Fix creating libLLVM-3.4.so compatibility alias.

  10 May 2014; Michał Górny <mgorny@gentoo.org> llvm-3.4.1.ebuild:
  Bump subslot since library name changes anyway. Unnecessarily.

  10 May 2014; Mike Gilbert <floppym@gentoo.org> llvm-3.4.1.ebuild:
  Fix PDEPEND on clang.

*llvm-3.4.1 (09 May 2014)

  09 May 2014; Michał Górny <mgorny@gentoo.org> +llvm-3.4.1.ebuild,
  metadata.xml:
  Version bump.

  01 May 2014; Michał Górny <mgorny@gentoo.org> llvm-3.3-r1.ebuild,
  llvm-3.3-r3.ebuild, llvm-3.4-r1.ebuild, llvm-3.4-r2.ebuild, llvm-3.4.ebuild,
  llvm-9999.ebuild:
  Use python_setup to obtain the Python interpreter, and do that in
  src_prepare() rather than in multilib_src_configure() (to avoid calling
  twice).

  28 Apr 2014; Michał Górny <mgorny@gentoo.org> llvm-3.3-r3.ebuild,
  llvm-3.4-r1.ebuild, llvm-3.4-r2.ebuild, llvm-3.4.ebuild, llvm-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.

  14 Apr 2014; Christoph Junghans <ottxor@gentoo.org> llvm-3.4-r2.ebuild,
  llvm-9999.ebuild:
  add prefix include path for kernel headers (bug #505908)

  12 Apr 2014; Michał Górny <mgorny@gentoo.org> llvm-9999.ebuild:
  Remove the cmake hack since upstream started installing cmake files from
  Makefiles.

*llvm-3.4-r2 (10 Apr 2014)

  10 Apr 2014; Michał Górny <mgorny@gentoo.org> +llvm-3.4-r2.ebuild:
  Backport the install phase changes to masked -r2.

  10 Apr 2014; Michał Górny <mgorny@gentoo.org> llvm-9999.ebuild:
  Re-apply the install phase fixes for multilib-portage (bug #506398) and /tmp
  ownership (bug #506472). For now, just the live ebuild.

  07 Apr 2014; Michał Górny <mgorny@gentoo.org> llvm-9999.ebuild:
  Update PYTHON_COMPAT in the live ebuild.

*llvm-3.4-r1 (02 Apr 2014)

  02 Apr 2014; Julian Ospald <hasufell@gentoo.org> +llvm-3.4-r1.ebuild,
  llvm-9999.ebuild:
  revert last commit causing /usr/bin/clang being 32bit on amd64 systems

  01 Apr 2014; Michał Górny <mgorny@gentoo.org> llvm-3.4.ebuild,
  llvm-9999.ebuild:
  Use alternate root install instead of dumb removal to work-around non-clobber
  install target. Use MULTILIB_CHOST_TOOLS rather than inline code to handle
  llvm-config, bug #506398.

  31 Mar 2014; Michał Górny <mgorny@gentoo.org> llvm-3.3-r1.ebuild,
  llvm-3.3-r3.ebuild, llvm-3.4.ebuild:
  Add support for the new PyPy slotting.

  23 Mar 2014; Agostino Sarubbo <ago@gentoo.org> llvm-3.3-r3.ebuild:
  Stable for ppc64, wrt bug #491018

  23 Mar 2014; Agostino Sarubbo <ago@gentoo.org> llvm-3.3-r3.ebuild:
  Stable for ppc, wrt bug #491018

  11 Mar 2014; Michał Górny <mgorny@gentoo.org> llvm-9999.ebuild:
  Remove unnecessary --with-clang-resource-dir that broke the build whenever the
  version number was bumped.

  05 Mar 2014; Markus Meier <maekke@gentoo.org> llvm-3.3-r3.ebuild:
  arm stable, bug #491018

  01 Mar 2014; Pacho Ramos <pacho@gentoo.org> llvm-3.3-r3.ebuild:
  amd64 stable, bug #491018

  23 Feb 2014; Pawel Hajdan jr <phajdan.jr@gentoo.org> llvm-3.3-r3.ebuild:
  x86 stable wrt bug #491018

  21 Feb 2014; Michał Górny <mgorny@gentoo.org>
  files/clang-3.5-gentoo-install.patch:
  Update clang patch wrt bug #501764, again.

  20 Feb 2014; Michał Górny <mgorny@gentoo.org>
  files/clang-3.5-gentoo-install.patch:
  Update clang patch wrt bug #501764.

  16 Feb 2014; Agostino Sarubbo <ago@gentoo.org> llvm-3.4.ebuild:
  Add ~sparc, wrt bug #320221

  23 Jan 2014; Bernard Cafarelli <voyageur@gentoo.org> llvm-3.3-r1.ebuild,
  llvm-3.3-r3.ebuild, llvm-3.4.ebuild:
  Keep arm_neon.h header, thanks Yuta SATOH <nigoro.gentoo@0x100.com> in bug
  #498908

  15 Jan 2014; Michał Górny <mgorny@gentoo.org> llvm-3.4.ebuild,
  llvm-9999.ebuild:
  Make tests respect TMPDIR. Solution suggested by NAKAMURA Takumi on
  http://llvm.org/bugs/show_bug.cgi?id=18335.

  10 Jan 2014; Michał Górny <mgorny@gentoo.org> llvm-3.4.ebuild,
  llvm-9999.ebuild:
  Restore building clang-check and clang-format, bug #497620.

  10 Jan 2014; Michał Górny <mgorny@gentoo.org> llvm-3.4.ebuild:
  Re-add missing runtime gcc detection patch, bug #497704.

  08 Jan 2014; Michał Górny <mgorny@gentoo.org> llvm-3.4.ebuild,
  llvm-9999.ebuild:
  Build extra clang tools, bug #497428.

  08 Jan 2014; Bernard Cafarelli <voyageur@gentoo.org> llvm-3.4.ebuild,
  +files/llvm-3.4-fix_varargs.patch:
  Fix a varargs bug causing miscompilations, thanks Holger Hoffstätte
  <holger.hoffstaette@googlemail.com> in bug #497298

  06 Jan 2014; Michał Górny <mgorny@gentoo.org> llvm-9999.ebuild:
  Add a PDEP on sys-devel/clang to the live ebuild as well.

*llvm-3.4 (06 Jan 2014)

  06 Jan 2014; Michał Górny <mgorny@gentoo.org> +llvm-3.4.ebuild:
  Version bump.

*llvm-3.3-r3 (06 Jan 2014)

  06 Jan 2014; Michał Górny <mgorny@gentoo.org>
  +files/llvm-3.3-cmake-modulepath.patch, +llvm-3.3-r3.ebuild,
  -llvm-3.3-r2.ebuild:
  Restore missing patches for 3.3. Add a patch for CMake wrt bug #496480.

  30 Dec 2013; Michał Górny <mgorny@gentoo.org> llvm-3.3-r2.ebuild:
  Fix building docs with USE=-clang, bug #496394.

  29 Dec 2013; Michał Górny <mgorny@gentoo.org> llvm-3.3-r2.ebuild,
  llvm-9999.ebuild:
  Explicitly require Makefiles from CMake, to avoid failures when people like to
  enable ninja globally. Bug #496426.

  28 Dec 2013; Michał Górny <mgorny@gentoo.org> llvm-3.3-r2.ebuild:
  Fix building R600 target, bug #496308.

  28 Dec 2013; Michał Górny <mgorny@gentoo.org> llvm-3.3-r2.ebuild:
  Fix clang blocker to match 3.3-r100.

*llvm-3.3-r2 (28 Dec 2013)

  28 Dec 2013; Michał Górny <mgorny@gentoo.org>
  +files/llvm-3.3-r2-gentoo-install.patch, +llvm-3.3-r2.ebuild:
  Backport all the fixes and install design changes from -9999 to -3.3. Fixes
  bugs #425844 (install CMake modules), #462554 (install bfd-plugins symlink),
  #489586 (multilib portage compat.), #488216, #492554 (RPATH issues).

  28 Dec 2013; Michał Górny <mgorny@gentoo.org> llvm-9999.ebuild:
  Add bugpoint to built tools. Switch llvm-config wrapping to use $CHOST-llvm-
  config.

  27 Dec 2013; Michał Górny <mgorny@gentoo.org> llvm-9999.ebuild:
  Update/fix dependencies.

  24 Dec 2013; Michał Górny <mgorny@gentoo.org> llvm-9999.ebuild:
  Fix libLTO linking parallel make issue, bug #494922.

  24 Dec 2013; Michał Górny <mgorny@gentoo.org> llvm-9999.ebuild:
  Create the gold plugin symlink only with USE=gold.

  20 Dec 2013; Michał Górny <mgorny@gentoo.org> llvm-9999.ebuild:
  Disable libxml2 support in non-native ABIs since it is meaningful for
  installed c-index-test only.

  20 Dec 2013; Michał Górny <mgorny@gentoo.org>
  +files/llvm-3.5-gentoo-install.patch, llvm-9999.ebuild:
  Update LLVM build patch for -9999.

  20 Dec 2013; Michał Górny <mgorny@gentoo.org> llvm-9999.ebuild:
  Fix gcc version check. Add missing libxml2 dependency (for clang). Install
  CMake modules.

  19 Dec 2013; Michał Górny <mgorny@gentoo.org> llvm-9999.ebuild:
  Symlink the LLVM gold plugin to bfd-plugins directory to enable LLVM object
  support in various binutils tools, bug #462554.

  19 Dec 2013; Michał Górny <mgorny@gentoo.org> llvm-9999.ebuild:
  Remove traces of BugpointPasses in darwin branch.

  19 Dec 2013; Michał Górny <mgorny@gentoo.org> llvm-9999.ebuild:
  Delay building unnecessary tools & unittests until src_test(). Do not install
  BugpointPasses.so (seems unused). Match man phase generation & install phases.

  19 Dec 2013; Michał Górny <mgorny@gentoo.org> llvm-9999.ebuild:
  Clean up the build procedure a bit. Pass the same MAKEOPTS to all calls, and
  therefore make tests verbose as well. Avoid building unnecessary tools for
  non-native ABIs.

  03 Dec 2013; Michał Górny <mgorny@gentoo.org>
  +files/clang-3.5-gentoo-install.patch, llvm-9999.ebuild:
  Update Gentoo patch for clang.

  30 Nov 2013; Michał Górny <mgorny@gentoo.org>
  +files/clang-3.4-gentoo-install.patch, files/llvm-3.4-gentoo-install.patch,
  llvm-9999.ebuild:
  Drop the custom Gentoo "llvm" sub-dir that requires a lot of extra hacking,
  and causes bugs like #492554 and #488216.

  27 Nov 2013; Michał Górny <mgorny@gentoo.org> llvm-9999.ebuild:
  Bump clang version to 3.5, bug #491880. Thanks to Mike Lothian for finding out
  what is wrong.

  12 Nov 2013; Michał Górny <mgorny@gentoo.org> llvm-9999.ebuild:
  Bump make dep to 3.81 since 3.80 was reported non-working by okias.

  10 Nov 2013; Chí-Thanh Christopher Nguyễn <chithanh@gentoo.org>
  llvm-3.3-r1.ebuild:
  Change mistakenly committed stable ppc64 keyword to ~ppc64.

  31 Oct 2013; Michał Górny <mgorny@gentoo.org>
  files/llvm-3.4-gentoo-install.patch, llvm-9999.ebuild:
  Update the Gentoo patch. Use multilib_build_binaries per bug #489586.

  14 Oct 2013; Michał Górny <mgorny@gentoo.org> llvm-9999.ebuild, metadata.xml:
  Clean up the deps & configure call. Add USE=ncurses to control terminfo use.

  13 Oct 2013; Agostino Sarubbo <ago@gentoo.org> llvm-3.3-r1.ebuild:
  Add ppc64, wrt bug #320221

  13 Oct 2013; Michał Górny <mgorny@gentoo.org> llvm-9999.ebuild:
  Disable embedding timestamps to increase ccache hit rate.

  13 Oct 2013; Michał Górny <mgorny@gentoo.org>
  +files/clang-3.3-gcc-header-path.patch, llvm-3.3-r1.ebuild:
  Backport g++-X.Y header location support. Fixes bug #487584.

  04 Oct 2013; Michał Górny <mgorny@gentoo.org> llvm-3.3-r1.ebuild,
  llvm-9999.ebuild:
  Localize CPPFLAGS before appending to it -- prevent it from leaking out of the
  correct ABI.

  13 Sep 2013; Michał Górny <mgorny@gentoo.org> llvm-9999.ebuild:
  Add github LLVM mirror as git backup URL. Requested in bug #484748.

  10 Sep 2013; Michał Górny <mgorny@gentoo.org> llvm-9999.ebuild:
  Declare EGIT_REPO_URI to make smart-live-rebuild a bit happier.

  07 Sep 2013; Michał Górny <mgorny@gentoo.org> llvm-9999.ebuild:
  Use official git mirror for the live ebuild since git-r3 is more space- and
  bandwidth-efficient than subversion.

  05 Sep 2013; Michał Górny <mgorny@gentoo.org> llvm-3.2.ebuild,
  llvm-3.3-r1.ebuild, llvm-3.3.ebuild, llvm-9999.ebuild:
  Clean up PYTHON_COMPAT from old implementations.

  19 Aug 2013; Michał Górny <mgorny@gentoo.org>
  files/llvm-3.4-gentoo-install.patch:
  Update the LLVM Gentoo patch for live version.

  14 Aug 2013; Fabian Groffen <grobian@gentoo.org> llvm-3.3-r1.ebuild,
  llvm-9999.ebuild:
  Don't depend on/try to use chrpath on Darwin, bug #479568

  14 Aug 2013; Michał Górny <mgorny@gentoo.org> llvm-3.2.ebuild,
  llvm-3.3-r1.ebuild, llvm-3.3.ebuild, llvm-9999.ebuild:
  Add subslots.

  06 Aug 2013; Michał Górny <mgorny@gentoo.org>
  files/llvm-3.4-gentoo-install.patch:
  Update the gentoo-install.patch to match current git.

  02 Aug 2013; Michał Górny <mgorny@gentoo.org> llvm-3.3-r1.ebuild,
  llvm-9999.ebuild:
  Fix space checks in pkg_setup().

  02 Aug 2013; Michał Górny <mgorny@gentoo.org> llvm-3.3-r1.ebuild,
  llvm-9999.ebuild:
  Introduce disk space checks. Bug #479356.

  31 Jul 2013; Michał Górny <mgorny@gentoo.org> -llvm-9999-r1.ebuild,
  llvm-9999.ebuild:
  Merge llvm-9999-r1 into llvm-9999 since it was unmasked.

  31 Jul 2013; Michał Górny <mgorny@gentoo.org> llvm-3.3-r1.ebuild:
  Call doc-build for html & man separate due to parallel make issues, bug
  #479198.

  31 Jul 2013; Michał Górny <mgorny@gentoo.org> llvm-3.3-r1.ebuild,
  llvm-9999-r1.ebuild:
  Make build & install simpler. Since we're calling 'install' for non-native
  ABIs already, we should also do a full build.

  31 Jul 2013; Michał Górny <mgorny@gentoo.org> llvm-3.3-r1.ebuild,
  llvm-9999-r1.ebuild:
  Add missing deps for USE=static-analyzer.

  30 Jul 2013; Michał Górny <mgorny@gentoo.org>
  files/clang-3.3-gentoo-install.patch:
  Fix path to libprofile_rt, bug #478816.

  30 Jul 2013; Alexis Ballier <aballier@gentoo.org> llvm-3.3-r1.ebuild,
  llvm-9999-r1.ebuild:
  update emul blocker so that it is stacked for baselibs -r3

  30 Jul 2013; Michał Górny <mgorny@gentoo.org>
  files/llvm-3.3-gentoo-install.patch, files/llvm-3.4-gentoo-install.patch,
  llvm-3.3-r1.ebuild, llvm-9999-r1.ebuild:
  Revert the RPATH changes and LD_LIBRARY_PATH hack as it resulted in system
  clang using build tree libraries, bug #478348. Instead, alter the RPATH after
  installing the libs. Fix installing libLTO and libprofile_rt.

  28 Jul 2013; Alexis Ballier <aballier@gentoo.org> llvm-3.3.ebuild,
  llvm-3.3-r1.ebuild, llvm-9999.ebuild, llvm-9999-r1.ebuild:
  Allow freebsd-lib + libcxx which should provide the startup files and the c++
  stack instead of gcc. This opens the road to a gcc-less clang profile for
  fbsd.

  23 Jul 2013; Michał Górny <mgorny@gentoo.org> llvm-9999-r1.ebuild:
  Fix the hack for subversion.eclass bug #282486.

  22 Jul 2013; Michał Górny <mgorny@gentoo.org>
  +files/llvm-3.3-insecure-rpath.patch:
  Add missing llvm-3.3-insecure-rpath.patch.

  21 Jul 2013; Michał Górny <mgorny@gentoo.org>
  +files/clang-3.1-gentoo-runtime-gcc-detection-v3.patch:
  Add missing clang patch.

*llvm-9999-r1 (21 Jul 2013)
*llvm-3.3-r1 (21 Jul 2013)

  21 Jul 2013; Michał Górny <mgorny@gentoo.org>
  +files/clang-3.3-gentoo-install.patch, +files/llvm-3.3-gentoo-install.patch,
  +files/llvm-3.4-gentoo-install.patch, +llvm-3.3-r1.ebuild,
  +llvm-9999-r1.ebuild, metadata.xml:
  Include the improved ebuild from ::mgorny. Integrate clang, introduce multilib
  support, fix rpath issues. Bug #477432.

  24 Jun 2013; Bernard Cafarelli <voyageur@gentoo.org> llvm-3.3.ebuild,
  +files/llvm-3.3-R600_debug.patch:
  Fix compilation with USE=debug and VIDEO_CARDS=radeon, thanks klondike in bug
  #474096

  22 Jun 2013; Bernard Cafarelli <voyageur@gentoo.org> llvm-3.3.ebuild,
  llvm-9999.ebuild:
  Add new zlib dependency, spotyted by nikoli@lavabit.com in bug #473966

*llvm-3.3 (18 Jun 2013)

  18 Jun 2013; Bernard Cafarelli <voyageur@gentoo.org> -llvm-3.3_rc3.ebuild,
  +llvm-3.3.ebuild:
  Bump to final version, remove release candidate

  13 Jun 2013; Bernard Cafarelli <voyageur@gentoo.org> llvm-3.3_rc3.ebuild,
  llvm-9999.ebuild:
  Fix PaX markings on lli with USE=debug, thanks Alexander Tsoy
  <alexander@tsoy.me> in bug #464592

  11 Jun 2013; Bernard Cafarelli <voyageur@gentoo.org> llvm-9999.ebuild:
  r600 backend was moved from non-experimental, set it in standard targets

  10 Jun 2013; Bernard Cafarelli <voyageur@gentoo.org> llvm-2.8-r2.ebuild,
  llvm-2.9-r2.ebuild:
  Allow 2.8 compilation with gcc 4.7, add epatch_user to 2.8/2.9

*llvm-3.3_rc3 (10 Jun 2013)

  10 Jun 2013; Bernard Cafarelli <voyageur@gentoo.org> llvm-3.2.ebuild,
  +llvm-3.3_rc3.ebuild, llvm-9999.ebuild:
  3.3_rc bump, bug #469896. Clean PPC patch from >= 3.3, bug #462444. Fix
  doc/man compilation, bug #456326. Thanks everyone involved in these bugs

  21 Mar 2013; Chí-Thanh Christopher Nguyễn <chithanh@gentoo.org>
  llvm-9999.ebuild:
  Disable failing patch, bug #462444.

  19 Mar 2013; Chí-Thanh Christopher Nguyễn <chithanh@gentoo.org>
  llvm-9999.ebuild:
  Add video_cards_radeon flag for the r600 shader compiler.

  27 Feb 2013; Zac Medico <zmedico@gentoo.org> llvm-3.2.ebuild:
  Add ~arm-linux keyword.

  02 Feb 2013; Michał Górny <mgorny@gentoo.org> llvm-3.2.ebuild,
  llvm-9999.ebuild:
  Migrate to python-any-r1 (strictly build-time dependency on Python).

  17 Jan 2013; Bernard Cafarelli <voyageur@gentoo.org> llvm-3.2.ebuild,
  metadata.xml:
  Provided pre-generated manpages with USE=-doc, fixes bug #448250 by Duncan

  07 Jan 2013; Bernard Cafarelli <voyageur@gentoo.org> llvm-3.2.ebuild,
  llvm-9999.ebuild:
  Fix tests on hardened, thanks nikoli@lavabit.com in bug #448240. Sync some
  changes in live ebuild

  03 Jan 2013; Bernard Cafarelli <voyageur@gentoo.org> llvm-2.8-r2.ebuild,
  llvm-2.9-r2.ebuild, llvm-3.0-r2.ebuild, -llvm-3.1.ebuild,
  -llvm-3.1-r1.ebuild, llvm-3.1-r2.ebuild, llvm-3.2.ebuild, llvm-9999.ebuild:
  Update udis86 dep now that pic USE-flag is going away, bump EAPI in old
  packages when needed for the dep, bug #449812. Also clean ~arch 3.1 packages
  and update live ebuild EAPI

*llvm-3.2 (21 Dec 2012)

  21 Dec 2012; Bernard Cafarelli <voyageur@gentoo.org> -llvm-3.2_rc3.ebuild,
  +llvm-3.2.ebuild:
  Bump to final version, remove release candidate

  17 Dec 2012; Markus Meier <maekke@gentoo.org> llvm-3.1-r2.ebuild:
  arm stable, bug #443508

  14 Dec 2012; Bernard Cafarelli <voyageur@gentoo.org> llvm-3.2_rc3.ebuild,
  llvm-9999.ebuild:
  Doc and man pages are now generated by sphinx, thanks Alphat-PC for the fix
  in bug #446414

  14 Dec 2012; Bernard Cafarelli <voyageur@gentoo.org> llvm-3.1-r2.ebuild,
  +files/llvm-3.1-ExecutionEngine_tests_xfail_arm.patch:
  Backport ExecutionEngine tests XFAIL marking for arm, for bug #444362

*llvm-3.2_rc3 (07 Dec 2012)

  07 Dec 2012; Bernard Cafarelli <voyageur@gentoo.org> -llvm-3.2_rc2.ebuild,
  +llvm-3.2_rc3.ebuild:
  RC bump, install FileCheck test tool as it is needed for dragonegg tests

*llvm-3.2_rc2 (03 Dec 2012)

  03 Dec 2012; Bernard Cafarelli <voyageur@gentoo.org> +llvm-3.2_rc2.ebuild:
  Release candidate bump

  01 Dec 2012; Anthony G. Basile <blueness@gentoo.org> llvm-3.1-r2.ebuild:
  stable ppc, bug #443508

  30 Nov 2012; Bernard Cafarelli <voyageur@gentoo.org> llvm-2.9-r2.ebuild,
  +files/llvm-2.9-gcc4.7.patch:
  Fix compilation with gcc 4.7, reported by José Romildo Malaquias in bug
  #444550

  18 Nov 2012; Agostino Sarubbo <ago@gentoo.org> llvm-3.1-r2.ebuild:
  Stable for x86, wrt bug #443508

  16 Nov 2012; Agostino Sarubbo <ago@gentoo.org> llvm-3.1-r2.ebuild:
  Stable for amd64, wrt bug #443508

  24 Sep 2012; Andreas Schuerch <nativemad@gentoo.org> llvm-3.0-r2.ebuild:
  x86 stable, see bug 417027. Thanks Myckel Habets.

  24 Aug 2012; Agostino Sarubbo <ago@gentoo.org> llvm-3.0-r2.ebuild:
  Stable for amd64, wrt bug #417027

  05 Aug 2012; Richard Yao <ryao@gentoo.org> llvm-3.1-r2.ebuild:
  Keyword ~x64-freebsd

  27 Jul 2012; Michał Górny <mgorny@gentoo.org> llvm-3.1-r1.ebuild,
  llvm-3.1-r2.ebuild, llvm-9999.ebuild:
  Use tc-export to enforce Gentoo default CC/CXX when $CHOST-clang is available.

*llvm-3.1-r2 (16 Jul 2012)

  16 Jul 2012; Michał Górny <mgorny@gentoo.org>
  +files/cl-patches/0001-r600-Add-some-intrinsic-definitions.patch, +files/cl-pa
  tches/0002-r600-Add-get_global_size-and-get_local_size-intrinsi.patch,
  +llvm-3.1-r2.ebuild:
  Add OpenCL Radeon patches wrt #425688.

  06 Jul 2012; Michał Górny <mgorny@gentoo.org> llvm-3.1-r1.ebuild:
  Enable cpp target while the ebuild's still hot. Bug #418441.

*llvm-3.1-r1 (05 Jul 2012)

  05 Jul 2012; Bernard Cafarelli <voyageur@gentoo.org> +llvm-3.1-r1.ebuild,
  +files/llvm-3.1-fix_debug_line_info.patch:
  Fix line info generation for gdb in clang, thanks Ben Longbons
  <b.r.longbons@gmail.com> in bug #424199

  03 Jul 2012; Bernard Cafarelli <voyageur@gentoo.org> llvm-2.9-r2.ebuild,
  llvm-3.0-r2.ebuild, llvm-3.1.ebuild, llvm-9999.ebuild:
  Add pax-mark calls to support hardened setups, thanks everyone in bug #399825

  14 Jun 2012; Bernard Cafarelli <voyageur@gentoo.org> llvm-3.1.ebuild,
  +files/llvm-3.1-ivybridge_support.patch:
  Fix Ivy bridge processors detection with -march=native

  12 Jun 2012; Fabian Groffen <grobian@gentoo.org> llvm-3.1.ebuild:
  Marked ~x64-macos

  08 Jun 2012; Michał Górny <mgorny@gentoo.org> llvm-9999.ebuild:
  Enable cpp target by default wrt #418441.

  04 Jun 2012; Michał Górny <mgorny@gentoo.org> llvm-9999.ebuild:
  Depend on binutils[cxx] in the live ebuild as well.

  04 Jun 2012; Michał Górny <mgorny@gentoo.org> llvm-3.0-r2.ebuild,
  llvm-3.1.ebuild:
  Depend on binutils[cxx] for gold plugin wrt #419383.

  02 Jun 2012; Chí-Thanh Christopher Nguyễn <chithanh@gentoo.org>
  llvm-3.1.ebuild:
  Keyword ~arm, bug #320221.

  26 May 2012; Alexis Ballier <aballier@gentoo.org> llvm-3.1.ebuild:
  keyword ~amd64-fbsd

*llvm-3.1 (23 May 2012)

  23 May 2012; Michał Górny <mgorny@gentoo.org> +llvm-3.1.ebuild:
  Version bump.

  20 May 2012; Michał Górny <mgorny@gentoo.org> llvm-9999.ebuild:
  Fix omitted doman call.

  20 May 2012; Michał Górny <mgorny@gentoo.org> llvm-9999.ebuild:
  Disable manpage generation code until either rst2man or docs are fixed.

  14 May 2012; Michał Górny <mgorny@gentoo.org> llvm-9999.ebuild:
  Generate manpages before compiling llvm -- save time if it is going to fail.

  13 May 2012; Michał Górny <mgorny@gentoo.org> llvm-9999.ebuild:
  Generate manpages from .rst files.

  10 May 2012; Patrick Lauer <patrick@gentoo.org> llvm-9999.ebuild:
  Upstream changed doc handling, removing obsolete patch from -9999 ebuild

  04 May 2012; Jeff Horelick <jdhore@gentoo.org> llvm-2.9-r2.ebuild,
  llvm-3.0-r2.ebuild, llvm-9999.ebuild:
  dev-util/pkgconfig -> virtual/pkgconfig

  02 May 2012; Michał Górny <mgorny@gentoo.org> metadata.xml:
  Add myself as a co-maintainer.

  30 Apr 2012; Fabian Groffen <grobian@gentoo.org>
  +files/llvm-3.2-nodoctargz.patch, llvm-9999.ebuild:
  Fix nodoctargz patch for latest source, bug #413111

  30 Apr 2012; Fabian Groffen <grobian@gentoo.org> llvm-9999.ebuild:
  Extract the version LLVM refers to internally so we can properly fix
  install_names on Darwin, bug #412137

  13 Apr 2012; Bernard Cafarelli <voyageur@gentoo.org> -llvm-3.0-r1.ebuild,
  llvm-3.0-r2.ebuild, llvm-9999.ebuild:
  Support epatch_user, bug #411447

  13 Apr 2012; Bernard Cafarelli <voyageur@gentoo.org> llvm-3.0-r2.ebuild,
  +files/llvm-3.0-PPCCompilationCallbackC_static.patch:
  Fix TEXTREL on ppc, patch by and thanks to Kimura Masaru
  <hiyuh.root@gmail.com> in bug #403519

*llvm-3.0-r2 (27 Mar 2012)

  27 Mar 2012; Bernard Cafarelli <voyageur@gentoo.org> +llvm-3.0-r2.ebuild,
  +files/llvm-3.0-set_soname.patch:
  Set soname in shared library, bug #409267 by ryao

  13 Mar 2012; Bernard Cafarelli <voyageur@gentoo.org> llvm-3.0-r1.ebuild,
  llvm-9999.ebuild:
  Tests require python-2, spotted by patrick, bug #407885

  06 Mar 2012; Bernard Cafarelli <voyageur@gentoo.org> llvm-9999.ebuild:
  Set python-2 to build, thanks Matthias Dahl in bug #406155 for report and
  patch. Also add PPC support patch and switch to EAPI4

*llvm-3.0-r1 (03 Feb 2012)

  03 Feb 2012; Bernard Cafarelli <voyageur@gentoo.org> -llvm-3.0.ebuild,
  +llvm-3.0-r1.ebuild, +files/llvm-3.0-gold_LTO_link.patch:
  Fix gold plugin build (using correct libLTO), thanks Rafał Mużyło and
  grobian in bug #398391

  27 Jan 2012; Bernard Cafarelli <voyageur@gentoo.org> llvm-3.0.ebuild,
  +files/llvm-3.0-PPC_macro.patch:
  Fix compilation on ppc, bug #394183

  27 Jan 2012; Bernard Cafarelli <voyageur@gentoo.org> llvm-9999.ebuild:
  Really fix new llvm-config in live ebuild, bug #392715

  13 Dec 2011; Naohiro Aota <naota@gentoo.org> llvm-2.9-r2.ebuild:
  Add ~x86-fbsd wrt #320221

  12 Dec 2011; Fabian Groffen <grobian@gentoo.org> llvm-3.0.ebuild,
  llvm-9999.ebuild:
  Fix install_name of renamed profile_rt.dylib library (to libprofile_rt.dylib).

  05 Dec 2011; Bernard Cafarelli <voyageur@gentoo.org> llvm-3.0.ebuild,
  +files/llvm-3.0-ocaml_install.patch:
  Fix ocaml bindings installation, thanks everyone in bug #393023

  02 Dec 2011; Bernard Cafarelli <voyageur@gentoo.org> llvm-9999.ebuild:
  Drop llvm-config sed in live ebuild, bug #392715. Also add USE=gold handling
  to it, bug #392717. Thanks Marcin Mirosław <bug@mejor.pl> for both bug
  reports

*llvm-3.0 (02 Dec 2011)

  02 Dec 2011; Bernard Cafarelli <voyageur@gentoo.org> -llvm-3.0_rc4.ebuild,
  +llvm-3.0.ebuild:
  Final release bump, remove rc

  28 Nov 2011; Tony Vroon <chainsaw@gentoo.org> llvm-2.9-r2.ebuild:
  Marked stable on AMD64 based on arch testing by Michael Orlitzky, Agostino
  "ago" Sarubbo & Elijah "Armageddon" El Lazkani in bug #384709.

*llvm-3.0_rc4 (28 Nov 2011)

  28 Nov 2011; Bernard Cafarelli <voyageur@gentoo.org> -llvm-3.0_rc3.ebuild,
  +llvm-3.0_rc4.ebuild:
  Final rc bump

  24 Nov 2011; Fabian Groffen <grobian@gentoo.org> llvm-2.8-r2.ebuild,
  llvm-9999.ebuild, llvm-2.9-r2.ebuild, llvm-3.0_rc3.ebuild:
  Fix install_name pointer to libLLVM-x.y.dylib in a more flexible way to avoid
  bugs like #391763

  22 Nov 2011; Bernard Cafarelli <voyageur@gentoo.org> llvm-3.0_rc3.ebuild,
  metadata.xml:
  Add support for gold plugin, thanks Matthias Maier in bug #371951

  17 Nov 2011; Pawel Hajdan jr <phajdan.jr@gentoo.org> llvm-2.9-r2.ebuild:
  x86 stable wrt bug #384709

*llvm-3.0_rc3 (09 Nov 2011)

  09 Nov 2011; Bernard Cafarelli <voyageur@gentoo.org> -llvm-3.0_rc1.ebuild,
  +llvm-3.0_rc3.ebuild:
  Update rc, some more ebuild cleanups

*llvm-3.0_rc1 (09 Nov 2011)

  09 Nov 2011; Bernard Cafarelli <voyageur@gentoo.org> +llvm-3.0_rc1.ebuild,
  llvm-9999.ebuild:
  Add rc release to prepare for 3.0, remove llvm-gcc detection code (not used
  in configure anymore)

  04 Oct 2011; Bernard Cafarelli <voyageur@gentoo.org> llvm-2.8-r2.ebuild,
  -llvm-2.8-r4.ebuild, llvm-2.9-r2.ebuild, llvm-9999.ebuild:
  Fix forced -O3 -fomit-frame-pointer CFLAGS again, bug #385543

  03 Oct 2011; Bernard Cafarelli <voyageur@gentoo.org> -llvm-2.8-r1.ebuild,
  llvm-2.8-r2.ebuild, llvm-2.8-r4.ebuild, -llvm-2.9-r1.ebuild,
  llvm-2.9-r2.ebuild, llvm-9999.ebuild, metadata.xml:
  Rename alltargets USE flag to multitarget, bug #382307. Clean bison
  dependency, depending only on new enough one. Drop some versions

  28 Sep 2011; Samuli Suominen <ssuominen@gentoo.org> metadata.xml:
  USE="libffi" is now global USE flag.

  15 Jul 2011; Kacper Kowalik <xarthisius@gentoo.org> llvm-2.8-r2.ebuild:
  ppc stable wrt #360553

  06 Jun 2011; Bernard Cafarelli <voyageur@gentoo.org> llvm-9999.ebuild:
  Update live ebuild to sync latest ebuild changes (vim-syntax, libffi, ...)

*llvm-2.9-r2 (23 May 2011)

  23 May 2011; Bernard Cafarelli <voyageur@gentoo.org> +llvm-2.9-r2.ebuild,
  +files/llvm-2.9-Operator.h-c++0x.patch:
  Fix header for gcc 4.6, bug #365925

  21 Apr 2011; Fabian Groffen <grobian@gentoo.org> llvm-2.9-r1.ebuild,
  llvm-9999.ebuild:
  Fix broken reference that I missed yesterday

  20 Apr 2011; Fabian Groffen <grobian@gentoo.org> llvm-2.9-r1.ebuild,
  llvm-9999.ebuild:
  Fix install_name_tooling

*llvm-2.8-r4 (15 Apr 2011)

  15 Apr 2011; Bernard Cafarelli <voyageur@gentoo.org> -llvm-2.8-r3.ebuild,
  +llvm-2.8-r4.ebuild, -llvm-2.9.ebuild:
  Also update 2.8 branch with libffi/debug changes

*llvm-2.9-r1 (15 Apr 2011)

  15 Apr 2011; Bernard Cafarelli <voyageur@gentoo.org> +llvm-2.9-r1.ebuild:
  Fix libffi include search path and debug flags, bugs #363595 and #362567

  10 Apr 2011; Pawel Hajdan jr <phajdan.jr@gentoo.org> llvm-2.8-r2.ebuild:
  x86 stable wrt bug #360553

*llvm-2.9 (07 Apr 2011)

  07 Apr 2011; Bernard Cafarelli <voyageur@gentoo.org> +llvm-2.9.ebuild:
  Version bump

  28 Mar 2011; Christoph Mende <angelos@gentoo.org> llvm-2.8-r2.ebuild:
  Stable on amd64 wrt bug #360553

*llvm-2.8-r3 (28 Mar 2011)

  28 Mar 2011; Bernard Cafarelli <voyageur@gentoo.org>
  -files/llvm-2.6-nodoctargz.patch, -llvm-2.7.ebuild, -llvm-2.7-r2.ebuild,
  +llvm-2.8-r3.ebuild:
  Install vim syntax files with USE=vim-syntax, bug #360147. Also drop 2.7
  versions

  14 Mar 2011; Fabian Groffen <grobian@gentoo.org> llvm-2.8-r2.ebuild:
  Marked ~x86-linux

  28 Feb 2011; Bernard Cafarelli <voyageur@gentoo.org>
  +files/llvm-2.9-nodoctargz.patch, llvm-9999.ebuild:
  Fix depend on live ebuild, and finally update nodoc patch, bug #348701

  14 Feb 2011; Kacper Kowalik <xarthisius@gentoo.org> llvm-2.8-r1.ebuild:
  ppc stable wrt #336371

*llvm-2.8-r2 (19 Dec 2010)

  19 Dec 2010; Bernard Cafarelli <voyageur@gentoo.org> +llvm-2.8-r2.ebuild,
  +files/llvm-2.8-alignof.patch:
  Backport to rename alignof, fixes C++'0x compilers support

  11 Nov 2010; Markos Chandras <hwoarang@gentoo.org> llvm-2.8-r1.ebuild:
  Stable on amd64 wrt bug #336371

  09 Nov 2010; Thomas Kahle <tomka@gentoo.org> llvm-2.8-r1.ebuild:
  x86 stable per bug 336371

  24 Oct 2010; Fabian Groffen <grobian@gentoo.org> llvm-2.8-r1.ebuild,
  llvm-9999.ebuild:
  Update reference fixing for Darwin for newer more strict versions of
  Portage

  23 Oct 2010; Fabian Groffen <grobian@gentoo.org> llvm-2.8-r1.ebuild,
  +files/llvm-2.8-darwin8.patch, llvm-9999.ebuild:
  Fix compilation on Mac OS X Tiger (10.4, Darwin 8), fix install_names for
  new libs also, bug #342289

*llvm-2.8-r1 (08 Oct 2010)

  08 Oct 2010; Bernard Cafarelli <voyageur@gentoo.org> -llvm-2.8.ebuild,
  +llvm-2.8-r1.ebuild:
  SRC_URI arrow workaround to fetch updated tarball with correct package
  version, thanks Alexey Charkov <alchark@gmail.com> in bug #340106 for
  spotting it

  06 Oct 2010; Bernard Cafarelli <voyageur@gentoo.org> llvm-2.8.ebuild,
  llvm-9999.ebuild:
  Tests now use an internal framework, dejagnu not needed anymore

*llvm-2.8 (06 Oct 2010)

  06 Oct 2010; Bernard Cafarelli <voyageur@gentoo.org> +llvm-2.8.ebuild:
  2.8 version bump

  21 Sep 2010; Bernard Cafarelli <voyageur@gentoo.org> llvm-9999.ebuild:
  Also fix live ebuild

*llvm-2.7-r2 (21 Sep 2010)

  21 Sep 2010; Bernard Cafarelli <voyageur@gentoo.org> -llvm-2.7-r1.ebuild,
  +llvm-2.7-r2.ebuild:
  Fix the rpath sed so llvm-* binaries actually find the llvm shared library

  20 Sep 2010; Bernard Cafarelli <voyageur@gentoo.org> llvm-2.7-r1.ebuild:
  udis86 needs pic on amd64, bug #337969

*llvm-2.7-r1 (17 Sep 2010)

  17 Sep 2010; Bernard Cafarelli <voyageur@gentoo.org> +llvm-2.7-r1.ebuild,
  llvm-9999.ebuild:
  Enable shared library, move libs and plugins to fix bug #337467

  04 Sep 2010; Fabian Groffen <grobian@gentoo.org> llvm-2.7.ebuild:
  Also fix libEnhancedDisassembly, which is only built on Darwin 10 (Mac OS
  X Snow Leopard)

  03 Sep 2010; Fabian Groffen <grobian@gentoo.org> llvm-2.7.ebuild:
  Marked ~amd64-linux

  26 Aug 2010; Fabian Groffen <grobian@gentoo.org> llvm-2.7.ebuild,
  llvm-9999.ebuild:
  Bump to EAPI=3, make Prefix aware, add support for Darwin platforms,
  bug #333387

  20 Jul 2010; Bernard Cafarelli <voyageur@gentoo.org> -llvm-2.6-r2.ebuild,
  -files/llvm-2.6-cflags.patch:
  Drop 2.6 version

*llvm-9999 (01 Jun 2010)

  01 Jun 2010; Bernard Cafarelli <voyageur@gentoo.org> +llvm-9999.ebuild:
  Add live version, bug #320919

  01 Jun 2010; Bernard Cafarelli <voyageur@gentoo.org> llvm-2.6-r2.ebuild,
  llvm-2.7.ebuild:
  Really fix bug #293382, llvm-gcc was still in DEPEND

*llvm-2.7 (27 Apr 2010)

  27 Apr 2010; Bernard Cafarelli <voyageur@gentoo.org> -llvm-2.6-r1.ebuild,
  +llvm-2.7.ebuild, +files/llvm-2.7-nodoctargz.patch:
  2.7 official release version bump

  26 Apr 2010; Bernard Cafarelli <voyageur@gentoo.org> llvm-2.6-r2.ebuild:
  --without-udis86 is broken in configure script

*llvm-2.6-r2 (26 Apr 2010)

  26 Apr 2010; Bernard Cafarelli <voyageur@gentoo.org> +llvm-2.6-r2.ebuild,
  metadata.xml:
  Add udis86 support, thanks to chithanh in bug #317151

*llvm-2.6-r1 (18 Mar 2010)

  18 Mar 2010; Bernard Cafarelli <voyageur@gentoo.org> -llvm-2.6.ebuild,
  +llvm-2.6-r1.ebuild, +files/llvm-2.6-cflags.patch:
  Remove forced -O3 -fomit-frame-pointer CFLAGS, bug #308145

  17 Nov 2009; Bernard Cafarelli <voyageur@gentoo.org> llvm-2.6.ebuild:
  Drop llvm-gcc depend, as it triggers circular dependency on first install
  (warn the user if it is not found instead), bug #293382

  26 Oct 2009; Bernard Cafarelli <voyageur@gentoo.org>
  files/llvm-2.6-commandguide-nops.patch:
  Fix the patch, after test by flameeyes

  26 Oct 2009; Bernard Cafarelli <voyageur@gentoo.org> llvm-2.6.ebuild,
  +files/llvm-2.6-commandguide-nops.patch:
  Disable .ps doc generation, these are just the man pages. Bug #290581

  26 Oct 2009; Bernard Cafarelli <voyageur@gentoo.org> llvm-2.6.ebuild,
  metadata.xml:
  Fix libffi automagic dependency, bug #289933

*llvm-2.6 (25 Oct 2009)

  25 Oct 2009; Bernard Cafarelli <voyageur@gentoo.org>
  -llvm-2.6_pre2.ebuild, +llvm-2.6.ebuild:
  Bump to final 2.6 release

  07 Oct 2009; Bernard Cafarelli <voyageur@gentoo.org> llvm-2.6_pre2.ebuild,
  +files/llvm-2.6-nodoctargz.patch, -files/llvm-2.6-nohtmltargz.patch:
  Add USE flag for ocaml bindings, complete doc patch to fix ocmal doc
  failure, see bug #186279

  07 Oct 2009; Bernard Cafarelli <voyageur@gentoo.org> llvm-2.6_pre2.ebuild:
  Fix llvm-gcc location, work with ${ROOT}

*llvm-2.6_pre2 (05 Oct 2009)

  05 Oct 2009; Bernard Cafarelli <voyageur@gentoo.org>
  +llvm-2.6_pre2.ebuild, +files/llvm-2.6-nohtmltargz.patch, +metadata.xml:
  Initial commit, thanks everyone in bug #186279 and others