summaryrefslogtreecommitdiff
blob: a2f31937db73943125cdf9891c01636c3bede7a1 (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
# ChangeLog for dev-libs/glib
# Copyright 1999-2008 Gentoo Foundation; Distributed under the GPL v2
# $Header: /var/cvsroot/gentoo-x86/dev-libs/glib/ChangeLog,v 1.313 2008/03/11 03:27:20 leio Exp $

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