1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
1526
1527
1528
1529
1530
1531
1532
1533
1534
1535
1536
1537
1538
1539
1540
1541
1542
1543
1544
1545
1546
1547
1548
1549
1550
1551
1552
1553
1554
1555
1556
1557
1558
1559
1560
1561
1562
1563
1564
1565
1566
1567
1568
1569
1570
1571
1572
1573
1574
1575
1576
1577
1578
1579
1580
1581
1582
1583
1584
1585
1586
1587
1588
1589
1590
1591
1592
1593
1594
1595
1596
1597
1598
1599
1600
1601
1602
1603
1604
1605
1606
1607
1608
1609
1610
1611
1612
1613
1614
1615
1616
1617
1618
1619
1620
1621
1622
1623
1624
1625
1626
1627
1628
1629
1630
1631
1632
1633
1634
1635
1636
1637
1638
1639
|
# ChangeLog for sys-devel/binutils
# Copyright 1999-2008 Gentoo Foundation; Distributed under the GPL v2
# $Header: /var/cvsroot/gentoo-x86/sys-devel/binutils/ChangeLog,v 1.332 2008/07/07 11:53:50 armin76 Exp $
07 Jul 2008; Raúl Porcel <armin76@gentoo.org> binutils-2.18-r3.ebuild:
alpha/ia64/sparc stable wrt security #230593
07 Jul 2008; Christian Faulhammer <opfer@gentoo.org>
binutils-2.18-r3.ebuild:
stable x86, security bug 230593
07 Jul 2008; Brent Baude <ranger@gentoo.org> binutils-2.18-r3.ebuild:
Marking binutils-2.18-r3 ppc64 and ppc for bug 230593
06 Jul 2008; Jeroen Roovers <jer@gentoo.org> binutils-2.18-r3.ebuild:
Stable for HPPA (bug #230593).
*binutils-2.18-r3 (05 Jul 2008)
05 Jul 2008; Mark Loeser <halcy0n@gentoo.org> +binutils-2.18-r3.ebuild:
Version bump for bug #230593
*binutils-2.18-r2 (23 Jun 2008)
23 Jun 2008; Mike Frysinger <vapier@gentoo.org> +binutils-2.18-r2.ebuild:
Drop gnu hash patch for mips #211680 and backport freebsd fixups #223249.
*binutils-2.18.50.0.7 (10 May 2008)
10 May 2008; Mike Frysinger <vapier@gentoo.org>
+binutils-2.18.50.0.7.ebuild:
Version bump.
*binutils-2.18.50.0.6 (03 Apr 2008)
03 Apr 2008; Mike Frysinger <vapier@gentoo.org>
+binutils-2.18.50.0.6.ebuild:
Version bump.
*binutils-2.18.50.0.5 (17 Mar 2008)
17 Mar 2008; Mike Frysinger <vapier@gentoo.org>
+binutils-2.18.50.0.5.ebuild:
Version bump #213618 by Arfrever Frehtes Taifersar Arahesis.
*binutils-2.18.50.0.4 (09 Feb 2008)
09 Feb 2008; Mike Frysinger <vapier@gentoo.org>
+binutils-2.18.50.0.4.ebuild:
Version bump.
20 Nov 2007; Joshua Kinard <kumba@gentoo.org> binutils-2.18-r1.ebuild:
Stable on mips, per #195511.
14 Nov 2007; Jeroen Roovers <jer@gentoo.org> binutils-2.18-r1.ebuild:
Stable for HPPA too (not quite bug #195511).
*binutils-2.18.50.0.3 (04 Nov 2007)
04 Nov 2007; Mike Frysinger <vapier@gentoo.org>
+binutils-2.18.50.0.3.ebuild:
Version bump.
17 Oct 2007; Raúl Porcel <armin76@gentoo.org> binutils-2.18-r1.ebuild:
alpha/ia64/sparc stable wrt #195511
16 Oct 2007; Christoph Mende <angelos@gentoo.org> binutils-2.18-r1.ebuild:
Stable on amd64 wrt bug #195511
15 Oct 2007; Markus Rothe <corsair@gentoo.org> binutils-2.18-r1.ebuild:
Stable on ppc64; bug #195511
14 Oct 2007; Christian Faulhammer <opfer@gentoo.org>
binutils-2.18-r1.ebuild:
stable x86, bug 195511
12 Oct 2007; Lars Weiler <pylon@gentoo.org> binutils-2.18-r1.ebuild:
stable ppc, bug #195511
08 Oct 2007; Mike Frysinger <vapier@gentoo.org> binutils-2.18-r1.ebuild:
Fix makeinfo version check to work with texinfo-4.11 #195074.
07 Oct 2007; Mike Frysinger <vapier@gentoo.org> binutils-2.17-r2.ebuild:
Add support for DragonFly BSD #189079.
06 Oct 2007; Mike Frysinger <vapier@gentoo.org> binutils-2.17-r2.ebuild,
binutils-2.18-r1.ebuild:
Fix incorrect CFLAGS being used for build utils #192959 by Woodward Crim
Hoffman.
06 Oct 2007; Mike Frysinger <vapier@gentoo.org> binutils-2.18-r1.ebuild:
Prevent makeinfo from being run #193364.
*binutils-2.18-r1 (06 Oct 2007)
06 Oct 2007; Mike Frysinger <vapier@gentoo.org> +binutils-2.18-r1.ebuild:
Fix from upstream for GNU RELRO stripping, disable false positive tests,
and add fix from upstream for multitarget on x86_64.
*binutils-2.17-r2 (06 Oct 2007)
06 Oct 2007; Mike Frysinger <vapier@gentoo.org> +binutils-2.17-r2.ebuild:
Add backwards compat support for GNU_HASH for a few anal targets, disable
false positive tests, and add fix from upstream for multitarget on x86_64.
*binutils-2.18.50.0.2 (06 Oct 2007)
06 Oct 2007; Mike Frysinger <vapier@gentoo.org>
+binutils-2.18.50.0.2.ebuild:
Version bump.
26 Sep 2007; Raúl Porcel <armin76@gentoo.org> binutils-2.17-r1.ebuild:
sparc stable wrt #192258
26 Sep 2007; Joshua Kinard <kumba@gentoo.org> binutils-2.17-r1.ebuild:
Stable on mips, per #192258.
17 Sep 2007; Lars Weiler <pylon@gentoo.org> binutils-2.17-r1.ebuild:
Stable on ppc; bug #192258.
16 Sep 2007; Christoph Mende <angelos@gentoo.org> binutils-2.17-r1.ebuild:
Stable on amd64 wrt bug #192258
13 Sep 2007; Raúl Porcel <armin76@gentoo.org> binutils-2.17-r1.ebuild:
ia64/x86 stable wrt #192258
12 Sep 2007; Mike Frysinger <vapier@gentoo.org>
binutils-2.18.50.0.1.ebuild:
Ack mein leapen! This shouldnt be in ~arch.
*binutils-2.18.50.0.1 (09 Sep 2007)
09 Sep 2007; Mike Frysinger <vapier@gentoo.org>
+binutils-2.18.50.0.1.ebuild:
Version bump.
04 Sep 2007; Joshua Kinard <kumba@gentoo.org> binutils-2.18.ebuild:
Update the patchset to 1.1 to pull in a patch for mips to enable support for
.gnu.hash capabilities, and mark unstable on mips.
*binutils-2.18 (29 Aug 2007)
29 Aug 2007; Mike Frysinger <vapier@gentoo.org> +binutils-2.18.ebuild:
Version bump.
17 Aug 2007; Christoph Mende <angelos@gentoo.org>
binutils-2.17.50.0.18.ebuild:
Keyworded ~amd64 to fix PIC generation with gcc-4.2, bug #186089
*binutils-2.17.50.0.18 (01 Aug 2007)
01 Aug 2007; Mike Frysinger <vapier@gentoo.org>
+binutils-2.17.50.0.18.ebuild:
Version bump.
*binutils-2.17-r1 (29 Jul 2007)
29 Jul 2007; Mike Frysinger <vapier@gentoo.org> +binutils-2.17-r1.ebuild:
Fix building with sanitized linux-headers, fix stripping of .o objects, and
discard GNU debuglink sections.
03 Jul 2007; Tom Gall <tgall@gentoo.org> binutils-2.17.50.0.17.ebuild:
stable on ppc64, addresses power6, ps3 and other gcc issues
01 Jul 2007; Jose Luis Rivero <yoswink@gentoo.org>
binutils-2.17.50.0.16.ebuild:
Stable on alpha. This fixes the compilation error (CFI related) when
compiling glibc. Details in bug #179353
25 Jun 2007; Christian Faulhammer <opfer@gentoo.org> binutils-2.17.ebuild:
stable x86, security bug 134112
24 Jun 2007; Christoph Mende <angelos@gentoo.org> binutils-2.17.ebuild:
Stable on amd64 wrt security bug 134112
24 Jun 2007; Piotr Jaroszyński <peper@gentoo.org>
binutils-2.17.50.0.9.ebuild, binutils-2.17.50.0.10.ebuild,
binutils-2.17.50.0.11.ebuild, binutils-2.17.50.0.13.ebuild,
binutils-2.17.50.0.14.ebuild, binutils-2.17.50.0.15.ebuild:
(QA) Don't use KEYWORDS="-*". bug #160519.
*binutils-2.17.50.0.17 (19 Jun 2007)
19 Jun 2007; Mike Frysinger <vapier@gentoo.org>
+binutils-2.17.50.0.17.ebuild:
Version bump.
14 May 2007; Bryan Østergaard <kloeri@gentoo.org>
binutils-2.17.50.0.16.ebuild:
Add ~alpha keyword as .15 and newer fixes an ugly bug in ld on Alpha.
13 May 2007; Joshua Kinard <kumba@gentoo.org> binutils-2.17.ebuild:
Stable on mips.
*binutils-2.17.50.0.16 (12 May 2007)
12 May 2007; Mike Frysinger <vapier@gentoo.org>
+binutils-2.17.50.0.16.ebuild:
Version bump.
23 Apr 2007; Jeroen Roovers <jer@gentoo.org> binutils-2.17.50.0.12.ebuild:
Stable for HPPA (bug #168131).
*binutils-2.17.50.0.15 (20 Apr 2007)
20 Apr 2007; Mike Frysinger <vapier@gentoo.org>
+binutils-2.17.50.0.15.ebuild:
Version bump.
28 Mar 2007; Jeroen Roovers <jer@gentoo.org> binutils-2.17.50.0.12.ebuild:
Marked ~hppa (bug #168131).
*binutils-2.17.50.0.14 (24 Mar 2007)
24 Mar 2007; Mike Frysinger <vapier@gentoo.org>
+binutils-2.17.50.0.14.ebuild:
Version bump.
*binutils-2.17.50.0.13 (16 Mar 2007)
16 Mar 2007; Mike Frysinger <vapier@gentoo.org>
+binutils-2.17.50.0.13.ebuild:
Version bump.
13 Feb 2007; Bryan Østergaard <kloeri@gentoo.org> binutils-2.17.ebuild:
Stable on Alpha.
*binutils-2.17.50.0.12 (28 Jan 2007)
28 Jan 2007; Mike Frysinger <vapier@gentoo.org>
+binutils-2.17.50.0.12.ebuild:
Version bump.
*binutils-2.17.50.0.11 (26 Jan 2007)
26 Jan 2007; Mike Frysinger <vapier@gentoo.org>
+binutils-2.17.50.0.11.ebuild:
Version bump.
*binutils-2.17.50.0.10 (23 Jan 2007)
23 Jan 2007; Mike Frysinger <vapier@gentoo.org>
+binutils-2.17.50.0.10.ebuild:
Version bump.
*binutils-2.17.50.0.9 (04 Jan 2007)
04 Jan 2007; Mike Frysinger <vapier@gentoo.org>
+binutils-2.17.50.0.9.ebuild:
Version bump.
18 Dec 2006; Tom Gall <tgall@gentoo.org>
binutils-2.17.ebuild:
stable on ppc64
*binutils-2.17.50.0.8 (03 Dec 2006)
03 Dec 2006; Mike Frysinger <vapier@gentoo.org>
+binutils-2.17.50.0.8.ebuild:
Version bump.
*binutils-2.17.50.0.7 (29 Nov 2006)
29 Nov 2006; Mike Frysinger <vapier@gentoo.org>
+binutils-2.17.50.0.7.ebuild:
Version bump.
*binutils-2.17.50.0.6 (21 Oct 2006)
21 Oct 2006; Mike Frysinger <vapier@gentoo.org>
+binutils-2.17.50.0.6.ebuild:
Version bump.
19 Oct 2006; Gustavo Zacarias <gustavoz@gentoo.org> binutils-2.17.ebuild:
Stable on sparc
19 Oct 2006; Luca Barbato <lu_zero@gentoo.org> binutils-2.17.ebuild:
Marked ppc
17 Oct 2006; Roy Marples <uberlord@gentoo.org> binutils-2.17.ebuild:
Added ~sparc-fbsd keyword.
10 Oct 2006; Joel Martin <kanaka@gentoo.org> binutils-2.17.ebuild:
Add ~mips to binutils-2.17
*binutils-2.17.50.0.5 (27 Sep 2006)
27 Sep 2006; Mike Frysinger <vapier@gentoo.org>
+binutils-2.17.50.0.5.ebuild:
Version bump.
*binutils-2.17.50.0.4 (24 Sep 2006)
24 Sep 2006; Mike Frysinger <vapier@gentoo.org>
+binutils-2.17.50.0.4.ebuild:
Version bump.
28 Jul 2006; <plasmaroo@gentoo.org> binutils-2.16.1-r3.ebuild:
Stable on IA64; fix bug #141681.
*binutils-2.17.50.0.3 (17 Jul 2006)
17 Jul 2006; Mike Frysinger <vapier@gentoo.org>
+binutils-2.17.50.0.3.ebuild:
Version bump.
04 Jul 2006; Bryan Østergaard <kloeri@gentoo.org>
binutils-2.16.1-r3.ebuild:
Stable on alpha.
*binutils-2.16.1-r3 (30 Jun 2006)
30 Jun 2006; Mike Frysinger <vapier@gentoo.org>
+binutils-2.16.1-r3.ebuild:
Backport -z lazy patch to make solar happy #134514.
27 Jun 2006; Gustavo Zacarias <gustavoz@gentoo.org> binutils-2.17.ebuild:
Keyworded ~sparc
27 Jun 2006; Diego Pettenò <flameeyes@gentoo.org> binutils-2.17.ebuild:
Add ~x86-fbsd keyword.
25 Jun 2006; Markus Rothe <corsair@gentoo.org> binutils-2.17.ebuild:
Added ~ppc64
*binutils-2.17 (24 Jun 2006)
24 Jun 2006; Mike Frysinger <vapier@gentoo.org> +binutils-2.17.ebuild:
Version bump.
*binutils-2.16.94 (15 Jun 2006)
15 Jun 2006; Mike Frysinger <vapier@gentoo.org> +binutils-2.16.94.ebuild:
Version bump #136553 by Cory Grunden.
*binutils-2.17.50.0.2 (10 Jun 2006)
10 Jun 2006; Mike Frysinger <vapier@gentoo.org>
+binutils-2.17.50.0.2.ebuild:
Version bump.
10 Jun 2006; Michael Hanselmann <hansmi@gentoo.org>
binutils-2.16.1-r2.ebuild:
Stable on ppc.
09 Jun 2006; Markus Rothe <corsair@gentoo.org> binutils-2.16.1-r2.ebuild:
Stable on ppc64
01 Jun 2006; Joshua Kinard <kumba@gentoo.org> binutils-2.16.1-r2.ebuild:
Marked stable on mips.
29 May 2006; Mark Loeser <halcy0n@gentoo.org> binutils-2.16.1-r2.ebuild:
Stable on x86
26 May 2006; Danny van Dyk <kugelfang@gentoo.org>
binutils-2.16.1-r2.ebuild:
Marked stable on amd64.
*binutils-2.16.93 (22 May 2006)
22 May 2006; Mike Frysinger <vapier@gentoo.org> +binutils-2.16.93.ebuild:
Version bump.
25 Apr 2006; Gustavo Zacarias <gustavoz@gentoo.org>
binutils-2.16.1-r2.ebuild:
Stable on sparc
*binutils-2.16.92 (17 Apr 2006)
17 Apr 2006; Mike Frysinger <vapier@gentoo.org> +binutils-2.16.92.ebuild:
Version bump.
11 Apr 2006; Diego Pettenò <flameeyes@gentoo.org>
binutils-2.16.1-r2.ebuild:
Add ~x86-fbsd keyword.
30 Mar 2006; Diego Pettenò <flameeyes@gentoo.org> binutils-2.15.ebuild:
Add ~x86-fbsd keyword to binutils 2.15 that has FreeBSD patches.
*binutils-2.16.91.0.7 (18 Mar 2006)
18 Mar 2006; Mike Frysinger <vapier@gentoo.org>
+binutils-2.16.91.0.7.ebuild:
Version bump.
*binutils-2.16.1-r2 (02 Mar 2006)
02 Mar 2006; Mike Frysinger <vapier@gentoo.org>
+binutils-2.16.1-r2.ebuild:
Grab some fixes from upstream for PIE, lib search paths, and ld speedups.
*binutils-2.16.91.0.6 (15 Feb 2006)
15 Feb 2006; Mike Frysinger <vapier@gentoo.org>
+binutils-2.16.91.0.6.ebuild:
Version bump.
*binutils-2.16.91.0.5 (21 Dec 2005)
21 Dec 2005; Mike Frysinger <vapier@gentoo.org>
+binutils-2.16.91.0.5.ebuild:
Version bump.
07 Dec 2005; Guy Martin <gmsoft@gentoo.org> binutils-2.16.1.ebuild:
Stable on hppa.
*binutils-2.16.1-r1 (03 Dec 2005)
03 Dec 2005; Mike Frysinger <vapier@gentoo.org>
+binutils-2.16.1-r1.ebuild:
Add support for -Bdirect #114008.
23 Nov 2005; Luis Medinas <metalgod@gentoo.org> binutils-2.16.1.ebuild:
Stable on amd64.
23 Nov 2005; Gustavo Zacarias <gustavoz@gentoo.org>
binutils-2.16.1.ebuild:
Stable on sparc
23 Nov 2005; Mark Loeser <halcy0n@gentoo.org> binutils-2.16.1.ebuild:
Stable on x86; bug #112666
18 Nov 2005; Joshua Kinard <kumba@gentoo.org> binutils-2.16.90.0.3.ebuild,
binutils-2.16.91.0.2.ebuild:
-mips to binutils-2.16.90.0.3, as it has unfixable quirks; ~mips to
binutils-2.16.91.0.2 for testing.
*binutils-2.16.91.0.4 (13 Nov 2005)
13 Nov 2005; Mike Frysinger <vapier@gentoo.org>
+binutils-2.16.91.0.4.ebuild:
Version bump.
18 Oct 2005; Joseph Jezak <josejx@gentoo.org> binutils-2.16.1.ebuild:
Marked ppc stable.
06 Sep 2005; Markus Rothe <corsair@gentoo.org> binutils-2.16.1.ebuild:
Stable on ppc64
28 Aug 2005; Joshua Kinard <kumba@gentoo.org> binutils-2.16.1.ebuild,
binutils-2.16.90.0.3.ebuild:
Bump 2.16.1 to stable on mips, and 2.16.90.0.3 to unstable.
*binutils-2.16.91.0.3 (23 Aug 2005)
23 Aug 2005; Mike Frysinger <vapier@gentoo.org>
+binutils-2.16.91.0.3.ebuild:
Version bump.
*binutils-2.16.91.0.2 (02 Aug 2005)
02 Aug 2005; Mike Frysinger <vapier@gentoo.org>
+binutils-2.16.91.0.2.ebuild:
Version bump.
13 Jul 2005; MATSUU Takuto <matsuu@gentoo.org>
binutils-2.15.92.0.2-r10.ebuild:
Stable on sh.
13 Jul 2005; bret curtis <psi29a@gentoo.org> binutils-2.16.1.ebuild,
binutils-2.16-r1.ebuild:
added to ~mips
12 Jul 2005; MATSUU Takuto <matsuu@gentoo.org>
binutils-2.15.92.0.2-r10.ebuild:
Added ~sh to KEYWORDS.
07 Jul 2005; Hardave Riar <hardave@gentoo.org>
binutils-2.15.92.0.2-r10.ebuild:
Stable on mips.
28 Jun 2005; Markus Rothe <corsair@gentoo.org> binutils-2.16-r1.ebuild:
Back to ~ppc64; ld problem with current stable glibc :-/
28 Jun 2005; Markus Rothe <corsair@gentoo.org> binutils-2.16-r1.ebuild:
Stable on ppc64
*binutils-2.16.91.0.1 (28 Jun 2005)
28 Jun 2005; Mike Frysinger <vapier@gentoo.org>
+binutils-2.16.91.0.1.ebuild:
Version bump.
*binutils-2.16.1 (12 Jun 2005)
12 Jun 2005; Mike Frysinger <vapier@gentoo.org> +binutils-2.16.1.ebuild:
Version bump.
31 May 2005; Gustavo Zacarias <gustavoz@gentoo.org>
binutils-2.15.92.0.2-r10.ebuild:
Stable on sparc wrt #91398
31 May 2005; Markus Rothe <corsair@gentoo.org> binutils-2.16.ebuild,
binutils-2.16-r1.ebuild:
Added ~ppc64 to KEYWORDS
29 May 2005; Bryan Østergaard <kloeri@gentoo.org>
binutils-2.14.90.0.8-r3.ebuild:
Stable on ia64, bug 91398.
29 May 2005; Bryan Østergaard <kloeri@gentoo.org>
binutils-2.14.90.0.8-r3.ebuild:
Stable on alpha, bug 91398.
28 May 2005; Rene Nussbaumer <killerfox@gentoo.org>
binutils-2.15.92.0.2-r10.ebuild:
Stable on hppa; bug #91398
28 May 2005; Markus Rothe <corsair@gentoo.org>
binutils-2.15.90.0.3-r5.ebuild:
Stable on ppc64
28 May 2005; <dang@gentoo.org> binutils-2.15.92.0.2-r10.ebuild:
Mark amd64 stable per bug #91398
28 May 2005; Luca Barbato <lu_zero@gentoo.org>
binutils-2.15.90.0.3-r5.ebuild:
Marked ppc
*binutils-2.16-r1 (28 May 2005)
*binutils-2.15.92.0.2-r10 (28 May 2005)
*binutils-2.15.91.0.2-r2 (28 May 2005)
*binutils-2.15.90.0.3-r5 (28 May 2005)
*binutils-2.15.90.0.1.1-r5 (28 May 2005)
*binutils-2.14.90.0.8-r3 (28 May 2005)
28 May 2005; Mike Frysinger <vapier@gentoo.org>
+binutils-2.14.90.0.8-r3.ebuild, binutils-2.15.ebuild,
+binutils-2.15.90.0.1.1-r5.ebuild, +binutils-2.15.90.0.3-r5.ebuild,
+binutils-2.15.91.0.2-r2.ebuild, +binutils-2.15.92.0.2-r10.ebuild,
+binutils-2.16-r1.ebuild, binutils-2.16.90.0.3.ebuild:
Add some more bfd checks and fix tls stripping.
*binutils-2.15.92.0.2-r9 (17 May 2005)
17 May 2005; Mike Frysinger <vapier@gentoo.org>
+binutils-2.15.92.0.2-r9.ebuild:
Add patches to fix security issues #91398.
*binutils-2.16.90.0.3 (11 May 2005)
11 May 2005; Mike Frysinger <vapier@gentoo.org>
+binutils-2.16.90.0.3.ebuild:
Version bump.
10 May 2005; Lars Weiler <pylon@gentoo.org>
binutils-2.15.92.0.2-r1.ebuild, binutils-2.15.92.0.2-r7.ebuild,
binutils-2.15.92.0.2-r8.ebuild:
Downgrading and masking on ppc due to compile errors; bug #91887.
07 May 2005; Michael Hanselmann <hansmi@gentoo.org>
binutils-2.15.92.0.2-r8.ebuild:
Stable on hppa.
07 May 2005; Jan Brinkmann <luckyduck@gentoo.org>
binutils-2.15.92.0.2-r8.ebuild:
stable on amd64 wrt security bug #91813
07 May 2005; Michael Hanselmann <hansmi@gentoo.org>
binutils-2.15.92.0.2-r8.ebuild:
Stable on ppc.
*binutils-2.16 (04 May 2005)
04 May 2005; Mike Frysinger <vapier@gentoo.org> +binutils-2.16.ebuild:
Version bump.
*binutils-2.16.90.0.2 (30 Apr 2005)
30 Apr 2005; Mike Frysinger <vapier@gentoo.org>
+binutils-2.16.90.0.2.ebuild:
Version bump.
*binutils-2.15.97 (21 Apr 2005)
21 Apr 2005; Mike Frysinger <vapier@gentoo.org> +binutils-2.15.97.ebuild:
Version bump.
*binutils-2.14 (17 Apr 2005)
17 Apr 2005; Mike Frysinger <vapier@gentoo.org> +binutils-2.14.ebuild:
Add older version for ps2 support.
*binutils-2.16.90.0.1 (12 Apr 2005)
12 Apr 2005; Mike Frysinger <vapier@gentoo.org>
+binutils-2.16.90.0.1.ebuild:
Version bump.
11 Apr 2005; Markus Rothe <corsair@gentoo.org>
-binutils-2.15.91.0.1-r1.ebuild:
removed for bug #88678
09 Apr 2005; Markus Rothe <corsair@gentoo.org>
binutils-2.15.92.0.2-r8.ebuild, binutils-2.15.94.0.2.2.ebuild:
Added ~ppc64 to KEYWORDS
*binutils-2.15.92.0.2-r8 (06 Apr 2005)
06 Apr 2005; Mike Frysinger <vapier@gentoo.org>
+binutils-2.15.92.0.2-r8.ebuild:
Add ld speedup / readelf buffer fix patches from redhat and a better
unlink() patch from solar/upstream.
30 Mar 2005; Joshua Kinard <kumba@gentoo.org>
binutils-2.14.90.0.8-r2.ebuild, binutils-2.15.91.0.2-r1.ebuild,
binutils-2.15.94.0.2.2.ebuild:
Marked 2.14.90.0.8-r2 and 2.15.91.0.2-r1 as stable on mips, and moved
2.15.94.0.2.2 to unstable.
*binutils-2.15.92.0.2-r7 (22 Mar 2005)
22 Mar 2005; Mike Frysinger <vapier@gentoo.org>
+binutils-2.15.92.0.2-r7.ebuild:
Add a TEXTREL fix for arm and warn about TEXTRELs in ld.
*binutils-2.15.92.0.2-r6 (11 Mar 2005)
11 Mar 2005; Mike Frysinger <vapier@gentoo.org>
+binutils-2.15.92.0.2-r6.ebuild:
Delete old/duplicated patches and add newer/spiffier ones. See the
patchtarball and/or CVS commits for more info :P. Just be happy this one
passes make check on amd64.
09 Mar 2005; <solar@gentoo.org> binutils-2.15.92.0.2-r5.ebuild:
- uClibc supports relro now. remove exception from ebuild
*binutils-2.15.92.0.2-r5 (08 Mar 2005)
08 Mar 2005; Mike Frysinger <vapier@gentoo.org>
+binutils-2.15.92.0.2-r5.ebuild:
Fix up gcc-4 support for real #82907 by richard juckes.
*binutils-2.15.92.0.2-r4 (23 Feb 2005)
23 Feb 2005; Mike Frysinger <vapier@gentoo.org>
-binutils-2.15.92.0.2-r3.ebuild, +binutils-2.15.92.0.2-r4.ebuild:
Fix gcc-4 patch to not break gcc-3 #83047.
23 Feb 2005; Jon Portnoy <avenj@gentoo.org> binutils-2.15.92.0.2-r3.ebuild :
Reverted PATCHVER=1.4 to PATCHVER=1.3 due to bug
#83047
*binutils-2.15.92.0.2-r3 (20 Feb 2005)
20 Feb 2005; <solar@gentoo.org> +binutils-2.15.92.0.2-r3.ebuild:
- bump the binutils-patches 1.2 -> 1.3. New option ld -z nonow/-Wl,-z,nonow
*binutils-2.15.94.0.2.2 (19 Feb 2005)
19 Feb 2005; Mike Frysinger <vapier@gentoo.org>
+binutils-2.15.94.0.2.2.ebuild:
Version bump.
23 Jan 2005; Jeremy Huddleston <eradicator@gentoo.org>
binutils-2.15.92.0.2-r1.ebuild:
Stable on amd64.
22 Jan 2005; <plasmaroo@gentoo.org> binutils-2.15.92.0.2-r1.ebuild,
binutils-2.15.92.0.2-r2.ebuild:
Converting 2.1.95 ~IA64 KEYWORDS into -IA64 KEYWORDS as kernels as well as
gnu-efi fail to compile with these versions...
11 Jan 2005; Gustavo Zacarias <gustavoz@gentoo.org>
binutils-2.15.92.0.2-r1.ebuild:
Stable on sparc, it's about time
03 Jan 2005; Ciaran McCreesh <ciaranm@gentoo.org> :
Change encoding to UTF-8 for GLEP 31 compliance
*binutils-2.15.91.0.2-r1 (28 Dec 2004)
28 Dec 2004; Mike Frysinger <vapier@gentoo.org>
+binutils-2.15.91.0.2-r1.ebuild:
New versions to support binutils-config.
*binutils-2.15.91.0.1-r1 (28 Dec 2004)
28 Dec 2004; Mike Frysinger <vapier@gentoo.org>
+binutils-2.15.91.0.1-r1.ebuild:
New versions to support binutils-config.
*binutils-2.15.90.0.3-r4 (28 Dec 2004)
28 Dec 2004; Mike Frysinger <vapier@gentoo.org>
+binutils-2.15.90.0.3-r4.ebuild:
New versions to support binutils-config.
28 Dec 2004; Jeremy Huddleston <eradicator@gentoo.org>
binutils-2.15.92.0.2-r2.ebuild:
Added to ~sparc.
26 Dec 2004; Jeremy Huddleston <eradicator@gentoo.org>
binutils-2.15.92.0.2-r1.ebuild:
Removing sparc64-multilib stuff as we're just using the superior
binutils-config versions in that profile.
*binutils-2.15.94.0.2 (21 Dec 2004)
21 Dec 2004; Mike Frysinger <vapier@gentoo.org>
+binutils-2.15.94.0.2.ebuild:
Version bump.
13 Dec 2004; Jeremy Huddleston <eradicator@gentoo.org>
binutils-2.15.92.0.2-r1.ebuild:
Updated sparc64-multilib to use MULTILIB_CHOSTS example.
*binutils-2.14.90.0.8-r2 (12 Dec 2004)
12 Dec 2004; Mike Frysinger <vapier@gentoo.org>
+binutils-2.14.90.0.8-r2.ebuild:
Use toolchain eclass.
10 Dec 2004; Jeremy Huddleston <eradicator@gentoo.org>
binutils-2.15.92.0.2-r1.ebuild:
Updated for sparc64-multilib.
*binutils-2.15.90.0.1.1-r4 (04 Dec 2004)
04 Dec 2004; Mike Frysinger <vapier@gentoo.org>
+binutils-2.15.90.0.1.1-r4.ebuild:
Version bump for toolchain-binutils support.
*binutils-2.14.90.0.6-r8 (02 Dec 2004)
02 Dec 2004; Mike Frysinger <vapier@gentoo.org>
+binutils-2.14.90.0.6-r8.ebuild:
Use toolchain eclass.
30 Nov 2004; Guy Martin <gmsoft@gentoo.org> binutils-2.15.92.0.2-r1.ebuild:
Stable on hppa. Fix problems with libxml2 and others.
24 Nov 2004; Gustavo Zacarias <gustavoz@gentoo.org>
binutils-2.15.92.0.2-r1.ebuild:
Keyworded ~sparc
*binutils-2.15.94.0.1 (23 Nov 2004)
23 Nov 2004; Mike Frysinger <vapier@gentoo.org>
+binutils-2.15.94.0.1.ebuild:
Version bump.
21 Nov 2004; Mike Frysinger <vapier@gentoo.org>
binutils-2.15.90.0.1.1-r3.ebuild:
Move to x86 stable finally.
21 Nov 2004; Mike Frysinger <vapier@gentoo.org>
binutils-2.15.90.0.1.1-r3.ebuild:
Move to x86 stable finally.
*binutils-2.15.92.0.2-r2 (20 Oct 2004)
20 Oct 2004; Mike Frysinger <vapier@gentoo.org>
+binutils-2.15.92.0.2-r2.ebuild:
Clean up ebuild. Try to handle $CTARGET/$CHOST correctly. Use symlinks
instead of hard links in src_install().
18 Oct 2004; Guy Martin <gmsoft@gentoo.org> binutils-2.15.92.0.2-r1.ebuild:
Added ~hppa.
*binutils-2.15.92.0.2-r1 (11 Oct 2004)
11 Oct 2004; Travis Tilley <lv@gentoo.org> +binutils-2.15.92.0.2-r1.ebuild:
removed a few unused patches from the tarball. removed an old ppc -fPIC patch
that was causing the compile to fail, closes bug 66738. updated a few patches
borrowed from fedora to their latest versions, closes bug 66871. updated pax
patch to the latest version available on pax.grsecurity.net, version
2.15.91.0.2-200410091215
06 Oct 2004; Travis Tilley <lv@gentoo.org> binutils-2.15.92.0.2.ebuild:
added ~x86 keyword, as requested in bug 66555
03 Oct 2004; Travis Tilley <lv@gentoo.org> binutils-2.15.92.0.2.ebuild:
added ~amd64 keyword. among other things, this release fixes an x86-64 linker
warning while building the Linux kernel.
*binutils-2.15.92.0.2 (01 Oct 2004)
01 Oct 2004; Joshua Kinard <kumba@gentoo.org> +binutils-2.15.92.0.2.ebuild:
Version bump.
01 Oct 2004; Joshua Kinard <kumba@gentoo.org> binutils-2.15.91.0.2.ebuild:
Added ~sparc to KEYWORDS.
01 Oct 2004; Joshua Kinard <kumba@gentoo.org> binutils-2.15.91.0.2.ebuild:
Marked ~mips. Works great for o32, n32 has problems, and is thus masked in
cascade profiles.
28 Sep 2004; Mike Frysinger <vapier@gentoo.org>
+files/2.15/40_all_binutils-uclibc-linker.patch,
binutils-2.15.90.0.1.1-r1.ebuild, binutils-2.15.90.0.1.1-r3.ebuild:
Add a patch to fix uclibc linking/ld.so.con.
08 Sep 2004; Mike Frysinger <vapier@gentoo.org>
binutils-2.14.90.0.8-r1.ebuild, -binutils-2.14.90.0.8-r2.ebuild:
Merge the changes from -r2 back into -r1 since it was just uclibc specific.
06 Sep 2004; <solar@gentoo.org>
+files/2.15/binutils-2.15-elf32-arm-textrel.patch,
binutils-2.15.90.0.1.1-r3.ebuild:
added patch from RH which allows ARCH=arm to compile & link correctly with
binutils-2.15
06 Sep 2004; Luca Barbato <lu_zero@gentoo.org>
binutils-2.15.90.0.3-r3.ebuild:
Marked ppc
02 Sep 2004; Mike Frysinger <vapier@gentoo.org>
binutils-2.14.90.0.8-r1.ebuild, binutils-2.14.90.0.8-r2.ebuild,
binutils-2.15.90.0.3-r3.ebuild:
Versions 2.15 <= x <= 2.15.91.0.2 are known to produce bad code for arm under
certain circumstances.
01 Sep 2004; <solar@gentoo.org> binutils-2.15.90.0.1.1-r1.ebuild,
binutils-2.15.90.0.1.1-r3.ebuild:
marking binutils-2.15.91.0.1 ~x86 again
31 Aug 2004; Gustavo Zacarias <gustavoz@gentoo.org>
binutils-2.14.90.0.8-r1.ebuild:
Stable on sparc
26 Aug 2004; Rob Holland <tigger@gentoo.org> binutils-2.14.90.0.8-r2.ebuild,
binutils-2.15.91.0.1-r2.ebuild, binutils-2.15.91.0.2.ebuild:
gnuconfig_update belongs in src_unpack, not src_compile
11 Aug 2004; Travis Tilley <lv@gentoo.org> binutils-2.15.91.0.2.ebuild:
masking this release -amd64. most software builds fine, but on mozilla firefox
and occasionally glibc this release will segfault
09 Aug 2004; Travis Tilley <lv@gentoo.org> binutils-2.15.91.0.2.ebuild:
adding ~amd64 keyword for testing
*binutils-2.15.91.0.2 (02 Aug 2004)
02 Aug 2004; Joshua Kinard <kumba@gentoo.org> +binutils-2.15.91.0.2.ebuild:
New revision of binutils. Doesn't include 51* or 52* uclibc patches.
27 Jul 2004; Mike Frysinger <vapier@gentoo.org>
+files/2.14/binutils-2.14.90.0.6-build_modules.patch,
+files/2.14/binutils-2.14.90.0.6-cflags.patch,
+files/2.14/binutils-2.14.90.0.6-conf.patch,
+files/2.14/binutils-2.14.90.0.6-debian.patch,
binutils-2.14.90.0.6-r7.ebuild:
Add patches from uClibc build root.
24 Jul 2004; Travis Tilley <lv@gentoo.org> binutils-2.15.91.0.1-r1.ebuild:
removing ~amd64 keyword
22 Jul 2004; <solar@gentoo.org> binutils-2.14.90.0.8-r2.ebuild:
uclibc update
08 Jul 2004; Travis Tilley <lv@gentoo.org> binutils-2.15.91.0.1-r1.ebuild:
adding ~amd64 keyword for wider testing
08 Jul 2004; Alexander Gabert <pappy@gentoo.org>
binutils-2.14.90.0.8-r2.ebuild:
added filter-flags for freduce-all-givs (bug id 27456)
03 Jul 2004; Bryan Østergaard <kloeri@gentoo.org>
binutils-2.14.90.0.8-r1.ebuild:
Stable on alpha.
02 Jul 2004; Jeremy Huddleston <eradicator@gentoo.org>
binutils-2.11.92.0.12.3-r2.ebuild, binutils-2.11.92.0.7.ebuild,
binutils-2.12.90.0.15.ebuild, binutils-2.13.90.0.16-r1.ebuild,
binutils-2.13.90.0.18-r1.ebuild, binutils-2.13.90.0.18.ebuild,
binutils-2.14.90.0.2.ebuild, binutils-2.14.90.0.4.1-r1.ebuild,
binutils-2.14.90.0.5-r1.ebuild, binutils-2.14.90.0.6-r2.ebuild,
binutils-2.14.90.0.6-r3.ebuild, binutils-2.14.90.0.6-r6.ebuild,
binutils-2.14.90.0.6-r7.ebuild, binutils-2.14.90.0.7-r4.ebuild,
binutils-2.14.90.0.7.ebuild, binutils-2.14.90.0.8-r1.ebuild,
binutils-2.14.90.0.8-r2.ebuild, binutils-2.14.90.0.8.ebuild,
binutils-2.15.90.0.1.1-r1.ebuild, binutils-2.15.90.0.1.1-r3.ebuild,
binutils-2.15.90.0.3-r3.ebuild, binutils-2.15.91.0.1-r1.ebuild,
binutils-2.15.91.0.1-r2.ebuild, binutils-2.15.91.0.1.ebuild:
virtual/glibc -> virtual/libc
27 Jun 2004; <solar@gentoo.org> binutils-2.15.91.0.1-r2.ebuild:
remove unused patches from tarball an no_rel_ro patches
23 Jun 2004; Aron Griffis <agriffis@gentoo.org>
binutils-2.11.92.0.12.3-r2.ebuild, binutils-2.11.92.0.7.ebuild,
binutils-2.12.90.0.15.ebuild, binutils-2.13.90.0.16-r1.ebuild,
binutils-2.13.90.0.18-r1.ebuild, binutils-2.13.90.0.18.ebuild,
binutils-2.14.90.0.2.ebuild, binutils-2.14.90.0.4.1-r1.ebuild,
binutils-2.14.90.0.5-r1.ebuild, binutils-2.14.90.0.6-r2.ebuild,
binutils-2.14.90.0.6-r3.ebuild, binutils-2.14.90.0.6-r6.ebuild,
binutils-2.14.90.0.6-r7.ebuild, binutils-2.14.90.0.7-r4.ebuild,
binutils-2.14.90.0.7.ebuild, binutils-2.14.90.0.8-r1.ebuild,
binutils-2.14.90.0.8.ebuild:
QA - fix use invocation
20 Jun 2004; Daniel Black <dragonheart@gentoo.org>
binutils-2.14.90.0.8-r2.ebuild, binutils-2.15.91.0.1-r2.ebuild:
Fix unpacks for bugs #54316 and #54059. Added sample test routine to
binutils-2.15.91.0.1-r2
15 Jun 2004; Travis Tilley <lv@gentoo.org> binutils-2.14.90.0.8-r2.ebuild:
changed the ebuild to not have "use uclibc ... || die", but it still doesnt
patch cleanly so it is still masked
15 Jun 2004; Travis Tilley <lv@gentoo.org> binutils-2.14.90.0.8-r2.ebuild:
masking -* due to bug 54059
*binutils-2.15.91.0.1-r2 (16 Jun 2004)
16 Jun 2004; Daniel Black <dragonheart@gentoo.org>
+binutils-2.14.90.0.8-r2.ebuild, +binutils-2.15.91.0.1-r2.ebuild:
uclibc fixes thanks to Peter S. Mazinger <ps.m@gmx.net>
13 Jun 2004; Luca Barbato <lu_zero@gentoo.org>
binutils-2.15.90.0.3-r3.ebuild:
Fixes a problem with kdeutils not linking
08 Jun 2004; Mike Frysinger <vapier@gentoo.org>
binutils-2.15.91.0.1-r1.ebuild:
This version breaks pretty bad on ppc/altivec ... cant build kernel/gcc/etc...
:(
05 Jun 2004; Ilya A. Volynets-Evenbach <iluxa@gentoo.org>
binutils-2.14.90.0.8-r1.ebuild:
Mark binutils-2.14.90.0.8-r1 ~mips
*binutils-2.15.91.0.1-r1 (04 Jun 2004)
04 Jun 2004; Travis Tilley <lv@gentoo.org> +files/libiberty-pic.patch,
+binutils-2.15.91.0.1-r1.ebuild:
new ebuild with patch updates from Peter Mazinger
03 Jun 2004; Tom Gall <tgall@gentoo.org> binutils-2.15.90.0.3-r3.ebuild,
binutils-2.15.91.0.1.ebuild:
binutils-2.15.90.0.3-r3.ebuild stable on ppc64, binutils-2.15.91.0.1.ebuild
~ppc64
02 Jun 2004; Travis Tilley <lv@gentoo.org> binutils-2.15.90.0.1.1-r3.ebuild:
stable on amd64
*binutils-2.15.91.0.1 (28 May 2004)
28 May 2004; Joshua Kinard <kumba@gentoo.org>
binutils-2.15.90.0.3-r3.ebuild, +binutils-2.15.91.0.1.ebuild:
New revision, keyword masked for now, needs testing.
26 May 2004; Luca Barbato <lu_zero@gentoo.org>
binutils-2.15.90.0.1.1-r3.ebuild, binutils-2.15.90.0.3-r3.ebuild:
Marked ~ppc
*binutils-2.15.90.0.1.1-r3 (23 May 2004)
23 May 2004; Travis Tilley <lv@gentoo.org>
-binutils-2.15.90.0.1.1-r2.ebuild, +binutils-2.15.90.0.1.1-r3.ebuild:
make patchset apply all patches on all archs and re-added hppa keyword since
the relro backport should apply cleanly now
16 May 2004; <solar@gentoo.org> binutils-2.14.90.0.8-r1.ebuild,
binutils-2.15.90.0.1.1-r1.ebuild, binutils-2.15.90.0.1.1-r2.ebuild,
binutils-2.15.90.0.1.1.ebuild, binutils-2.15.90.0.3-r3.ebuild:
added gprof/bbconv.pl install phase of >=binutils-2.14.90.0.8-r1, added
multitarget USE flag for canadian cross compiling bug #49934 also
>=binutils-2.14.90.0.8-r1. marked 2.14.90.0.8-r1 stable on x86
13 May 2004; <solar@gentoo.org> binutils-2.15.90.0.3-r3.ebuild:
bbconv.pl script is needed to convert profiling information in bb.out files to
format understood by gprof. reported by pasi valminen bug 50911
*binutils-2.15.90.0.3-r3 (11 May 2004)
11 May 2004; <solar@gentoo.org> binutils-2.15.90.0.3-r2.ebuild,
binutils-2.15.90.0.3-r3.ebuild:
updated patches to match upstream fixes. Includes fix s390{,x} .{,b,p2}align
handling, ppc/ppc64 testsuite fixes. -z relro ppc/ppc64/ia64 fixes, change
x86-64 .plt symbol st_size handling to match ia32, prettify objdump -d output,
several SPARC fixes. Submitted by Peter S. Mazinger
*binutils-2.15.90.0.3-r2 (10 May 2004)
10 May 2004; <solar@gentoo.org> binutils-2.15.90.0.3-r1.ebuild,
binutils-2.15.90.0.3-r2.ebuild:
Fix .tbss handling
08 May 2004; Joshua Kinard <kumba@gentoo.org>
binutils-2.14.90.0.8-r1.ebuild:
Originally masked because these binutils would produce non-booting kernels on
mips. That problem has been resolved in the kernel sources now, so it's safe
to put these into unstable (2.15 needs more testing).
*binutils-2.15.90.0.1.1-r2 (10 May 2004)
10 May 2004; Travis Tilley <lv@gentoo.org>
+binutils-2.15.90.0.1.1-r2.ebuild:
added backports of the tbss fix and relro patch
*binutils-2.15.90.0.1.1-r1 (04 May 2004)
04 May 2004; Travis Tilley <lv@gentoo.org>
+binutils-2.15.90.0.1.1-r1.ebuild:
added a more amd64-friendly revision of 2.15.90.0.1.1. besides the patches
included in the previous ebuild, the following have been added:
34_all_binutils-2.15.90.0.3-place-orphan.patch,
70_amd64_binutils_x86_64_testsuite.patch,
71_ppc_binutils-2.13-ppc32-fPIC.patch, 72_all_fde-alignment.patch,
73_amd64_x86-64-gotpcrel.patch, 74_all_gcc34-no-unit-at-a-time.patch,
75_amd64_sysenter-sysexit-are-valid-IA32e-assembly.patch,
76_all_use-new-ld-dtags.patch, 77_x86_via-padlock-gas.patch, and
78_x86_via-padlock-tests.patch. this ebuild /should/ work with gcc 3.4 more
consistantly than the previous one.
24 Apr 2004; Travis Tilley <lv@gentoo.org> binutils-2.14.90.0.7-r1.ebuild,
binutils-2.14.90.0.7-r2.ebuild, binutils-2.14.90.0.7-r3.ebuild,
binutils-2.14.90.0.7-r4.ebuild, binutils-2.14.90.0.7.ebuild,
binutils-2.14.90.0.8-r1.ebuild, binutils-2.14.90.0.8.ebuild,
binutils-2.15.90.0.1.1.ebuild, binutils-2.15.90.0.3-r1.ebuild,
binutils-2.15.90.0.3.ebuild:
GCC 3.4 breaks binutils if CFLAGS arent conservative. Adding fix for bug #47581
23 Apr 2004; Travis Tilley <lv@gentoo.org> binutils-2.15.90.0.1.1.ebuild:
added ~amd64 keyword for testing
*binutils-2.15.90.0.3-r1 (19 Apr 2004)
19 Apr 2004; <solar@gentoo.org> binutils-2.15.90.0.3-r1.ebuild:
- the patches 03,04,07 were replaced w/ the redhat ones - the patch 01 was
moved to apply after the uclibc patches (59) - the 20 patch got a replacement
64 for the case relro is used (default in ebuild) - the 90 patch (pt_pax) has
also a replacement as 63 to apply after relro - the patches 3x_ are from
redhat having the same patch number 3x coresponds in redhat to x, (unmodified
patches) - the patches 5x_ are uclibc related coming from buildroot (51 and 52
are ports of the buildroot versions to this binutils, 51 is generic, only 52
is uclibc specific), the 59 patch is really the 01 one, but the 52 patch is so
big, that I didn't want to patch it again, it applies correctly in the reverse
order - the patches 6x_ are from me: 61_ I had a situation on cross-compiling
where I needed it 62_ is an uclibc addon (missing configure stuff to recognize
uclibc) 63_ pt_pax patch to apply after relro 64_ is a 20_ patch replacement
for amd64.
I have left in all the patches, so that some can build w/ and w/o relro. The
ebuild offers this possibility, see comment inside.
The uclibc stuff shouldn't disturb normal functionality, mainly the configure
stuff is enabled to recognize uclibc systems. Peter S. Mazinger <ps.m@gmx.net>
*binutils-2.15.90.0.3 (15 Apr 2004)
15 Apr 2004; Joshua Kinard <kumba@gentoo.org> binutils-2.12.90.0.15.ebuild,
binutils-2.13.90.0.16-r1.ebuild, binutils-2.13.90.0.18-r1.ebuild,
binutils-2.13.90.0.18.ebuild, binutils-2.14.90.0.2.ebuild,
binutils-2.14.90.0.4.1-r1.ebuild, binutils-2.14.90.0.5-r1.ebuild,
binutils-2.14.90.0.6-r2.ebuild, binutils-2.14.90.0.6-r3.ebuild,
binutils-2.14.90.0.6-r6.ebuild, binutils-2.14.90.0.6-r7.ebuild,
binutils-2.15.90.0.3.ebuild:
New ebuild for binutils-2.15.90.0.3, and removed portage from DEPEND in older
ebuilds as it caused repoman troubles.
14 Mar 2004; Joshua Kinard <kumba@gentoo.org> :
Added a patch to the patchball for mips that reverses a patch added in
Dec-2003 that seemingly makes unbootable kernels. The issue needs to be
investigated further to make sure that this doesn't not affect 2.6 kernels as
well (tested with 2.4 kernels for now).
*binutils-2.15.90.0.1.1 (06 Mar 2004)
06 Mar 2004; Joshua Kinard <kumba@gentoo.org> binutils-2.15.90.0.1.1.ebuild,
binutils-2.15.90.0.1.ebuild:
New minor revision that fixes the as.1 manpage issue and an ia64 linker bug.
*binutils-2.15.90.0.1 (04 Mar 2004)
04 Mar 2004; Joshua Kinard <kumba@gentoo.org> binutils-2.15.90.0.1.ebuild:
New Version + fix for generating as.1 manpage. Keyword masked on all archs,
test and keyword as necessary.
21 Feb 2004; Brad House <brad_mssw@gentoo.org>
binutils-2.14.90.0.8-r1.ebuild:
stable on amd64 for 2004.0 release
17 Feb 2004; Martin Schlemmer <azarah@gentoo.org>
binutils-2.14.90.0.8-r1.ebuild:
Move to unstable to give the PAX_FLAGS stuff a test run.
10 Feb 2004; Joshua Kinard <kumba@gentoo.org> binutils-2.14.90.0.8.ebuild:
Masked on mips because this version of binutils won't produce bootable kernel
images. could be a missing patch or such.
*binutils-2.14.90.0.8-r1 (27 Jan 2004)
27 Jan 2004; <solar@gentoo.org> binutils-2.14.90.0.8-r1.ebuild:
Added support for new PT_PAX_FLAGS markings for program headers.
19 Jan 2004; <agriffis@gentoo.org> binutils-2.14.90.0.7-r4.ebuild:
stable on alpha and ia64 for bug 37033
*binutils-2.14.90.0.8 (18 Jan 2004)
18 Jan 2004; Martin Schlemmer <azarah@gentoo.org>
binutils-2.14.90.0.8.ebuild:
Update version. Move patches to tarball. Many thanks to
Kumba <kumba@gentoo.org> for updating the pni (prescott support) patch
and the mips-brswap patch.
*binutils-2.14.90.0.7-r4 (18 Jan 2004)
18 Jan 2004; Martin Schlemmer <azarah@gentoo.org>
binutils-2.14.90.0.7-r4.ebuild,
files/2.14/binutils-2.14.90.0.7-bfd-pt-gnu-segment-fix.patch:
Do not add sections to a PT_GNU_STACK segment, which might be
a possible security issue, bug #37033.
http://sources.redhat.com/ml/binutils/2003-12/msg00205.html
Also bump x86 to stable, and do not drop already stable archs from
-r3 to testing, as it is a crusial patch.
07 Jan 2004; Jason Wever <weeve@gentoo.org> binutils-2.14.90.0.7-r3.ebuild:
Marked stable on sparc.
30 Dec 2003; Sven Blumenstein <bazik@gentoo.org>
binutils-2.11.92.0.12.3-r2.ebuild, binutils-2.11.92.0.7.ebuild,
binutils-2.14.90.0.6-r6.ebuild:
Marked stable on sparc.
28 Dec 2003; Joshua Kinard <kumba@gentoo.org>
binutils-2.14.90.0.7-r3.ebuild:
Move to mips stable (~mips -> mips)
29 Nov 2003; Brad House <brad_mssw@gentoo.org>
binutils-2.14.90.0.7-r3.ebuild:
mark stable on amd64
*binutils-2.14.90.0.7-r3 (09 Nov 2003)
08 Dec 2003; Guy Martin <gmsoft@gentoo.org> binutils-2.14.90.0.7-r3.ebuild:
Marked stable on hppa.
09 Nov 2003; Martin Schlemmer <azarah@gentoo.org>
binutils-2.14.90.0.2.ebuild, binutils-2.14.90.0.4.1-r1.ebuild,
binutils-2.14.90.0.6-r7.ebuild, binutils-2.14.90.0.7-r1.ebuild,
binutils-2.14.90.0.7-r2.ebuild, binutils-2.14.90.0.7-r3.ebuild,
binutils-2.14.90.0.7.ebuild:
Fix sparc64/mips64 symlinks to point to /usr/sparc-*/bin/*. Do not apply
-ppc-reloc.patch to sparc as ld quits with SIGBUS.
08 Nov 2003; Jason Wever <weeve@gentoo.org> binutils-2.14.90.0.7-r2.ebuild:
Masked on sparc until ld issue is fixed.
*binutils-2.14.90.0.7-r2 (08 Nov 2003)
08 Nov 2003; Martin Schlemmer <azarah@gentoo.org>
binutils-2.14.90.0.7-r2.ebuild,
files/2.14/binutils-2.14.90.0.7-ppc-reloc.patch,
files/2.14/binutils-2.14.90.0.7-tls-section-alignment.patch:
Cleanup -ppc-reloc.patch (had cruft like .orig in) and apply for all, as it
fixes dynamic relocs for more archs than ppc.
Add -tls-section-alignment.patch and put into testing for all.
*binutils-2.14.90.0.7-r1 (07 Nov 2003)
07 Nov 2003; Luca Barbato <lu_zero@gentoo.org>
binutils-2.14.90.0.7-r1.ebuild,
files/2.14/binutils-2.14.90.0.7-ppc-reloc.patch:
Fix to bug #32755
05 Nov 2003; Luca Barbato <lu_zero@gentoo.org> binutils-2.14.90.0.7.ebuild:
Maked -ppc :seems to have too many issues
04 Nov 2003; Brad House <brad_mssw@gentoo.org>
binutils-2.14.90.0.6-r7.ebuild:
mark as stable on amd64
04 Nov 2003; Martin Schlemmer <azarah@gentoo.org>
binutils-2.14.90.0.2.ebuild, binutils-2.14.90.0.4.1-r1.ebuild,
binutils-2.14.90.0.6-r7.ebuild, binutils-2.14.90.0.7.ebuild:
Enable building of 64bit apps on Sparc and Mips, closing bug #24631.
Fix is an modified one from Jason Wever <weeve@gentoo.org>.
*binutils-2.14.90.0.7 (01 Nov 2003)
08 Nov 2003; Guy Martin <gmsoft@gentoo.org> binutils-2.14.90.0.7.ebuild,
binutils-2.14.90.0.7-r1.ebuild : Marked -hppa as it can't even compile glibc.
01 Nov 2003; Martin Schlemmer <azarah@gentoo.org>
binutils-2.14.90.0.7.ebuild:
Update version.
*binutils-2.14.90.0.6-r7 (26 Oct 2003)
26 Oct 2003; Martin Schlemmer <azarah@gentoo.org>
binutils-2.14.90.0.6-r7.ebuild,
files/2.14/binutils-2.14.90.0.6-bfd-elf-interp-4.patch:
Add the official binutils-2.14.90.0.6-bfd-elf-interp.patch patch.
26 Oct 2003; Martin Schlemmer <azarah@gentoo.org>
binutils-2.14.90.0.6-r6.ebuild:
Bump ppc to stable, as the .interp fix in -r5 is wrong. Bump x86, amd64 and
ia64 to stable.
22 Oct 2003; Aron Griffis <agriffis@gentoo.org>
binutils-2.14.90.0.6-r6.ebuild:
Stable on alpha
22 Oct 2003; Bartosch Pixa <darkspecter@gentoo.org>
binutils-2.14.90.0.6-r5.ebuild:
set ppc in keywords
*binutils-2.14.90.0.6-r6 (07 Oct 2003)
07 Oct 2003; Martin Schlemmer <azarah@gentoo.org>
binutils-2.14.90.0.6-r6.ebuild,
files/2.14/binutils-2.14.90.0.6-bfd-elf-interp-3.patch:
Add correct patch to fix attributes on .interp section, thanks to feedback
from pipcas <pageexec@freemail.hu> and Ned Ludd <solar@gentoo.org>.
*binutils-2.14.90.0.6-r5 (05 Oct 2003)
05 Oct 2003; Martin Schlemmer <azarah@gentoo.org>
binutils-2.14.90.0.6-r5.ebuild,
files/2.14/binutils-2.14.90.0.6-ppc-bfd.patch:
Add ppc-bfd.patch to fix ppc issues, bug #28011. Remove bfd-elf-interp.patch,
as it breaks section attibutes as in
http://gcc.gnu.org/ml/gcc/2003-10/msg00141.html.
*binutils-2.14.90.0.6-r4 (05 Oct 2003)
05 Oct 2003; Martin Schlemmer <azarah@gentoo.org>
binutils-2.14.90.0.6-r4.ebuild,
files/2.14/binutils-2.14.90.0.6-eh-frame-ro-2.patch,
files/2.14/binutils-2.14.90.0.6-ia64-howto.patch,
files/2.14/binutils-2.14.90.0.6-ia64-sdata.patch,
files/2.14/binutils-2.14.90.0.6-ia64-speedup.patch,
files/2.14/binutils-2.14.90.0.6-merge-speedup.patch,
files/2.14/binutils-2.14.90.0.6-sparc-cfi.patch:
Update eh-frame-ro patch - seems as if I might have missed a needed change or
two. Also update merge patch, as well as add some ia64 and sparc patches.
03 Oct 2003; Brad House <brad_mssw@gentoo.org>
binutils-2.14.90.0.6-r3.ebuild,
files/binutils-2.14.amd64-32bit-path-fix.patch:
32bit search path for amd64 was /lib and /usr/lib. That is obviously wrong.
Make the search path /lib32 and /usr/lib32 instead, which should be symlinks
to the real location of your 32bit install. This patch is amd64 ONLY
*binutils-2.14.90.0.6-r3 (13 Sep 2003)
20 Sep 2003; Alexander Gabert <pappy@gentoo.org>
binutils-2.14.90.0.6-r3.ebuild:
added hppa static fpic bugfix by tausq
20 Sep 2003; <solar@gentoo.org> binutils-2.14.90.0.6-r3.ebuild,
files/2.14/binutils-2.14.90.0.6-bfd-elf-interp.patch:
A change that defines expected section attributes for a select set of
hardcoded section names was incorrectly added to binutils by redhat. This fix
is for bfd/elf.c for the .interp entry which should have SHF_ALLOC instead of 0
17 Sep 2003; Jon Portnoy <avenj@gentoo.org> binutils-2.14.90.0.6-r3.ebuild :
ia64 keywords.
13 Sep 2003; Martin Schlemmer <azarah@gentoo.org>
binutils-2.14.90.0.6-r3.ebuild,
files/2.14/binutils-2.14.90.0.6-cxx-speedup.patch:
Add patch that speedup C++ linking. Originally submitted by
<holger-gentoo@holgis.net> (got from Nove Hrady KDE hackfest), updated to
latest binutls by Chris Lee <clee@kde.org>, bug #27540.
*binutils-2.14.90.0.6-r2 (01 Sep 2003)
21 Sep 2003; Joshua Kinard <kumba@gentoo.org> binutils-2.14.90.0.6-r2.ebuild:
Changed ~mips to mips in KEYWORDS
03 Sep 2003; Stefan Jones <cretin@gentoo.org>
binutils-2.14.90.0.6-r2.ebuild :
Move to stable for x86, to fix bug #27440
01 Sep 2003; Martin Schlemmer <azarah@gentoo.org>
binutils-2.14.90.0.2.ebuild, binutils-2.14.90.0.4.1-r1.ebuild,
binutils-2.14.90.0.5-r1.ebuild, binutils-2.14.90.0.6-r2.ebuild,
files/2.14/binutils-2.14.90.0.6-dont-crash-on-null-owner.patch:
There is a bug in binutils 2.14.* which causes a segfault in certain
circumstances when linking. This bug does not exist in binutils 2.11.*.
More details on the bug can be found here:
http://sources.redhat.com/ml/bug-binutils/2003-q3/msg00559.html
http://sources.redhat.com/ml/bug-binutils/2003-q3/msg00735.html
Bug #27492, thanks to Adam Chodorowski <adam@chodorowski.com> for reporting.
*binutils-2.14.90.0.6-r1 (26 Aug 2003)
26 Aug 2003; Martin Schlemmer <azarah@gentoo.org>
binutils-2.14.90.0.6-r1.ebuild:
Remove the place-orphan.patch patch, as it causes failures in sash and
util-linux-2.12 (bug #27330)
*binutils-2.14.90.0.6 (24 Aug 2003)
24 Aug 2003; Martin Schlemmer <azarah@gentoo.org>
binutils-2.14.90.0.6.ebuild,
files/2.14/binutils-2.14.90.0.5-place-orphan.patch,
files/2.14/binutils-2.14.90.0.6-eh-frame-ro.patch:
Update version.
20 Aug 2003; Luca Barbato <lu_zero@gentoo.org> binutils-2.14.90.0.5-r1.ebuild:
Marked ~ppc
*binutils-2.14.90.0.5-r1 (10 Aug 2003)
10 Aug 2003; Joshua Kinard <kumba@gentoo.org> binutils-2.14.90.0.5-r1.ebuild:
Moved binutils-2.14.90.0.5-r1 to mips unstable, since latest CVS this comes
from includes major mips updates. And to test it in Stager.
Also moved it to sparc unstable for testing.
*binutils-2.14.90.0.5 (23 Jul 2003)
23 Jul 2003; Joshua Kinard <kumba@gentoo.org> binutils-2.14.90.0.5.ebuild:
Changed "mips" to "-mips" in KEYWORDS until further testing can be done.
23 Jul 2003; Martin Schlemmer <azarah@gentoo.org>
binutils-2.14.90.0.5.ebuild:
New release.
*binutils-2.14.90.0.4.1-r1 (28 Jun 2003)
12 Jul 2003; Joshua Kinard <kumba@gentoo.org> binutils-2.14.90.0.4.1-r1.ebuild:
Changed -mips to ~mips in KEYWORDS. Experimentation seems to prove that
binutils-2.14.90.0.2 has some issue triggered at random in which a compile
errors out claiming "linking abicalls to non-abicalls". Some google searching
indicates binutils-2.14.90.0.4 or greater fixes this issue.
Has been tested in a mips stage1 rebuild and is currently used in building a
mipsel stage1 for Cobalt servers.
28 Jun 2003; Martin Schlemmer <azarah@gentoo.org>
binutils-2.14.90.0.4.1-r1.ebuild, files/2.14/binutils-2.14.90.0.4-cfi.patch,
files/2.14/binutils-2.14.90.0.4-cfi2.patch,
files/2.14/binutils-2.14.90.0.4-cfi3.patch,
files/2.14/binutils-2.14.90.0.4-cfi4.patch,
files/2.14/binutils-2.14.90.0.4-eh-frame-ro.patch,
files/2.14/binutils-2.14.90.0.4-gas-execstack.patch,
files/2.14/binutils-2.14.90.0.4-gas-pred.patch,
files/2.14/binutils-2.14.90.0.4-ltconfig-multilib.patch,
files/2.14/binutils-2.14.90.0.4-pie.patch,
files/2.14/binutils-2.14.90.0.4-pie2.patch,
files/2.14/binutils-2.14.90.0.4-pni.patch,
files/2.14/binutils-2.14.90.0.4-ppc-bigplt.patch,
files/2.14/binutils-2.14.90.0.4-ppc64-ctors.patch,
files/2.14/binutils-2.14.90.0.4-ppc64-prelink.patch,
files/2.14/binutils-2.14.90.0.4-pt-gnu-stack.patch,
files/2.14/binutils-2.14.90.0.4-sparc-nonpic.patch:
Add patches from Redhat. Add fix for libtool borkage.
*binutils-2.14.90.0.4.1 (25 Jun 2003)
25 Jun 2003; Martin Schlemmer <azarah@gentoo.org>
binutils-2.11.92.0.12.3-r2.ebuild, binutils-2.13.90.0.20-r1.ebuild,
binutils-2.14.90.0.2.ebuild, binutils-2.14.90.0.4.1.ebuild,
binutils-2.14.90.0.4.ebuild:
New version with some amd64 fixes. Also fix SRC_URI for some of the newer
ebuilds.
14 Jun 2003; Joshua Kinard <kmba@gentoo.org> binutils-2.14.90.0.2.ebuild:
Changes ~mips to mips in KEYWORDS
08 Jun 2003; Luca Barbato <lu_zero@gentoo.org>
binutils-2.14.90.0.1-r1.ebuild, binutils-2.14.90.0.2.ebuild:
marked stable on ppc.
*binutils-2.14.90.0.4 (26 May 2003)
07 Jun 2003; Joshua Kinard <kumba@gentoo.org> binutils-2.14.90.0.4.ebuild:
Changed ~mips to -mips. This package should stay masked until dragon
can release a fixed version that fixes the bad libbfd linkage.
26 May 2003; Joshua Kinard <kumba@gentoo.org>
binutils-2.14.90.0.4.ebuild:
New Version. Masked for all archs except unstable/testing on mips.
26 May 2003; Joshua Kinard <kumba@gentoo.org>
binutils-2.14.90.0.2.ebuild, binutils-2.14.90.0.4.ebuild:
Added a patch for MIPS arch which fixes binutils so that it does not generate
a broken dynamic relocation table for the OpenSSL libs. This happens because
the global GOT entry count is too low. The bug itself was introduced in
binutils CVS by the following patch:
http://sources.redhat.com/cgi-bin/cvsweb.cgi/src/bfd/elfxx-mips.c.diff?r1=1.38
&r2=1.39&cvsroot=src
26 May 2003; Joshua Kinard <kumba@gentoo.org>
binutils-2.14.90.0.2.ebuild, binutils-2.14.90.0.4.ebuild:
Corrected a minor error in SRC_URI so that the
package is found in the right location on the kernel.org website.
*binutils-2.11.92.0.7 (25 May 2003)
25 May 2003; Martin Holzer <mholzer@gentoo.org>
binutils-2.11.92.0.12.3-r2.ebuild, binutils-2.11.92.0.7.ebuild,
binutils-2.12.90.0.15.ebuild, binutils-2.12.90.0.7.ebuild,
binutils-2.13.90.0.16-r1.ebuild, binutils-2.13.90.0.18-r1.ebuild,
binutils-2.13.90.0.18.ebuild, binutils-2.13.90.0.20-r1.ebuild,
binutils-2.14.90.0.1-r1.ebuild, binutils-2.14.90.0.2.ebuild:
now uses mirror://kernel
*binutils-2.14.90.0.2 (17 May 2003)
16 Jul 2003; Jay Pfeifer <pfeifer@gentoo.org> binutils-2.14.90.0.2.ebuild:
set stable on x86
01 Jul 2003; Todd Sunderlin <todd@gentoo.org> binutils-2.14.90.0.2.ebuild:
set stable on sparc
17 May 2003; Martin Schlemmer <azarah@gentoo.org>
binutils-2.14.90.0.2.ebuild:
New version.
17 May 2003; Martin Schlemmer <azarah@gentoo.org>
binutils-2.13.90.0.10.ebuild, binutils-2.13.90.0.10.ebuild,
binutils-2.13.90.0.14.ebuild, binutils-2.13.90.0.14.ebuild,
binutils-2.13.90.0.16-r1.ebuild, binutils-2.13.90.0.16.ebuild,
binutils-2.13.90.0.16.ebuild, binutils-2.13.90.0.18-r1.ebuild,
binutils-2.13.90.0.18.ebuild, binutils-2.13.90.0.20-r1.ebuild,
binutils-2.13.90.0.4.ebuild, binutils-2.13.90.0.4.ebuild,
binutils-2.14.90.0.1-r1.ebuild, binutils-2.14.90.0.1.ebuild,
binutils-2.14.90.0.1.ebuild :
Add c++filt back in anticipation for gcc-3.3. Cleanup.
*binutils-2.14.90.0.1-r1 (08 May 2003)
09 May 2003; Joshua Kinard <kumba@gentoo.org>
binutils-2.14.90.0.1-r1.ebuild:
Changed -sparc to ~sparc. Merges fine on sparc,
but further testing to be done. With mips, edited out the
gas-mips-gprel from binutils-2.13.90.0.20, as this patch already
appears to be included in 2.14.90.0.1 (emerge failed on attempting to
patch it). Mips testing is underway via "emerge system".
08 May 2003; Nicholas Wourms <dragon@gentoo.org>
binutils-2.14.90.0.1-r1.ebuild:
Fix a small typo in the patch section.
08 May 2003; Nicholas Wourms <dragon@gentoo.org>
binutils-2.14.90.0.1-r1.ebuild,
files/2.14/binutils-2.14.90.0.1-eh-frame-ro.patch,
files/2.14/binutils-2.14.90.0.1-sparc-nonpic.patch:
Added patch to resync with CVS head, bumped revision to reflect this. This
version should resolve any outstanding testsuite & weak symbol issues. I
have also added the previous patches back into the ebuild, compiles and
passes the testsuite on x86 w/o any regressions.
*binutils-2.14.90.0.1 (06 May 2003)
06 May 2003; Luca Barbato <lu_zero@gentoo.org>
binutils-2.14.90.0.1.ebuild:
New version, seems to solve the ppc relocation issues.
*binutils-2.13.90.0.20-r1 (09 Apr 2003)
09 Apr 2003; Nicholas Wourms <dragon@gentoo.org>
binutils-2.13.90.0.20-r1.ebuild:
Added cvs update patch to (hopefully) address the problems reported in
bugs #16363, #17986, & #18873. This also includes the fix from Alan
Modra for the problem where ld would segfault when building kde on
ppc. In addition to that, it also has some more mips/mips64 updates
which should address a few of the current problems we were experiencing
initially. As with the previous version, "Handle With Care..." That
being said, testing would be greatly appreciated and arches unmasked
as they are confirmed stable. I removed the previous ebuild since it
has been causing lots of trouble.
23 Mar 2003; Martin Schlemmer <azarah@gentoo.org> binutils-2.13.90.0.20.ebuild :
Add '~x86' to KEYWORDS.
*binutils-2.13.90.0.20 (22 Mar 2003)
22 Mar 2003; Nicholas Wourms <dragon@gentoo.org>
binutils-2.13.90.0.20.ebuild,
files/2.13/binutils-2.13.90.0.10-x86_64-gotpcrel.patch,
files/2.13/binutils-2.13.90.0.18-testsuite-Wall-fixes.patch,
files/2.13/binutils-2.13.90.0.20-array-sects-compat.patch,
files/2.13/binutils-2.13.90.0.20-gas-mips-gprel.patch:
Bump to new beta version. This release contains a boatload of fixes for
a wide variety of platforms. It also fixes a critical bug in the previous
version for the mips platform. Due to the beta nature of this version and
the proximity to a new gentoo release, I have set keywords to "-arch" for
all platforms except mips. However, it should be tested on these other
platforms and keywords modified as necessary.
*binutils-2.13.90.0.18-r1 (08 Mar 2003)
31 Mar 2003; Christian Birchinger <joker@gentoo.org>
binutils-2.13.90.0.18-r1.ebuild:
Commented out sparc-nonpic.patch and added ~sparc keyword
27 Mar 2003; Seemant Kulleen <seemant@gentoo.org>
binutils-2.13.90.0.18-r1.ebuild:
masked for sparc, it breaks, dunno why. see bug #17193
08 Mar 2003; Martin Schlemmer <azarah@gentoo.org> binutils-2.13.90.0.18-r1.ebuild :
Update patches from Redhat.
18 Feb 2003; Zach Welch <zwelch@gentoo.org> :
Added arm to keywords.
*binutils-2.13.90.0.18 (26 Jan 2003)
27 May 2003; Guy Martin <gmsoft@gentoo.org> binutils-2.13.90.0.18.ebuild:
Remasking binutils 2.13.90.0.18 for hppa which cause random segfault on
hppa1.1 stations.
29 Mar 2003; Christian Birchinger <joker@gentoo.org>
binutils-2.13.90.0.18.ebuild:
Added sparc stable keyword
01 Mar 2003; Brandon Low <lostlogic@gentoo.org>
binutils-2.13.90.0.10.ebuild, binutils-2.13.90.0.14.ebuild,
binutils-2.13.90.0.16-r1.ebuild, binutils-2.13.90.0.16.ebuild,
binutils-2.13.90.0.18.ebuild, binutils-2.13.90.0.4.ebuild:
Filter another flag that was causing problems
26 Feb 2003; Zach Welch <zwelch@gentoo.org> binutils-2.13.90.0.18.ebuild :
filter -O2 from ARM builds to prevent gcc ICE
24 Feb 2003; Martin Schlemmer <azarah@gentoo.org> binutils-2.13.90.0.18.ebuild :
Mark stable for x86. Rip out static stuff as it anyhow do not work.
22 Feb 2003; Guy Martin <gmsoft@gentoo.org> binutils-2.13.90.0.18.ebuild :
Commited stable for hppa.
21 Feb 2003; Aron Griffis <agriffis@gentoo.org> binutils-2.13.90.0.18.ebuild :
Mark stable on alpha
08 Feb 2003; Guy Martin <gmsoft@gentoo.org> binutils-2.13.90.0.18.ebuild :
Added hppa to keywords.
01 Feb 2003; Jon Nall <nall@gentoo.org> binutils-2.13.90.0.18.ebuild :
made stable for ppc. this is to allow kde to compile happily and closes bug
#14776
29 Jan 2003; Nicholas Wourms <dragon@gentoo.org> binutils-2.13.90.0.18.ebuild :
Fixed Jakub's eh-frame-ro patch to apply and compile cleanly against
binutils-2.13.90.0.18. Passed all tests locally on x86, but please test on
other platforms.
26 Jan 2003; Martin Schlemmer <azarah@gentoo.org> binutils-2.13.90.0.18.ebuild :
New version. Some cleanups + patches. This closes bug #14518.
*binutils-2.13.90.0.16-r1 (30 Dec 2002)
08 Jan 2003; Martin Schlemmer <azarah@gentoo.org> binutils-2.13.90.0.16-r1.ebuild :
Mark stable.
19 Jan 2003; Jan Seidel <tuxus@gentoo.org> :
Add patches for mips
Added mips to keywords
30 Dec 2002; Martin Schlemmer <azarah@gentoo.org> binutils-2.13.90.0.16-r1.ebuild :
Update with patches from Redhat/Mandrake for various issues.
13 Dec 2002; Mark Guertin <gerk@gentoo.org> binutils-2.13.90.0.16.ebuild :
Marked stable for ppc.
10 Dec 2002; Martin Schlemmer <azarah@gentoo.org> binutils-2.13.90.0.16.ebuild :
Mark as stable for x86.
06 Dec 2002; Rodney Rees <manson@gentoo.org>:
Changed sparc ~sparc keywords
*binutils-2.13.90.0.16 (29 Nov 2002)
07 Jan 2003: Jan Seidel <tuxus@gentoo.org> binutils-2.13.90.0.16.ebuild :
Add patches for mips
Added mips to keywords.
29 Nov 2002; Nick Hadaway <raker@gentoo.org>
binutils-2.13.90.0.16.ebuild, files/digest-binutils-2.13.90.0.16 :
Version bump. No changes in the ebuild. Solves bug #11088
*binutils-2.13.90.0.14 (18 Nov 2002)
18 Nov 2002; Stefan Jones <cretin@gentoo.org> :
Version update, masked for testing.
*binutils-2.13.90.0.10 (14 Oct 2002)
14 Oct 2002; Martin Schlemmer <azarah@gentoo.org> :
Version update. Remove sparc until further testing
from Seemant.
*binutils-2.13.90.0.8 (10 Oct 2002)
10 Oct 2002; Martin Schlemmer <azarah@gentoo.org> :
New version. PPC and SPARC elf linkage fixes. More
TLS support code added.
*binutils-2.13.90.0.4 (15 Aug 2002)
15 Aug 2002; Martin Schlemmer <azarah@gentoo.org> :
Update to latest version.
1 Aug 2002; Martin Schlemmer <azarah@gentoo.org> :
Updated DEPEND not to use if statements, but rather
new syntax of portage-2.0.21 and up.
*binutils-2.12.90.0.15 (30 Jul 2002)
30 Jul 2002; Mark Guertin <gerk@gentoo.org>:
Added ppc to keywords
*binutils-2.12.90.0.14 (6 Jul 2002)
6 Jul 2002; Martin Schlemmer <azarah@gentoo.org> :
Version update.
*binutils-2.12.90.0.9 (10 Jun 2002)
9 Jun 2002; Martin Schlemmer <azarah@gentoo.org> :
Version update.
*binutils-2.12.90.0.7 (25 Apr 2002)
*binutils-2.12.90.0.4 (16 Apr 2002)
*binutils-2.12.90.0.3 (7 Apr 2002)
*binutils-2.12.90.0.1 (21 Mar 2002)
*binutils-2.11.92.0.12.3-r2 (12 Mar 2002)
12 Mar 2002; Seemant Kulleen <seemant@gentoo.org> ChangeLog :
Updated copyright year, and added USE dependent nls compilation.
*binutils-2.11.92.0.12.3-r1 (1 Feb 2002)
1 Feb 2002; G.Bevin <gbevin@gentoo.org> ChangeLog :
Added initial ChangeLog which should be updated whenever the package is
updated in any way. This changelog is targetted to users. This means that the
comments should well explained and written in clean English. The details about
writing correct changelogs are explained in the skel.ChangeLog file which you
can find in the root directory of the portage repository.
|