summaryrefslogtreecommitdiff
blob: a7b84474bca4bb9af92a9c32d0cbad7c0ecd615e (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
# ChangeLog for sys-devel/llvm
# Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
# $Header: /var/cvsroot/gentoo-x86/sys-devel/llvm/ChangeLog,v 1.215 2014/12/31 10:37:36 mgorny Exp $

  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