summaryrefslogtreecommitdiff
blob: 3c212497e91d3d6e6de3d939bdf66eb9c9a13240 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
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
1640
1641
1642
1643
1644
1645
1646
1647
1648
1649
1650
1651
1652
1653
1654
1655
1656
1657
1658
1659
1660
1661
1662
1663
1664
1665
1666
1667
1668
1669
1670
1671
1672
1673
1674
1675
1676
1677
1678
1679
1680
1681
1682
1683
1684
1685
1686
1687
1688
1689
1690
1691
1692
1693
1694
1695
1696
1697
1698
1699
1700
1701
1702
1703
1704
1705
1706
1707
1708
1709
1710
1711
1712
1713
1714
1715
1716
1717
1718
1719
1720
1721
1722
1723
1724
1725
1726
1727
1728
1729
1730
1731
1732
1733
1734
1735
1736
1737
1738
1739
1740
1741
1742
1743
1744
1745
1746
1747
1748
1749
1750
1751
1752
1753
1754
1755
1756
1757
1758
1759
1760
1761
1762
1763
1764
1765
1766
1767
1768
1769
1770
1771
1772
1773
1774
1775
1776
1777
1778
1779
1780
1781
1782
1783
1784
1785
1786
1787
1788
1789
1790
1791
1792
1793
1794
1795
1796
1797
1798
1799
1800
1801
1802
1803
1804
1805
1806
1807
1808
1809
1810
1811
1812
1813
1814
1815
1816
1817
1818
1819
1820
1821
1822
1823
1824
1825
1826
1827
1828
1829
1830
1831
1832
1833
1834
1835
1836
1837
1838
1839
1840
1841
1842
1843
1844
1845
1846
1847
1848
1849
1850
1851
1852
1853
1854
1855
1856
1857
1858
1859
1860
1861
1862
1863
1864
1865
1866
1867
1868
1869
1870
1871
1872
1873
1874
1875
1876
1877
1878
1879
1880
1881
1882
1883
1884
1885
1886
1887
1888
1889
1890
1891
1892
1893
1894
1895
1896
1897
1898
1899
1900
1901
1902
1903
1904
1905
1906
1907
1908
1909
1910
1911
1912
1913
1914
1915
1916
1917
1918
1919
1920
1921
1922
1923
1924
1925
1926
1927
1928
1929
1930
1931
1932
1933
1934
1935
1936
1937
1938
1939
1940
1941
1942
1943
1944
1945
1946
1947
1948
1949
1950
1951
1952
1953
1954
1955
1956
1957
1958
1959
1960
1961
1962
1963
1964
1965
1966
1967
1968
1969
1970
1971
1972
1973
1974
1975
1976
1977
1978
1979
1980
1981
1982
1983
1984
1985
1986
1987
1988
1989
1990
1991
1992
1993
1994
1995
1996
1997
1998
1999
2000
2001
2002
2003
2004
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
# ChangeLog for dev-libs/glib
# Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2
# $Header: /var/cvsroot/gentoo-x86/dev-libs/glib/ChangeLog,v 1.517 2012/04/25 19:51:43 maekke Exp $

  25 Apr 2012; Markus Meier <maekke@gentoo.org> glib-2.30.3.ebuild:
  arm stable, bug #410611

  19 Apr 2012; Brent Baude <ranger@gentoo.org> glib-2.30.3.ebuild:
  Marking glib-2.30.3 ppc64 stable for bug 410611

  18 Apr 2012; Agostino Sarubbo <ago@gentoo.org> glib-2.30.3.ebuild:
  Stable for amd64, wrt bug #410611

  16 Apr 2012; Alexandre Rostovtsev <tetromino@gentoo.org> glib-2.32.1.ebuild,
  +files/glib-2.32.1-gnustep-not-cocoa.patch:
  Fix building on systems with gnustep-base installed (bug #411981, thanks to
  Carlos Konstanski et al. for reporting).

  14 Apr 2012; Alexandre Rostovtsev <tetromino@gentoo.org> glib-2.32.0.ebuild,
  glib-2.32.1.ebuild, +files/glib-2.32.1-fix-libelf-check.patch:
  Add elfutils/libelf as a runtime dependency, and fix libelf detection. Fix
  datetime tests in non-English locales (bug #411967, thanks to Marien Zwart).

  14 Apr 2012; Alexis Ballier <aballier@gentoo.org> glib-2.32.1.ebuild:
  allow to replace lelfutils by libelf. the former isnt keyworded and doesnt
  build on fbsd while the latter is fine

  14 Apr 2012; Zac Medico <zmedico@gentoo.org> glib-2.32.1.ebuild:
  Add ~amd64-linux keyword.

*glib-2.32.1 (14 Apr 2012)

  14 Apr 2012; Alexandre Rostovtsev <tetromino@gentoo.org> +glib-2.32.1.ebuild:
  Version bump with minor bugfixes.

  27 Mar 2012; Alexandre Rostovtsev <tetromino@gentoo.org> glib-2.28.8.ebuild,
  glib-2.30.2.ebuild, glib-2.30.2-r1.ebuild, glib-2.30.3.ebuild,
  glib-2.32.0.ebuild:
  Add shared-mime-info to PDEPEND, it's needed for gio/xdgmime to function
  properly (thanks to Gilles Dartiguelongue for pointing out the issue in bug
  #409481).

  25 Mar 2012; Raúl Porcel <armin76@gentoo.org> glib-2.30.2.ebuild,
  glib-2.30.2-r1.ebuild:
  ia64/m68k/s390/sh/sparc stable wrt #393007

*glib-2.32.0 (25 Mar 2012)

  25 Mar 2012; Nirbheek Chauhan <nirbheek@gentoo.org>
  +files/glib-2.31.x-external-gdbus-codegen.patch, +glib-2.32.0.ebuild:
  Bump to 2.32, used by clutter and GNOME 3.4; package.masked because it breaks
  a lot of stuff

  23 Mar 2012; Alexandre Rostovtsev <tetromino@gentoo.org> glib-2.30.2.ebuild,
  glib-2.30.2-r1.ebuild, glib-2.30.3.ebuild:
  Add gnome2_environment_reset to fix test failures (partially resolves bug
  #409313 reported by Patrick Lauer).

  14 Mar 2012; Alexandre Rostovtsev <tetromino@gentoo.org>
  -glib-2.30.1-r2.ebuild:
  Drop old.

*glib-2.30.3 (14 Mar 2012)

  14 Mar 2012; Alexandre Rostovtsev <tetromino@gentoo.org> +glib-2.30.3.ebuild,
  +files/glib-2.30.3-closure-64bit-be.patch:
  Version bump, fixes several memory leaks and other bugs.

  05 Mar 2012; Brent Baude <ranger@gentoo.org> glib-2.30.2.ebuild:
  Marking glib-2.30.2 ppc stable for bug 393007

  05 Mar 2012; Brent Baude <ranger@gentoo.org> glib-2.30.2.ebuild:
  Marking glib-2.30.2 ppc64 stable for bug 393007

  17 Feb 2012; Tobias Klausmann <klausman@gentoo.org> glib-2.30.2-r1.ebuild:
  Stable on alpha, bug #401513

  18 Jan 2012; Markus Meier <maekke@gentoo.org> glib-2.30.2.ebuild:
  arm stable, bug #393007

  14 Jan 2012; Markus Meier <maekke@gentoo.org> glib-2.30.2.ebuild:
  x86 stable, bug #393007

  11 Jan 2012; Mike Frysinger <vapier@gentoo.org> glib-2.30.2.ebuild,
  glib-2.30.2-r1.ebuild:
  Assume pkgconfig exists in cross-compile setups since we need to execute
  `pkg-config` from ROOT=/ and not the cross-one from .

*glib-2.30.2-r1 (10 Jan 2012)

  10 Jan 2012; Mike Frysinger <vapier@gentoo.org> +glib-2.30.2-r1.ebuild,
  +files/glib-2.30.2-missing-decls.patch:
  Add fix from upstream for building with C++ compilers.

  31 Dec 2011; Alexandre Rostovtsev <tetromino@gentoo.org>
  glib-2.30.1-r2.ebuild, glib-2.30.2.ebuild:
  Fix py-compile idiom for automake-1.11.2 compatibility (bug #396585).

  29 Dec 2011; Pacho Ramos <pacho@gentoo.org> glib-2.30.2.ebuild:
  amd64 stable, bug 393007

  20 Dec 2011; Jeroen Roovers <jer@gentoo.org> glib-2.30.2.ebuild:
  Stable for HPPA (bug #393007).

  14 Nov 2011; Alexandre Rostovtsev <tetromino@gentoo.org> glib-2.30.2.ebuild:
  !<dbus-1.4.16-r2 blocker is not needed with glib-2.30.2-machine-id.patch.
  Thanks to gflohr in #gentoo-desktop for noticing.

*glib-2.30.2 (14 Nov 2011)

  14 Nov 2011; Alexandre Rostovtsev <tetromino@gentoo.org> +glib-2.30.2.ebuild,
  +files/glib-2.30.2-machine-id.patch:
  Bump. Notable changes: gdbus-related bugfixes. Add patch to detect machine-id
  in both /etc and /var, and lower dbus dep. Compile tests when USE=doc to
  prevent build failure (bug #387385, solution proposed by Pacho Ramos).

  12 Nov 2011; Samuli Suominen <ssuominen@gentoo.org> -glib-2.28.6.ebuild,
  -glib-2.30.0.ebuild, -glib-2.30.1.ebuild, -glib-2.30.1-r1.ebuild:
  old

*glib-2.30.1-r2 (11 Nov 2011)

  11 Nov 2011; Samuli Suominen <ssuominen@gentoo.org> +glib-2.30.1-r2.ebuild:
  Change hardcoded machine-id path to /etc wrt #390143 by Ewgenij Starostin

  18 Oct 2011; Jeroen Roovers <jer@gentoo.org> glib-2.28.8.ebuild:
  Stable for HPPA (bug #385699).

*glib-2.30.1-r1 (16 Oct 2011)

  16 Oct 2011; Pacho Ramos <pacho@gentoo.org> +glib-2.30.1-r1.ebuild,
  +files/glib-2.30.1-homedir-env.patch, metadata.xml:
  Fix python ddependency issues as it's needed in some cases, bug #384853 (by
  Alexandre Rostovtsev and Arfrever Frehtes Taifersar Arahesis); depend more
  scrictly on dev-util/gdbus-codegen to prevent unwanted mixes (and also help
  maintainers to remember both need to be bumped at the same time); utils die
  themselves with eapi4 (drop unneeded dies then); handle the G_HOME
  environment variable to override the passwd entry, upstream bug #142568;
  handle the G_HOME environment variable to override the passwd entry, upstream
  bug #142568 (by Debian folks);
  workaround-gio-test-failure-without-userpriv.patch looks to be no longer
  needed as upstream bug should be fixed; assert-msg-test prefers to have gdb
  installed when running test.

*glib-2.30.1 (16 Oct 2011)

  16 Oct 2011; Samuli Suominen <ssuominen@gentoo.org> +glib-2.30.1.ebuild,
  +files/glib-2.30.1-external-gdbus-codegen.patch:
  Version bump.

  06 Oct 2011; Samuli Suominen <ssuominen@gentoo.org> glib-2.30.0.ebuild:
  export LIBFFI_CFLAGS and LIBFFI_LIBS if dev-util/pkgconfig is not installed
  wrt #385561 by Bartosz Szreder

  05 Oct 2011; Kacper Kowalik <xarthisius@gentoo.org> glib-2.28.8.ebuild:
  ppc/ppc64 stable wrt #369909

  28 Sep 2011; Samuli Suominen <ssuominen@gentoo.org> glib-2.30.0.ebuild:
  Use virtual/libffi instead of dev-libs/libffi in case we have to switch to
  using copy from GCC in future.

*glib-2.30.0 (27 Sep 2011)

  27 Sep 2011; Nirbheek Chauhan <nirbheek@gentoo.org>
  +files/glib-2.29.18-external-gdbus-codegen.patch, +glib-2.30.0.ebuild:
  Bump to 2.30, from the GNOME overlay. Ebuild updates and patches by
  tetromino.

  14 Aug 2011; Samuli Suominen <ssuominen@gentoo.org> glib-2.28.8.ebuild:
  Revert last libtool file preservation since we have usable pkg-config files
  wrt #379115.

  14 Aug 2011; Nirbheek Chauhan <nirbheek@gentoo.org> glib-2.28.8.ebuild:
  Remove .la files only when USE=-static-libs. Previous commit by ssuominen
  punted .la files unconditionally, bug 379115

  13 Aug 2011; Raúl Porcel <armin76@gentoo.org> glib-2.28.8.ebuild:
  m68k stable wrt #369909

  13 Aug 2011; Raúl Porcel <armin76@gentoo.org> glib-2.28.8.ebuild:
  alpha/ia64/s390/sh/sparc stable wrt #369909

  10 Aug 2011; Samuli Suominen <ssuominen@gentoo.org> glib-2.28.8.ebuild:
  Fix circular depend with USE="test" and dev-util/pkgconfig. Remove libtool
  files.

  17 Jul 2011; Markus Meier <maekke@gentoo.org> glib-2.28.8.ebuild:
  arm stable, bug #369909

  14 Jul 2011; Thomas Kahle <tomka@gentoo.org> glib-2.28.8.ebuild:
  x86 stable per bug 369909

  04 Jul 2011; Alexis Ballier <aballier@gentoo.org> glib-2.28.8.ebuild:
  implicit . argument to find is a GNUism that fails with BSDs find; the die
  call following it made glib impossile to build on G/FreeBSD

  04 Jul 2011; Pacho Ramos <pacho@gentoo.org> glib-2.28.8.ebuild:
  Fix warning about skipped tests being shown even when tests are disabled by
  the user (bug #373963 by William Throwe).

  01 Jul 2011; Markos Chandras <hwoarang@gentoo.org> glib-2.28.8.ebuild:
  Stable on amd64 wrt bug #278255

  01 Jul 2011; Pacho Ramos <pacho@gentoo.org> glib-2.28.8.ebuild:
  Really skip tests when unneeded (bug #373069 by Matt Turner).

  11 Jun 2011; Pacho Ramos <pacho@gentoo.org>
  -files/glib-2.25-skip-tests-with-dbus-keyring.patch, -glib-2.26.1-r1.ebuild,
  -files/glib-2.26.1-deprecation-tests.patch,
  -files/glib-2.26.1-gdatetime-test.patch,
  -files/glib-2.26.1-gdbus-flushes.patch,
  -files/glib-2.26.1-gsettings-rules.patch:
  Remove old.

  11 Jun 2011; Nirbheek Chauhan <nirbheek@gentoo.org> -glib-2.28.7.ebuild,
  glib-2.28.8.ebuild:
  Use xz tarballs, remove old

  08 Jun 2011; Pacho Ramos <pacho@gentoo.org> glib-2.28.8.ebuild:
  Notify people about some tests will be skipped in certain situations and
  intruct them about how to run all of them. Thanks a lot to Gilles for
  explaining me the possible problems could appear if people ignores this
  situation.

*glib-2.28.8 (06 Jun 2011)

  06 Jun 2011; Pacho Ramos <pacho@gentoo.org> +glib-2.28.8.ebuild:
  Version bump, also skip tests requiring dev-python/dbus-python and
  dev-util/desktop-file-utils when they are not available as cannot DEPEND on
  them due circular dependencies problem (bugs #286629 and #349236).

  05 Jun 2011; Pacho Ramos <pacho@gentoo.org> glib-1.2.10-r5.ebuild,
  -files/glib-2.24-punt-python-check.patch,
  -files/glib-2.26.1-gsettings-read.patch,
  -files/glib-2.26.1-locked-message.patch, -glib-2.28.5.ebuild,
  glib-2.28.7.ebuild:
  Block broken gtk-doc versions that causes problems like bug #363213. Remove
  old. Make repoman happier with glib-1.

  28 May 2011; Raúl Porcel <armin76@gentoo.org> glib-2.28.6.ebuild:
  Add patch to fix bug 368275 again

*glib-2.28.7 (21 May 2011)

  21 May 2011; Nirbheek Chauhan <nirbheek@gentoo.org> +glib-2.28.7.ebuild:
  Bump to 2.28.7, lots of bugfixes

  20 May 2011; Samuli Suominen <ssuominen@gentoo.org> glib-2.28.6.ebuild:
  Move dev-util/pkgconfig DEPEND behind USE="test" because it's only required
  for checking sys-apps/dbus. This way we don't get circular dependencies now
  that dev-util/pkgconfig is using system copy of dev-libs/glib:2.
  Download pkg.m4 in SRC_URI for eautoreconf.

  30 Apr 2011; Raúl Porcel <armin76@gentoo.org> glib-2.28.6.ebuild:
  alpha/arm/ia64/m68k/s390/sh/sparc stable wrt #364973

  28 Apr 2011; Pawel Hajdan jr <phajdan.jr@gentoo.org> glib-2.28.6.ebuild:
  x86 stable wrt security bug #364973

  27 Apr 2011; Jeroen Roovers <jer@gentoo.org> glib-2.28.6.ebuild:
  Stable for HPPA (bug #364973).

  27 Apr 2011; Christoph Mende <angelos@gentoo.org> glib-2.28.6.ebuild:
  Stable on amd64 wrt bug #364973

  27 Apr 2011; Kacper Kowalik <xarthisius@gentoo.org> glib-2.28.6.ebuild:
  ppc/ppc64 stable wrt #364973

  26 Apr 2011; Gilles Dartiguelongue <eva@gentoo.org> glib-2.28.5.ebuild,
  glib-2.28.6.ebuild:
  Drop disable-visibility, bug #364989.

*glib-2.28.6 (14 Apr 2011)

  14 Apr 2011; Nirbheek Chauhan <nirbheek@gentoo.org> -glib-2.28.4.ebuild,
  +glib-2.28.6.ebuild:
  Bump to 2.28.6, remove old

*glib-2.28.5 (01 Apr 2011)

  01 Apr 2011; Nirbheek Chauhan <nirbheek@gentoo.org> +glib-2.28.5.ebuild:
  Bump to 2.28.5, fixed g-i annotations

  26 Mar 2011; Gilles Dartiguelongue <eva@gentoo.org> -glib-2.22.5.ebuild,
  -glib-2.24.1-r1.ebuild, -glib-2.28.3.ebuild, glib-2.28.4.ebuild:
  Re-add gtk-doc-am to DEPEND, bug #360581. Add changes commited to 2.26
  ebuild. Drop old revisions.

  22 Mar 2011; Brent Baude <ranger@gentoo.org> glib-2.26.1-r1.ebuild:
  Marking glib-2.26.1-r1 ppc stable for bug 353436

*glib-2.28.4 (22 Mar 2011)

  22 Mar 2011; Nirbheek Chauhan <nirbheek@gentoo.org> -glib-2.24.2.ebuild,
  -glib-2.26.1.ebuild, -glib-2.28.2.ebuild, +glib-2.28.4.ebuild:
  Bump to 2.28.4: doc fixes, translation updates

  21 Mar 2011; Kacper Kowalik <xarthisius@gentoo.org> glib-2.26.1-r1.ebuild:
  ppc64 stable wrt #353436

*glib-2.28.3 (14 Mar 2011)

  14 Mar 2011; Nirbheek Chauhan <nirbheek@gentoo.org> -glib-2.28.1.ebuild,
  +glib-2.28.3.ebuild:
  Bump to 2.28.3, remove 2.28.1

  12 Mar 2011; Raúl Porcel <armin76@gentoo.org> glib-2.26.1-r1.ebuild:
  alpha/arm/ia64/m68k/s390/sh/sparc stable wrt #353436

*glib-2.28.2 (08 Mar 2011)

  08 Mar 2011; Nirbheek Chauhan <nirbheek@gentoo.org> -glib-2.28.0.ebuild,
  +glib-2.28.2.ebuild:
  Bump to 2.28.2, remove 2.28.0

  07 Mar 2011; Jeroen Roovers <jer@gentoo.org> glib-2.26.1-r1.ebuild:
  Stable for HPPA (bug #353436).

  24 Feb 2011; Thomas Kahle <tomka@gentoo.org> glib-2.26.1-r1.ebuild:
  x86 stable per bug 353436

  23 Feb 2011; Markos Chandras <hwoarang@gentoo.org> glib-2.26.1-r1.ebuild:
  Stable on amd64 wrt bug #353436

*glib-2.28.1 (19 Feb 2011)

  19 Feb 2011; Nirbheek Chauhan <nirbheek@gentoo.org> +glib-2.28.1.ebuild:
  Bump to 2.28.1, bugfix release

*glib-2.28.0 (08 Feb 2011)

  08 Feb 2011; Nirbheek Chauhan <nirbheek@gentoo.org> -glib-2.27.93.ebuild,
  +glib-2.28.0.ebuild:
  Bump to 2.28.0, remove 2.27.x. Various bugfixes, no ebuild changes

*glib-2.27.93 (04 Feb 2011)

  04 Feb 2011; Gilles Dartiguelongue <eva@gentoo.org> +glib-2.27.93.ebuild:
  Version bump for early new glib testing.

  03 Feb 2011; Pacho Ramos <pacho@gentoo.org> glib-2.26.1-r1.ebuild:
  Disable dtrace and systemtap supports until bug #351931 is solved instead of
  letting them be automagic.

  30 Jan 2011; Raúl Porcel <armin76@gentoo.org> glib-2.24.2.ebuild:
  alpha/arm/ia64/m68k/s390/sh/sparc stable wrt #348987

  25 Jan 2011; Jeroen Roovers <jer@gentoo.org> glib-2.24.2.ebuild:
  Stable for HPPA (bug #348987).

  24 Jan 2011; Pacho Ramos <pacho@gentoo.org> glib-2.26.1-r1.ebuild,
  +files/glib-2.26.1-gatomic-header.patch,
  +files/glib-2.26.1-gdatetime-test.patch:
  Add openbsd patch to fix build on several arches (bug #351387 by Alan
  Hourihane and Raúl Porcel) once I confirmed it doesn't cause any test
  failure regression. Remove test that seems to fail depending on time of day
  as done by upstream (was causing one of the failures in bug #352451) and
  unset GSETTINGS_BACKEND (bug #352451) until upstream takes care (upstream bug
  #640412).

  19 Jan 2011; Markos Chandras <hwoarang@gentoo.org> glib-2.24.2.ebuild:
  Stable on amd64 wrt bug #348987

  18 Jan 2011; Christian Faulhammer <fauli@gentoo.org> glib-2.24.2.ebuild:
  stable x86, bug 348987

*glib-2.26.1-r1 (17 Jan 2011)

  17 Jan 2011; Pacho Ramos <pacho@gentoo.org> -glib-2.26.0-r1.ebuild,
  -files/glib-2.26.0-error-pileup.patch, -files/glib-2.26.0-not-close.patch,
  -files/glib-2.26.0-unref-null.patch, +glib-2.26.1-r1.ebuild,
  +files/glib-2.26.1-deprecation-tests.patch,
  +files/glib-2.26.1-gdbus-flushes.patch,
  +files/glib-2.26.1-gsettings-read.patch,
  +files/glib-2.26.1-gsettings-rules.patch,
  +files/glib-2.26.1-locked-message.patch:
  Revision bump to include upstream patches from 2.32 branch and fix
  gsettings.m4 rules to work when there are no schemas, bug #350020. Remove old
  testing.

  11 Jan 2011; Pacho Ramos <pacho@gentoo.org> glib-2.26.1.ebuild:
  Inform users about possible breakage when updating glib and not dbus-glib,
  bug #297483.

  16 Dec 2010; Fabian Groffen <grobian@gentoo.org> glib-2.26.1.ebuild:
  Do not use ED with DESTDIR

  07 Dec 2010; Gilles Dartiguelongue <eva@gentoo.org>
  -files/glib-2.6.3-testglib-ssp.patch, -glib-2.20.5-r1.ebuild,
  -glib-2.22.4.ebuild, -files/glib2-CVE-2008-4316.patch,
  -files/glib2-CVE-2009-3289.patch:
  Clean up old revisions.

*glib-2.26.1 (04 Dec 2010)

  04 Dec 2010; Pacho Ramos <pacho@gentoo.org> -glib-2.25.17.ebuild,
  +glib-2.26.1.ebuild:
  Version bump with bugfixes and translation updates, remove old and skip tests
  building when unneeded.

*glib-2.26.0-r1 (17 Oct 2010)

  17 Oct 2010; Pacho Ramos <pacho@gentoo.org> -glib-2.26.0.ebuild,
  +glib-2.26.0-r1.ebuild, +files/glib-2.26.0-error-pileup.patch,
  +files/glib-2.26.0-not-close.patch, +files/glib-2.26.0-unref-null.patch:
  Revision bump to include one important upstream fix to prevent evince
  crash at startup, also fix test and prevent error pileup. Remove previous
  broken version.

  17 Oct 2010; Raúl Porcel <armin76@gentoo.org> glib-2.24.1-r1.ebuild:
  alpha/ia64/m68k/s390/sh/sparc stable wrt #324077

  14 Oct 2010; Markus Meier <maekke@gentoo.org> glib-2.24.1-r1.ebuild:
  arm stable, bug #324077

  07 Oct 2010; Samuli Suominen <ssuominen@gentoo.org> glib-2.24.1-r1.ebuild:
  ppc64 stable wrt #324077

  06 Oct 2010; Gilles Dartiguelongue <eva@gentoo.org> glib-2.24.2.ebuild,
  glib-2.26.0.ebuild,
  +files/glib-2.26.0-disable-locale-sensitive-test.patch,
  +files/glib-2.26.0-disable-volumemonitor-broken-test.patch:
  Fix testsuite failure on hardened, bug #338891. Disable visibility with
  USE=debug, bug #274647. Disable 3 tests in the 2.26 testsuite to allow a
  successful run and sync the ebuild back with latest changes in 2.24.

*glib-2.26.0 (28 Sep 2010)

  28 Sep 2010; <nirbheek@gentoo.org> +glib-2.26.0.ebuild:
  Bump to 2.26.0, stable release with various bug fixes

  25 Sep 2010; <nirbheek@gentoo.org> glib-2.25.17.ebuild:
  Drop patch that is no longer used for in-tree 2.24 ebuilds. Syncing error
  pointed out by eva

*glib-2.25.17 (25 Sep 2010)

  25 Sep 2010; <nirbheek@gentoo.org> +glib-2.25.17.ebuild,
  +files/glib-2.25-punt-python-check.patch,
  +files/glib-2.25-skip-tests-with-dbus-keyring.patch, metadata.xml:
  Bump to 2.25.17, needed for gdk-pixbuf-2.22 and gtk+-2.22. Stable release
  will be made within the next week.

  11 Sep 2010; Joseph Jezak <josejx@gentoo.org> glib-2.24.1-r1.ebuild:
  Marked ppc for bug #324077.

  08 Sep 2010; Gilles Dartiguelongue <eva@gentoo.org> glib-2.20.5-r1.ebuild,
  glib-2.22.4.ebuild, glib-2.22.5.ebuild, glib-2.24.1-r1.ebuild,
  glib-2.24.2.ebuild:
  Drop ppc64 hardened patch, closes #324899.

*glib-2.24.2 (03 Sep 2010)

  03 Sep 2010; Gilles Dartiguelongue <eva@gentoo.org> +glib-2.24.2.ebuild:
  Version bump. Couple of fixes, notably gtester race condition. Translation
  updates.

  31 Aug 2010; Pacho Ramos <pacho@gentoo.org> -glib-2.22.2.ebuild,
  -glib-2.24.1.ebuild, glib-2.24.1-r1.ebuild:
  Raise gtk-doc requeriment as reported in bug #331407 by Siim Ainsaar,
  marlon and others. Drop old testing versions.

  18 Aug 2010; Markus Meier <maekke@gentoo.org> glib-2.22.5.ebuild:
  arm stable, bug #314899

  14 Aug 2010; Raúl Porcel <armin76@gentoo.org> glib-2.22.5.ebuild:
  alpha/ia64/sh/sparc stable wrt #314899

  05 Aug 2010; Jeroen Roovers <jer@gentoo.org> glib-2.24.1-r1.ebuild:
  Stable for HPPA (bug #324077).

  01 Aug 2010; Christian Faulhammer <fauli@gentoo.org>
  glib-2.24.1-r1.ebuild:
  x86 stable, bug 324077

  31 Jul 2010; Pacho Ramos <pacho@gentoo.org> glib-2.24.1-r1.ebuild:
  amd64 stable, bug 324077

  14 Jul 2010; Pacho Ramos <pacho@gentoo.org> glib-2.24.1-r1.ebuild:
  Add a comment in ebuild for remembering to keep eautoreconf in the future
  due bug #267603 (by Andrei Slavoiu).

  10 Jul 2010; Nirbheek Chauhan <nirbheek@gentoo.org> glib-2.24.1-r1.ebuild:
  Add gtk-doc-am to DEPEND for eautoreconf. Fixes bug 327559

*glib-2.24.1-r1 (08 Jul 2010)

  08 Jul 2010; Nirbheek Chauhan <nirbheek@gentoo.org>
  +glib-2.24.1-r1.ebuild, +files/glib-2.24-assert-test-failure.patch,
  +files/glib-2.24-punt-python-check.patch:
  Don't check for python, and don't install gdb python scripts, bug 291328.
  Also, fix test failure in assert-msg-test, bug 323667

  07 Jul 2010; Samuli Suominen <ssuominen@gentoo.org> glib-2.22.5.ebuild:
  ppc64 stable wrt #314899

*glib-2.24.1 (13 Jun 2010)

  13 Jun 2010; Pacho Ramos <pacho@gentoo.org> -glib-2.22.3.ebuild,
  +glib-2.24.1.ebuild:
  Add new version for Gnome 2.30, clean old testing version.

  04 Jun 2010; Markus Meier <maekke@gentoo.org> glib-2.22.5.ebuild:
  x86 stable, bug #314899

  11 May 2010; Brent Baude <ranger@gentoo.org> glib-2.22.4.ebuild:
  Marking glib-2.22.4 ppc64 for bug 304777

  07 May 2010; Jeroen Roovers <jer@gentoo.org> glib-2.22.5.ebuild:
  Stable for HPPA (bug #304777).

  03 May 2010; Olivier Crête <tester@gentoo.org> glib-2.22.5.ebuild:
  amd64 stable, bug #314899

*glib-2.22.5 (26 Mar 2010)

  26 Mar 2010; Pacho Ramos <pacho@gentoo.org> +glib-2.22.5.ebuild:
  Version bump with bugfixes

  24 Mar 2010; Raúl Porcel <armin76@gentoo.org> glib-2.22.4.ebuild:
  alpha/arm/ia64/m68k/s390/sh/sparc stable wrt #304777

  15 Mar 2010; nixnut <nixnut@gentoo.org> glib-2.22.4.ebuild:
  ppc stable #304777

  06 Mar 2010; Pawel Hajdan jr <phajdan.jr@gentoo.org> glib-2.22.4.ebuild:
  x86 stable wrt bug #304777

  06 Mar 2010; Samuli Suominen <ssuominen@gentoo.org> glib-2.22.4.ebuild:
  amd64 stable wrt #304777

*glib-2.22.4 (28 Jan 2010)

  28 Jan 2010; Gilles Dartiguelongue <eva@gentoo.org> -glib-2.20.5.ebuild,
  +glib-2.22.4.ebuild:
  Version bump. Bug fixes, and notably bug #297483. Disable test affecting
  live filesystem, bug #297684.

  19 Jan 2010; Raúl Porcel <armin76@gentoo.org> glib-2.22.2.ebuild:
  arm stable

*glib-2.22.3 (18 Dec 2009)

  18 Dec 2009; Romain Perier <mrpouet@gentoo.org> +glib-2.22.3.ebuild:
  Version bump

  10 Dec 2009; Raúl Porcel <armin76@gentoo.org> glib-2.22.2.ebuild:
  sparc stable

  17 Nov 2009; Brent Baude <ranger@gentoo.org> glib-2.20.5-r1.ebuild:
  Marking glib-2.20.5-r1 ppc64 for bug 286102

  10 Nov 2009; Raúl Porcel <armin76@gentoo.org> glib-2.20.5-r1.ebuild:
  ia64/m68k/s390/sh stable wrt #286102

  09 Nov 2009; Tiago Cunha <tcunha@gentoo.org> glib-2.20.5-r1.ebuild:
  stable sparc, security bug 286102

  09 Nov 2009; Markus Meier <maekke@gentoo.org> glib-2.20.5-r1.ebuild:
  amd64/arm stable, bug #286102

  09 Nov 2009; Jeroen Roovers <jer@gentoo.org> glib-2.20.5-r1.ebuild:
  Stable for HPPA (bug #286102).

  08 Nov 2009; Mounir Lamouri <volkmar@gentoo.org> glib-2.20.5-r1.ebuild:
  Stable for ppc, bug 286102

  07 Nov 2009; Romain Perier <mrpouet@gentoo.org>
  glib-2.20.5-r1.ebuild:
  Fix bug #292292, eautomake failed due to missing gtk-doc-am in DEPEND,
  drop redundant elibtoolize.

  07 Nov 2009; Tobias Klausmann <klausman@gentoo.org> glib-2.20.5-r1.ebuild:
  Stable on alpha, bug #286102

  07 Nov 2009; Christian Faulhammer <fauli@gentoo.org>
  glib-2.20.5-r1.ebuild:
  stable x86, security bug 286102

*glib-2.20.5-r1 (06 Nov 2009)

  06 Nov 2009; Romain Perier <mrpouet@gentoo.org>
  +glib-2.20.5-r1.ebuild,
  +files/glib2-CVE-2009-3289.patch:
  Fix bug #286102, symlink permission error (CVE-2009-3289), new revision.

  02 Nov 2009; Gilles Dartiguelongue <eva@gentoo.org> glib-2.22.2.ebuild:
  Remove virtual/libc again.

*glib-2.22.2 (29 Oct 2009)

  29 Oct 2009; Gilles Dartiguelongue <eva@gentoo.org>
  -files/glib-2.18.1-gdesktopappinfo-memleak-fix.patch,
  -glib-2.18.4-r1.ebuild, -glib-2.18.4-r2.ebuild,
  -files/glib-2.18.4-gcc44.patch, -files/glib-2.20.1-gio-unref.patch,
  +glib-2.22.2.ebuild:
  New version for GNOME 2.28. Clean up old revisions.

  26 Oct 2009; Raúl Porcel <armin76@gentoo.org> glib-2.20.5.ebuild:
  ia64/m68k/s390/sh/sparc stable wrt #285586

  08 Oct 2009; Markus Meier <maekke@gentoo.org> glib-2.20.5.ebuild:
  arm stable, bug #285586

  03 Oct 2009; Tobias Klausmann <klausman@gentoo.org> glib-2.20.5.ebuild:
  Stable on alpha, bug #285586

  30 Sep 2009; Jeroen Roovers <jer@gentoo.org> glib-2.20.5.ebuild:
  Stable for HPPA (bug #285586).

  27 Sep 2009; nixnut <nixnut@gentoo.org> glib-2.20.5.ebuild:
  ppc stable #285586

  25 Sep 2009; Brent Baude <ranger@gentoo.org> glib-2.20.5.ebuild:
  Marking glib-2.20.5 ppc64 stable for bug 285586

  23 Sep 2009; Patrick Lauer <patrick@gentoo.org> glib-2.18.4-r1.ebuild,
  glib-2.18.4-r2.ebuild, glib-2.20.5.ebuild:
  Remove virtual/libc

  22 Sep 2009; Markus Meier <maekke@gentoo.org> glib-2.20.5.ebuild:
  x86 stable, bug #285586

  19 Sep 2009; Olivier Crête <tester@gentoo.org> glib-2.20.5.ebuild:
  Stable on amd64, bug #285586

*glib-2.20.5 (01 Sep 2009)

  01 Sep 2009; Romain Perier <mrpouet@gentoo.org>
  +glib-2.20.5.ebuild:
  Version bump, 4 bugfixes, 2 translations updates.

*glib-2.20.4 (09 Jul 2009)

  09 Jul 2009; Gilles Dartiguelongue <eva@gentoo.org> -glib-2.20.2.ebuild,
  +glib-2.20.4.ebuild:
  Version bump. Bug fixes and translation updates.

*glib-2.20.3 (08 Jun 2009)

  08 Jun 2009; Gilles Dartiguelongue <eva@gentoo.org>
  -glib-2.16.6-r1.ebuild, -glib-2.20.1.ebuild, -glib-2.20.1-r1.ebuild,
  +glib-2.20.3.ebuild:
  Bump to 2.20.3. Bug fixes and translation updates. Define XDG environment
  variable for tests since they might not be present even when
  xdg-utils-1.0.2-r3 is installed, bug #269155.

  18 May 2009; Gilles Dartiguelongue <eva@gentoo.org> glib-2.20.2.ebuild:
  Remove unused patch.

*glib-2.20.2 (18 May 2009)

  18 May 2009; Gilles Dartiguelongue <eva@gentoo.org> +glib-2.20.2.ebuild:
  Bump to 2.20.2. Bug fixes.

*glib-2.20.1-r1 (04 May 2009)
*glib-2.18.4-r2 (04 May 2009)

  04 May 2009; Gilles Dartiguelongue <eva@gentoo.org>
  +files/glib-2.18.4-gcc44.patch, +files/glib-2.20.1-gio-unref.patch,
  +glib-2.18.4-r2.ebuild, +glib-2.20.1-r1.ebuild:
  Fix gio unref, bug #260301. Fix compilation of glib-2.18 with gcc 4.4, bug
  #264686.

*glib-2.20.1 (04 May 2009)

  04 May 2009; Gilles Dartiguelongue <eva@gentoo.org> +glib-2.20.1.ebuild:
  Bump to 2.20.1. Update internal copy of libprcre to 7.8, gio and
  GHashTable enhancements.

  27 Apr 2009; Jeroen Roovers <jer@gentoo.org> glib-2.18.4-r1:
  Stable for HPPA (bug #260063).

  19 Apr 2009; Mart Raudsepp <leio@gentoo.org> -glib-2.16.5.ebuild,
  -glib-2.16.6.ebuild, -glib-2.18.4.ebuild:
  Remove old redundant security vulnerable revisions

  12 Apr 2009; Friedrich Oslage <bluebird@gentoo.org> ChangeLog:
  Stable on sparc, bug #260063

  26 Mar 2009; Raúl Porcel <armin76@gentoo.org> glib-2.16.6-r1.ebuild,
  glib-2.18.4.ebuild, glib-2.18.4-r1.ebuild:
  arm/ia64/s390/sh/sparc stable

  18 Mar 2009; Brent Baude <ranger@gentoo.org> glib-2.18.4-r1.ebuild:
  Marking glib-2.18.4-r1 ppc for bug 249214

  18 Mar 2009; Raúl Porcel <armin76@gentoo.org> glib-2.18.4.ebuild:
  alpha/ia64 stable wrt #260063

  17 Mar 2009; Raúl Porcel <armin76@gentoo.org> glib-2.16.6.ebuild,
  glib-2.16.6-r1.ebuild, glib-2.18.4.ebuild, glib-2.18.4-r1.ebuild:
  m68k stable, thanks to kolla for testing

  15 Mar 2009; Markus Meier <maekke@gentoo.org> glib-2.18.4-r1.ebuild:
  x86 stable, bug #260063

  15 Mar 2009; Tobias Klausmann <klausman@gentoo.org> glib-2.18.4-r1.ebuild:
  Stable on alpha, bug #249214

  15 Mar 2009; Tobias Klausmann <klausman@gentoo.org> glib-2.16.6-r1.ebuild:
  Stable on alpha, bug #249214

  15 Mar 2009; Markus Meier <maekke@gentoo.org> glib-2.16.6-r1.ebuild:
  amd64/x86 stable, bug #249214

  15 Mar 2009; Brent Baude <ranger@gentoo.org> glib-2.16.6-r1.ebuild,
  glib-2.18.4-r1.ebuild:
  Marking glib-2.16.6-r1 glib-2.18.4-r1 ppc64 for bug 249214

  13 Mar 2009; Daniel Gryniewicz <dang@gentoo.org> glib-2.18.4-r1.ebuild:
  Oops, managed to get ~arch in ebuild

*glib-2.18.4-r1 (13 Mar 2009)
*glib-2.16.6-r1 (13 Mar 2009)

  13 Mar 2009; Daniel Gryniewicz <dang@gentoo.org>
  +files/glib2-CVE-2008-4316.patch, +glib-2.16.6-r1.ebuild,
  +glib-2.18.4-r1.ebuild:
  Add versions with fixes for bug #249214

  11 Mar 2009; Daniel Gryniewicz <dang@gentoo.org> glib-2.18.4.ebuild:
  Marked stable on amd64

  06 Mar 2009; Brent Baude <ranger@gentoo.org> glib-2.18.4.ebuild:
  Marking glib-2.18.4 ppc stable for bug 260063

  05 Mar 2009; Brent Baude <ranger@gentoo.org> glib-2.18.4.ebuild:
  Marking glib-2.18.4 ppc64 stable for bug 260063

  02 Mar 2009; Brent Baude <ranger@gentoo.org> glib-2.16.6.ebuild:
  Marking glib-2.16.6 ppc64 for bug 245092

  16 Feb 2009; Brent Baude <ranger@gentoo.org> glib-2.16.6.ebuild:
  stable ppc, bug 245092

  15 Feb 2009; Gilles Dartiguelongue <eva@gentoo.org>
  -files/glib-2.16.3-pcre-buffer-overflow.patch, -glib-2.14.3.ebuild,
  -glib-2.14.6.ebuild, -glib-2.16.3-r1.ebuild, glib-2.16.5.ebuild,
  -glib-2.18.1.ebuild, -glib-2.18.2.ebuild, -glib-2.18.3.ebuild:
  Clean up old revisions.

  15 Feb 2009; Raúl Porcel <armin76@gentoo.org> glib-2.16.6.ebuild:
  arm/ia64/s390/sh/sparc stable wrt #245092

  14 Feb 2009; Markus Meier <maekke@gentoo.org> glib-2.16.6.ebuild:
  amd64/x86 stable, bug #245092

  13 Feb 2009; Tobias Klausmann <klausman@gentoo.org> glib-2.16.6.ebuild,
  glib-2.18.1.ebuild:
  Brain fart when trying to stabilize 2.16.6 (bug 245092)

  11 Feb 2009; Tobias Klausmann <klausman@gentoo.org> ChangeLog:
  Stable on alpha, bug #245092

  11 Feb 2009; Jeroen Roovers <jer@gentoo.org> glib-2.16.6.ebuild:
  Stable for HPPA (bug #245092).

  09 Feb 2009; Tobias Klausmann <klausman@gentoo.org> glib-2.18.1.ebuild:
  Stable on alpha, bug #258344

*glib-2.18.4 (13 Jan 2009)

  13 Jan 2009; Mart Raudsepp <leio@gentoo.org> +glib-2.18.4.ebuild:
  Version bump for various bug fixes - mostly to GIO, e.g MIME sniffing does
  not update access time anymore

*glib-2.18.3 (27 Nov 2008)

  27 Nov 2008; Mart Raudsepp <leio@gentoo.org> +glib-2.18.3.ebuild:
  New bug fix release - improves custom mimetype icons display, various
  memory leak fixes, and GKeyFile improvements.

  13 Nov 2008; Brent Baude <ranger@gentoo.org> glib-2.16.5.ebuild:
  Marking glib-2.16.5 ppc64 stable for bug 236971

*glib-2.18.2 (19 Oct 2008)

  19 Oct 2008; Mart Raudsepp <leio@gentoo.org> +glib-2.18.2.ebuild:
  New bug fix release, fixing wrong fallback order of mimetype icons and
  more

  18 Oct 2008; Brent Baude <ranger@gentoo.org> glib-2.16.5.ebuild:
  Marking glib-2.16.5 ppc stable for bug 236971

  25 Sep 2008; Jeroen Roovers <jer@gentoo.org> glib-2.16.5.ebuild:
  Stable for HPPA (bug #236971).

*glib-2.18.1 (25 Sep 2008)

  25 Sep 2008; Mart Raudsepp <leio@gentoo.org>
  +files/glib-2.18.1-gdesktopappinfo-memleak-fix.patch,
  +files/glib-2.18.1-workaround-gio-test-failure-without-userpriv.patch,
  +glib-2.18.1.ebuild:
  Major version bump. Supports latest version of shared-mime spec, emblems
  on icons, subparsers in GMarkup, and more

*glib-2.16.6 (22 Sep 2008)

  22 Sep 2008; Mart Raudsepp <leio@gentoo.org> +glib-2.16.6.ebuild:
  Version bump for bug fixes in the 2.16 series

  09 Sep 2008; Raúl Porcel <armin76@gentoo.org> glib-2.16.5.ebuild:
  alpha/ia64/sparc stable wrt #236971

  08 Sep 2008; Markus Meier <maekke@gentoo.org> glib-2.16.5.ebuild:
  x86 stable, bug #236971

  07 Sep 2008; Olivier Crête <tester@gentoo.org> glib-2.16.5.ebuild:
  amd64 stable, bug #236971

  07 Sep 2008; Gilles Dartiguelongue <eva@gentoo.org> glib-2.16.5.ebuild:
  drop USE="doc" for 2.16.5 only, bug #232417.

  03 Aug 2008; Gilles Dartiguelongue <eva@gentoo.org>
  -files/glib-2.8.3-macos.patch, glib-1.2.10-r5.ebuild, -glib-2.8.6.ebuild,
  -glib-2.10.3.ebuild, -glib-2.10.3-r1.ebuild, -glib-2.12.12.ebuild,
  -glib-2.12.13.ebuild, glib-2.14.3.ebuild, -glib-2.16.1.ebuild,
  -glib-2.16.2.ebuild, -glib-2.16.3.ebuild, -glib-2.16.4.ebuild:
  clean up old revisions, drop to ~mips to shut up repoman's warnings.

*glib-2.16.5 (20 Jul 2008)

  20 Jul 2008; Mart Raudsepp <leio@gentoo.org> +glib-2.16.5.ebuild:
  Version bump for working around AC_C_BIGENDIAN breakage in autoconf 2.61
  (bug 231670) and a few bug fixes

*glib-2.16.4 (12 Jul 2008)

  12 Jul 2008; <leio@gentoo.org> +glib-2.16.4.ebuild:
  Version bump for bug fixes

  05 Jul 2008; Tobias Scherbaum <dertobi123@gentoo.org>
  glib-2.16.3-r1.ebuild:
  ppc stable, bug #230039

  01 Jul 2008; Markus Rothe <corsair@gentoo.org> glib-2.16.3-r1.ebuild:
  Stable on ppc64; bug #230039

*glib-2.16.3-r1 (01 Jul 2008)

  01 Jul 2008; Mart Raudsepp <leio@gentoo.org>
  +files/glib-2.16.3-pcre-buffer-overflow.patch, +glib-2.16.3-r1.ebuild:
  Fix for a heap-based buffer overflow possibility in the included modified
  copy of PCRE, bug 230039, related to CVE-2008-2371

  30 Jun 2008; Jeroen Roovers <jer@gentoo.org> glib-2.16.3.ebuild:
  Stable for HPPA (bug #227679).

  21 Jun 2008; Markus Rothe <corsair@gentoo.org> glib-2.16.3.ebuild:
  Stable on ppc64; bug #227679

  20 Jun 2008; Christian Faulhammer <opfer@gentoo.org> glib-2.16.3.ebuild:
  stable x86, bug 227679

  19 Jun 2008; Raúl Porcel <armin76@gentoo.org> glib-2.16.3.ebuild:
  alpha/ia64/sparc stable wrt #227679

  19 Jun 2008; nixnut <nixnut@gentoo.org> glib-2.16.3.ebuild:
  Stable on ppc wrt bug 227679

  19 Jun 2008; Olivier Crête <tester@gentoo.org> glib-2.16.3.ebuild:
  amd64 stable, bug #227679

  18 Jun 2008; Raúl Porcel <armin76@gentoo.org> glib-2.16.3.ebuild:
  Fix test failure on alpha/ppc/sparc and probably other arches, authorized
  by leio, GNOME bug #538836

*glib-2.16.3 (09 Apr 2008)

  09 Apr 2008; Mart Raudsepp <leio@gentoo.org> +glib-2.16.3.ebuild:
  New version. In addition to a few bug fixes and translation updates this
  updates Unicode support to version 5.1

*glib-2.16.2 (02 Apr 2008)

  02 Apr 2008; Mart Raudsepp <leio@gentoo.org> +glib-2.16.2.ebuild:
  New bug fix release

*glib-2.16.1 (11 Mar 2008)

  11 Mar 2008; Mart Raudsepp <leio@gentoo.org> -glib-2.16.0.ebuild,
  +glib-2.16.1.ebuild:
  Quick follow-up to fix a GIO crasher and included pcre copy version to
  secure version

*glib-2.16.0 (10 Mar 2008)

  10 Mar 2008; Mart Raudsepp <leio@gentoo.org> +glib-2.16.0.ebuild:
  New major release. Major new features include: GIO - a virtual filesystem
  API designed to replace gnome-vfs, carrying support for local filesystems
  with gnome-base/gvfs containing backends for many other (samba, ftp, sftp,
  http, etc); GChecksum providing MD5, SHA-1 and SHA-256 algorithms for
  applications to use; GTest - a test framework

  10 Feb 2008; Olivier Crête <tester@gentoo.org> glib-2.14.6.ebuild:
  Stable on amd64, security bug #209293

  08 Feb 2008; Raúl Porcel <armin76@gentoo.org> glib-2.14.6.ebuild:
  alpha/ia64/sparc stable wrt security #209293

  08 Feb 2008; Jeroen Roovers <jer@gentoo.org> glib-2.14.6.ebuild:
  Stable for HPPA (bug #209293).

  08 Feb 2008; Tobias Scherbaum <dertobi123@gentoo.org> glib-2.14.6.ebuild:
  ppc stable, bug #209293

  08 Feb 2008; Brent Baude <ranger@gentoo.org> glib-2.14.6.ebuild:
  stable ppc64, bug 209293

  07 Feb 2008; Markus Meier <maekke@gentoo.org> glib-2.14.6.ebuild:
  x86 stable, security bug #209293

*glib-2.14.6 (07 Feb 2008)

  07 Feb 2008; Mart Raudsepp <leio@gentoo.org> +glib-2.14.6.ebuild:
  Version bump for security fix in the included copy of libpcre (updated to 7.6)

  04 Feb 2008; Jeroen Roovers <jer@gentoo.org> glib-2.14.5.ebuild:
  Stable for HPPA (bug #208366).

  03 Feb 2008; Raúl Porcel <armin76@gentoo.org> glib-2.14.5.ebuild:
  alpha/ia64/sparc stable wrt #208366

  02 Feb 2008; Chris Gianelloni <wolf31o2@gentoo.org> glib-2.14.5.ebuild:
  Stable on amd64 wrt bug #208366.

  01 Feb 2008; Brent Baude <ranger@gentoo.org> glib-2.14.5.ebuild:
  Marking glib-2.14.5 ppc64 and ppc stable for bug 208366

  01 Feb 2008; Christian Faulhammer <opfer@gentoo.org> glib-2.14.5.ebuild:
  stable x86, bug 208366

*glib-2.14.5 (10 Jan 2008)

  10 Jan 2008; Gilles Dartiguelongue <eva@gentoo.org> +glib-2.14.5.ebuild:
  bump to 2.14.5

  27 Nov 2007; Jeroen Roovers <jer@gentoo.org> glib-2.14.3.ebuild:
  Make hppa use -O1.

*glib-2.14.4 (25 Nov 2007)

  25 Nov 2007; Mart Raudsepp <leio@gentoo.org> +glib-2.14.4.ebuild:
  Version bump for various non-critical bug fixes

  23 Nov 2007; Jeroen Roovers <jer@gentoo.org> glib-2.14.3.ebuild:
  Stable for HPPA (bug #198845).

  20 Nov 2007; Joshua Kinard <kumba@gentoo.org> glib-2.14.3.ebuild:
  Stable on mips, per #190019.

  19 Nov 2007; Markus Rothe <corsair@gentoo.org> glib-2.14.3.ebuild:
  Stable on ppc64; bug #198845

  17 Nov 2007; nixnut <nixnut@gentoo.org> glib-2.14.3.ebuild:
  Stable on ppc wrt bug 198845

  14 Nov 2007; Raúl Porcel <armin76@gentoo.org> glib-2.14.3.ebuild:
  sparc stable wrt #198845

  14 Nov 2007; Raúl Porcel <armin76@gentoo.org> glib-2.14.3.ebuild:
  alpha/ia64 stable wrt #198845

  13 Nov 2007; Christian Faulhammer <opfer@gentoo.org> glib-2.14.3.ebuild:
  stable x86, bug 198845

  12 Nov 2007; Samuli Suominen <drac@gentoo.org> glib-2.14.3.ebuild:
  amd64 stable wrt #198845

*glib-2.14.3 (09 Nov 2007)

  09 Nov 2007; Mart Raudsepp <leio@gentoo.org> -glib-2.14.1.ebuild,
  +glib-2.14.3.ebuild:
  Version bump

*glib-2.14.2 (16 Oct 2007)

  16 Oct 2007; Mart Raudsepp <leio@gentoo.org> +glib-2.14.2.ebuild:
  Version bump

*glib-2.14.1 (21 Sep 2007)

  21 Sep 2007; Rémi Cardona <remi@gentoo.org> +glib-2.14.1.ebuild:
  Add glib-2.14.1 (for Gnome 2.20)

  21 Sep 2007; Brent Baude <ranger@gentoo.org> glib-2.12.13.ebuild:
  Marking glib-2.12.13 ppc64 for bug#190019

  28 Aug 2007; nixnut <nixnut@gentoo.org> glib-2.12.13.ebuild:
  Stable on ppc wrt bug 190019

  28 Aug 2007; Jeroen Roovers <jer@gentoo.org> glib-2.12.13.ebuild:
  Stable for HPPA (bug #190019).

  25 Aug 2007; Raúl Porcel <armin76@gentoo.org> glib-2.12.13.ebuild:
  alpha/ia64/x86 stable wrt #190019

  24 Aug 2007; Wulf C. Krueger <philantrop@gentoo.org> glib-2.12.13.ebuild:
  Marked stable on amd64 as per bug 190019.

  24 Aug 2007; Gustavo Zacarias <gustavoz@gentoo.org> glib-2.12.13.ebuild:
  Stable on sparc wrt #190019

  06 Aug 2007; Joshua Kinard <kumba@gentoo.org> glib-2.12.12.ebuild:
  Stable on mips, per #185823.

  23 Jul 2007; nixnut <nixnut@gentoo.org> glib-2.12.12.ebuild:
  Stable on ppc wrt bug 185614

  19 Jul 2007; Christoph Mende <angelos@gentoo.org> glib-2.12.12.ebuild:
  Stable on amd64 wrt bug #185614

  18 Jul 2007; Raúl Porcel <armin76@gentoo.org> glib-2.12.12.ebuild:
  alpha/ia64/x86 stable wrt #185614

  17 Jul 2007; Jeroen Roovers <jer@gentoo.org> glib-2.12.12.ebuild:
  Stable for HPPA (bug #185614).

  17 Jul 2007; Markus Rothe <corsair@gentoo.org> glib-2.12.12.ebuild:
  Stable on ppc64; bug #185614

  17 Jul 2007; Gustavo Zacarias <gustavoz@gentoo.org> glib-2.12.12.ebuild:
  Stable on sparc wrt #185614

*glib-2.12.13 (16 Jul 2007)

  16 Jul 2007; Mart Raudsepp <leio@gentoo.org> +glib-2.12.13.ebuild:
  Version bump

  06 Jul 2007; Daniel Gryniewicz <dang@gentoo.org>
  +files/glib-2.12.12-fbsd.patch, glib-2.12.12.ebuild:
  Fix gmodule issues on fbsd; bug #184301

  27 Jun 2007; Mike Frysinger <vapier@gentoo.org>
  +files/glib-1.2.10-automake.patch, glib-1.2.10-r5.ebuild:
  Fixup autotool handling #168198.

  05 Jun 2007; Daniel Gryniewicz <dang@gentoo.org> glib-2.12.12.ebuild:
  Add back elibtoolize for fbsd

*glib-2.12.12 (05 Jun 2007)

  05 Jun 2007; Mart Raudsepp <leio@gentoo.org> +glib-2.12.12.ebuild:
  Version bump

  02 Jun 2007; Mart Raudsepp <leio@gentoo.org> -files/glib-2.12.4-gtimer-fix.patch,
  -files/glib-2.12.4-tests_pthread.patch, -files/glib-2-macos.patch,
  -glib-2.12.4-r1.ebuild, -glib-2.12.6.ebuild, -glib-2.12.7.ebuild:
  Remove redundant versions

  02 Jun 2007; Brent Baude <ranger@gentoo.org> glib-2.12.11.ebuild:
  Marking glib-2.12.11 ppc stable for bug #171107

  31 May 2007; Jeroen Roovers <jer@gentoo.org> glib-2.12.11.ebuild:
  Stable for HPPA (bug #171107).

  30 May 2007; Brent Baude <ranger@gentoo.org> glib-2.12.11.ebuild:
  Marking glib-2.12.11 ppc64 stable for bug 171107

  30 May 2007; Daniel Gryniewicz <dang@gentoo.org> glib-2.12.11.ebuild:
  Marked stable on amd64 for bug #171107

  30 May 2007; Raúl Porcel <armin76@gentoo.org> glib-2.12.11.ebuild:
  alpha/ia64 stable wrt #171107

  29 May 2007; Andrej Kacian <ticho@gentoo.org> glib-2.12.11.ebuild:
  Stable on x86, bug #171107.

  29 May 2007; Gustavo Zacarias <gustavoz@gentoo.org> glib-2.12.11.ebuild:
  Stable on sparc wrt #171107

  27 May 2007; Joshua Kinard <kumba@gentoo.org> glib-2.12.11.ebuild:
  Stable on mips.

  12 May 2007; Joshua Kinard <kumba@gentoo.org> glib-2.12.9.ebuild:
  Stable on mips for #163678.

  25 Apr 2007; Daniel Gryniewicz <dang@gentoo.org> glib-2.12.9.ebuild,
  glib-2.12.11.ebuild:
  Remove elibtoolize; it's not needed anymore, and it was causing problems
  with automake mismatches

  22 Mar 2007; Chris Gianelloni <wolf31o2@gentoo.org> glib-2.12.9.ebuild:
  Stable on alpha/ia64/ppc wrt bug #163678.

  15 Mar 2007; Markus Rothe <corsair@gentoo.org> glib-2.12.9.ebuild:
  Stable on ppc64; bug #163678

  15 Mar 2007; Gustavo Zacarias <gustavoz@gentoo.org> glib-2.12.9.ebuild:
  Stable on sparc wrt #163678

  15 Mar 2007; Jeroen Roovers <jer@gentoo.org> glib-2.12.9.ebuild:
  Stable for HPPA (bug #163678).

*glib-2.12.11 (14 Mar 2007)

  14 Mar 2007; Daniel Gryniewicz <dang@gentoo.org> +glib-2.12.11.ebuild:
  Bump to 2.12.11
  	- assorted bug fixes

  14 Mar 2007; Simon Stelling <blubb@gentoo.org> glib-2.12.9.ebuild:
  stable on amd64; bug 163678

  14 Mar 2007; Christian Faulhammer <opfer@gentoo.org> glib-2.12.9.ebuild:
  stable x86, bug 163678

  03 Mar 2007; Raphael Marichez <falco@gentoo.org> glib-1.2.10-r5.ebuild:
  Fix as-needed patch mess up reported by Daniel Glöckner (bug #166374)

  11 Feb 2007; Fabian Groffen <grobian@gentoo.org> glib-1.2.10-r5.ebuild,
  glib-2.10.3-r1.ebuild, glib-2.12.4-r1.ebuild, glib-2.12.6.ebuild,
  glib-2.12.7.ebuild, glib-2.12.9.ebuild:
  Dropped ppc-macos keyword, see you in prefix

  04 Feb 2007; Markus Rothe <corsair@gentoo.org> glib-2.12.7.ebuild:
  Stable on ppc64; bug #164978

  03 Feb 2007; Andrej Kacian <ticho@gentoo.org> glib-2.12.7.ebuild:
  Stable on x86, bug #164978.

  03 Feb 2007; Jeroen Roovers <jer@gentoo.org> glib-2.12.7.ebuild:
  Stable for HPPA (bug #164978).

  03 Feb 2007; Simon Stelling <blubb@gentoo.org> glib-2.12.7.ebuild:
  stable on amd64

  03 Feb 2007; Tobias Scherbaum <dertobi123@gentoo.org> glib-2.12.7.ebuild:
  Stable on ppc wrt bug #164978.

  03 Feb 2007; Saleem Abdulrasool <compnerd@gentoo.org>
  glib-1.2.10-r5.ebuild:
  Add patch for as-needed (bug #133818)

  02 Feb 2007; Gustavo Zacarias <gustavoz@gentoo.org> glib-2.12.7.ebuild:
  Stable on sparc wrt #164978

*glib-2.12.9 (17 Jan 2007)

  17 Jan 2007; Mart Raudsepp <leio@gentoo.org> +glib-2.12.9.ebuild:
  Version bump

  05 Jan 2007; Mart Raudsepp <leio@gentoo.org> glib-2.8.6.ebuild, glib-2.10.3.ebuild,
  glib-2.10.3-r1.ebuild, glib-2.12.4-r1.ebuild, glib-2.12.6.ebuild:
  Remove debug.eclass usage, bug 160095

  05 Jan 2007; Mart Raudsepp <leio@gentoo.org>
  -files/glib-2.12.5-gkeyfile-gnomevfs-mime.patch, -glib-2.8.4.ebuild,
  -glib-2.8.5.ebuild, -glib-2.12.5-r1.ebuild:
  Remove some redundant versions

*glib-2.12.7 (05 Jan 2007)

  05 Jan 2007; Mart Raudsepp <leio@gentoo.org> +glib-2.12.7.ebuild:
  New release

*glib-2.12.6 (21 Dec 2006)

  21 Dec 2006; Marinus Schraal <foser@gentoo.org> glib-2.12.6.ebuild :
  New release

*glib-2.12.5-r1 (20 Dec 2006)

  20 Dec 2006; Mart Raudsepp <leio@gentoo.org>
  +files/glib-2.12.5-gkeyfile-gnomevfs-mime.patch, +glib-2.12.5-r1.ebuild:
  Fix file association from MIME types, bug 158646

*glib-2.12.5 (19 Dec 2006)

  19 Dec 2006; Luis Medinas <metalgod@gentoo.org> +glib-2.12.5.ebuild:
  Version Bump. Remove macosx and freebsd patches that is included in this
  release.

  09 Dec 2006; Bryan Østergaard <kloeri@gentoo.org> glib-2.12.4-r1.ebuild:
  Stable on Alpha.

  01 Dec 2006; Gustavo Zacarias <gustavoz@gentoo.org> glib-2.12.4-r1.ebuild:
  Stable on hppa wrt #156572

  01 Dec 2006; Markus Rothe <corsair@gentoo.org> glib-2.12.4-r1.ebuild:
  Stable on ppc64; bug #156572

  01 Dec 2006; Gustavo Zacarias <gustavoz@gentoo.org> glib-2.12.4-r1.ebuild:
  Stable on sparc wrt #156572

  30 Nov 2006; Tobias Scherbaum <dertobi123@gentoo.org>
  glib-2.12.4-r1.ebuild:
  ppc stable, bug #156572

  30 Nov 2006; Christian Faulhammer <opfer@gentoo.org>
  glib-2.12.4-r1.ebuild:
  stable x86, bug #156572

  29 Nov 2006; Olivier Crête <tester@gentoo.org> glib-2.12.4-r1.ebuild:
  Stable on amd64 for bugs #156572

  05 Nov 2006; John N. Laliberte <allanonjl@gentoo.org> -glib-2.6.5.ebuild:
  remove older glib, fixes #153930

  03 Nov 2006; Fabian Groffen <grobian@gentoo.org> glib-1.2.10-r5.ebuild,
  glib-2.6.5.ebuild, glib-2.8.4.ebuild, glib-2.8.5.ebuild,
  glib-2.8.6.ebuild, glib-2.10.3.ebuild:
  Dropped ppc-macos, see you in prefix.

*glib-2.10.3-r1 (03 Nov 2006)

  03 Nov 2006; John N. Laliberte <allanonjl@gentoo.org>
  +glib-2.10.3-r1.ebuild:
  apply static lib fix to 2.10.x as well.

*glib-2.12.4-r1 (03 Nov 2006)

  03 Nov 2006; John N. Laliberte <allanonjl@gentoo.org> -glib-2.12.0.ebuild,
  -glib-2.12.1.ebuild, -glib-2.12.2.ebuild, -glib-2.12.3.ebuild,
  -glib-2.12.4.ebuild, +glib-2.12.4-r1.ebuild:
  add --enable-static so we always build static libs.  fixes #153807

  24 Oct 2006; Roy Marples <uberlord@gentoo.org> glib-2.12.4.ebuild:
  Added ~sparc-fbsd keyword.

  19 Oct 2006; Bryan Østergaard <kloeri@gentoo.org> glib-2.10.3.ebuild:
  Stable on Alpha.

  15 Oct 2006; Mart Raudsepp <leio@gentoo.org>
  +files/glib-2.12.4-tests_pthread.patch, glib-2.12.4.ebuild:
  Fix pthread related build failure on Gentoo/FreeBSD, bug #150583

  09 Oct 2006; Mart Raudsepp <leio@gentoo.org>
  +files/glib-2.12.4-gtimer-fix.patch, glib-2.12.4.ebuild:
  Fix gtimer build on Gentoo/FreeBSD, bug #150557

*glib-2.12.4 (06 Oct 2006)

  06 Oct 2006; Mart Raudsepp <leio@gentoo.org> +glib-2.12.4.ebuild:
  Version bump

  13 Sep 2006; Aron Griffis <agriffis@gentoo.org> glib-2.10.3.ebuild,
  glib-2.12.0.ebuild, glib-2.12.1.ebuild, glib-2.12.2.ebuild,
  glib-2.12.3.ebuild:
  Propogate ia64-atomic-ops.patch to more ebuilds

*glib-2.12.3 (04 Sep 2006)

  04 Sep 2006; Saleem Abdulrasool <compnerd@gentoo.org> +glib-2.12.3.ebuild:
  version bump from upstream (bug #146208)

  18 Aug 2006; Tim Yamin <plasmaroo@gentoo.org> glib-2.10.3.ebuild,
  +files/glib-2.10.3-ia64-atomic-ops.patch:
  Fix compile bug on IA64 with GCC < 4.1.

  16 Aug 2006; Markus Rothe <corsair@gentoo.org> glib-2.10.3.ebuild:
  Stable on ppc64

  26 Jul 2006; Joshua Kinard <kumba@gentoo.org> glib-2.10.3.ebuild:
  Marking stable on mips (dep needed by gnome-vfs).

*glib-2.12.1 (24 Jul 2006)

  24 Jul 2006; Stefan Schweizer <genstef@gentoo.org> +glib-2.12.1.ebuild:
  version bump

  17 Jul 2006; Daniel Gryniewicz <dang@gentoo.org> glib-2.10.3.ebuild:
  Marked stable on amd64 for bug #139612

  16 Jul 2006; Tobias Scherbaum <dertobi123@gentoo.org> glib-2.10.3.ebuild:
  hppa stable, bug #139612

  14 Jul 2006; Tobias Scherbaum <dertobi123@gentoo.org> glib-2.10.3.ebuild:
  ppc stable, bug #139612

  12 Jul 2006; Chris Gianelloni <wolf31o2@gentoo.org> glib-2.10.3.ebuild:
  Stable on x86 wrt bug #139612.

  10 Jul 2006; Gustavo Zacarias <gustavoz@gentoo.org> glib-2.10.3.ebuild:
  Stable on sparc wrt #139612

*glib-2.12.0 (05 Jul 2006)

  05 Jul 2006; Stefan Schweizer <genstef@gentoo.org> +glib-2.12.0.ebuild:
  version bump

  10 Jun 2006; Mike Frysinger <vapier@gentoo.org>
  +files/glib-1.2.10-configure-LANG.patch, glib-1.2.10-r5.ebuild:
  Fix building in et_EE locales #133679 by Andres Toomsalu.

*glib-2.10.3 (26 May 2006)

  26 May 2006; John N. Laliberte <allanonjl@gentoo.org>
  -glib-2.10.1-r1.ebuild, -glib-2.10.2.ebuild, +glib-2.10.3.ebuild:
  new version

  07 May 2006; Diego Pettenò <flameeyes@gentoo.org> Manifest:
  Remove .orig file from manifest.

  06 May 2006; Diego Pettenò <flameeyes@gentoo.org> glib-2.10.2.ebuild:
  Add ~x86-fbsd keyword.

  23 Apr 2006; Diego Pettenò <flameeyes@gentoo.org> glib-2.8.6.ebuild,
  glib-2.10.2.ebuild:
  Don't remove charset.alias conditionally. Wherever you are, if that is
  generated it has to be removed.

  21 Apr 2006; Thomas Cort <tcort@gentoo.org> glib-2.8.6.ebuild:
  Stable on alpha wrt Bug #126321.

  15 Apr 2006; Stephen P. Becker <geoman@gentoo.org> glib-2.8.6.ebuild:
  stable on mips

  13 Apr 2006; Diego Pettenò <flameeyes@gentoo.org> glib-2.8.6.ebuild,
  glib-2.10.2.ebuild:
  Add dependency over virtual/libiconv as needed.

  12 Apr 2006; Diego Pettenò <flameeyes@gentoo.org> glib-1.2.10-r5.ebuild:
  Add ~x86-fbsd keyword.

*glib-2.10.2 (10 Apr 2006)

  10 Apr 2006; Marinus Schraal <foser@gentoo.org> glib-2.10.2.ebuild :
  New release

  31 Mar 2006; Diego Pettenò <flameeyes@gentoo.org> glib-2.8.6.ebuild:
  Drop virtual/libc dep, fix gettext and libintl dependency and add ~x86-fbsd.

*glib-2.10.1-r1 (27 Mar 2006)

  27 Mar 2006; Saleem Abdulrasool <compnerd@gentoo.org>
  +glib-2.10.1-r1.ebuild:
  Revbump with fix for debug (bug #127712)

  19 Mar 2006; <truedfx@gentoo.org> glib-1.2.10-r5.ebuild:
  Use portability eclass for NetBSD/OpenBSD compatibility

  19 Mar 2006; Markus Rothe <corsair@gentoo.org> glib-2.8.6.ebuild:
  Stable on ppc64

  18 Mar 2006; Olivier Crête <tester@gentoo.org> glib-2.8.6.ebuild:
  Stable on amd64 per bug #126321

  17 Mar 2006; Chris Gianelloni <wolf31o2@gentoo.org> glib-2.8.6.ebuild:
  Stable on x86 wrt bug #126321.

  17 Mar 2006; Tobias Scherbaum <dertobi123@gentoo.org> glib-2.8.6.ebuild:
  Stable gnome-2.12.3 for ppc, bug #126321

  14 Mar 2006; Gustavo Zacarias <gustavoz@gentoo.org> glib-2.8.6.ebuild:
  Stable on hppa

*glib-2.10.1 (13 Mar 2006)

  13 Mar 2006; Saleem Abdulrasool <compnerd@gentoo.org> +glib-2.10.1.ebuild:
  Version bump from upstream

  13 Mar 2006; Gustavo Zacarias <gustavoz@gentoo.org> glib-2.8.6.ebuild:
  Stable on sparc

  26 Feb 2006; Joshua Kinard <kumba@gentoo.org> glib-2.8.5.ebuild:
  Marked stable on mips.

*glib-2.8.6 (08 Feb 2006)

  08 Feb 2006; Saleem Abdulrasool <compnerd@gentoo.org> +glib-2.8.6.ebuild:
  Version bump from upstream for 2.12.3

  04 Feb 2006; Aron Griffis <agriffis@gentoo.org> glib-2.8.5.ebuild:
  Mark 2.8.5 stable on alpha

  22 Jan 2006; Markus Rothe <corsair@gentoo.org> glib-2.8.5.ebuild:
  Stable on ppc64

  22 Jan 2006; <dang@gentoo.org> glib-2.8.5.ebuild:
  Marked stable on amd64 per bug #119634

  22 Jan 2006; Gustavo Zacarias <gustavoz@gentoo.org> glib-2.8.5.ebuild:
  Stable on sparc

  22 Jan 2006; Tobias Scherbaum <dertobi123@gentoo.org> glib-2.8.5.ebuild:
  Marked ppc stable for bug #119634; Stabilize Gnome-2.12.2

  22 Jan 2006; Joshua Jackson <tsunam@gentoo.org> glib-2.8.5.ebuild:
  Stable on x86 for bug #119634; Stabilize Gnome-2.12.2

*glib-2.8.5 (08 Jan 2006)

  08 Jan 2006; <dang@gentoo.org> -glib-2.8.3.ebuild, +glib-2.8.5.ebuild:
  New upstream version; remove 2.8.3, since 2.8.4 is stable

  08 Jan 2006; Tobias Scherbaum <dertobi123@gentoo.org> glib-2.8.4.ebuild:
  ppc stable, bug #117505

  04 Jan 2006; Mark Loeser <halcy0n@gentoo.org> glib-2.8.4.ebuild:
  Stable on x86; bug #117505

  03 Jan 2006; Fernando J. Pereda <ferdy@gentoo.org> glib-2.8.4.ebuild:
  Stable on alpha wrt bug #117505

  03 Jan 2006; Luis Medinas <metalgod@gentoo.org> glib-2.8.4.ebuild:
  Stable on amd64. For bug #117505.

  03 Jan 2006; Markus Rothe <corsair@gentoo.org> glib-2.8.4.ebuild:
  Stable on ppc64

  03 Jan 2006; Gustavo Zacarias <gustavoz@gentoo.org> glib-2.8.4.ebuild:
  Stable on sparc wrt #117505

  03 Jan 2006; Fabian Groffen <grobian@gentoo.org> glib-2.8.4.ebuild:
  Marked ppc-macos (bug #117505)

*glib-2.8.4 (18 Nov 2005)

  18 Nov 2005; Leonardo Boshell <leonardop@gentoo.org> +glib-2.8.4.ebuild:
  New version.

  22 Oct 2005; Fabian Groffen <grobian@gentoo.org>
  +files/glib-2.8.3-macos.patch, glib-2.8.3.ebuild:
  Removed unnecessary conditional operations for ppc-macos (bug #110127).
  Added patch for ppc-macos that forces use of emulated poll(), since the OSX
  provided one is buggy as hell.  Patch provided by and thanks to
  <emanuele.giaquinta %40 gmail.com>

*glib-2.8.3 (20 Oct 2005)

  20 Oct 2005; Leonardo Boshell <leonardop@gentoo.org> +glib-2.8.3.ebuild:
  New version.

  16 Oct 2005; Fabian Groffen <grobian@gentoo.org> glib-2.8.2.ebuild:
  Removing patch invocation, as it seems to be no longer necessary (bug #109459)

*glib-2.8.2 (27 Sep 2005)

  27 Sep 2005; Leonardo Boshell <leonardop@gentoo.org> -glib-2.6.4.ebuild,
  -glib-2.8.1.ebuild, +glib-2.8.2.ebuild:
  New version. Avoid passing --disable-debug.

  10 Sep 2005; Aron Griffis <agriffis@gentoo.org> glib-2.6.5.ebuild:
  Mark 2.6.5 stable on alpha

  07 Sep 2005; Aaron Walker <ka0ttic@gentoo.org> glib-2.6.5.ebuild:
  Stable on mips.

  03 Sep 2005; Markus Rothe <corsair@gentoo.org> glib-2.6.5.ebuild:
  Stable on ppc64

  02 Sep 2005; Michael Hanselmann <hansmi@gentoo.org> glib-2.6.5.ebuild:
  Stable on ppc.

  31 Aug 2005; Herbie Hopkins <herbs@gentoo.org> glib-2.6.5.ebuild:
  Stable on amd64.

  26 Aug 2005; Gustavo Zacarias <gustavoz@gentoo.org> glib-2.6.5.ebuild:
  Stable on sparc

  25 Aug 2005; Aron Griffis <agriffis@gentoo.org> glib-2.6.5.ebuild:
  stable on ia64

  25 Aug 2005; Leonardo Boshell <leonardop@gentoo.org> glib-2.6.5.ebuild:
  Stable on x86.

*glib-2.8.1 (24 Aug 2005)

  24 Aug 2005; Leonardo Boshell <leonardop@gentoo.org> -glib-2.8.0.ebuild,
  +glib-2.8.1.ebuild:
  New version.

*glib-2.8.0 (15 Aug 2005)

  15 Aug 2005; Leonardo Boshell <leonardop@gentoo.org> glib-2.8.0.ebuild:
  New version.

  10 Aug 2005; Aaron Walker <ka0ttic@gentoo.org> glib-2.6.4.ebuild:
  Stable on mips.

  02 Aug 2005; Simon Stelling <blubb@gentoo.org> glib-2.6.4.ebuild:
  stable on amd64

*glib-2.7.4 (31 Jul 2005)

  31 Jul 2005; Marinus Schraal <foser@gentoo.org> glib-2.7.4.ebuild :
  New test release

  31 Jul 2005; Tobias Scherbaum <dertobi123@gentoo.org> glib-2.6.4.ebuild:
  ppc stable

  16 Jul 2005; Diego Pettenò <flameeyes@gentoo.org> glib-1.2.10-r5.ebuild:
  Don't use -ldl when using FreeBSD's libc, as it's not present.

  02 Jul 2005; Bryan Østergaard <kloeri@gentoo.org> glib-2.6.4.ebuild:
  Stable on alpha.

  25 Jun 2005; Markus Rothe <corsair@gentoo.org> glib-2.6.4.ebuild:
  Stable on ppc64

  22 Jun 2005; Gustavo Zacarias <gustavoz@gentoo.org> glib-2.6.4.ebuild:
  Stable on sparc

*glib-2.6.5 (22 Jun 2005)

  22 Jun 2005; Marinus Schraal <foser@gentoo.org> glib-2.6.5.ebuild :
  Add specific docbook dtd dep

  19 May 2005; Rene Nussbaumer <killerfox@gentoo.org> glib-2.6.3.ebuild:
  Stable on hppa

  25 Apr 2005; Markus Rothe <corsair@gentoo.org> glib-2.6.3.ebuild:
  Stable on ppc64

  20 Apr 2005; Simon Stelling <blubb@gentoo.org> glib-2.6.3.ebuild:
  stable on amd64

  18 Apr 2005; Michael Hanselmann <hansmi@gentoo.org> glib-2.6.3.ebuild:
  Stable on ppc.

  07 Apr 2005; Daniel Ostrow <dostrow@gentoo.org> glib-1.2.10-r5.ebuild:
  More hardened ppc64 stuff.

  06 Apr 2005; Daniel Ostrow <dostrow@gentoo.org> glib-2.6.3.ebuild:
  Patches for ppc64 hardened

  02 Apr 2005; Stephen P. Becker <geoman@gentoo.org> glib-2.6.2-r1.ebuild:
  stable on mips

  01 Apr 2005; Simon Stelling <blubb@gentoo.org> glib-2.6.2-r1.ebuild:
  stable on amd64

  31 Mar 2005; Aron Griffis <agriffis@gentoo.org> glib-2.6.3.ebuild:
  stable on ia64

  26 Mar 2005; Bryan Østergaard <kloeri@gentoo.org> glib-2.6.2-r1.ebuild:
  Stable on alpha.

  08 Mar 2005; Gustavo Zacarias <gustavoz@gentoo.org> glib-2.6.3.ebuild:
  Stable on sparc

  07 Mar 2005; Markus Rothe <corsair@gentoo.org> glib-2.6.2-r1.ebuild:
  Stable on ppc64

*glib-2.6.3 (02 Mar 2005)

  02 Mar 2005; foser <foser@gentoo.org> glib-2.6.3.ebuild :
  New release

  12 Feb 2005; Lina Pezzella <j4rg0n@gentoo.org> glib-2.6.0.ebuild,
  glib-2.6.1.ebuild, glib-2.6.2-r1.ebuild:
  Applied pthread fix to 2.6 ebuilds.

  12 Feb 2005; Lina Pezzella <j4rg0n@gentoo.org> +files/glib-2-macos.patch,
  glib-2.4.8.ebuild:
  Fix for Bug #73708. Kudos to kito for the append-ldflags fix.

*glib-2.6.2-r1 (11 Feb 2005)

  11 Feb 2005; foser <foser@gentoo.org> glib-2.6.2-r1.ebuild :
  Enable static build by default for pam
  Add epunt for cxx checks (#79485)

  06 Feb 2005; Joshua Kinard <kumba@gentoo.org> glib-2.4.8.ebuild:
  Marked stable on mips.

*glib-2.6.2 (05 Feb 2005)

  05 Feb 2005; Joe McCann <joem@gentoo.org> +glib-2.6.2.ebuild:
  New upstream release

  02 Feb 2005; Lina Pezzella <j4rg0n@gentoo.org> glib-1.2.10-r5.ebuild:
  Stable ppc-macos

*glib-2.6.1 (16 Jan 2005)

  16 Jan 2005; foser <foser@gentoo.org> glib-2.6.1.ebuild :
  New release

  01 Jan 2005; Lina Pezzella <j4rg0n@gentoo.org> glib-1.2.10-r5.ebuild:
  ppc-macos needs to call darwintoolize and gnuconfig_update. Bug #75209
  Thanks to Lars T. Mikkelsen for this information.

  29 Dec 2004; Ciaran McCreesh <ciaranm@gentoo.org> :
  Change encoding to UTF-8 for GLEP 31 compliance

  29 Dec 2004; Tom Gall <tgall@gentoo.org> glib-1.2.10-r5.ebuild:
  add back in call for gnuconfig_update bug #76039

  23 Dec 2004; Guy Martin <gmsoft@gentoo.org> glib-2.4.8.ebuild:
  Stable on hppa.

  21 Dec 2004; Gustavo Zacarias <gustavoz@gentoo.org> glib-2.4.8.ebuild:
  Stable on sparc

  21 Dec 2004; Bryan Østergaard <kloeri@gentoo.org> glib-2.4.8.ebuild:
  Stable on alpha.

  20 Dec 2004; Dylan Carlson <absinthe@gentoo.org> glib-2.4.8.ebuild:
  Stable on amd64.

  19 Dec 2004; Mike Gardiner <obz@gentoo.org> glib-2.4.8.ebuild:
  Keyworded x86 and ppc for GNOME 2.8.1

  18 Dec 2004; Dylan Carlson <absinthe@gentoo.org> glib-2.6.0.ebuild:
  Fixed SRC_URI.

*glib-2.6.0 (18 Dec 2004)

  18 Dec 2004; foser <foser@gentoo.org> glib-2.6.0.ebuild :
  New release, add USE static

  17 Dec 2004; Mike Frysinger <vapier@gentoo.org> glib-1.2.10-r5.ebuild:
  Clean up ebuild and dont bother calling elibtoolize anymore (since it doesnt
  actually do anything).

  16 Dec 2004; Dylan Carlson <absinthe@gentoo.org> glib-2.4.7.ebuild:
  Stable on amd64.

  06 Dec 2004; Gustavo Zacarias <gustavoz@gentoo.org> glib-2.4.7.ebuild:
  Stable on sparc

*glib-2.4.8 (02 Dec 2004)

  02 Dec 2004; foser <foser@gentoo.org> glib-2.4.8.ebuild :
  New minor bugfix release

  11 Nov 2004; Mike Gardiner <obz@gentoo.org> glib-2.4.6.ebuild:
  Keyworded ppc for GNOME 2.8

  07 Nov 2004; Joshua Kinard <kumba@gentoo.org> glib-2.4.6.ebuild:
  Marked stable on mips.

  19 Oct 2004; Dylan Carlson <absinthe@gentoo.org> glib-2.4.6.ebuild:
  Stable on amd64.

  12 Oct 2004; Gustavo Zacarias <gustavoz@gentoo.org> glib-2.4.6.ebuild:
  Stable on sparc

  11 Oct 2004; Guy Martin <gmsoft@gentoo.org> glib-2.4.6.ebuild:
  Marked stable on hppa.

  11 Oct 2004; Mamoru KOMACHI <usata@gentoo.org> glib-1.2.10-r5.ebuild:
  Fixed shared libraries compilation on macos. This closes bug #60580.

  10 Oct 2004; Bryan Østergaard <kloeri@gentoo.org> glib-2.4.6.ebuild:
  Stable on alpha.

*glib-2.4.7 (09 Oct 2004)

  09 Oct 2004; foser <foser@gentoo.org> glib-2.4.7.ebuild :
  New release

  29 Sep 2004; Lina Pezzella <j4rg0n@gentoo.org> glib-2.4.4.ebuild, glib-2.4.5.ebuild, glib-2.4.6.ebuild:
  Updated to not install charset.alias on macos.

  19 Sep 2004; Joshua Kinard <kumba@gentoo.org> glib-2.4.5.ebuild:
  Marked stable on mips.

  06 Sep 2004; Guy Martin <gmsoft@gentoo.org> glib-2.4.5.ebuild:
  Marked stable on hppa.

  06 Sep 2004; Bryan Østergaard <kloeri@gentoo.org> glib-2.4.5.ebuild:
  Stable on alpha.

  31 Aug 2004; Michael Hanselmann <hansmi@gentoo.org> glib-1.2.10-r5.ebuild:
  Fixed bug #61490 by using glibtoolize on Mac OS X instead of elibtoolize.

  20 Aug 2004; Gustavo Zacarias <gustavoz@gentoo.org> glib-2.4.5.ebuild:
  Stable on sparc

*glib-2.4.6 (19 Aug 2004)

  19 Aug 2004; foser <foser@gentoo.org> glib-2.4.6.ebuild :
  New release

  08 Aug 2004; Bryan Østergaard <kloeri@gentoo.org> glib-2.4.4.ebuild:
  Stable on alpha.

  07 Aug 2004; Travis Tilley <lv@gentoo.org> glib-2.4.4.ebuild:
  stable on amd64

  07 Aug 2004; Michael Hanselmann <hansmi@gentoo.org> glib-1.2.10-r5.ebuild:
  Added to ~macos.

  05 Aug 2004; Gustavo Zacarias <gustavoz@gentoo.org> glib-2.4.4.ebuild:
  Stable on sparc

  05 Aug 2004; Guy Martin <gmsoft@gentoo.org> glib-2.4.4.ebuild:
  Stable on hppa.

*glib-2.4.5 (31 Jul 2004)

  31 Jul 2004; <spider@gentoo.org> +glib-2.4.5.ebuild:
  versionbump

  31 Jul 2004; <spider@gentoo.org> glib-2.4.4.ebuild:
  stable on x86 for gnome 2.6.2

  27 Jul 2004; <agriffis@gentoo.org> glib-2.4.1.ebuild:
  stable on ia64

*glib-2.4.4 (12 Jul 2004)

  12 Jul 2004; <spider@gentoo.org> +glib-2.4.4.ebuild:
  versionbump

  01 Jul 2004; Jeremy Huddleston <eradicator@gentoo.org>
  glib-1.2.10-r5.ebuild, glib-2.2.3.ebuild, glib-2.4.0.ebuild,
  glib-2.4.1.ebuild, glib-2.4.2.ebuild:
  virtual/glibc -> virtual/libc

  30 Jun 2004; Guy Martin <gmsoft@gentoo.org> glib-2.4.1.ebuild:
  Marked stable on hppa.

  28 Jun 2004; Tom Gall <tgall@gentoo.org> glib-2.4.2.ebuild:
  stable on ppc64 bug #54792

  19 Jun 2004; Gustavo Zacarias <gustavoz@gentoo.org> glib-2.4.1.ebuild:
  sparc stable

  16 Jun 2004; Bryan Østergaard <kloeri@gentoo.org> glib-2.4.1.ebuild:
  Stable on alpha.

*glib-2.4.2 (15 Jun 2004)

  15 Jun 2004; foser <foser@gentoo.org> glib-2.4.2.ebuild :
  New release

  05 Jun 2004; <tuxus@gentoo.org> glib-2.4.1.ebuild:
  Stable on mips

  11 May 2004; Michael McCabe <randy@gentoo.org> glib-1.2.10-r5.ebuild:
  s390 Spefific Changes

  10 May 2004; Michael McCabe <randy@gentoo.org> glib-2.4.1.ebuild:
  Stable on s390

*glib-2.4.1 (04 May 2004)

  04 May 2004; foser <foser@gentoo.org> glib-2.4.1.ebuild :
  New release

  02 May 2004; Tom Gall <tgall@gentoo.org> glib-1.2.10-r5.ebuild :
  need gnuconfig_update on ppc64 bug #49795

  28 Apr 2004; Jon Portnoy <avenj@gentoo.org> glib-2.4.0.ebuild :
  Stable on AMD64.

  23 Apr 2004; Aron Griffis <agriffis@gentoo.org> glib-1.2.10-r5.ebuild:
  Instead of being choosy about what arches to use -fPIC on, just use it on all
  of them. This fixes bug 48839 (pam fails to build on ia64)

  19 Apr 2004; Jon Portnoy <avenj@gentoo.org> glib-1.2.10-r5.ebuild :
  Call gnuconfig_update on AMD64 to fix AMD64 bootstrap breakage.
  See the comments in the ebuild and bug #47950 for more information.

  17 Apr 2004; Guy Martin <gmsoft@gentoo.org> glib-1.2.10-r5.ebuild:
  Added -fPIC to CFLAGS for hppa.

  14 Apr 2004; Stephen P. Becker <geoman@gentoo.org> glib-2.4.0.ebuild:
  Marked stable on mips.

  08 Apr 2004; Joshua Kinard <kumba@gentoo.org> glib-1.2.10-r5.ebuild,
  files/glib-1.2.10-gcc34-fix.patch:
  Added a patch to allow glibc-1.2.10-r5 compile under gcc-3.4.x. Closes Bug
  #47047.

  22 Mar 2004; foser <foser@gentoo.org> glib-2.4.0.ebuild :
  Fix a very dumb mistake by mixing up src_compile & src_install
  Thnx to joem on IRC for the notificiation
  Probably fixes #45205 & #45348

*glib-2.4.0 (18 Mar 2004)

  18 Mar 2004; foser <foser@gentoo.org> glib-2.4.0.ebuild :
  New minor release
  Minor ebuilds fixes, correct license

  05 Mar 2004; Tom Gall <tgall@gentoo.org> glib-2.2.3.ebuild:
  stable on ppc64

  04 Mar 2004; Brian Jackson <iggy@gentoo.org> glib-2.2.3.ebuild:
  add s390? around gtk-doc

  02 Jan 2004; Brad House <brad_mssw@gentoo.org> glib-1.2.10-r5.ebuild:
  elibtoolize appears to be broken now, manually run libtoolize

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

  08 Nov 2003; Todd Sunderlin <todd@gentoo.org> glib-2.2.3.ebuild:
  added sparc keyword

  22 Oct 2003; Bartosch Pixa <darkspecter@gentoo.org> glib-2.2.3.ebuild:
  set ppc in keywords

  17 Oct 2003; Aron Griffis <agriffis@gentoo.org> glib-2.2.3.ebuild:
  Stable on alpha

  13 Oct 2003; Mike Gardiner <obz@gentoo.org> glib-2.2.1-r1.ebuild,
  glib-2.2.1.ebuild, glib-2.2.2.ebuild, glib-2.2.3.ebuild:
  Added gettext DEPENDs re bug #28364

  05 Oct 2003; Mike Gardiner <obz@gentoo.org> glib-2.2.3.ebuild:
  Marked stable on x86

  23 Sep 2003; Bartosch Pixa <darkspecter@gentoo.org> glib-2.2.2.ebuild:
  set ppc in keywords

*glib-2.2.3 (27 Aug 2003)

  15 Nov 2003; Guy Martin <gmsoft@gentoo.org> glib-2.2.3.ebuild :
  Marked stable on hppa.

  27 Aug 2003; foser <foser@gentoo.org> glib-2.2.3.ebuild :
  New version, minor esthetic ebuild fixes

  08 Jul 2003; Alastair Tse <liquidx@gentoo.org> glib-2.2.1-r1.ebuild,
  glib-2.2.1.ebuild, glib-2.2.2.ebuild:
  allow USE='debug' to enable debuggign mode

  01 Jul 2003; Todd Sunderlin <todd@gentoo.org> glib-2.2.2.ebuild :
  set stable on sparc

*glib-2.2.2 (10 Jun 2003)

  23 Jul 2003; Guy Martin <gmsoft@gentoo.org> glib-2.2.2.ebuild :
  Marked stable on hppa.

  10 Jun 2003; foser <foser@gentoo.org> glib-2.2.2.ebuild :
  New version

*glib-2.2.1-r1 (29 May 2003)

  30 May 2003; Stanislav Brabec <utx@gentoo.org> glib-2.2.1-r1.ebuild:
  Package masked. Needs more testing in ~x86.

  29 May 2003; Stanislav Brabec <utx@gentoo.org> glib-2.2.1-r1.ebuild:
  Added env.d file setting G_BROKEN_FILENAMES (improves behavior with non UTF-8
  filenames).

*glib-2.2.1 (04 Feb 2003)

  13 Mar 2003; Olivier Reisch <doctomoe@gentoo.org> glib-2.2.1.ebuild :
  Marked ppc stable

  21 Feb 2003; Zach Welch <zwelch@gentoo.org> glib-1.2.10-r5.ebuild glib-2.2.1.ebuild :
  Added arm to keywords.

  30 Mar 2003; Christian Birchinger <joker@gentoo.org> glib-2.2.1.ebuild:
  Added sparc stable keyword

  16 Mar 2003; Jan Seidel <tuxus@gentoo.org> :
  Added mips to KEYWORDS

  25 Feb 2003; Guy Martin <gmsoft@gentoo.org> glib-2.2.1.ebuild :
  Added hppa to keywords.

  21 Feb 2003; Aron Griffis <agriffis@gentoo.org> glib-2.2.1.ebuild :
  Mark stable on alpha

  04 Feb 2003; Spider <spider@gentoo.org> glib-2.2.1.ebuild :
  new version, fix some and clean the old cruft DEBUG variable out
  

*glib-2.2.0 (22 Dec 2002)

  04 Mar 2003; Jason Wever <weeve@gentoo.org> glib-2.2.0.ebuild:
  Added sparc to keywords.

  04 Feb 2003; Spider <spider@gentoo.org> glib-2.2.0.ebuild :
  changed DEBUG to DEBUGBUILD

  01 Jan 2003; Aron Griffis <agriffis@gentoo.org> glib-2.2.0.ebuild :
  Add ~alpha to KEYWORDS

  25 Dec 2002; Martin Holzer <mholzer@gentoo.org> glib-2.2.0.ebuild ChangeLog :
  Fixed dep pkg-config. Closes #12678

  22 Dec 2002; foser <foser@gentoo.org> glib-2.2.0.ebuild :
  New version

  17 Dec 2002; Aron Griffis <agriffis@gentoo.org> glib-2.0.7.ebuild :
  Removed ~alpha because this version is definitely broken on alpha

  08 Dec 2002; Jack Morgan <jmorgan@gentoo.org> glib-2.0.7.ebuild :
  Changed ~sparc to sparc

  06 Dec 2002; Rodney Rees <manson@gentoo.org> : changed sparc ~sparc keywords
 

*glib-2.0.7 (04 Nov 2002)
  
  04 Feb 2003; Spider <spider@gentoo.org> glib-2.0.7.ebuild :
  move DEBUG to DEBUGBUILD

  11 Nov 2002; Spider <spider@gentoo.org> glib-2.0.7.ebuild :
  marked stable for x86
 
  04 Nov 2002; Spider <spider@gentoo.org> glib-2.0.7.ebuild 
  files/digest-glib-2.0.7 :  Whoppie, new version released and ready for 
  testing. bugfix release that is binary compatible.

  
*glib-1.2.10-r5 (26 Oct 2002)

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

  18 Jan 2003; Jan Seidel <tuxus@gentoo.org> :
  Added mips to keywords

  26 Oct 2002; Martin Schlemmer <azarah@gentoo.org > :
  Libtoolize the sucker.

*glib-2.0.6-r1 (4 aug 2002)

  04 Feb 2003; Spider <spider@gentoo.org> glib-2.0.6-r1.ebuild :
   move DEBUG to DEBUGBUILD

  13 Aug 2002; Pieter Van den Abeele <pvdabeel@gentoo.org> :
  Added ppc keyword

  4 Aug 2002; Spider <spider@gentoo.org> glib-2.0.6-r1.ebuild :
  remove debugging info, change build process
  
*glib-2.0.6 (4 Aug 2002)
  4 Aug 2002; Gabriele Giorgetti <stroke@gentoo.org> glib-2.0.6.ebuild:
  Version bump.

*glib-2.0.4-r1 (30 Jun 2002)
  23 Jul 2002; Calum Selkrik <cselkirk@gentoo.org> glib-2.0.4.ebuild-r1
  glib-2.0.4.ebuild glib-1.2.10-r4.ebuild glib-2.0.1-r6.ebuild :
  Added KEYWORDS="x86 ppc"
  Added RDEPEND to glib-1.2.10-r4.ebuild

  30 Jun 2002; Martin Schlemmer <azarah@gentoo.org> glib-2.0.4.ebuild-r1 :
  Try to fix bug #4190 with a fix for nautilus. Seems we have
  another libtool bug to recon with.

  http://bugzilla.gnome.org/show_bug.cgi?id=75635

*glib-2.0.4 (15 Jun 2002)
  15 Jun 2002; Spider <spider@gentoo.org> glib-2.0.4.ebuild :
  libtool fix with elibtoolize
  move deubg ot debug.eclass

*glib-2.0.2 (28 May 2002)
  28 May 2002; Spider <spider@gentoo.org> glib-2.0.2.ebuild: 
  new version

*glib-2.0.1-r6 (25 May 2002)

  25 May 2002; Karl Trygve Kalleberg <karltk@gentoo.org> glib-2.0.1-r6.ebuild files/digest-glib-2.0.1-r6:

  removed libtoolize from the ebuild, as it resulted in missing .so files.

  Removed glib-2.0.1-r5.ebuild files/digest-glib-2.0.1-r5

*glib-2.0.0-r5 (22 May 2002)
  22 May 2002; Spider <spider@gentoo.org> glib-2.0.1-r5.ebuild:
  return debug info into this for the upcoming gnome2 testing

  25 May 2002; Karl Trygve Kalleberg <karltk@gentoo.org> glib-2.0.1-r5.ebuild:
  
*glib-2.0.0-r4 (1 May 2002)
  1 May 2002 ; Spider <spider@gentoo.org> glib-2.0.1-r4.ebuild:
  remove libiconv again, this seems to have been a mistake as some other
  things break because of it. hope I didn't mess too much up in case
  of problems:
  
	remove libiconv, emerge glibc, log out and in again (needed for
	ld.so.conf/preload ) and you can emerge glib again. Sorry for the
	inconvenience.

*glib-2.0.0-r3 (1 MayApr 2002)
  1 May 2002 ; Spider <spider@gentoo.org> glib-2.0.1-r3.ebuild:
  add libiconv dependency for ppc
    
*glib-2.0.0-r2 (24 Apr 2002)
  24 Apr 2002 ; Spider <spider@gentoo.org> glib-2.0.1-r2.ebuild:
  Libtoolize 

*glib-2.0.0-r1 (11 Apr 2002)
  11 Apr 2002 ; Spider <spider@gentoo.org> glib-2.0.1-r1.ebuild:
  This is a release of the glib 2.0, new API makes it incompatible
  with glib 1.2 and thus you need both versions installed.

*glib-1.2.10-r4 (21 Mar 2002)

  21 Mar 2002; Seemant Kulleen <seemant@gentoo.org> glib-1.2.10-r4.ebuild :

  Fix to have html documentation handled by dohtml instead of dodoc.  Bug
  reported by stefan@mdy.univie.ac.at.

*glib-1.2.10-r3.ebuild (4 March 2002)

  4 March 2002; Donny Davies <woodchip@gentoo.org> glib-1.2.10-r3.ebuild :

  Fix to install libgmodule-1.2.so.0.0.10 mode 755.

*glib-1.3.14 (20 Feb 2002)

  20 Feb 2002; G.Bevin <gbevin@gentoo.org> :
  
  Added masked development version to use for development of additional portage
  tools.

*glib-1.2.10-r2 (20 Feb 2002)

  20 Feb 2002; G.Bevin <gbevin@gentoo.org> :
  
  Added binary compatibility slot for later.

*glib-1.2.10-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.