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
|
# ChangeLog for dev-python/pygobject
# Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
# $Header: /var/cvsroot/gentoo-x86/dev-python/pygobject/ChangeLog,v 1.235 2014/02/22 21:22:46 pacho Exp $
22 Feb 2014; Pacho Ramos <pacho@gentoo.org> pygobject-2.28.6-r55.ebuild:
Fix wrong commit, bug 502160
22 Feb 2014; Pacho Ramos <pacho@gentoo.org> pygobject-2.28.6-r55.ebuild,
pygobject-3.10.2.ebuild:
Fix wrong commit, bug 502160
22 Feb 2014; Akinori Hattori <hattya@gentoo.org> pygobject-3.8.3.ebuild:
ia64 stable wrt bug #494132
*pygobject-3.10.2 (24 Dec 2013)
24 Dec 2013; Pacho Ramos <pacho@gentoo.org> +pygobject-3.10.2.ebuild,
-pygobject-2.28.6-r54.ebuild:
Version bump for Gnome 3.10, drop old
22 Dec 2013; Jeroen Roovers <jer@gentoo.org> pygobject-2.28.6-r55.ebuild,
pygobject-3.8.3.ebuild:
Stable for HPPA (bug #478252).
08 Dec 2013; Pacho Ramos <pacho@gentoo.org> pygobject-2.28.6-r55.ebuild,
pygobject-3.8.3.ebuild:
x86 stable, bug #478252
30 Nov 2013; Pacho Ramos <pacho@gentoo.org> pygobject-2.28.6-r55.ebuild,
pygobject-3.8.3.ebuild:
amd64 stable, bug #478252
31 Oct 2013; Michał Górny <mgorny@gentoo.org> pygobject-2.28.6-r53.ebuild,
pygobject-2.28.6-r54.ebuild, pygobject-2.28.6-r55.ebuild:
Update the ebuilds to dep on dev-lang/python-exec.
24 Oct 2013; Jeroen Roovers <jer@gentoo.org> pygobject-3.4.2-r1.ebuild:
Stable for HPPA (bug #476364).
17 Oct 2013; Markus Meier <maekke@gentoo.org> pygobject-3.4.2-r1.ebuild:
arm stable, bug #476364
*pygobject-2.28.6-r55 (17 Oct 2013)
17 Oct 2013; Michał Górny <mgorny@gentoo.org> +pygobject-2.28.6-r55.ebuild:
Add a new revision using python-exec:2.
03 Oct 2013; Alexandre Rostovtsev <tetromino@gentoo.org>
pygobject-3.4.2-r1.ebuild, pygobject-3.8.3.ebuild:
Prevent test failure in chroots and tinderboxes (bug #449484, thanks to Diego
Elio Pettenò).
*pygobject-2.28.6-r54 (02 Oct 2013)
02 Oct 2013; Alexandre Rostovtsev <tetromino@gentoo.org>
+pygobject-2.28.6-r54.ebuild,
+files/pygobject-2.28.6-glib-2.36-class_init.patch:
Fix class interface setup to be compatible with glib-2.36. Remove old
alternatives symlink removal hack since it fails badly with binpkgs (bug
#459180, thanks to Fabio Erculiani).
17 Sep 2013; Michał Górny <mgorny@gentoo.org> pygobject-2.28.6-r53.ebuild:
Force python-exec:0 since the ebuild does hackery on top of script wrapping.
05 Sep 2013; Michał Górny <mgorny@gentoo.org> pygobject-3.2.2-r1.ebuild,
pygobject-3.4.2-r1.ebuild, pygobject-3.8.3.ebuild:
Clean up PYTHON_COMPAT from old implementations.
05 Sep 2013; Mike Frysinger <vapier@gentoo.org> pygobject-3.2.2-r1.ebuild,
pygobject-3.4.2-r1.ebuild, pygobject-3.8.3.ebuild:
Add s390 KEYWORDS #466560.
28 Jul 2013; Gilles Dartiguelongue <eva@gentoo.org> pygobject-3.8.3.ebuild:
Fix dependencies per configure.
25 Jul 2013; Pacho Ramos <pacho@gentoo.org> -pygobject-3.8.2.ebuild,
pygobject-3.8.3.ebuild:
Add missing dep on gnome-common due eautoreconf (#478102 by Timo Kamph), drop
old.
*pygobject-3.8.3 (07 Jul 2013)
07 Jul 2013; Pacho Ramos <pacho@gentoo.org> +pygobject-3.8.3.ebuild,
-pygobject-3.8.1.ebuild, pygobject-2.28.6-r53.ebuild:
Version bump, drop old and set PYTHON_REQUIRED_USE
*pygobject-3.8.2 (13 May 2013)
13 May 2013; Pacho Ramos <pacho@gentoo.org> +pygobject-3.8.2.ebuild,
-pygobject-3.8.0.ebuild:
Version bump, drop old
27 Apr 2013; Samuli Suominen <ssuominen@gentoo.org>
pygobject-2.28.6-r53.ebuild, pygobject-3.4.2-r1.ebuild:
Fix automake-1.13 compability wrt #466970 by Alphat-PC
*pygobject-3.8.1 (20 Apr 2013)
20 Apr 2013; Pacho Ramos <pacho@gentoo.org> +pygobject-3.8.1.ebuild,
-pygobject-2.28.6-r52.ebuild, -pygobject-3.2.2.ebuild,
-pygobject-3.4.2.ebuild:
Version bump, drop old
10 Apr 2013; Agostino Sarubbo <ago@gentoo.org> pygobject-2.28.6-r53.ebuild,
pygobject-3.2.2-r1.ebuild:
Stable for s390, wrt bug #458992
09 Apr 2013; Agostino Sarubbo <ago@gentoo.org> pygobject-2.28.6-r53.ebuild,
pygobject-3.2.2-r1.ebuild:
Stable for sh, wrt bug #458984
02 Apr 2013; Agostino Sarubbo <ago@gentoo.org> pygobject-3.2.2-r1.ebuild:
Stable for sh, wrt bug #458992
01 Apr 2013; Agostino Sarubbo <ago@gentoo.org> pygobject-2.28.6-r53.ebuild,
pygobject-3.2.2-r1.ebuild:
Stable for sparc, wrt bug #458984
01 Apr 2013; Agostino Sarubbo <ago@gentoo.org> pygobject-2.28.6-r53.ebuild,
pygobject-3.2.2-r1.ebuild:
Stable for alpha, wrt bug #458984
31 Mar 2013; Agostino Sarubbo <ago@gentoo.org> pygobject-3.2.2-r1.ebuild:
Stable for sparc, wrt bug #458992
31 Mar 2013; Pacho Ramos <pacho@gentoo.org>
+files/pygobject-3.8.0-stack-corruption.patch, pygobject-3.8.0.ebuild:
Fix stack corruption due to incorrect format for argument parser (#463700 by
Alphat-PC)
29 Mar 2013; Agostino Sarubbo <ago@gentoo.org> pygobject-2.28.6-r53.ebuild,
pygobject-3.2.2-r1.ebuild:
Stable for ia64, wrt bug #458984
28 Mar 2013; Agostino Sarubbo <ago@gentoo.org> pygobject-3.2.2-r1.ebuild:
Stable for ia64, wrt bug #458992
*pygobject-3.8.0 (28 Mar 2013)
28 Mar 2013; Pacho Ramos <pacho@gentoo.org>
+files/pygobject-3.7.90-make_check.patch, +pygobject-3.8.0.ebuild:
Version bump for Gnome 3.8
28 Mar 2013; Agostino Sarubbo <ago@gentoo.org> pygobject-2.28.6-r53.ebuild,
pygobject-3.2.2-r1.ebuild:
Stable for arm, wrt bug #458984
27 Mar 2013; Agostino Sarubbo <ago@gentoo.org> pygobject-2.28.6-r53.ebuild,
pygobject-3.2.2-r1.ebuild:
Stable for ppc64, wrt bug #458984
26 Mar 2013; Agostino Sarubbo <ago@gentoo.org> pygobject-2.28.6-r53.ebuild,
pygobject-3.2.2-r1.ebuild:
Stable for ppc, wrt bug #458984
26 Mar 2013; Jeroen Roovers <jer@gentoo.org> pygobject-2.28.6-r53.ebuild:
Stable for HPPA (bug #458984).
25 Mar 2013; Agostino Sarubbo <ago@gentoo.org> pygobject-2.28.6-r53.ebuild,
pygobject-3.2.2-r1.ebuild:
Stable for x86, wrt bug #458984
25 Mar 2013; Agostino Sarubbo <ago@gentoo.org> pygobject-2.28.6-r53.ebuild,
pygobject-3.2.2-r1.ebuild:
Stable for amd64, wrt bug #458984
23 Mar 2013; Agostino Sarubbo <ago@gentoo.org> pygobject-3.2.2-r1.ebuild:
Stable for alpha, wrt bug #458992
23 Mar 2013; Agostino Sarubbo <ago@gentoo.org> pygobject-3.2.2-r1.ebuild:
Stable for arm, wrt bug #458992
23 Mar 2013; Agostino Sarubbo <ago@gentoo.org> pygobject-3.2.2-r1.ebuild:
Stable for ppc64, wrt bug #458992
22 Mar 2013; Agostino Sarubbo <ago@gentoo.org> pygobject-3.2.2-r1.ebuild:
Stable for ppc, wrt bug #458992
16 Mar 2013; Jeroen Roovers <jer@gentoo.org> pygobject-3.2.2-r1.ebuild:
Stable for HPPA (bug #458992).
15 Mar 2013; Agostino Sarubbo <ago@gentoo.org> pygobject-3.2.2-r1.ebuild:
Stable for x86, wrt bug #458992
15 Mar 2013; Agostino Sarubbo <ago@gentoo.org> pygobject-3.2.2-r1.ebuild:
Stable for amd64, wrt bug #458992
28 Jan 2013; Alexis Ballier <aballier@gentoo.org> pygobject-3.4.2-r1.ebuild:
keyword ~amd64-fbsd, bug #453136
20 Jan 2013; Gilles Dartiguelongue <eva@gentoo.org>
pygobject-2.28.6-r53.ebuild:
Add missing PYTHON_DEPS, drop econf switches due to using EAPI=5, fix a typo
in local variables declaration.
*pygobject-2.28.6-r53 (14 Jan 2013)
14 Jan 2013; Alexandre Rostovtsev <tetromino@gentoo.org>
+pygobject-2.28.6-r53.ebuild,
+files/pygobject-2.28.6-disable-failing-tests.patch,
+files/pygobject-2.28.6-tests-no-introspection.patch:
Port to EAPI5 and python-r1.eclass.
13 Jan 2013; Gilles Dartiguelongue <eva@gentoo.org>
pygobject-3.4.2-r1.ebuild,
+files/pygobject-3.4.2-run-tests-with-old-python.patch:
Allow tests to run with python2.6.
*pygobject-3.2.2-r1 (16 Dec 2012)
16 Dec 2012; Alexandre Rostovtsev <tetromino@gentoo.org>
-files/pygobject-3.0.0-support_multiple_python_versions.patch,
-files/pygobject-3.0.3-disable-new-gi-tests.patch,
-files/pygobject-3.0.3-tests-python3.patch, -pygobject-3.0.4.ebuild,
+pygobject-3.2.2-r1.ebuild, +files/pygobject-3.2.2-cairo-gobject.patch,
+files/pygobject-3.2.2-cairo-tests.patch, pygobject-3.4.2-r1.ebuild:
Add a python-r1-ized revision of pygobject-3.2.2. Drop old.
10 Dec 2012; Alexandre Rostovtsev <tetromino@gentoo.org>
pygobject-3.4.2-r1.ebuild:
Remove restriction on multiple python3s, since pycairo does support multiple
python3s via USE_PYTHON.
10 Dec 2012; Alexandre Rostovtsev <tetromino@gentoo.org>
pygobject-3.4.2-r1.ebuild, metadata.xml:
Simplify the ebuild a bit.
10 Dec 2012; Alexandre Rostovtsev <tetromino@gentoo.org>
pygobject-3.4.2-r1.ebuild, metadata.xml:
Forgot to add PYTHON_DEPS. Clean up old comments. Remove unused flag
description.
*pygobject-3.4.2-r1 (10 Dec 2012)
10 Dec 2012; Alexandre Rostovtsev <tetromino@gentoo.org>
-pygobject-2.28.6-r51.ebuild, pygobject-2.28.6-r52.ebuild,
-pygobject-3.4.1.1.ebuild, +pygobject-3.4.2-r1.ebuild:
Remove useless doc and introspection USE flags from pygobject-2. Add 3.4.2-r1
that uses python-r1.eclass. Drop old.
*pygobject-3.4.2 (12 Nov 2012)
12 Nov 2012; Alexandre Rostovtsev <tetromino@gentoo.org>
-pygobject-3.4.0.ebuild, -files/pygobject-3.4.0-make_check.patch,
+pygobject-3.4.2.ebuild:
Version bump with various bugfixes. Drop old.
*pygobject-3.4.1.1 (30 Oct 2012)
30 Oct 2012; Gilles Dartiguelongue <eva@gentoo.org>
+pygobject-3.4.1.1.ebuild, +files/pygobject-3.4.1.1-make_check.patch:
Version bump.
28 Oct 2012; Raúl Porcel <armin76@gentoo.org> pygobject-2.28.6-r52.ebuild:
ia64/sh/sparc stable wrt #427544
28 Oct 2012; Raúl Porcel <armin76@gentoo.org> pygobject-3.2.2.ebuild:
ia64/sh/sparc stable wrt #427544
16 Oct 2012; Anthony G. Basile <blueness@gentoo.org>
pygobject-2.28.6-r52.ebuild:
stable ppc, bug #427544
16 Oct 2012; Anthony G. Basile <blueness@gentoo.org> pygobject-3.2.2.ebuild:
stable ppc, bug #427544
07 Oct 2012; Anthony G. Basile <blueness@gentoo.org>
pygobject-2.28.6-r52.ebuild:
stable ppc64, bug #427544
07 Oct 2012; Anthony G. Basile <blueness@gentoo.org> pygobject-3.2.2.ebuild:
stable ppc64, bug #427544
06 Oct 2012; Markus Meier <maekke@gentoo.org> pygobject-2.28.6-r52.ebuild:
arm stable, bug #427544
06 Oct 2012; Markus Meier <maekke@gentoo.org> pygobject-3.2.2.ebuild:
arm stable, bug #427544
04 Oct 2012; Agostino Sarubbo <ago@gentoo.org> pygobject-3.2.2.ebuild:
Stable for amd64, wrt bug #427544
04 Oct 2012; Agostino Sarubbo <ago@gentoo.org> pygobject-2.28.6-r52.ebuild:
Stable for amd64, wrt bug #427544
04 Oct 2012; Pawel Hajdan jr <phajdan.jr@gentoo.org> pygobject-3.2.2.ebuild:
x86 stable wrt bug #427544
03 Oct 2012; Pawel Hajdan jr <phajdan.jr@gentoo.org>
pygobject-2.28.6-r52.ebuild:
x86 stable wrt bug #427544
02 Oct 2012; Jeroen Roovers <jer@gentoo.org> pygobject-2.28.6-r52.ebuild,
pygobject-3.2.2.ebuild:
Stable for HPPA (bug #427544).
02 Oct 2012; Mike Gilbert <floppym@gentoo.org> pygobject-3.0.4.ebuild,
pygobject-3.2.2.ebuild:
Restrict python 3.3 based on testing by Arfrever.
28 Sep 2012; Matt Turner <mattst88@gentoo.org> pygobject-2.28.6-r52.ebuild,
pygobject-3.2.2.ebuild:
Stable on alpha, bug 427544.
*pygobject-3.4.0 (25 Sep 2012)
25 Sep 2012; Alexandre Rostovtsev <tetromino@gentoo.org>
-files/pygobject-2.15.4-fix-codegen-location.patch,
-files/pygobject-2.18.0-support_multiple_python_versions.patch,
-files/pygobject-2.20.0-tmpdir-makefile.patch,
-files/pygobject-2.26.0-disable-non-working-tests.patch,
-files/pygobject-2.26.0-disabled-threads.patch,
-files/pygobject-2.26.0-make_check.patch,
-files/pygobject-2.26.0-nocrash.patch, pygobject-2.28.6-r51.ebuild,
pygobject-2.28.6-r52.ebuild, -pygobject-3.0.2.ebuild,
-files/pygobject-3.0.2-disable-new-gi-tests.patch,
-files/pygobject-3.0.3-gobject-property-min-max.patch,
pygobject-3.0.4.ebuild, -pygobject-3.2.1.ebuild, pygobject-3.2.2.ebuild,
+pygobject-3.4.0.ebuild, +files/pygobject-3.4.0-make_check.patch:
Version bump with assorted bugfixes. Drop old. Make license more precise.
15 Aug 2012; Alexandre Rostovtsev <tetromino@gentoo.org>
pygobject-3.0.2.ebuild, pygobject-3.0.4.ebuild, pygobject-3.2.1.ebuild,
pygobject-3.2.2.ebuild:
Add missing test suite dependencies (bug #426252, thanks to Patrick Lauer).
15 Jul 2012; Raúl Porcel <armin76@gentoo.org> pygobject-3.0.4.ebuild:
alpha/ia64/sh/sparc stable wrt #410611
24 May 2012; Samuli Suominen <ssuominen@gentoo.org> pygobject-3.0.4.ebuild:
ppc stable wrt #410611
21 May 2012; Alexandre Rostovtsev <tetromino@gentoo.org>
pygobject-2.28.6-r51.ebuild, pygobject-2.28.6-r52.ebuild,
pygobject-3.0.2.ebuild, pygobject-3.0.4.ebuild, pygobject-3.2.1.ebuild,
pygobject-3.2.2.ebuild:
Need eutils for epatch.
*pygobject-3.2.2 (19 May 2012)
19 May 2012; Alexandre Rostovtsev <tetromino@gentoo.org>
-pygobject-3.2.0.ebuild, +pygobject-3.2.2.ebuild:
Version bump, drop old.
16 May 2012; Jeroen Roovers <jer@gentoo.org> pygobject-3.0.4.ebuild:
Stable for HPPA (bug #410611).
13 May 2012; Alexis Ballier <aballier@gentoo.org>
pygobject-2.28.6-r52.ebuild, pygobject-3.2.1.ebuild:
keyword ~amd64-fbsd
*pygobject-3.2.1 (12 May 2012)
12 May 2012; Pacho Ramos <pacho@gentoo.org> +pygobject-3.2.1.ebuild,
-pygobject-2.26.0-r1.ebuild, -pygobject-2.28.6-r50.ebuild,
-pygobject-2.28.6.ebuild, -pygobject-3.0.3.ebuild:
Version bump, remove old.
04 May 2012; Patrick Lauer <patrick@gentoo.org> pygobject-2.26.0-r1.ebuild,
pygobject-2.28.6-r50.ebuild, pygobject-2.28.6-r51.ebuild,
pygobject-2.28.6-r52.ebuild, pygobject-2.28.6.ebuild, pygobject-3.0.2.ebuild,
pygobject-3.0.3.ebuild, pygobject-3.0.4.ebuild, pygobject-3.2.0.ebuild:
Migrating dev-util/pkgconfig -> virtual/pkgconfig
29 Apr 2012; Markus Meier <maekke@gentoo.org> pygobject-3.0.4.ebuild:
x86 stable, bug #410611
25 Apr 2012; Markus Meier <maekke@gentoo.org> pygobject-3.0.4.ebuild:
arm stable, bug #410611
19 Apr 2012; Brent Baude <ranger@gentoo.org> pygobject-3.0.4.ebuild:
Marking pygobject-3.0.4 ppc64 stable for bug 410611
18 Apr 2012; Agostino Sarubbo <ago@gentoo.org> pygobject-3.0.4.ebuild:
Stable for amd64, wrt bug #410611
*pygobject-2.28.6-r52 (13 Apr 2012)
13 Apr 2012; Alexandre Rostovtsev <tetromino@gentoo.org>
+pygobject-2.28.6-r52.ebuild, +files/pygobject-2.28.6-gio-types-2.32.patch,
+files/pygobject-2.28.6-set_qdata.patch:
Fix console warnings with glib-2.32, thanks to rei4dan for reporting.
*pygobject-3.2.0 (28 Mar 2012)
28 Mar 2012; Alexandre Rostovtsev <tetromino@gentoo.org>
+pygobject-3.2.0.ebuild:
Version bump. Adds a pygtk compatibility layer, lots of Gtk.TreeView
improvements, and various bugfixes.
25 Mar 2012; Raúl Porcel <armin76@gentoo.org> pygobject-2.28.6-r51.ebuild,
pygobject-3.0.2.ebuild:
alpha/ia64/sh/sparc stable wrt #393007
05 Mar 2012; Brent Baude <ranger@gentoo.org> pygobject-2.28.6-r51.ebuild,
pygobject-3.0.2.ebuild:
Marking pygobject-3.0.2 ppc stable for bug 393007
05 Mar 2012; Brent Baude <ranger@gentoo.org> pygobject-2.28.6-r51.ebuild,
pygobject-3.0.2.ebuild:
Marking pygobject-3.0.2 ppc64 stable for bug 393007
05 Mar 2012; Brent Baude <ranger@gentoo.org> pygobject-2.28.6-r51.ebuild:
Marking pygobject-2.28.6-r51 ppc64 stable for bug 393007
25 Feb 2012; Patrick Lauer <patrick@gentoo.org> pygobject-2.26.0-r1.ebuild,
pygobject-2.28.6-r50.ebuild, pygobject-2.28.6-r51.ebuild,
pygobject-2.28.6.ebuild, pygobject-3.0.2.ebuild, pygobject-3.0.3.ebuild,
pygobject-3.0.4.ebuild:
Fixing accidental double asterisk
20 Feb 2012; Patrick Lauer <patrick@gentoo.org> pygobject-2.26.0-r1.ebuild,
pygobject-2.28.6-r50.ebuild, pygobject-2.28.6-r51.ebuild,
pygobject-2.28.6.ebuild, pygobject-3.0.2.ebuild, pygobject-3.0.3.ebuild,
pygobject-3.0.4.ebuild:
Fixing pypy restricts to actually work
*pygobject-3.0.4 (09 Feb 2012)
09 Feb 2012; Alexandre Rostovtsev <tetromino@gentoo.org>
-pygobject-3.0.1.ebuild, +pygobject-3.0.4.ebuild:
Version bump. Reverts the str/unicode change in 3.0.3 that had caused
problems for some applications. Drop old.
18 Jan 2012; Markus Meier <maekke@gentoo.org> pygobject-2.28.6-r51.ebuild:
arm stable, bug #393007
18 Jan 2012; Markus Meier <maekke@gentoo.org> pygobject-3.0.2.ebuild:
arm stable, bug #393007
14 Jan 2012; Markus Meier <maekke@gentoo.org> pygobject-2.28.6-r51.ebuild:
x86 stable, bug #393007
14 Jan 2012; Markus Meier <maekke@gentoo.org> pygobject-3.0.2.ebuild:
x86 stable, bug #393007
31 Dec 2011; Alexandre Rostovtsev <tetromino@gentoo.org>
pygobject-2.26.0-r1.ebuild:
Do not move py-compile so it stays executable; thanks to Ionic for reporting.
31 Dec 2011; Alexandre Rostovtsev <tetromino@gentoo.org>
pygobject-2.26.0-r1.ebuild, pygobject-2.28.6.ebuild,
pygobject-2.28.6-r50.ebuild, pygobject-2.28.6-r51.ebuild,
pygobject-3.0.1.ebuild, pygobject-3.0.2.ebuild, pygobject-3.0.3.ebuild:
Simplify py-compile fix.
31 Dec 2011; Alexandre Rostovtsev <tetromino@gentoo.org>
pygobject-2.26.0-r1.ebuild, pygobject-2.28.6.ebuild,
pygobject-2.28.6-r50.ebuild, pygobject-2.28.6-r51.ebuild,
pygobject-3.0.1.ebuild, pygobject-3.0.2.ebuild, pygobject-3.0.3.ebuild:
Fix py-compile idiom for automake-1.11.2 compatibility (bug #396585, thanks
to Michał Górny).
30 Dec 2011; Michael Sterrett <mr_bones_@gentoo.org> pygobject-3.0.3.ebuild:
whitespace
29 Dec 2011; Pacho Ramos <pacho@gentoo.org> pygobject-2.28.6-r51.ebuild,
pygobject-3.0.2.ebuild:
amd64 stable, bug 393007
28 Dec 2011; Jeroen Roovers <jer@gentoo.org> pygobject-2.28.6-r51.ebuild:
Stable for HPPA (bug #393007).
*pygobject-3.0.3 (26 Dec 2011)
26 Dec 2011; Alexandre Rostovtsev <tetromino@gentoo.org>
pygobject-2.26.0-r1.ebuild, pygobject-2.28.6.ebuild,
pygobject-2.28.6-r50.ebuild, pygobject-2.28.6-r51.ebuild,
pygobject-3.0.1.ebuild, pygobject-3.0.2.ebuild, +pygobject-3.0.3.ebuild,
+files/pygobject-3.0.3-disable-new-gi-tests.patch,
+files/pygobject-3.0.3-gobject-property-min-max.patch,
+files/pygobject-3.0.3-tests-python3.patch:
Version bump with assorted bugfixes. Fix example installation directory (bug
#392449 comment 3, thanks to Arfrever). Also, restrict pypy for all versions
of pygobject and improve use of python eclass in 3.0.3 (bug #321879 comment
8, thanks to Arfrever).
*pygobject-2.28.6-r51 (24 Dec 2011)
24 Dec 2011; Maxim Koltsov <maksbotan@gentoo.org>
+pygobject-2.28.6-r51.ebuild:
Fix bug 392449 with doc installation
20 Dec 2011; Jeroen Roovers <jer@gentoo.org> pygobject-2.28.6-r50.ebuild,
pygobject-3.0.2.ebuild:
Stable for HPPA (bug #393007).
29 Nov 2011; Alexandre Rostovtsev <tetromino@gentoo.org>
pygobject-3.0.2.ebuild:
Move to EAPI4.
15 Nov 2011; Alexandre Rostovtsev <tetromino@gentoo.org>
pygobject-2.26.0-r1.ebuild, pygobject-2.28.6.ebuild,
pygobject-2.28.6-r50.ebuild, pygobject-3.0.1.ebuild, pygobject-3.0.2.ebuild:
QA: eautoreconf should be before gnome2_src_prepare.
*pygobject-3.0.2 (23 Oct 2011)
23 Oct 2011; Alexandre Rostovtsev <tetromino@gentoo.org>
+pygobject-3.0.2.ebuild, +files/pygobject-3.0.2-disable-new-gi-tests.patch:
Version bump. Disable tests that require new regression functions present
only in git master of gobject-introspection.
Notable features: several important bugfixes, unbreaks gdk-2 support.
*pygobject-3.0.1 (19 Oct 2011)
*pygobject-2.28.6-r50 (19 Oct 2011)
19 Oct 2011; Alexandre Rostovtsev <tetromino@gentoo.org>
+pygobject-2.28.6-r50.ebuild, +files/pygobject-2.90.1-make_check.patch,
+files/pygobject-3.0.0-support_multiple_python_versions.patch,
+pygobject-3.0.1.ebuild:
New pygobject:3, moved from the gnome overlay. Per upstream decision,
pygobject:2 (starting with 2.28.6-r50) will only be installing the "classic"
glib and gobject bindings; the new introspection-based bindings will be
provided only by pygobject:3. See
http://www.daa.com.au/pipermail/pygtk/2011-August/019920.html for a brief
introduction to pygobject:3 porting.
05 Oct 2011; Kacper Kowalik <xarthisius@gentoo.org> pygobject-2.28.6.ebuild:
ppc/ppc64 stable wrt #369909
28 Sep 2011; Samuli Suominen <ssuominen@gentoo.org> metadata.xml:
USE="libffi" is now global USE flag.
23 Aug 2011; Nirbheek Chauhan <nirbheek@gentoo.org> -pygobject-2.28.4.ebuild,
pygobject-2.28.6.ebuild:
Drop .la files, bug 379399. Remove old.
20 Aug 2011; Jeroen Roovers <jer@gentoo.org> pygobject-2.28.6.ebuild:
Stable for HPPA (bug #369909).
13 Aug 2011; Raúl Porcel <armin76@gentoo.org> pygobject-2.28.6.ebuild:
alpha/ia64/sh/sparc stable wrt #369909
17 Jul 2011; Markus Meier <maekke@gentoo.org> pygobject-2.28.6.ebuild:
arm stable, bug #369909
14 Jul 2011; Thomas Kahle <tomka@gentoo.org> pygobject-2.28.6.ebuild:
x86 stable per bug 369909
01 Jul 2011; Markos Chandras <hwoarang@gentoo.org> pygobject-2.28.6.ebuild:
Stable on amd64 wrt bug #278255
*pygobject-2.28.6 (14 Jun 2011)
14 Jun 2011; Nirbheek Chauhan <nirbheek@gentoo.org> +pygobject-2.28.6.ebuild:
Bump to 2.28.6, bugfix release
*pygobject-2.28.4 (20 Apr 2011)
20 Apr 2011; Pacho Ramos <pacho@gentoo.org>
-files/pygobject-2.18.0-automake111.patch,
-files/pygobject-2.18.0-make_check.patch, -pygobject-2.20.0.ebuild,
-pygobject-2.20.0-r1.ebuild,
-files/pygobject-2.20.0-automagic-introspection.patch,
-files/pygobject-2.21.4-make_check.patch, -pygobject-2.21.5.ebuild,
-pygobject-2.26.0.ebuild,
+files/pygobject-2.28.3-disable-failing-tests.patch,
+files/pygobject-2.28.3-fix-codegen-location.patch,
+files/pygobject-2.28.3-make_check.patch,
+files/pygobject-2.28.3-support_multiple_python_versions.patch,
+pygobject-2.28.4.ebuild:
Version bump, remove old.
03 Apr 2011; Arfrever Frehtes Taifersar Arahesis <arfrever@gentoo.org>
pygobject-2.26.0-r1.ebuild:
Fix dependencies (bug #361733).
22 Mar 2011; Brent Baude <ranger@gentoo.org> pygobject-2.26.0-r1.ebuild:
Marking pygobject-2.26.0-r1 ppc stable for bug 353436
21 Mar 2011; Kacper Kowalik <xarthisius@gentoo.org>
pygobject-2.26.0-r1.ebuild:
ppc64 stable wrt #353436
12 Mar 2011; Raúl Porcel <armin76@gentoo.org> pygobject-2.26.0-r1.ebuild:
alpha/arm/ia64/sh/sparc stable wrt #353436
07 Mar 2011; Jeroen Roovers <jer@gentoo.org> pygobject-2.26.0-r1.ebuild:
Stable for HPPA (bug #353436).
24 Feb 2011; Thomas Kahle <tomka@gentoo.org> pygobject-2.26.0-r1.ebuild:
x86 stable per bug 353436
23 Feb 2011; Markos Chandras <hwoarang@gentoo.org>
pygobject-2.26.0-r1.ebuild:
Stable on amd64 wrt bug #353436
28 Jan 2011; Pacho Ramos <pacho@gentoo.org> pygobject-2.26.0-r1.ebuild,
+files/pygobject-2.26.0-disabled-threads.patch:
Fix building without threads and dependency on python (thanks a lot to
Arfrever Frehtes Taifersar Arahesis for his help).
27 Jan 2011; Pacho Ramos <pacho@gentoo.org> pygobject-2.26.0-r1.ebuild:
dev-python/pygobject always needs python with threads support as reported by
Jeremy Olexa (bug #285722) and confirmed by me until upstream fixes its bug
#640748.
17 Jan 2011; Arfrever Frehtes Taifersar Arahesis <arfrever@gentoo.org>
pygobject-2.20.0.ebuild, pygobject-2.20.0-r1.ebuild, pygobject-2.21.5.ebuild,
pygobject-2.26.0.ebuild, pygobject-2.26.0-r1.ebuild:
Restrict Jython ABIs.
21 Dec 2010; Gilles Dartiguelongue <eva@gentoo.org>
pygobject-2.26.0-r1.ebuild:
Make sure python interpreter used by pygobject-codegen is python2.
*pygobject-2.26.0-r1 (08 Nov 2010)
08 Nov 2010; Daniel Gryniewicz <dang@gentoo.org>
+pygobject-2.26.0-r1.ebuild, +files/pygobject-2.26.0-nocrash.patch:
Bump to pygobject-2.26.0-r1
- Fix crash in programs like rhythmbox using it, due to bad instance
property
bindings. Bug #344459
*pygobject-2.26.0 (06 Nov 2010)
06 Nov 2010; Gilles Dartiguelongue <eva@gentoo.org>
+pygobject-2.26.0.ebuild,
+files/pygobject-2.26.0-disable-non-working-tests.patch,
+files/pygobject-2.26.0-make_check.patch:
Version bump. Disable some non-working tests, but still has more enabled
than 2.21.5. It is supposed to build against python 3 but failed to link,
keep it restricted for now.
*pygobject-2.21.5 (05 Nov 2010)
05 Nov 2010; Gilles Dartiguelongue <eva@gentoo.org>
+files/pygobject-2.21.4-make_check.patch, +pygobject-2.21.5.ebuild,
metadata.xml:
Version bump. Enable introspection support but disable related tests, they
seem broken.
02 Oct 2010; Fabian Groffen <grobian@gentoo.org>
pygobject-2.20.0-r1.ebuild:
Marked ~x64-macos, bug #333981
*pygobject-2.20.0-r1 (26 Sep 2010)
26 Sep 2010; <nirbheek@gentoo.org> +pygobject-2.20.0-r1.ebuild,
+files/pygobject-2.20.0-automagic-introspection.patch:
Fix automagic introspection, remove libtool-1 hack since libtool-2 has
been stable for a long time
10 Sep 2010; Arfrever Frehtes Taifersar Arahesis <arfrever@gentoo.org>
pygobject-2.20.0.ebuild:
Restrict 2.4 Python ABI (bug #325895).
09 Sep 2010; Gilles Dartiguelongue <eva@gentoo.org>
-pygobject-2.18.0.ebuild, -pygobject-2.18.0-r2.ebuild,
pygobject-2.20.0.ebuild:
Depend on python >=2.5, bug #325895. Clean up old revisions.
12 Jul 2010; Jeroen Roovers <jer@gentoo.org> pygobject-2.20.0.ebuild:
Stable for HPPA (bug #312877).
06 Jul 2010; Samuli Suominen <ssuominen@gentoo.org>
pygobject-2.20.0.ebuild:
ppc64 stable wrt #312877
22 May 2010; Raúl Porcel <armin76@gentoo.org> pygobject-2.18.0.ebuild,
pygobject-2.18.0-r2.ebuild, pygobject-2.20.0.ebuild:
Drop s390 keywords
09 May 2010; Raúl Porcel <armin76@gentoo.org> pygobject-2.20.0.ebuild:
alpha/arm/ia64/s390/sh/sparc stable wrt #312877
18 Apr 2010; <nixnut@gentoo.org> pygobject-2.20.0.ebuild:
ppc stable #312877
16 Apr 2010; Pacho Ramos <pacho@gentoo.org> pygobject-2.20.0.ebuild:
amd64 stable, bug 312877
13 Apr 2010; Christian Faulhammer <fauli@gentoo.org>
pygobject-2.20.0.ebuild:
stable x86, bug 312877
02 Apr 2010; Arfrever Frehtes Taifersar Arahesis <arfrever@gentoo.org>
pygobject-2.18.0.ebuild:
Don't call deprecated python_version() (bug #312291).
19 Mar 2010; Pacho Ramos <pacho@gentoo.org> pygobject-2.20.0.ebuild,
+files/pygobject-2.20.0-tmpdir-makefile.patch:
Fix bug 299680 with upstream commited patch. Thanks to Kevin Pyle for the
report and the patch
11 Jan 2010; Arfrever Frehtes Taifersar Arahesis <arfrever@gentoo.org>
pygobject-2.18.0-r2.ebuild, pygobject-2.20.0.ebuild:
Don't call python_need_rebuild() (bug #300587).
29 Dec 2009; Nirbheek Chauhan <nirbheek@gentoo.org>
pygobject-2.18.0.ebuild, pygobject-2.18.0-r2.ebuild,
pygobject-2.20.0.ebuild:
Fix glib depends in all ebuilds; configure.ac lies, fixes bug 298823
02 Nov 2009; Fabian Groffen <grobian@gentoo.org>
pygobject-2.18.0-r2.ebuild, pygobject-2.20.0.ebuild:
Drop Darwin hack, no longer necessary, thanks Heiko Przybyl, bug #291524
*pygobject-2.20.0 (29 Oct 2009)
29 Oct 2009; Gilles Dartiguelongue <eva@gentoo.org>
-pygobject-2.14.0.ebuild, -pygobject-2.14.2.ebuild,
-files/pygobject-2.14.2-libffi.patch, -pygobject-2.15.4.ebuild,
-pygobject-2.16.0.ebuild, -pygobject-2.16.1.ebuild,
-pygobject-2.16.1-r1.ebuild, +pygobject-2.20.0.ebuild:
New version for GNOME 2.28. Clean up old revision.
14 Oct 2009; Samuli Suominen <ssuominen@gentoo.org>
pygobject-2.14.2.ebuild, pygobject-2.15.4.ebuild:
Remove support for gcc's libffi because it's conflicting with
dev-libs/libffi in ld.so.conf.
11 Oct 2009; Arfrever Frehtes Taifersar Arahesis <arfrever@gentoo.org>
pygobject-2.18.0-r2.ebuild:
Use correct paths.
11 Oct 2009; Fabian Groffen <grobian@gentoo.org>
pygobject-2.18.0-r2.ebuild:
Merge from Prefix
21 Sep 2009; Tom Gall <tgall@gentoo.org> pygobject-2.18.0.ebuild:
stable on ppc64, bug #277947
07 Sep 2009; Raúl Porcel <armin76@gentoo.org> pygobject-2.18.0.ebuild:
arm/ia64/s390/sh/sparc stable
06 Sep 2009; Christian Ruppert <idl0r@gentoo.org>
-files/pygobject-2.14.0-libffi-magic.patch:
Remove unused patch.
*pygobject-2.18.0-r2 (28 Aug 2009)
28 Aug 2009; Arfrever Frehtes Taifersar Arahesis <arfrever@gentoo.org>
-pygobject-2.18.0-r1.ebuild, +pygobject-2.18.0-r2.ebuild,
files/pygobject-2.18.0-support_multiple_python_versions.patch:
Modify pygobject-codegen-2.0 to support multiple Python versions instead
of renaming it.
*pygobject-2.18.0-r1 (27 Aug 2009)
27 Aug 2009; Arfrever Frehtes Taifersar Arahesis <arfrever@gentoo.org>
+pygobject-2.18.0-r1.ebuild,
+files/pygobject-2.18.0-support_multiple_python_versions.patch:
Set SUPPORT_PYTHON_ABIS (bug #282857).
26 Aug 2009; Tobias Klausmann <klausman@gentoo.org>
pygobject-2.18.0.ebuild:
Stable on alpha, bug #277947
19 Aug 2009; Jeroen Roovers <jer@gentoo.org> pygobject-2.18.0.ebuild:
Stable for HPPA (bug #277947).
16 Aug 2009; Arfrever Frehtes Taifersar Arahesis <arfrever@gentoo.org>
pygobject-2.14.0.ebuild, pygobject-2.14.2.ebuild, pygobject-2.15.4.ebuild,
pygobject-2.16.0.ebuild, pygobject-2.16.1.ebuild,
pygobject-2.16.1-r1.ebuild, pygobject-2.18.0.ebuild:
Inherit alternatives.eclass (bug #281714).
09 Aug 2009; Gilles Dartiguelongue <eva@gentoo.org>
pygobject-2.18.0.ebuild, +files/pygobject-2.18.0-automake111.patch:
Fix install with automake 1.11, bug #279813.
09 Aug 2009; nixnut <nixnut@gentoo.org> pygobject-2.18.0.ebuild:
ppc stable #277947
30 Jul 2009; Markus Meier <maekke@gentoo.org> pygobject-2.18.0.ebuild:
amd64/x86 stable, bug #277947
27 Jul 2009; Arfrever Frehtes Taifersar Arahesis <arfrever@gentoo.org>
pygobject-2.18.0.ebuild, files/pygobject-2.18.0-make_check.patch:
Fix tests.
24 Jul 2009; Samuli Suominen <ssuominen@gentoo.org>
pygobject-2.18.0.ebuild, +files/pygobject-2.18.0-make_check.patch:
Compile tests/ only if "make check" is requested wrt #226345. Run
eautoreconf after touching py-compile or timestamp is changed and
maintainer-mode will run wrt #259832.
24 Jul 2009; Mart Raudsepp <leio@gentoo.org> pygobject-2.18.0.ebuild:
Various QA fixes before stabilization
*pygobject-2.18.0 (24 Jun 2009)
24 Jun 2009; Romain Perier <mrpouet@gentoo.org>
+pygobject-2.18.0.ebuild:
Bump to 2.18.0, bug #275153
*pygobject-2.16.1-r1 (04 Jun 2009)
04 Jun 2009; Samuli Suominen <ssuominen@gentoo.org>
+pygobject-2.16.1-r1.ebuild:
Use virtual/libffi wrt #255488.
27 Apr 2009; Jeroen Roovers <jer@gentoo.org> pygobject-2.16.1:
Stable for HPPA (bug #260063).
12 Apr 2009; Friedrich Oslage <bluebird@gentoo.org> ChangeLog:
Stable on sparc, bug #260063
30 Mar 2009; Raúl Porcel <armin76@gentoo.org> pygobject-2.16.1.ebuild:
arm/s390/sh/sparc stable
18 Mar 2009; Raúl Porcel <armin76@gentoo.org> pygobject-2.16.1.ebuild:
alpha/ia64 stable wrt #260063
15 Mar 2009; Markus Meier <maekke@gentoo.org> pygobject-2.16.1.ebuild:
x86 stable, bug #260063
11 Mar 2009; Daniel Gryniewicz <dang@gentoo.org> pygobject-2.16.1.ebuild:
Marked stable on amd64
06 Mar 2009; Brent Baude <ranger@gentoo.org> pygobject-2.16.1.ebuild:
Marking pygobject-2.16.1 ppc stable for bug 260063
05 Mar 2009; Brent Baude <ranger@gentoo.org> pygobject-2.16.1.ebuild:
Marking pygobject-2.16.1 ppc64 stable for bug 260063
*pygobject-2.16.1 (22 Feb 2009)
22 Feb 2009; Gilles Dartiguelongue <eva@gentoo.org>
+pygobject-2.16.1.ebuild:
Bump to 2.16.1. Bug and memory leak fixes.
07 Feb 2009; Gilles Dartiguelongue <eva@gentoo.org>
pygobject-2.16.0.ebuild:
Fix building on libtool-1 systems, bug #255542.
26 Jan 2009; Mart Raudsepp <leio@gentoo.org> pygobject-2.16.0.ebuild:
Disable USE=libffi for the time being due to bug 255488
*pygobject-2.16.0 (19 Jan 2009)
19 Jan 2009; Mart Raudsepp <leio@gentoo.org> +pygobject-2.16.0.ebuild:
Version bump. Correct libffi handling for configure
14 Dec 2008; Gilles Dartiguelongue <eva@gentoo.org>
pygobject-2.14.0.ebuild, -pygobject-2.14.1.ebuild,
pygobject-2.14.2.ebuild, pygobject-2.15.4.ebuild:
Add python_need_rebuild per bug #244608.
13 Nov 2008; Brent Baude <ranger@gentoo.org> pygobject-2.14.2.ebuild:
Marking pygobject-2.14.2 ppc64 stable for bug 236971
08 Nov 2008; Jeremy Olexa <darkside@gentoo.org> pygobject-2.14.2.ebuild:
Work around a failing testsuite that is a circular dependancy by adding
RESTRICT=test, bug #199725
*pygobject-2.15.4 (19 Oct 2008)
19 Oct 2008; Gilles Dartiguelongue <eva@gentoo.org>
+files/pygobject-2.15.4-fix-codegen-location.patch,
-pygobject-2.12.3.ebuild, +pygobject-2.15.4.ebuild:
New version for GNOME 2.24. New APIs have been wrapped (notably GIO)
and codegen is now part of pygobject.
25 Sep 2008; Jeroen Roovers <jer@gentoo.org> pygobject-2.14.2.ebuild:
Stable for HPPA (bug #236971).
12 Aug 2008; Raúl Porcel <armin76@gentoo.org> pygobject-2.14.2.ebuild:
alpha/ia64/sparc stable wrt #229709
10 Aug 2008; Markus Meier <maekke@gentoo.org> pygobject-2.14.2.ebuild:
x86 stable, bug #229709
06 Aug 2008; Jesus Rivero <neurogeek@gentoo.org> metadata.xml:
add GLEP 56 USE flag desc from use.local.desc
30 Jul 2008; Brent Baude <ranger@gentoo.org> pygobject-2.14.2.ebuild:
Marking pygobject-2.14.2 ppc stable for bug 229709
26 Jul 2008; Olivier Crête <tester@gentoo.org> pygobject-2.14.2.ebuild:
Stable on amd64, bug #229709
14 Jul 2008; Gilles Dartiguelongue <eva@gentoo.org>
pygobject-2.14.2.ebuild:
add virtualx eclass to allow test suite to run properly
04 Jul 2008; Gilles Dartiguelongue <eva@gentoo.org>
+files/pygobject-2.14.2-libffi.patch, pygobject-2.14.2.ebuild:
fix libffi condition, fix bug #230751
29 May 2008; Ali Polatel <hawking@gentoo.org> pygobject-2.12.3.ebuild:
Use get_libdir.
29 May 2008; Ali Polatel <hawking@gentoo.org> pygobject-2.14.0.ebuild,
pygobject-2.14.1.ebuild, pygobject-2.14.2.ebuild:
python_mod_compile is ROOT aware.
25 May 2008; Gilles Dartiguelongue <eva@gentoo.org>
pygobject-2.12.3.ebuild:
fix QA on 2.12.3, changing to ~mips, mips is experimental.
*pygobject-2.14.2 (25 May 2008)
25 May 2008; Gilles Dartiguelongue <eva@gentoo.org>
+pygobject-2.14.2.ebuild:
bump to 2.14.2. Fix bug #198875.
22 Mar 2008; Daniel Gryniewicz <dang@gentoo.org> pygobject-2.14.1.ebuild:
Marked stable on amd64 for bug #212986
17 Mar 2008; Jeroen Roovers <jer@gentoo.org> pygobject-2.14.1.ebuild:
Stable for HPPA (bug #212986).
16 Mar 2008; Christian Faulhammer <opfer@gentoo.org>
pygobject-2.14.1.ebuild:
stable x86, bug 212986
15 Mar 2008; nixnut <nixnut@gentoo.org> pygobject-2.14.1.ebuild:
Stable on ppc wrt bug 212986
14 Mar 2008; Raúl Porcel <armin76@gentoo.org> pygobject-2.14.1.ebuild:
alpha/ia64/sparc stable wrt #212986
12 Mar 2008; Brent Baude <ranger@gentoo.org> pygobject-2.14.1.ebuild:
Marking pygobject-2.14.1 ppc64 for bug 212986
*pygobject-2.14.1 (03 Jan 2008)
03 Jan 2008; Gilles Dartiguelongue <eva@gentoo.org>
+pygobject-2.14.1.ebuild:
bump to 2.14.1
*pygobject-2.14.0-r1 (27 Dec 2007)
27 Dec 2007; Gilles Dartiguelongue <eva@gentoo.org>
+files/pygobject-2.14.0-libffi-magic.patch, +pygobject-2.14.0-r1.ebuild:
remove automagic dependency on libffi, bug #198875
27 Nov 2007; Jeroen Roovers <jer@gentoo.org> pygobject-2.14.0.ebuild:
Stable for HPPA (bug #199322).
20 Nov 2007; Markus Rothe <corsair@gentoo.org> pygobject-2.14.0.ebuild:
Stable on ppc64; bug #199322
17 Nov 2007; Raúl Porcel <armin76@gentoo.org> pygobject-2.14.0.ebuild:
alpha/ia64/sparc stable wrt #199322
17 Nov 2007; nixnut <nixnut@gentoo.org> pygobject-2.14.0.ebuild:
Stable on ppc wrt bug 199322
17 Nov 2007; Dawid Węgliński <cla@gentoo.org> pygobject-2.14.0.ebuild:
Stable on x86 (bug #199322)
16 Nov 2007; Samuli Suominen <drac@gentoo.org> pygobject-2.14.0.ebuild:
amd64 stable wrt #199322
*pygobject-2.14.0 (26 Sep 2007)
26 Sep 2007; Mart Raudsepp <leio@gentoo.org> +pygobject-2.14.0.ebuild:
Adding 2.14 series, to go along with glib-2.14 for Gnome 2.20
26 Jul 2007; Roy Marples <uberlord@gentoo.org> pygobject-2.12.3.ebuild:
true is not always in /bin
27 May 2007; Joshua Kinard <kumba@gentoo.org> pygobject-2.12.3.ebuild:
Stable on mips.
16 Feb 2007; Roy Marples <uberlord@gentoo.org> pygobject-2.12.3.ebuild:
Added ~x86-fbsd keyword.
18 Jan 2007; Jeroen Roovers <jer@gentoo.org> pygobject-2.12.3.ebuild:
Stable for HPPA (bug #147751).
14 Jan 2007; Bryan Østergaard <kloeri@gentoo.org>
pygobject-2.12.3.ebuild:
Stable on Alpha.
09 Jan 2007; Mart Raudsepp <leio@gentoo.org> pygobject-2.12.3.ebuild:
Fix DESCRIPTION, bug 161033
08 Jan 2007; Mart Raudsepp <leio@gentoo.org> -pygobject-2.12.1.ebuild,
-pygobject-2.12.2.ebuild, pygobject-2.12.3.ebuild:
QA: Set WANT_AUTOCONF, bug 160699. Remove old versions
21 Dec 2006; Markus Rothe <corsair@gentoo.org> pygobject-2.12.3.ebuild:
Stable on ppc64; bug #156662
18 Dec 2006; Gustavo Zacarias <gustavoz@gentoo.org>
pygobject-2.12.3.ebuild:
Stable on sparc
16 Dec 2006; Tobias Scherbaum <dertobi123@gentoo.org>
pygobject-2.12.3.ebuild:
Stable on ppc wrt bug #156662.
12 Dec 2006; Chris Gianelloni <wolf31o2@gentoo.org>
pygobject-2.12.3.ebuild:
Stable on amd64 wrt bug #156662.
10 Dec 2006; Andrej Kacian <ticho@gentoo.org> pygobject-2.12.3.ebuild:
Stable on x86, bug #156662.
*pygobject-2.12.3 (19 Nov 2006)
19 Nov 2006; Mart Raudsepp <leio@gentoo.org> +pygobject-2.12.3.ebuild:
Version bump
30 Oct 2006; Robin H. Johnson <robbat2@gentoo.org>
pygobject-2.12.2.ebuild:
Move WANT_AUTOMAKE=1.8 line above autotools inherit.
30 Oct 2006; Robin H. Johnson <robbat2@gentoo.org>
pygobject-2.12.2.ebuild:
Fix bug #147285, eautomake invocation needed, see ebuild for full details.
*pygobject-2.12.2 (13 Oct 2006)
13 Oct 2006; Mart Raudsepp <leio@gentoo.org> +pygobject-2.12.2.ebuild:
Version bump
22 Sep 2006; Donnie Berkholz <dberkholz@gentoo.org>; metadata.xml,
-pygobject-2.10.1.ebuild:
Remove 'my' version, and turn over completely to gnome.
07 Sep 2006; Daniel Gryniewicz <dang@gentoo.org> metadata.xml:
put pygobject in the gnome herd
07 Sep 2006; Donnie Berkholz <dberkholz@gentoo.org>; pygobject-2.10.1.ebuild:
Sync with gnome overlay ebuild, add back in blocker on pygtk < 2.9 that I
wrongly removed.
*pygobject-2.12.1 (07 Sep 2006)
07 Sep 2006; Daniel Gryniewicz <dang@gentoo.org> +pygobject-2.12.1.ebuild:
New version for gnome 2.16
*pygobject-2.10.1 (05 Sep 2006)
05 Sep 2006; Donnie Berkholz <dberkholz@gentoo.org>; +metadata.xml,
+pygobject-2.10.1.ebuild:
Add GNOME 2 bindings for Python, needed for system-config-*. Based on 2.11
ebuild in gnome overlay. Gnome herd, feel free to add yourself to metadata.
|