summaryrefslogtreecommitdiff
blob: e17aa8aa23143c8f42d02f5bef296dd80a697746 (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
# ChangeLog for app-emulation/xen
# Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2
# $Header: /var/cvsroot/gentoo-x86/app-emulation/xen/ChangeLog,v 1.201 2015/05/14 05:16:20 dlan Exp $

*xen-4.5.0-r6 (14 May 2015)
*xen-4.4.2-r2 (14 May 2015)
*xen-4.2.5-r9 (14 May 2015)

  14 May 2015; Yixun Lan <dlan@gentoo.org> +xen-4.2.5-r9.ebuild,
  +xen-4.4.2-r2.ebuild, +xen-4.5.0-r6.ebuild:
  fix XSA-132, bug 547202

  08 Apr 2015; Michał Górny <mgorny@gentoo.org> xen-4.2.5-r8.ebuild:
  Remove old Python implementations

  03 Apr 2015; Yixun Lan <dlan@gentoo.org> -xen-4.2.5-r6.ebuild,
  -xen-4.2.5-r7.ebuild, -xen-4.4.2.ebuild, -xen-4.5.0-r4.ebuild:
  drop old after new stabilization

  03 Apr 2015; Agostino Sarubbo <ago@gentoo.org> xen-4.2.5-r8.ebuild:
  Stable for x86, wrt bug #545144

  03 Apr 2015; Agostino Sarubbo <ago@gentoo.org> xen-4.2.5-r8.ebuild,
  xen-4.4.2-r1.ebuild:
  Stable for amd64, wrt bug #545144

  03 Apr 2015; Agostino Sarubbo <ago@gentoo.org> -xen-4.4.1-r8.ebuild,
  -xen-4.4.1-r9.ebuild:
  Remove old

*xen-4.5.0-r5 (03 Apr 2015)
*xen-4.4.2-r1 (03 Apr 2015)
*xen-4.2.5-r8 (03 Apr 2015)

  03 Apr 2015; <dlan@gentoo.org> +xen-4.2.5-r8.ebuild, +xen-4.4.2-r1.ebuild,
  +xen-4.5.0-r5.ebuild:
  security bump, bug 545144, fix XSA-125,126,127

*xen-4.4.2 (28 Mar 2015)

  28 Mar 2015; Yixun Lan <dlan@gentoo.org> xen-4.2.5-r7.ebuild,
  -xen-4.3.3-r8.ebuild, +xen-4.4.2.ebuild, xen-4.5.0-r4.ebuild:
  drop 4.3.x, bump 4.4.2, prepare security patch setting

*xen-4.5.0-r4 (14 Mar 2015)
*xen-4.4.1-r9 (14 Mar 2015)
*xen-4.3.3-r8 (14 Mar 2015)
*xen-4.2.5-r7 (14 Mar 2015)

  14 Mar 2015; Yixun Lan <dlan@gentoo.org> -xen-4.2.5-r3.ebuild,
  +xen-4.2.5-r7.ebuild, -xen-4.3.3-r3.ebuild, -xen-4.3.3-r7.ebuild,
  +xen-4.3.3-r8.ebuild, +xen-4.4.1-r9.ebuild, -xen-4.5.0-r3.ebuild,
  +xen-4.5.0-r4.ebuild:
  security bump, fix XSA-119, 98

  13 Mar 2015; Agostino Sarubbo <ago@gentoo.org> xen-4.2.5-r6.ebuild,
  xen-4.4.1-r8.ebuild:
  Stable for amd64, wrt bug #542266

  13 Mar 2015; Agostino Sarubbo <ago@gentoo.org> xen-4.2.5-r6.ebuild:
  Stable for x86, wrt bug #542266

*xen-4.5.0-r3 (12 Mar 2015)
*xen-4.4.1-r8 (12 Mar 2015)
*xen-4.3.3-r7 (12 Mar 2015)
*xen-4.2.5-r6 (12 Mar 2015)

  12 Mar 2015; Yixun Lan <dlan@gentoo.org> -xen-4.2.5-r4.ebuild,
  -xen-4.2.5-r5.ebuild, +xen-4.2.5-r6.ebuild, -xen-4.3.3-r5.ebuild,
  -xen-4.3.3-r6.ebuild, +xen-4.3.3-r7.ebuild, -xen-4.4.1-r6.ebuild,
  -xen-4.4.1-r7.ebuild, +xen-4.4.1-r8.ebuild, -xen-4.5.0-r2.ebuild,
  +xen-4.5.0-r3.ebuild:
  security bump, fix bug 542263, XSA-123

*xen-4.5.0-r2 (10 Mar 2015)
*xen-4.4.1-r7 (10 Mar 2015)
*xen-4.3.3-r6 (10 Mar 2015)
*xen-4.2.5-r5 (10 Mar 2015)

  10 Mar 2015; Yixun Lan <dlan@gentoo.org> +xen-4.2.5-r5.ebuild,
  +xen-4.3.3-r6.ebuild, +xen-4.4.1-r7.ebuild, -xen-4.5.0-r1.ebuild,
  +xen-4.5.0-r2.ebuild:
  security bump, bug 542266, XSA-121,122

*xen-4.5.0-r1 (15 Feb 2015)
*xen-4.4.1-r6 (15 Feb 2015)
*xen-4.3.3-r5 (15 Feb 2015)

  15 Feb 2015; Yixun Lan <dlan@gentoo.org> xen-4.2.5-r3.ebuild,
  xen-4.2.5-r4.ebuild, xen-4.3.3-r3.ebuild, -xen-4.3.3-r4.ebuild,
  +xen-4.3.3-r5.ebuild, -xen-4.4.1-r4.ebuild, -xen-4.4.1-r5.ebuild,
  +xen-4.4.1-r6.ebuild, -xen-4.5.0.ebuild, +xen-4.5.0-r1.ebuild:
  fix security bug 538316 (arm only); fix docs bug 534466

  24 Jan 2015; Ian Delaney <idella4@gentoo.org> +files/xen-4.5-efi.patch,
  xen-4.5.0.ebuild:
  add patch to update for IUSE efi, prepared by D. Mannarino from bug #534570,
  fixes said bug

*xen-4.5.0 (21 Jan 2015)
*xen-4.4.1-r5 (21 Jan 2015)
*xen-4.3.3-r4 (21 Jan 2015)
*xen-4.2.5-r4 (21 Jan 2015)

  21 Jan 2015; Yixun Lan <dlan@gentoo.org> +xen-4.2.5-r4.ebuild,
  +xen-4.3.3-r4.ebuild, +xen-4.4.1-r5.ebuild, -xen-4.5.0_rc4.ebuild,
  +xen-4.5.0.ebuild:
  version bump, fix security bug 536220

  21 Dec 2014; Yixun Lan <dlan@gentoo.org> -xen-4.2.5-r1.ebuild,
  -xen-4.2.5-r2.ebuild, -xen-4.3.3-r2.ebuild, -xen-4.4.1-r3.ebuild:
  clean old, bug 532030

  21 Dec 2014; Agostino Sarubbo <ago@gentoo.org> xen-4.2.5-r3.ebuild:
  Stable for x86, wrt bug #532030

  21 Dec 2014; Agostino Sarubbo <ago@gentoo.org> xen-4.2.5-r3.ebuild,
  xen-4.3.3-r3.ebuild:
  Stable for amd64, wrt bug #532030

*xen-4.5.0_rc4 (19 Dec 2014)
*xen-4.4.1-r4 (19 Dec 2014)
*xen-4.3.3-r3 (19 Dec 2014)
*xen-4.2.5-r3 (19 Dec 2014)

  19 Dec 2014; Yixun Lan <dlan@gentoo.org> +xen-4.2.5-r3.ebuild,
  -xen-4.3.3-r1.ebuild, +xen-4.3.3-r3.ebuild, -xen-4.4.1-r2.ebuild,
  +xen-4.4.1-r4.ebuild, +xen-4.5.0_rc4.ebuild:
  security bump, bug 532030; add 4.5.0_rc4 for testing, with keywords dropped
  to alter user

  26 Nov 2014; Agostino Sarubbo <ago@gentoo.org> xen-4.2.5-r2.ebuild,
  xen-4.3.3-r2.ebuild:
  Stable for amd64, wrt bug #530182

*xen-4.4.1-r3 (26 Nov 2014)
*xen-4.3.3-r2 (26 Nov 2014)
*xen-4.2.5-r2 (26 Nov 2014)

  26 Nov 2014; Yixun Lan <dlan@gentoo.org> +xen-4.2.5-r2.ebuild,
  +xen-4.3.3-r2.ebuild, +xen-4.4.1-r3.ebuild:
  security version bump, bug 530182

  15 Oct 2014; Yixun Lan <dlan@gentoo.org> -xen-4.2.4-r4.ebuild,
  -xen-4.2.4-r5.ebuild, -xen-4.2.5.ebuild, -xen-4.3.2-r4.ebuild,
  -xen-4.3.2-r5.ebuild, -xen-4.3.3.ebuild:
  clean old versions after stabilization

  14 Oct 2014; Agostino Sarubbo <ago@gentoo.org> xen-4.2.5-r1.ebuild:
  Stable for x86, wrt bug #524200

  14 Oct 2014; Agostino Sarubbo <ago@gentoo.org> xen-4.2.5-r1.ebuild,
  xen-4.3.3-r1.ebuild:
  Stable for amd64, wrt bug #524200

*xen-4.4.1-r2 (10 Oct 2014)
*xen-4.3.3-r1 (10 Oct 2014)
*xen-4.2.5-r1 (10 Oct 2014)

  10 Oct 2014; Yixun Lan <dlan@gentoo.org> +xen-4.2.5-r1.ebuild,
  +xen-4.3.3-r1.ebuild, -xen-4.4.1-r1.ebuild, +xen-4.4.1-r2.ebuild:
  revision bump, fix security bug 524200, 523524

  12 Sep 2014; Yixun Lan <dlan@gentoo.org> -xen-4.4.0-r6.ebuild:
  cleanup due bug 522576

*xen-4.4.1-r1 (11 Sep 2014)

  11 Sep 2014; Yixun Lan <dlan@gentoo.org> -xen-4.4.1.ebuild,
  +xen-4.4.1-r1.ebuild:
  fix security bug 522576

*xen-4.4.1 (11 Sep 2014)
*xen-4.3.3 (11 Sep 2014)
*xen-4.2.5 (11 Sep 2014)

  11 Sep 2014; Yixun Lan <dlan@gentoo.org> +xen-4.2.5.ebuild,
  +xen-4.3.3.ebuild, +xen-4.4.1.ebuild:
  version bump

  20 Aug 2014; Agostino Sarubbo <ago@gentoo.org> xen-4.2.4-r5.ebuild:
  Stable for x86, wrt bug #519800

  20 Aug 2014; Agostino Sarubbo <ago@gentoo.org> xen-4.2.4-r5.ebuild,
  xen-4.3.2-r5.ebuild:
  Stable for amd64, wrt bug #519800

*xen-4.4.0-r6 (19 Aug 2014)
*xen-4.3.2-r5 (19 Aug 2014)
*xen-4.2.4-r5 (19 Aug 2014)

  19 Aug 2014; Yixun Lan <dlan@gentoo.org> +xen-4.2.4-r5.ebuild,
  +xen-4.3.2-r5.ebuild, -xen-4.4.0-r5.ebuild, +xen-4.4.0-r6.ebuild:
  bump security patches, fix bug 519800, 519802 519804

  12 Jul 2014; Yixun Lan <dlan@gentoo.org> -xen-4.2.4-r2.ebuild,
  -xen-4.2.4-r3.ebuild, -xen-4.3.2-r2.ebuild, -xen-4.3.2-r3.ebuild:
  cleanup after stabilization

  12 Jul 2014; Agostino Sarubbo <ago@gentoo.org> xen-4.3.2-r4.ebuild:
  Stable for amd64, wrt bug #513824

  12 Jul 2014; Agostino Sarubbo <ago@gentoo.org> xen-4.2.4-r4.ebuild:
  Stable for x86, wrt bug #513824

  12 Jul 2014; Agostino Sarubbo <ago@gentoo.org> xen-4.2.4-r4.ebuild:
  Stable for amd64, wrt bug #513824

*xen-4.4.0-r5 (09 Jul 2014)
*xen-4.3.2-r4 (09 Jul 2014)
*xen-4.2.4-r4 (09 Jul 2014)

  09 Jul 2014; Yixun Lan <dlan@gentoo.org> +xen-4.2.4-r4.ebuild,
  +xen-4.3.2-r4.ebuild, -xen-4.4.0-r3.ebuild, -xen-4.4.0-r4.ebuild,
  +xen-4.4.0-r5.ebuild:
  bump stable/security patches, fix bug 515106, 513824

*xen-4.4.0-r4 (14 Jun 2014)
*xen-4.3.2-r3 (14 Jun 2014)
*xen-4.2.4-r3 (14 Jun 2014)

  14 Jun 2014; Yixun Lan <dlan@gentoo.org> +xen-4.2.4-r3.ebuild,
  +xen-4.3.2-r3.ebuild, +xen-4.4.0-r4.ebuild:
  bump security patches, fix bug 482138, 512572, 512294

  17 May 2014; Yixun Lan <dlan@gentoo.org> -xen-4.2.3.ebuild,
  -xen-4.2.4-r1.ebuild, -xen-4.3.1-r5.ebuild, -xen-4.3.2-r1.ebuild,
  -files/xen-4-XSA-83.patch, -files/xen-4.3-CVE-2013-4553-XSA-74.patch,
  -files/xen-4.3-CVE-2013-6375-XSA-75.patch,
  -files/xen-4.3-CVE-2014-263-XSA-84-85.patch, -files/xen-4.3-XSA-87.patch,
  -files/xen-CVE-2013-4375-XSA-71.patch, -files/xen-CVE-2013-4494-XSA-73.patch,
  -files/xen-CVE-2013-4554-XSA-76.patch, -files/xen-CVE-2013-6375-XSA-78.patch,
  -files/xen-CVE-2013-6400-XSA-80.patch, -files/xen-CVE-2013-6885-XSA-82.patch:
  tree clean old ebuilds

  17 May 2014; Agostino Sarubbo <ago@gentoo.org> xen-4.2.4-r2.ebuild:
  Stable for x86, wrt bug #509054

  17 May 2014; Agostino Sarubbo <ago@gentoo.org> xen-4.2.4-r2.ebuild,
  xen-4.3.2-r2.ebuild:
  Stable for amd64, wrt bug #509054

*xen-4.4.0-r3 (14 May 2014)

  14 May 2014; Yixun Lan <dlan@gentoo.org> +xen-4.4.0-r3.ebuild,
  -xen-4.4.0-r2.ebuild:
  upstream patches bump

*xen-4.4.0-r2 (09 May 2014)
*xen-4.3.2-r2 (09 May 2014)
*xen-4.2.4-r2 (09 May 2014)

  09 May 2014; Yixun Lan <dlan@gentoo.org> -xen-4.2.4.ebuild,
  +xen-4.2.4-r2.ebuild, -xen-4.3.2.ebuild, +xen-4.3.2-r2.ebuild,
  -xen-4.4.0.ebuild, -xen-4.4.0-r1.ebuild, +xen-4.4.0-r2.ebuild:
  bump security patches, bug 508510, 508424, 509054, 509176

*xen-4.4.0-r1 (09 Apr 2014)
*xen-4.3.2-r1 (09 Apr 2014)
*xen-4.2.4-r1 (09 Apr 2014)

  09 Apr 2014; Yixun Lan <dlan@gentoo.org> +xen-4.2.4-r1.ebuild,
  +xen-4.3.2-r1.ebuild, +xen-4.4.0-r1.ebuild:
  bump stable patches, fix bug #505714, XSA-89

  23 Mar 2014; Ian Delaney <idella4@gentoo.org>
  Keyworded ~arm, this release provides broad support for the
  arm arch, update efi patch, py2.6 support dropped (as of 4.3.2),
  switch to git-2 eclass

*xen-4.4.0 (23 Mar 2014)

  23 Mar 2014; Yixun Lan <dlan@gentoo.org> +xen-4.4.0.ebuild,
  +files/xen-4.4-efi.patch:
  bump to 4.4.0

  21 Feb 2014; Ian Delaney <idella4@gentoo.org> xen-4.2.3.ebuild,
  xen-4.2.4.ebuild, xen-4.3.2.ebuild:
  correct typos, tidy

  20 Feb 2014; Yixun Lan <dlan@gentoo.org> -xen-4.2.2-r1.ebuild,
  -xen-4.2.2-r4.ebuild, -xen-4.3.1-r1.ebuild, -xen-4.3.1-r4.ebuild:
  clean old versions

  20 Feb 2014; Agostino Sarubbo <ago@gentoo.org> xen-4.2.3.ebuild:
  Stable for x86, wrt bug #500528

  20 Feb 2014; Agostino Sarubbo <ago@gentoo.org> xen-4.2.3.ebuild:
  Stable for amd64, wrt bug #500528

*xen-4.3.2 (19 Feb 2014)
*xen-4.2.4 (19 Feb 2014)

  19 Feb 2014; Yixun Lan <dlan@gentoo.org> +xen-4.2.4.ebuild,
  +xen-4.3.2.ebuild, metadata.xml:
  revision bump 4.2.4, 4.3.2

  16 Feb 2014; Agostino Sarubbo <ago@gentoo.org> xen-4.3.1-r5.ebuild:
  Stable for amd64, wrt bug #500528

*xen-4.2.3 (14 Feb 2014)

  14 Feb 2014; Yixun Lan <dlan@gentoo.org> +xen-4.2.3.ebuild:
  bumped, fix security bugs, see #500530 for details

  12 Feb 2014; Tobias Heinlein <keytoaster@gentoo.org>
  +files/xen-4.2-XSA-84.patch, +files/xen-4.2-XSA-85.patch, xen-4.2.2-r4.ebuild:
  Commit missing patches for Xen 4.2.

*xen-4.3.1-r4 (07 Feb 2014)

  07 Feb 2014; Ian Delaney <idella4@gentoo.org> +xen-4.3.1-r4.ebuild:
  Returned xen-4.3.1-r4.ebuild, sheduled for probable stablising soon

*xen-4.3.1-r5 (07 Feb 2014)
*xen-4.2.2-r4 (07 Feb 2014)

  07 Feb 2014; Ian Delaney <idella4@gentoo.org>
  +files/xen-4.3-CVE-2014-263-XSA-84-85.patch, +xen-4.2.2-r4.ebuild,
  +xen-4.3.1-r5.ebuild, -xen-4.2.2-r3.ebuild, -xen-4.3.1-r4.ebuild:
  revbumps; Sec patches XSA 84, 85 added wrt Sec. Bugs #500536, 500528, rm old

  24 Jan 2014; Yixun Lan <dlan@gentoo.org> -xen-4.2.2-r2.ebuild,
  -xen-4.3.0-r5.ebuild, -xen-4.3.0-r6.ebuild, -xen-4.3.1-r2.ebuild,
  -xen-4.3.1-r3.ebuild:
  clean 4.3.0, and unstable ones

*xen-4.3.1-r4 (24 Jan 2014)
*xen-4.2.2-r3 (24 Jan 2014)

  24 Jan 2014; Yixun Lan <dlan@gentoo.org> +xen-4.2.2-r3.ebuild,
  +xen-4.3.1-r4.ebuild, +files/xen-4-XSA-83.patch, +files/xen-4.2-XSA-87.patch,
  +files/xen-4.3-XSA-87.patch:
  fix security bugs #499054, #499124

*xen-4.2.2-r2 (17 Jan 2014)

  17 Jan 2014; Yixun Lan <dlan@gentoo.org> +xen-4.2.2-r2.ebuild,
  +files/xen-4.2-CVE-2013-4553-XSA-74.patch:
  fix security bug #497084, previous missed version 4.2.2

*xen-4.3.1-r3 (06 Jan 2014)
*xen-4.3.0-r6 (06 Jan 2014)

  06 Jan 2014; Ian Delaney <idella4@gentoo.org>
  +files/xen-4.3-CVE-2013-4553-XSA-74.patch,
  +files/xen-CVE-2013-4554-XSA-76.patch, +files/xen-CVE-2013-6400-XSA-80.patch,
  +xen-4.3.0-r6.ebuild, +xen-4.3.1-r3.ebuild:
  add new sec patches, revbumps, patches prepared by dlan

  01 Jan 2014; Tom Wijsman <TomWij@gentoo.org>
  -files/xen-4-CVE-2012-5634-XSA-33.patch,
  -files/xen-4-CVE-2013-0151-XSA-34_35.patch,
  -files/xen-4-CVE-2013-0153-XSA-36.patch,
  -files/xen-4-CVE-2013-0154-XSA-37.patch,
  -files/xen-4-CVE-2013-1917-XSA-44.patch:
  [QA] Remove unused files.

  31 Dec 2013; Ian Delaney <idella4@gentoo.org> xen-4.3.0-r5.ebuild,
  xen-4.3.1-r1.ebuild, xen-4.3.1-r2.ebuild:
  After some further 'discussion', stabalised version corrected to resolve
  residual QA issues, other ebuilds updated to follow suit

*xen-4.3.1-r2 (16 Dec 2013)
*xen-4.3.0-r5 (16 Dec 2013)

  16 Dec 2013; Ian Delaney <idella4@gentoo.org> +xen-4.3.0-r5.ebuild,
  +xen-4.3.1-r2.ebuild, -xen-4.3.0-r4.ebuild, metadata.xml:
  KEYWORDS.dropped, x86, along with IUSE pae, in 4.3.x, wrt Bug #493944

  10 Dec 2013; Agostino Sarubbo <ago@gentoo.org> xen-4.3.1-r1.ebuild:
  Stable for x86, wrt bug #486354

  10 Dec 2013; Agostino Sarubbo <ago@gentoo.org> xen-4.3.1-r1.ebuild:
  Stable for amd64, wrt bug #486354

*xen-4.3.0-r4 (06 Dec 2013)
*xen-4.3.1-r1 (06 Dec 2013)

  06 Dec 2013; Ian Delaney <idella4@gentoo.org>
  +files/xen-CVE-2013-6885-XSA-82.patch, +xen-4.3.0-r4.ebuild,
  +xen-4.3.1-r1.ebuild, -xen-4.3.0-r3.ebuild, -xen-4.3.1.ebuild:
  revbumps; add sec XSA-82.patch, remove old

*xen-4.3.1 (24 Nov 2013)

  24 Nov 2013; Ian Delaney <idella4@gentoo.org> +xen-4.3.1.ebuild:
  bump

*xen-4.3.0-r3 (22 Nov 2013)

  22 Nov 2013; Ian Delaney <idella4@gentoo.org>
  +files/xen-4.3-CVE-2013-6375-XSA-75.patch,
  +files/xen-CVE-2013-6375-XSA-78.patch, +xen-4.3.0-r3.ebuild,
  -xen-4.3.0-r1.ebuild, -xen-4.3.0-r2.ebuild, -xen-4.3.0.ebuild:
  Adding more security patches to 4.3.0 from Bug #486354, drop old

*xen-4.3.0-r2 (06 Nov 2013)

  06 Nov 2013; Ian Delaney <idella4@gentoo.org>
  +files/xen-CVE-2013-4368-XSA-67.patch, +files/xen-CVE-2013-4375-XSA-71.patch,
  +files/xen-CVE-2013-4494-XSA-73.patch, +xen-4.3.0-r2.ebuild,
  xen-4.2.2-r1.ebuild, xen-4.3.0-r1.ebuild:
  Adding more security patches to 4.3.0 from Bug #486354, 4.2.2 excluded again
  for now

  04 Oct 2013; Ian Delaney <idella4@gentoo.org> -xen-4.2.1-r4.ebuild:
  remove old

*xen-4.3.0-r1 (02 Oct 2013)

  02 Oct 2013; Ian Delaney <idella4@gentoo.org>
  +files/xen-CVE-2013-1442-XSA-62.patch, +files/xen-CVE-2013-4355-XSA-63.patch,
  +files/xen-CVE-2013-4356-XSA-64.patch, +files/xen-CVE-2013-4361-XSA-66.patch,
  +xen-4.3.0-r1.ebuild:
  Adding security patches to 4.3.0 from Bug #486354, 4.2.2 excluded (for now)
  due to one sec. patch failing

  28 Jul 2013; Jonathan Callen <jcallen@gentoo.org> xen-4.2.1-r4.ebuild,
  xen-4.2.2-r1.ebuild, xen-4.3.0.ebuild:
  Fix dependencies, add REQUIRED_USE, add missing eutils inherit (was inherited
  indirectly)

*xen-4.3.0 (21 Jul 2013)

  21 Jul 2013; Ian Delaney <idella4@gentoo.org>
  +files/xen-4.3-fix_dotconfig-gcc.patch, +xen-4.3.0.ebuild:
  bump; Removed py2.6 by discretion, added upgraded patch, all sec patches
  dropped (now inc. in source)

  03 Jul 2013; Ian Delaney <idella4@gentoo.org> -xen-4.2.1-r3.ebuild,
  -xen-4.2.2.ebuild:
  remove old unsecure ebuilds wrt Bug 472214

  02 Jul 2013; Agostino Sarubbo <ago@gentoo.org> xen-4.2.2-r1.ebuild:
  Stable for x86, wrt bug #472214

  02 Jul 2013; Agostino Sarubbo <ago@gentoo.org> xen-4.2.2-r1.ebuild:
  Stable for amd64, wrt bug #472214

  28 Jun 2013; Ian Delaney <idella4@gentoo.org>
  +files/xen-4.2-CVE-2013-1432-XSA-58.patch, xen-4.2.1-r4.ebuild,
  xen-4.2.2-r1.ebuild:
  Add sec patch XSA-58 wrt Bug #472214, refrained from revbump since last 2 are
  still poised for testing

  27 Jun 2013; Ian Delaney <idella4@gentoo.org> xen-4.2.1-r4.ebuild:
  correction to pacth name

  26 Jun 2013; Ian Delaney <idella4@gentoo.org>
  -files/xen-4-CVE-2012-4535-XSA-20.patch,
  -files/xen-4-CVE-2012-4537-XSA-22.patch,
  -files/xen-4-CVE-2012-4538-XSA-23.patch,
  -files/xen-4-CVE-2012-4539-XSA-24.patch,
  -files/xen-4-CVE-2012-5510-XSA-26.patch,
  -files/xen-4-CVE-2012-5513-XSA-29.patch,
  -files/xen-4-CVE-2012-5514-XSA-30.patch,
  -files/xen-4-CVE-2012-5515-XSA-31.patch,
  -files/xen-4-CVE-2012-5525-XSA-32.patch,
  -files/xen-4-CVE-2013-0151-XSA-27_34_35.patch,
  -files/xen-4-CVE-2013-1920-XSA-47.patch, -files/xen-4.1.1-iommu_sec_fix.patch:
  drop disused patches

*xen-4.2.1-r4 (26 Jun 2013)
*xen-4.2.2-r1 (26 Jun 2013)

  26 Jun 2013; Ian Delaney <idella4@gentoo.org>
  +files/xen-4.2-2013-2076-XSA-52to54.patch, +xen-4.2.1-r4.ebuild,
  +xen-4.2.2-r1.ebuild, -xen-4.2.0-r1.ebuild, -xen-4.2.0-r2.ebuild,
  -xen-4.2.1-r1.ebuild, -xen-4.2.1-r2.ebuild:
  revbump; add security patches XSA-52to54, remove old

  23 May 2013; Agostino Sarubbo <ago@gentoo.org> xen-4.2.1-r3.ebuild:
  Stable for x86, wrt bug #464724

  23 May 2013; Agostino Sarubbo <ago@gentoo.org> xen-4.2.1-r3.ebuild:
  Stable for amd64, wrt bug #464724

  15 May 2013; Ian Delaney <idella4@gentoo.org> xen-4.2.1-r1.ebuild,
  xen-4.2.1-r2.ebuild:
  Manifests

  15 May 2013; Ian Delaney <idella4@gentoo.org> xen-4.2.1-r1.ebuild,
  xen-4.2.1-r2.ebuild, xen-4.2.2.ebuild:
  epatch_user helper added wrt Bug #464052

*xen-4.2.2 (15 May 2013)
*xen-4.2.1-r3 (15 May 2013)

  15 May 2013; Ian Delaney <idella4@gentoo.org>
  +files/xen-4-CVE-2013-0153-XSA-36.patch,
  +files/xen-4-CVE-2013-1917-XSA-44.patch,
  +files/xen-4-CVE-2013-1918-XSA-45_1.patch,
  +files/xen-4-CVE-2013-1918-XSA-45_2.patch,
  +files/xen-4-CVE-2013-1918-XSA-45_3.patch,
  +files/xen-4-CVE-2013-1918-XSA-45_4.patch,
  +files/xen-4-CVE-2013-1918-XSA-45_5.patch,
  +files/xen-4-CVE-2013-1918-XSA-45_6.patch,
  +files/xen-4-CVE-2013-1918-XSA-45_7.patch,
  +files/xen-4-CVE-2013-1920-XSA-47.patch, +xen-4.2.1-r3.ebuild,
  +xen-4.2.2.ebuild, xen-4.2.1-r1.ebuild, xen-4.2.1-r2.ebuild:
  revbump 4.2.1-r3; updated security patches, bump 4.2.2; updated security
  patches

  08 Mar 2013; Ian Delaney <idella4@gentoo.org> xen-4.2.0-r2.ebuild,
  xen-4.2.1-r1.ebuild, xen-4.2.1-r2.ebuild:
  Deps fixed addressing IUSE efi, fixes Bug #458947 by a.m!, tested by Paul
  Freeman

  07 Mar 2013; Ian Delaney <idella4@gentoo.org> files/xen-4.2-efi.patch,
  xen-4.2.1-r2.ebuild:
  Deps corrected in 4.2.1-r2, patch addressing efi upgraded for newly made efi
  build, fixes Bug #458926 by Carlos Silva, patched prepared, tested by Paul
  Freeman

  27 Feb 2013; Ian Delaney <idella4@gentoo.org> xen-4.2.0-r2.ebuild,
  xen-4.2.1-r2.ebuild:
  install fixed if IUSE efi for both sub-versions, thx to lejonet and Zorry wrt
  Bug #45897

  25 Feb 2013; Ian Delaney <idella4@gentoo.org> xen-4.2.0-r2.ebuild:
  Add the intended dep to support efi in 4.2.0-r2

*xen-4.2.1-r2 (24 Feb 2013)
*xen-4.2.0-r2 (24 Feb 2013)

  24 Feb 2013; Ian Delaney <idella4@gentoo.org> +files/xen-4.2-efi.patch,
  +xen-4.2.0-r2.ebuild, +xen-4.2.1-r2.ebuild, -files/xen-4-efi.patch,
  xen-4.2.0-r1.ebuild, xen-4.2.1-r1.ebuild:
  After further review, reverted both -r1 ebuilds, revbumped both to -r2, fixed
  deps and install, reduced efi.patch accordingly and re-named to
  xen-4.2-efi.patch, all wrt Bug #458160

  23 Feb 2013; Ian Delaney <idella4@gentoo.org> +files/xen-4-efi.patch,
  metadata.xml, xen-4.2.0-r1.ebuild, xen-4.2.1-r1.ebuild:
  local efi IUSE flag added, efi support to both 4.2.0 & 4.2.1, fixes Bug
  #458160 by Jiří Moravec

  04 Feb 2013; Ian Delaney <idella4@gentoo.org> xen-4.2.0-r1.ebuild:
  Add a missed '\' to added patch, 2nd. time lucky

  04 Feb 2013; Ian Delaney <idella4@gentoo.org> xen-4.2.0-r1.ebuild:
  Added acquired but missed sec patch 2012-5513-XSA-29.patch to set of sec
  patches in 4.2.0-r1

  03 Feb 2013; Agostino Sarubbo <ago@gentoo.org> -xen-4.1.1-r2.ebuild,
  -xen-4.1.2.ebuild:
  Remove old

  02 Feb 2013; Agostino Sarubbo <ago@gentoo.org> xen-4.2.0-r1.ebuild:
  Stable for x86, wrt bug #454314

  02 Feb 2013; Agostino Sarubbo <ago@gentoo.org> xen-4.2.0-r1.ebuild:
  Stable for amd64, wrt bug #454314

  01 Feb 2013; Ian Delaney <idella4@gentoo.org> xen-4.2.0-r1.ebuild,
  xen-4.2.1-r1.ebuild:
  Removal of un-needed dep grub or grub-static from RDEP in 4.2.0-r1.4.2.1-r1,
  from user a.m in Bug #447716

*xen-4.2.1-r1 (30 Jan 2013)
*xen-4.2.0-r1 (30 Jan 2013)

  30 Jan 2013; Ian Delaney <idella4@gentoo.org>
  +files/xen-4-CVE-2012-4535-XSA-20.patch,
  +files/xen-4-CVE-2012-4537-XSA-22.patch,
  +files/xen-4-CVE-2012-4538-XSA-23.patch,
  +files/xen-4-CVE-2012-4539-XSA-24.patch,
  +files/xen-4-CVE-2012-5510-XSA-26.patch,
  +files/xen-4-CVE-2012-5513-XSA-29.patch,
  +files/xen-4-CVE-2012-5514-XSA-30.patch,
  +files/xen-4-CVE-2012-5515-XSA-31.patch,
  +files/xen-4-CVE-2012-5525-XSA-32.patch,
  +files/xen-4-CVE-2012-5634-XSA-33.patch,
  +files/xen-4-CVE-2013-0151-XSA-27_34_35.patch,
  +files/xen-4-CVE-2013-0151-XSA-34_35.patch,
  +files/xen-4-CVE-2013-0154-XSA-37.patch, +xen-4.2.0-r1.ebuild,
  +xen-4.2.1-r1.ebuild, -xen-4.2.0.ebuild, -xen-4.2.1.ebuild,
  files/xen-4-fix_dotconfig-gcc.patch:
  revbumps; -4.2.0-r1, eclass python-single-r1 added to anable & ensure a build
  by py2 fixing Bug #453930, PYTHON_COMPAT set accordingly, EAPI->5, sed
  statements reduced to patches, many sec. patches added addressing Bugs
  #445254, #431156, #454314. -4.2.1-r1, changes mirrored in those of -4.2.0-r1,
  addition of 3 sec. patches that pertain to 4.2.1. Dropped 4.2.0 & 4.2.1 by
  virtue of being prone to failure in form of Bug #453930. Sees 4.2.0-r1 ready
  for testing for stable

*xen-4.2.1 (24 Jan 2013)

  24 Jan 2013; Ian Delaney <idella4@gentoo.org>
  +files/xen-4-fix_dotconfig-gcc.patch, +xen-4.2.1.ebuild:
  bump

  05 Dec 2012; Jeroen Roovers <jer@gentoo.org> metadata.xml:
  Change maintainer tag (bug #390951).

  04 Dec 2012; Tomáš Chvátal <scarabeus@gentoo.org> xen-4.1.1-r2.ebuild:
  This is supposed to be stable amd64 and x86. We do not remove stable keywords
  just for fun.

*xen-4.2.0 (05 Dec 2012)

  05 Dec 2012; Ian Delaney <idella4@gentoo.org> +xen-4.2.0.ebuild,
  -files/xen-3.3.0-unexported-target-fix.patch,
  -files/xen-3.4.2-CVE-2011-1583.patch,
  -files/xen-3.4.2-dump_registers-watchdog-fix.patch,
  -files/xen-3.4.2-fix-__addr_ok-limit.patch, -files/xen-3.4.2-no-DMA.patch,
  -files/xen-3.4.2-werror-idiocy.patch, xen-4.1.1-r2.ebuild:
  bump and all that goes with it; note todo ovmf

  01 Jun 2012; Zac Medico <zmedico@gentoo.org> xen-4.1.1-r2.ebuild:
  tweak inherit so repoman can parse it, and inherit eutils for epatch

  29 May 2012; Kacper Kowalik <xarthisius@gentoo.org> metadata.xml:
  Use <description> field in order to provide more compact <name>

  13 May 2012; Pacho Ramos <pacho@gentoo.org> -xen-3.4.2-r4.ebuild,
  metadata.xml:
  Drop old.

  28 Nov 2011; Alexey Shvetsov <alexxy@gentoo.org> -xen-9999.ebuild:
  Move xen-9999 to virtualization overlay

  07 Nov 2011; Alexey Shvetsov <alexxy@gentoo.org> -xen-3.4.2-r3.ebuild,
  xen-4.1.1-r2.ebuild:
  Drop old one. And fix minor syntax issues

  07 Nov 2011; Alexey Shvetsov <alexxy@gentoo.org> xen-4.1.1-r2.ebuild,
  xen-4.1.2.ebuild:
  adding of tc-getLD, prepared by Ian Delaney aka idella4

  01 Nov 2011; Tony Vroon <chainsaw@gentoo.org> xen-4.1.1-r2.ebuild:
  Marked stable on AMD64 based on arch testing by Elijah "Armageddon" El
  Lazkani & Ian "idella4" Delaney in bug #360621.

*xen-4.1.2 (25 Oct 2011)

  25 Oct 2011; Alexey Shvetsov <alexxy@gentoo.org> +xen-4.1.2.ebuild:
  Version bump prepared by Ian Delaney aka idella4

  15 Oct 2011; Markos Chandras <hwoarang@gentoo.org> xen-3.4.2-r4.ebuild:
  Stable on amd64 wrt bug #385319

  13 Oct 2011; Pawel Hajdan jr <phajdan.jr@gentoo.org> xen-3.4.2-r4.ebuild:
  x86 stable wrt bug #385319

  13 Oct 2011; Alexey Shvetsov <alexxy@gentoo.org> -xen-3.4.2-r1.ebuild,
  xen-4.1.1-r2.ebuild:
  Drop old. Alternate fix to -Werror, fixes bug 362303, patch by Markus
  Peloquin

*xen-3.4.2-r4 (11 Oct 2011)

  11 Oct 2011; Tony Vroon <chainsaw@gentoo.org> +xen-3.4.2-r4.ebuild,
  +files/xen-3.4.2-CVE-2011-1583.patch,
  +files/xen-3.4.2-fix-__addr_ok-limit.patch:
  Patches by Ian "idella4" Delaney to address security bugs #385319 and
  #386371.

  29 Sep 2011; Thomas Kahle <tomka@gentoo.org> xen-3.4.2-r3.ebuild:
  x86 stable per bug 379241

  25 Sep 2011; Tony Vroon <chainsaw@gentoo.org> xen-3.4.2-r3.ebuild:
  Marked stable on AMD64 based on arch testing by Agostino "ago" Sarubbo & Ian
  "idella4" Delaney in security bug #379241.

*xen-3.4.2-r3 (25 Sep 2011)

  25 Sep 2011; Tony Vroon <chainsaw@gentoo.org> -xen-3.4.2-r2.ebuild,
  +xen-3.4.2-r3.ebuild, +files/xen-3.4.2-werror-idiocy.patch:
  Patch by Ian "idella4" Delaney allows building on GCC 4.5 & 4.6; closes bug
  #384361 by Agostino "ago" Sarubbo.

  25 Sep 2011; Pawel Hajdan jr <phajdan.jr@gentoo.org> xen-4.1.1-r2.ebuild:
  x86 stable wrt bug #360621

  25 Sep 2011; Pawel Hajdan jr <phajdan.jr@gentoo.org> xen-4.1.1-r2.ebuild:
  x86 stable wrt bug #360621

*xen-3.4.2-r2 (21 Sep 2011)

  21 Sep 2011; Alexey Shvetsov <alexxy@gentoo.org> +xen-3.4.2-r2.ebuild,
  +files/xen-3.4.2-no-DMA.patch:
  Security patch from xen-4 backported for xen-3 by Ian Delaney aka idell4

*xen-4.1.1-r2 (18 Sep 2011)

  18 Sep 2011; Alexey Shvetsov <alexxy@gentoo.org> -xen-4.1.1-r1.ebuild,
  +xen-4.1.1-r2.ebuild, +files/xen-4.1.1-iommu_sec_fix.patch:
  Fix bug #379241

*xen-4.1.1-r1 (11 Sep 2011)

  11 Sep 2011; Alexey Shvetsov <alexxy@gentoo.org> -xen-4.1.1.ebuild,
  +xen-4.1.1-r1.ebuild, xen-9999.ebuild, metadata.xml:
  Sync live ebuild with 4.1.1, drop acm since its deprecated upstream. Input
  from Ian Delaney aka idell4

  31 Aug 2011; Alexey Shvetsov <alexxy@gentoo.org> -xen-4.1.0.ebuild:
  Drop old version

  09 Aug 2011; Alexey Shvetsov <alexxy@gentoo.org> xen-9999.ebuild:
  Sync 9999 and 4.1.1

*xen-4.1.1 (29 Jul 2011)

  29 Jul 2011; Patrick Lauer <patrick@gentoo.org> +xen-4.1.1.ebuild:
  Bump for #372259

*xen-9999 (06 Apr 2011)

  06 Apr 2011; Alexey Shvetsov <alexxy@gentoo.org> +xen-9999.ebuild:
  Add live version

  26 Mar 2011; Alexey Shvetsov <alexxy@gentoo.org> xen-4.1.0.ebuild:
  Fix build on some platforms

  26 Mar 2011; Alexey Shvetsov <alexxy@gentoo.org> -xen-3.4.3.ebuild,
  -xen-4.0.1.ebuild:
  Clean up

*xen-4.1.0 (26 Mar 2011)

  26 Mar 2011; Alexey Shvetsov <alexxy@gentoo.org> -xen-3.1.3.ebuild,
  -xen-3.2.1.ebuild, -files/xen-3.3.0-warning-fix.patch, -xen-3.4.0.ebuild,
  -xen-3.4.1.ebuild, -xen-3.4.2.ebuild, -xen-4.0.0.ebuild, +xen-4.1.0.ebuild,
  -files/xen-sed-gcc.patch:
  Version bump & clean up

*xen-4.0.1 (03 Dec 2010)

  03 Dec 2010; Patrick Lauer <patrick@gentoo.org> +xen-4.0.1.ebuild:
  Bump

*xen-3.4.3 (11 Jul 2010)

  11 Jul 2010; Patrick Lauer <patrick@gentoo.org> +xen-3.4.3.ebuild:
  Bump for #325091

  24 Jun 2010; Christoph Mende <angelos@gentoo.org> xen-3.4.2-r1.ebuild:
  Stable on amd64 wrt bug #293714

*xen-4.0.0 (12 Apr 2010)

  12 Apr 2010; Alexey Shvetsov <alexxy@gentoo.org> +xen-4.0.0.ebuild:
  Version bump per bug #313791

  16 Jan 2010; Christian Faulhammer <fauli@gentoo.org> xen-3.4.2-r1.ebuild:
  stable x86, bug 293714

*xen-3.4.2-r1 (06 Jan 2010)

  06 Jan 2010; Patrick Lauer <patrick@gentoo.org> +xen-3.4.2-r1.ebuild,
  +files/xen-3.4.2-dump_registers-watchdog-fix.patch:
  Crashfix for xen console thanks to Andrew Lyon

*xen-3.4.2 (01 Dec 2009)

  01 Dec 2009; Patrick Lauer <patrick@gentoo.org> +xen-3.4.2.ebuild:
  Bump

  27 Oct 2009; Patrick Lauer <patrick@gentoo.org> -xen-3.3.0.ebuild,
  -xen-3.3.1.ebuild, -xen-3.3.1-r1.ebuild:
  Removing old versions for #287936

*xen-3.4.1 (17 Aug 2009)

  17 Aug 2009; Patrick Lauer <patrick@gentoo.org> +xen-3.4.1.ebuild:
  Bump to 3.4.1. Fixes #280773

  27 Jun 2009; Patrick Lauer <patrick@gentoo.org> xen-3.1.3.ebuild,
  xen-3.2.1.ebuild, xen-3.3.0.ebuild, xen-3.3.1.ebuild, xen-3.3.1-r1.ebuild,
  xen-3.4.0.ebuild:
  Fixing link to gentoo-wiki.com, fixes #275219

*xen-3.4.0 (22 Jun 2009)

  22 Jun 2009; Patrick Lauer <patrick@gentoo.org> +xen-3.4.0.ebuild:
  Bump to 3.4.0. Closes #271173

*xen-3.3.1-r1 (27 Apr 2009)

  27 Apr 2009; Patrick Lauer <patrick@gentoo.org>
  +files/xen-3.3.0-unexported-target-fix.patch, +xen-3.3.1-r1.ebuild:
  Fix sandbox violation,
  http://bugzilla.xensource.com/bugzilla/show_bug.cgi?id=1405 Closes #259670

*xen-3.3.1 (26 Apr 2009)

  26 Apr 2009; Patrick Lauer <patrick@gentoo.org> +xen-3.3.1.ebuild:
  Bump to 3.3.1. Fixes other half of #254931

  26 Apr 2009; Patrick Lauer <patrick@gentoo.org>
  +files/xen-3.3.0-warning-fix.patch, xen-3.3.0:
  Fix gcc 4.3 compile failure, part of #259670

  28 Feb 2009; Markus Meier <maekke@gentoo.org> metadata.xml:
  custom-cflags is a global USE-flag

*xen-3.3.0 (01 Sep 2008)

  01 Sep 2008; Robert Buchholz <rbu@gentoo.org> +files/xen-sed-gcc.patch,
  metadata.xml, -xen-3.2.0.ebuild, xen-3.2.1.ebuild, +xen-3.3.0.ebuild:
  Version bump to Xen 3.3 (bug #201792).
  Bugs fixed:
   * Fix invalid sed that broke gcc-4.3 (bug #217151)

  28 Jul 2008; Doug Goldstein <cardoe@gentoo.org> metadata.xml:
  add GLEP 56 USE flag desc from use.local.desc

*xen-3.2.1 (04 May 2008)

  04 May 2008; Robert Buchholz <rbu@gentoo.org> -xen-3.1.2.ebuild,
  +xen-3.2.1.ebuild:
  Version bump to the Xen 3.2.1 release (bug #219339), thanks to Troy Bowman
  for testig.

*xen-3.2.0 (08 Feb 2008)

  08 Feb 2008; Michael Marineau <marineam@gentoo.org> +xen-3.2.0.ebuild:
  Add version 3.2.0

*xen-3.1.3 (03 Feb 2008)

  03 Feb 2008; Michael Marineau <marineam@gentoo.org> +xen-3.1.3.ebuild:
  Version bump to 3.1.3

  03 Feb 2008; Michael Marineau <marineam@gentoo.org> xen-3.1.2.ebuild:
  Filter -O3 from CFLAGS when using custom cflags.

*xen-3.1.2 (17 Nov 2007)

  17 Nov 2007; Michael Marineau <marineam@gentoo.org> -xen-3.0.4_p1.ebuild,
  -xen-3.1.0.ebuild, -xen-3.1.1.ebuild, +xen-3.1.2.ebuild:
  Bump to 3.1.2, fixes CVE-2007-5906, Bug #198995. Clean out old versions.

*xen-3.1.1 (15 Oct 2007)

  15 Oct 2007; Michael Marineau <marineam@gentoo.org> +xen-3.1.1.ebuild:
  Version bump.

  27 Aug 2007; Michael Marineau <marineam@gentoo.org> xen-3.0.4_p1.ebuild,
  xen-3.1.0.ebuild:
  Die if both x86 and amd64 are set in USE.

*xen-3.1.0 (24 Aug 2007)

  24 Aug 2007; Michael Marineau <marineam@gentoo.org>
  -xen-3.0.2.ebuild, +xen-3.1.0.ebuild:
  Copy Xen 3.1.0 related ebuilds over from the Xen project overlay.
  Remove Xen 3.0.2.

  10 Jul 2007; Michael Marineau <marineam@gentoo.org> xen-3.0.4_p1.ebuild:
  Fix building with --as-needed

  09 Jul 2007; Michael Marineau <marineam@gentoo.org> xen-3.0.4_p1.ebuild:
  It turns out that xen 3.0.4 correctly handles hardened flags, remove useless
  code from the ebuild.

  25 Jun 2007; Michael Marineau <marineam@gentoo.org> xen-3.0.4_p1.ebuild:
  Fix typo in -fno-pie flag.

*xen-3.0.4_p1 (02 May 2007)

  02 May 2007; Michael Marineau <marineam@gentoo.org>
  -files/gentoo-makefile-targets, -files/xend-conf, xen-3.0.2.ebuild,
  +xen-3.0.4_p1.ebuild:
  Add xen 3.0.4 from the marineam-xen overlay, cleanup the 3.0.2 ebuild a bit.

  25 Jan 2007; Marius Mauch <genone@gentoo.org> xen-3.0.2.ebuild:
  Replacing einfo with elog

  06 Oct 2006; <aross@gentoo.org> xen-3.0.2.ebuild:
  Allow compilation under AMD64 with a 64 bit kernel but 32 bit userland.
  Thanks to tonich <tonich@artparade.ru> and Sven Wegener
  <swegener@gentoo.org> in bug #143999

  16 Aug 2006; Andrew Ross <aross@gentoo.org> metadata.xml:
  Convert from individual maintainers to xen herd.

  11 Aug 2006; Andrew Ross <aross@gentoo.org> metadata.xml:
  Add myself as a maintainer

  04 Aug 2006; Chris Bainbridge <chrb@gentoo.org> xen-3.0.2.ebuild:
  Remove in package testing - tests are for xen-tools, not xen hypervisor. Bug
  #141227, thanks to Andrew Ross

  02 Jun 2006; Roy Marples <uberlord@gentoo.org> xen-3.0.2.ebuild:
  Send raw LDFLAGS via make to support --as-needed, #135140

  22 May 2006; <chrb@gentoo.org> +files/xen-3.0.2-nopiessp.patch,
  -xen-3.0.1-r4.ebuild, -xen-3.0.1-r5.ebuild, -xen-3.0.1_p9029.ebuild,
  xen-3.0.2.ebuild:
  Add hardened patch, thanks to Solar in bug #130167

  10 Apr 2006; <chrb@gentoo.org> xen-3.0.2.ebuild:
  fix pae, again, #124355

  10 Apr 2006; <chrb@gentoo.org> xen-3.0.2.ebuild:
  remove sed fix, #129429

  10 Apr 2006; <chrb@gentoo.org> files/digest-xen-3.0.2, Manifest:
  new digest

*xen-3.0.2 (09 Apr 2006)

  09 Apr 2006; <chrb@gentoo.org> +xen-3.0.2.ebuild:
  bump, #129191

*xen-3.0.1_p9029 (24 Mar 2006)
*xen-3.0.1-r5 (24 Mar 2006)

  24 Mar 2006; Aron Griffis <agriffis@gentoo.org> +xen-3.0.1-r5.ebuild,
  +xen-3.0.1_p9029.ebuild, -xen-9029-r2.ebuild:
  Split xen from xen-tools; now this package only installs the hypervisor and
  include files. Unify the release and snapshot ebuilds for easier
  maintenance. Switch to a snapshot versioning scheme that keeps
  release/snapshot versions in order.  Add myself as an additional maintainer in
  metadata.xml

*xen-9029-r2 (05 Mar 2006)
*xen-3.0.1-r4 (05 Mar 2006)

  05 Mar 2006; Chris Bainbridge <chrb@gentoo.org> -xen-3.0.1-r3.ebuild, +xen-3.0.1-r4.ebuild,
  -xen-9029-r1.ebuild, +xen-9029-r2.ebuild:
  add ekeep for pre-created xen dirs, bug #123862

*xen-9029-r1 (03 Mar 2006)
*xen-3.0.1-r3 (03 Mar 2006)

  03 Mar 2006; Chris Bainbridge <chrb@gentoo.org> +files/gentoo-makefile-targets,
  -xen-3.0.1-r2.ebuild, +xen-3.0.1-r3.ebuild, -xen-9029.ebuild,
  +xen-9029-r1.ebuild:
  more pae fixes

*xen-9029 (02 Mar 2006)
*xen-3.0.1-r2 (02 Mar 2006)

  02 Mar 2006; Chris Bainbridge <chrb@gentoo.org> -xen-3.0.1-r1.ebuild, +xen-3.0.1-r2.ebuild,
  -xen-8885.ebuild, +xen-9029.ebuild:
  Bump unstable. Add PAE support thanks to Christopher G. Stach II (bug #124355).

*xen-8885 (19 Feb 2006)

  19 Feb 2006; Chris Bainbridge <chrb@gentoo.org> +xen-8885.ebuild:
  new xen-unstable snapshot

*xen-3.0.1-r1 (05 Feb 2006)

  05 Feb 2006; Chris Bainbridge <chrb@gentoo.org> -xen-3.0.1.ebuild, +xen-3.0.1-r1.ebuild:
  use the official 3.0.1 tarballs

  04 Feb 2006; Chris Bainbridge <chrb@gentoo.org> xen-3.0.1.ebuild:
  fix snapshot

*xen-3.0.1 (03 Feb 2006)

  03 Feb 2006; Chris Bainbridge <chrb@gentoo.org> +xen-3.0.1.ebuild:
  bump

*xen-3.0.0-r2 (23 Dec 2005)

  23 Dec 2005; Chris Bainbridge <chrb@gentoo.org> files/xend-init, files/xendomains-init,
  -xen-2.0.7.ebuild, -xen-3.0.0-r1.ebuild, +xen-3.0.0-r2.ebuild:
  Bugs #115970 (/var/xen/dump), #115969 (dhcp), #116332 (hotplug). Removed
  xen-2 as bugs are not being fixed upstream since the xen-3.0.0 release.

  21 Dec 2005; Alex Howells <astinus@gentoo.org> xen-3.0.0-r1.ebuild:
  Keyword ~amd64 added, works fine for me!

  08 Dec 2005; Chris Bainbridge <chrb@gentoo.org> xen-3.0.0-r1.ebuild:
  rename cflags -> custom-cflags (like mplayer, grub..)

*xen-3.0.0-r1 (08 Dec 2005)

  08 Dec 2005; Chris Bainbridge <chrb@gentoo.org> -xen-3.0.0.ebuild, +xen-3.0.0-r1.ebuild:
  add dirs expected by xend, bug #114856

  07 Dec 2005; Chris Bainbridge <chrb@gentoo.org> xen-3.0.0.ebuild:
  Fix CFLAGS for hardened bug #114716

*xen-3.0.0 (06 Dec 2005)

  06 Dec 2005; Chris Bainbridge <chrb@gentoo.org> -xen-3.0.0_pre20051027.ebuild,
  -xen-3.0.0_pre20051122.ebuild, -xen-3.0.0_pre20051128.ebuild,
  -xen-3.0.0_pre20051128-r1.ebuild, +xen-3.0.0.ebuild:
  New 3.0.0 release.

*xen-3.0.0_pre20051128-r1 (30 Nov 2005)

  30 Nov 2005; Chris Bainbridge <chrb@gentoo.org> xen-3.0.0_pre20051128.ebuild,
  +xen-3.0.0_pre20051128-r1.ebuild:
  support user specified cflags (must be forced to override defaults with
  'cflags' USE flag

*xen-3.0.0_pre20051128 (28 Nov 2005)

  28 Nov 2005; Chris Bainbridge <chrb@gentoo.org> +xen-3.0.0_pre20051128.ebuild:
  bump

*xen-3.0.0_pre20051122 (22 Nov 2005)

  22 Nov 2005; Chris Bainbridge <chrb@gentoo.org> +xen-3.0.0_pre20051122.ebuild:
  version bump

  03 Nov 2005; Chris Bainbridge <chrb@gentoo.org> -xen-3.0.0_pre20051010.ebuild,
  -xen-3.0.0_pre20051010-r1.ebuild:
  remove old cvs snapshots

*xen-3.0.0_pre20051027 (27 Oct 2005)

  27 Oct 2005; Chris Bainbridge <chrb@gentoo.org> files/xendomains-init,
  +xen-3.0.0_pre20051027.ebuild:
  version bump

*xen-3.0.0_pre20051010-r1 (26 Oct 2005)

  26 Oct 2005; Chris Bainbridge <chrb@gentoo.org>
  +xen-3.0.0_pre20051010-r1.ebuild:
  added depend on sys-devel/dev86

*xen-3.0.0_pre20051010 (10 Oct 2005)

  10 Oct 2005; Chris Bainbridge <chrb@gentoo.org>
  -xen-3.0.0_pre20051007.ebuild, +xen-3.0.0_pre20051010.ebuild:
  bump

  10 Oct 2005; Chris Bainbridge <chrb@gentoo.org>
  xen-3.0.0_pre20051007.ebuild:
  add disabling cflags einfo

  10 Oct 2005; Chris Bainbridge <chrb@gentoo.org>
  xen-3.0.0_pre20051007.ebuild:
  re-add hardened flags.

*xen-3.0.0_pre20051007 (08 Oct 2005)

  08 Oct 2005; Chris Bainbridge <chrb@gentoo.org> files/xend-init,
  files/xendomains-conf, files/xendomains-init,
  -xen-3.0.0_pre20050929.ebuild, +xen-3.0.0_pre20051007.ebuild:
  -m Version bump xen-3, now uses udev rules. Add support for screen consoles
  in xendomains. No longer use broken --halt to bring down domains.

*xen-3.0.0_pre20050929 (29 Sep 2005)

  29 Sep 2005; Chris Bainbridge <chrb@gentoo.org>
  -xen-3.0.0_pre20050919.ebuild, +xen-3.0.0_pre20050929.ebuild:
  cvs bump

  22 Sep 2005; Chris Bainbridge <chrb@gentoo.org> xen-2.0.7.ebuild,
  -xen-3.0.0_pre20050906.ebuild:
  Add hardened flags #106731 and remove old snapshot

  20 Sep 2005; Chris Bainbridge <chrb@gentoo.org> files/xend-init,
  files/xendomains-init:
  Change init scripts to absolute paths.

*xen-3.0.0_pre20050919 (19 Sep 2005)

  19 Sep 2005; Chris Bainbridge <chrb@gentoo.org>
  +xen-3.0.0_pre20050919.ebuild:
  Version bump

*xen-3.0.0_pre20050906 (07 Sep 2005)
*xen-2.0.7 (07 Sep 2005)

  07 Sep 2005; Chris Bainbridge <chrb@gentoo.org> +files/xend-conf,
  +files/xend-init, +files/xendomains-conf, +files/xendomains-init,
  +metadata.xml, +xen-2.0.7.ebuild, +xen-3.0.0_pre20050906.ebuild:
  New package. Thanks to the many who contributed in bug #70161.