summaryrefslogtreecommitdiff
blob: 11eb2a10388be70aa459e9f3bb40ac344168b949 (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
# ChangeLog for dev-python/PyQt4
# Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2
# $Header: /var/cvsroot/gentoo-x86/dev-python/PyQt4/ChangeLog,v 1.293 2015/07/25 00:00:51 pesa Exp $

  25 Jul 2015; Davide Pesavento <pesa@gentoo.org> PyQt4-4.11.1.ebuild,
  PyQt4-4.11.4.ebuild:
  Update HOMEPAGE.

  29 Jun 2015; Davide Pesavento <pesa@gentoo.org> -PyQt4-4.10.3-r2.ebuild:
  Drop old version. As of now, sparc no longer has a stable PyQt4, see bug
  #523322 comment #15.

  17 Jun 2015; Davide Pesavento <pesa@gentoo.org> -PyQt4-4.11.3.ebuild:
  Drop version that is not going to get stabilized.

  14 Jun 2015; Davide Pesavento <pesa@gentoo.org> PyQt4-4.11.4.ebuild:
  Use the new --no-python-dbus configure option.

  14 Jun 2015; Davide Pesavento <pesa@gentoo.org> PyQt4-4.11.4.ebuild:
  PyQt4 became GPL-3 only.

*PyQt4-4.11.4 (14 Jun 2015)

  14 Jun 2015; Davide Pesavento <pesa@gentoo.org> +PyQt4-4.11.4.ebuild:
  Version bump.

  09 Jun 2015; Justin Lecher <jlec@gentoo.org> metadata.xml:
  Updating remote-id in metadata.xml

  11 May 2015; Davide Pesavento <pesa@gentoo.org> -PyQt4-4.11.2.ebuild,
  PyQt4-4.11.3.ebuild:
  Enable tracing with USE=debug; enable configure verbose output to get useful
  build logs in bug reports; stop passing deprecated --no-timestamp option; use
  qt4_get_bindir().

  14 Apr 2015; Agostino Sarubbo <ago@gentoo.org> PyQt4-4.11.1.ebuild:
  Stable for ia64, wrt bug #523322

  08 Apr 2015; Michał Górny <mgorny@gentoo.org> PyQt4-4.10.3-r2.ebuild:
  Drop old Python implementations

  17 Feb 2015; Agostino Sarubbo <ago@gentoo.org> PyQt4-4.11.1.ebuild:
  Stable for ppc64, wrt bug #517344

  16 Feb 2015; Agostino Sarubbo <ago@gentoo.org> PyQt4-4.11.1.ebuild:
  Stable for ppc, wrt bug #517344

  14 Feb 2015; Agostino Sarubbo <ago@gentoo.org> PyQt4-4.11.1.ebuild:
  Stable for x86, wrt bug #517344

  09 Jan 2015; Davide Pesavento <pesa@gentoo.org> PyQt4-4.11.3.ebuild:
  Stop using deprecated python_parallel_foreach_impl.

  31 Dec 2014; Michael Palimaka <kensington@gentoo.org> PyQt4-4.10.3-r2.ebuild,
  PyQt4-4.11.1.ebuild, PyQt4-4.11.2.ebuild:
  Enforce USE dependency for media-libs/phonon.

  10 Dec 2014; Mikle Kolyada <zlogene@gentoo.org> PyQt4-4.11.1.ebuild:
  amd64 stable wrt bug #517344

  22 Nov 2014; Tobias Klausmann <klausman@gentoo.org> PyQt4-4.11.1.ebuild:
  Stable on alpha, bug 523322

*PyQt4-4.11.3 (15 Nov 2014)

  15 Nov 2014; Davide Pesavento <pesa@gentoo.org> +PyQt4-4.11.3.ebuild,
  -PyQt4-4.11.3_pre20141024.ebuild:
  Version bump.

*PyQt4-4.11.3_pre20141024 (01 Nov 2014)

  01 Nov 2014; Davide Pesavento <pesa@gentoo.org>
  +PyQt4-4.11.3_pre20141024.ebuild, -PyQt4-4.11.2-r1.ebuild:
  Bump to 4.11.3 prerelease, which contains upstream fixes for bugs #525392 and
  #525470. Also switch to out-of-source builds.

  15 Oct 2014; Davide Pesavento <pesa@gentoo.org> PyQt4-4.11.2-r1.ebuild:
  Fix bug #525392.

  14 Oct 2014; Davide Pesavento <pesa@gentoo.org>
  +files/PyQt4-4.11.2-phonon.patch, PyQt4-4.11.2-r1.ebuild:
  Fix building against media-libs/phonon (bug 525354).

*PyQt4-4.11.2-r1 (13 Oct 2014)

  13 Oct 2014; Davide Pesavento <pesa@gentoo.org> +PyQt4-4.11.2-r1.ebuild,
  metadata.xml:
  Switch to new upstream build system. Introduce USE=testlib to decouple QtTest
  from QtGui.

  09 Oct 2014; Davide Pesavento <pesa@gentoo.org> PyQt4-4.11.1.ebuild:
  Revert to ~amd64, see bug #523322 comment #4.

  09 Oct 2014; Agostino Sarubbo <ago@gentoo.org> PyQt4-4.11.1.ebuild:
  Stable for amd64, wrt bug #523322

  04 Oct 2014; Markus Meier <maekke@gentoo.org> PyQt4-4.11.1.ebuild:
  arm stable, bug #523322

*PyQt4-4.11.2 (20 Sep 2014)

  20 Sep 2014; Davide Pesavento <pesa@gentoo.org> +PyQt4-4.11.2.ebuild,
  PyQt4-4.11.1.ebuild:
  Version bump. Silence harmless repoman warning.

  13 Sep 2014; Davide Pesavento <pesa@gentoo.org> PyQt4-4.11.1.ebuild:
  Drop deprecated python versions.

  13 Sep 2014; Davide Pesavento <pesa@gentoo.org> -PyQt4-4.10.3-r3.ebuild,
  PyQt4-4.11.1.ebuild:
  Stop using dohtml, remove old.

  17 Jul 2014; Michael Palimaka <kensington@gentoo.org> -PyQt4-4.11.ebuild:
  Remove old.

*PyQt4-4.11.1 (15 Jul 2014)

  15 Jul 2014; Davide Pesavento <pesa@gentoo.org> +PyQt4-4.11.1.ebuild,
  PyQt4-4.11.ebuild:
  Version bump.

  20 Jun 2014; Ian Delaney <idella4@gentoo.org> PyQt4-4.10.3-r3.ebuild,
  PyQt4-4.11.ebuild:
  add py3.4 support req'd to support py packages such as pandas

  30 May 2014; Davide Pesavento <pesa@gentoo.org> PyQt4-4.10.3-r2.ebuild,
  PyQt4-4.10.3-r3.ebuild:
  Restrict sip dep to =4.15* for older PyQt4 versions.

*PyQt4-4.11 (30 May 2014)

  30 May 2014; Davide Pesavento <pesa@gentoo.org> +PyQt4-4.11.ebuild:
  Version bump.

  21 May 2014; Davide Pesavento <pesa@gentoo.org> PyQt4-4.10.3-r2.ebuild,
  PyQt4-4.10.3-r3.ebuild, metadata.xml:
  Update pypi identifier in HOMEPAGE and <upstream> metadata tag. Thanks to
  Martin Walch in bug 510812.

  19 May 2014; Michał Górny <mgorny@gentoo.org> -PyQt4-4.10.2.ebuild,
  -PyQt4-4.10.3.ebuild:
  Drop the old versions that required python-exec:0.

  02 Apr 2014; Michael Palimaka <kensington@gentoo.org> metadata.xml:
  Remove python herd as discussed with them.

*PyQt4-4.10.3-r3 (27 Mar 2014)

  27 Mar 2014; Michał Górny <mgorny@gentoo.org> +PyQt4-4.10.3-r3.ebuild:
  Replace manual Python wrapping with proper eclass functions, bug #484404.

  23 Mar 2014; Agostino Sarubbo <ago@gentoo.org> PyQt4-4.10.3-r2.ebuild:
  Stable for sparc, wrt bug #495638

  23 Mar 2014; Agostino Sarubbo <ago@gentoo.org> PyQt4-4.10.3-r2.ebuild:
  Stable for x86, wrt bug #495638

  19 Mar 2014; Agostino Sarubbo <ago@gentoo.org> PyQt4-4.10.3-r2.ebuild:
  Stable for alpha, wrt bug #495638

  18 Mar 2014; Agostino Sarubbo <ago@gentoo.org> PyQt4-4.10.3-r2.ebuild:
  Stable for ia64, wrt bug #495638

  14 Mar 2014; Agostino Sarubbo <ago@gentoo.org> PyQt4-4.10.3-r2.ebuild:
  Stable for ppc64, wrt bug #495638

  08 Mar 2014; Pacho Ramos <pacho@gentoo.org> PyQt4-4.10.3-r2.ebuild:
  amd64 stable, bug 495638

  02 Feb 2014; Agostino Sarubbo <ago@gentoo.org> PyQt4-4.10.3-r2.ebuild:
  Stable for ppc, wrt bug #495638

  30 Jan 2014; Markus Meier <maekke@gentoo.org> PyQt4-4.10.3-r2.ebuild:
  arm stable, bug #495638

  28 Dec 2013; Steve Arnold <nerdboy@gentoo.org>
  files/PyQt4-4.7.3-qreal_float_support.patch:
  Updated qreal_float patch to remove first hunk (already applied 
  upstream). Tested on arm chromebook; no existing bug.

*PyQt4-4.10.3-r2 (25 Dec 2013)

  25 Dec 2013; Davide Pesavento <pesa@gentoo.org> +PyQt4-4.10.3-r2.ebuild,
  -PyQt4-4.10.3-r1.ebuild, metadata.xml:
  Introduce USE="designer".

  25 Dec 2013; Davide Pesavento <pesa@gentoo.org> -PyQt4-4.9.6-r2.ebuild:
  old

  23 Dec 2013; Agostino Sarubbo <ago@gentoo.org> PyQt4-4.10.2.ebuild:
  Stable for sparc, wrt bug #483112

  31 Oct 2013; Michał Górny <mgorny@gentoo.org> PyQt4-4.10.2.ebuild,
  PyQt4-4.10.3-r1.ebuild, PyQt4-4.10.3.ebuild, PyQt4-4.9.6-r2.ebuild:
  Update the ebuilds to dep on dev-lang/python-exec.

  23 Oct 2013; Davide Pesavento <pesa@gentoo.org> -PyQt4-4.10.1.ebuild:
  old

*PyQt4-4.10.3-r1 (23 Oct 2013)

  23 Oct 2013; Michał Górny <mgorny@gentoo.org> +PyQt4-4.10.3-r1.ebuild:
  Support python-exec:2.

  19 Sep 2013; Ben de Groot <yngwin@gentoo.org> PyQt4-4.10.3.ebuild:
  Depend on sip >=4.15.0 to fix build failure (bug #485274)

  17 Sep 2013; Michał Górny <mgorny@gentoo.org> PyQt4-4.10.1.ebuild,
  PyQt4-4.10.2.ebuild, PyQt4-4.10.3.ebuild, PyQt4-4.9.6-r2.ebuild:
  Add explicit dep on python-exec:0 since the package wraps the script manually.

*PyQt4-4.10.3 (17 Sep 2013)

  17 Sep 2013; Ben de Groot <yngwin@gentoo.org> +PyQt4-4.10.3.ebuild:
  Version bump

  13 Sep 2013; Jonathan Callen <jcallen@gentoo.org> PyQt4-4.10.1.ebuild,
  PyQt4-4.10.2.ebuild, PyQt4-4.9.6-r2.ebuild:
  Add missing [${PYTHON_USEDEP}] on dbus-python DEPEND

  10 Sep 2013; Markus Meier <maekke@gentoo.org> PyQt4-4.10.2.ebuild:
  arm stable, bug #483112

  05 Sep 2013; Agostino Sarubbo <ago@gentoo.org> PyQt4-4.10.2.ebuild:
  Stable for x86, wrt bug #483112

  05 Sep 2013; Michał Górny <mgorny@gentoo.org> PyQt4-4.10.1.ebuild,
  PyQt4-4.10.2.ebuild, PyQt4-4.9.6-r2.ebuild:
  Clean up PYTHON_COMPAT from old implementations.

  05 Sep 2013; Agostino Sarubbo <ago@gentoo.org> PyQt4-4.10.2.ebuild:
  Stable for ppc64, wrt bug #483112

  04 Sep 2013; Agostino Sarubbo <ago@gentoo.org> PyQt4-4.10.2.ebuild:
  Stable for ppc, wrt bug #483112

  03 Sep 2013; Agostino Sarubbo <ago@gentoo.org> PyQt4-4.10.2.ebuild:
  Stable for ia64, wrt bug #483112

  02 Sep 2013; Agostino Sarubbo <ago@gentoo.org> PyQt4-4.10.2.ebuild:
  Stable for alpha, wrt bug #483112

  31 Aug 2013; Agostino Sarubbo <ago@gentoo.org> PyQt4-4.10.2.ebuild:
  Stable for amd64, wrt bug #483112

  22 Jul 2013; Michael Palimaka <kensington@gentoo.org> PyQt4-4.10.1.ebuild,
  PyQt4-4.10.2.ebuild, PyQt4-4.9.6-r2.ebuild:
  Reorder Qt dependencies.

  10 Jul 2013; Patrick Lauer <patrick@gentoo.org> PyQt4-4.10.1.ebuild,
  PyQt4-4.10.2.ebuild, PyQt4-4.9.6-r2.ebuild:
  Fixing qtgui/designer deps for qt-4.8.5

  10 Jul 2013; Patrick Lauer <patrick@gentoo.org> PyQt4-4.10.1.ebuild,
  PyQt4-4.9.6-r2.ebuild:
  Fixing qtgui deps for qt-4.8.5

  08 Jul 2013; Davide Pesavento <pesa@gentoo.org> PyQt4-4.10.2.ebuild:
  Remove wrong usedep for qtgui.

*PyQt4-4.10.2 (24 Jun 2013)

  24 Jun 2013; Davide Pesavento <pesa@gentoo.org> +PyQt4-4.10.2.ebuild:
  Version bump.

  24 Jun 2013; Davide Pesavento <pesa@gentoo.org> -PyQt4-4.10.ebuild,
  PyQt4-4.10.1.ebuild:
  Add PYTHON_REQUIRED_USE. Remove old.

*PyQt4-4.10.1 (22 May 2013)

  22 May 2013; Michael Palimaka <kensington@gentoo.org> +PyQt4-4.10.1.ebuild:
  Version bump.

  10 May 2013; Patrick Lauer <patrick@gentoo.org> metadata.xml:
  Remove unused flag description from metadata

  04 May 2013; Markos Chandras <hwoarang@gentoo.org> -PyQt4-4.9.4-r1.ebuild,
  -files/PyQt4-4.7.2-configure.py.patch,
  -files/PyQt4-4.9.4-pyuic-custom-widgets.patch:
  old

*PyQt4-4.10 (12 Mar 2013)

  12 Mar 2013; Davide Pesavento <pesa@gentoo.org> +PyQt4-4.10.ebuild:
  Version bump. Fix also bug #433944 by Franz Fellner.

  11 Mar 2013; Agostino Sarubbo <ago@gentoo.org> PyQt4-4.9.6-r2.ebuild:
  Stable for sparc, wrt bug #457046

  03 Mar 2013; Markos Chandras <hwoarang@gentoo.org> PyQt4-4.9.4-r1.ebuild,
  PyQt4-4.9.6-r2.ebuild:
  Move Qt dependencies to the new category

  21 Feb 2013; Agostino Sarubbo <ago@gentoo.org> PyQt4-4.9.6-r2.ebuild:
  Stable for ia64, wrt bug #457046

  18 Feb 2013; Agostino Sarubbo <ago@gentoo.org> PyQt4-4.9.6-r2.ebuild:
  Stable for ppc64, wrt bug #457046

  18 Feb 2013; Agostino Sarubbo <ago@gentoo.org> PyQt4-4.9.6-r2.ebuild:
  Stable for ppc, wrt bug #457046

  15 Feb 2013; Agostino Sarubbo <ago@gentoo.org> PyQt4-4.9.6-r2.ebuild:
  Stable for alpha, wrt bug #457046

  15 Feb 2013; Agostino Sarubbo <ago@gentoo.org> PyQt4-4.9.6-r2.ebuild:
  Stable for arm, wrt bug #457046

  15 Feb 2013; Agostino Sarubbo <ago@gentoo.org> PyQt4-4.9.6-r2.ebuild:
  Stable for x86, wrt bug #457046

  15 Feb 2013; Agostino Sarubbo <ago@gentoo.org> PyQt4-4.9.6-r2.ebuild:
  Stable for amd64, wrt bug #457046

  15 Feb 2013; Davide Pesavento <pesa@gentoo.org> PyQt4-4.9.6-r2.ebuild:
  BUILDDIR -> BUILD_DIR, fixes bug 457538 by ago.

  13 Feb 2013; Davide Pesavento <pesa@gentoo.org> -PyQt4-4.9.6-r1.ebuild,
  -PyQt4-4.9.6.ebuild, PyQt4-4.9.6-r2.ebuild:
  Fix double prefix; remove old.

  04 Feb 2013; Michael Palimaka <kensington@gentoo.org> PyQt4-4.9.6-r2.ebuild:
  Use run_in_build_dir. Add python-3.3 support wrt bug #455020.

*PyQt4-4.9.6-r2 (29 Jan 2013)

  29 Jan 2013; Michael Palimaka <kensington@gentoo.org> +PyQt4-4.9.6-r2.ebuild:
  Migrate to the new python eclass.

  27 Dec 2012; Davide Pesavento <pesa@gentoo.org> PyQt4-4.9.6-r1.ebuild:
  Improve pyqt4_use_enable() as suggested by Arfrever.

  26 Dec 2012; Davide Pesavento <pesa@gentoo.org> -PyQt4-4.9.5.ebuild:
  old

*PyQt4-4.9.6-r1 (26 Dec 2012)

  26 Dec 2012; Davide Pesavento <pesa@gentoo.org> +PyQt4-4.9.6-r1.ebuild,
  metadata.xml:
  EAPI=5 to be able to use slot operators in sip dependency. Sync USE flags with
  pyside: rename assistant to help, add script and scripttools (bug 431460 by
  Arfrever).

*PyQt4-4.9.6 (10 Dec 2012)

  10 Dec 2012; Davide Pesavento <pesa@gentoo.org> +PyQt4-4.9.6.ebuild:
  Version bump, with some minor updates from qt overlay.

  22 Nov 2012; Markus Meier <maekke@gentoo.org> PyQt4-4.9.4-r1.ebuild:
  arm stable, bug #435074

  28 Oct 2012; Markos Chandras <hwoarang@gentoo.org> -PyQt4-4.9.4.ebuild,
  PyQt4-4.9.4-r1.ebuild:
  Promote 4.9.4-r1 bugfix rel ebuild to stable. Drop old

  28 Oct 2012; Markos Chandras <hwoarang@gentoo.org> -PyQt4-4.8.4.ebuild,
  -PyQt4-4.9.1.ebuild:
  Remove old

*PyQt4-4.9.5 (05 Oct 2012)

  05 Oct 2012; Markos Chandras <hwoarang@gentoo.org> +PyQt4-4.9.5.ebuild:
  Version bump

  09 Sep 2012; Raúl Porcel <armin76@gentoo.org> PyQt4-4.9.4.ebuild:
  alpha/ia64/sparc stable wrt #429042

*PyQt4-4.9.4-r1 (03 Sep 2012)

  03 Sep 2012; Davide Pesavento <pesa@gentoo.org> +PyQt4-4.9.4-r1.ebuild,
  +files/PyQt4-4.9.4-pyuic-custom-widgets.patch:
  Apply upstream patch to fix regression in pyuic's handling of custom widgets
  (bug 431070 by Laurent Bachelier).

  20 Aug 2012; Johannes Huber <johu@gentoo.org> PyQt4-4.9.4.ebuild:
  Stable for x86, wrt bug #429042

  11 Aug 2012; Agostino Sarubbo <ago@gentoo.org> PyQt4-4.9.4.ebuild:
  Stable for amd64, wrt bug #429042

  11 Aug 2012; Anthony G. Basile <blueness@gentoo.org> PyQt4-4.9.4.ebuild:
  Stable ppc64, bug #429042

  10 Aug 2012; Anthony G. Basile <blueness@gentoo.org> PyQt4-4.9.4.ebuild:
  Stable ppc, bug #429042

  09 Jul 2012; Raúl Porcel <armin76@gentoo.org> PyQt4-4.9.1.ebuild:
  ia64 stable

  09 Jul 2012; Davide Pesavento <pesa@gentoo.org> -PyQt4-4.8.1.ebuild,
  -files/PyQt4-4.6.1-configure-multilib.patch:
  Remove old.

  08 Jul 2012; Raúl Porcel <armin76@gentoo.org> PyQt4-4.9.1.ebuild,
  PyQt4-4.9.4.ebuild:
  alpha/ia64/sparc stable wrt #412929

*PyQt4-4.9.4 (02 Jul 2012)

  02 Jul 2012; Davide Pesavento <pesa@gentoo.org> +PyQt4-4.9.4.ebuild,
  -PyQt4-4.9.3.ebuild:
  Version bump.

*PyQt4-4.9.3 (27 Jun 2012)

  27 Jun 2012; Davide Pesavento <pesa@gentoo.org> +PyQt4-4.9.3.ebuild,
  -PyQt4-4.9.2.ebuild:
  Version bump.

  23 Jun 2012; Markos Chandras <hwoarang@gentoo.org> PyQt4-4.9.2.ebuild:
  Raise dev-python/sip dependency to 4.13.3 thanks to Arfrever

*PyQt4-4.9.2 (21 Jun 2012)

  21 Jun 2012; Markos Chandras <hwoarang@gentoo.org> +PyQt4-4.9.2.ebuild:
  Version bump

  14 Jun 2012; Ben de Groot <yngwin@gentoo.org> PyQt4-4.8.1.ebuild:
  Destabling to ~ia64 because last available stable qt will be masked pending
  removal

  23 May 2012; Jeff Horelick <jdhore@gentoo.org> PyQt4-4.9.1.ebuild:
  marked x86 per bug 412929

  21 May 2012; Mike Gilbert <floppym@gentoo.org> PyQt4-4.8.1.ebuild,
  PyQt4-4.8.4.ebuild, PyQt4-4.9.1.ebuild:
  Inherit eutils.

  16 May 2012; Mike Gilbert <floppym@gentoo.org> PyQt4-4.8.1.ebuild,
  PyQt4-4.8.4.ebuild, PyQt4-4.9.1.ebuild:
  Revert previous change.

  16 May 2012; Mike Gilbert <floppym@gentoo.org> PyQt4-4.8.1.ebuild,
  PyQt4-4.8.4.ebuild, PyQt4-4.9.1.ebuild:
  Restrict python 3.1 to match dev-python/dbus-python.

  13 May 2012; Davide Pesavento <pesa@gentoo.org> metadata.xml:
  Fix kde USE flag description (media-libs/phonon vs. media-sound/phonon).

  04 May 2012; Patrick Lauer <patrick@gentoo.org> PyQt4-4.9.1.ebuild:
  Migrating dev-util/pkgconfig -> virtual/pkgconfig

  24 Apr 2012; Agostino Sarubbo <ago@gentoo.org> PyQt4-4.9.1.ebuild:
  Stable for amd64, wrt bug #412929

  31 Mar 2012; Tobias Klausmann <klausman@gentoo.org> PyQt4-4.8.4.ebuild:
  Stable on alpha, bug #354033

  07 Mar 2012; Andreas K. Huettel <dilfridge@gentoo.org> PyQt4-4.8.1.ebuild,
  PyQt4-4.8.4.ebuild:
  PyQt4-4.8 does not build with sip-4.13, bug 407291

  07 Mar 2012; Davide Pesavento <pesa@gentoo.org> PyQt4-4.9.1.ebuild:
  Slightly improve the ewarn message in pkg_postinst().

  07 Mar 2012; Davide Pesavento <pesa@gentoo.org> metadata.xml:
  Put qt as the primary herd in metadata.

  07 Mar 2012; Davide Pesavento <pesa@gentoo.org> PyQt4-4.8.4.ebuild:
  Fix insecure RUNPATH in qpy/QtOpenGL, thanks to Steve L
  <slong@rathaus.eclipse.co.uk> in bug #407281.

  03 Mar 2012; Davide Pesavento <pesa@gentoo.org> PyQt4-4.9.1.ebuild:
  Switch to EAPI 4, add REQUIRED_USE.

  02 Mar 2012; Davide Pesavento <pesa@gentoo.org> PyQt4-4.8.1.ebuild,
  PyQt4-4.8.4.ebuild:
  Drop ~x86-fbsd because of unkeyworded dependencies.

  02 Mar 2012; Davide Pesavento <pesa@gentoo.org> PyQt4-4.9.1.ebuild:
  Don't enable QtAssistant module because it was removed in qt-4.7 and we
  already depend on 4.7.2 or later.

  21 Feb 2012; Davide Pesavento <pesa@gentoo.org> -PyQt4-4.7.3.ebuild,
  PyQt4-4.8.1.ebuild, PyQt4-4.8.4.ebuild:
  Restrict pypy for older versions too.

  21 Feb 2012; Davide Pesavento <pesa@gentoo.org> PyQt4-4.9.1.ebuild:
  Build QtTest module only with USE="X" because it needs QtGui (bug #348349).
  Add build-time dep on pkgconfig with USE="dbus". Raise minimum required Qt
  version.

  20 Feb 2012; Davide Pesavento <pesa@gentoo.org> -PyQt4-4.7.7-r1.ebuild,
  -PyQt4-4.8.1-r1.ebuild, -PyQt4-4.8.2.ebuild, -PyQt4-4.8.3.ebuild,
  -PyQt4-4.8.5.ebuild, -PyQt4-4.8.6.ebuild, -PyQt4-4.9.ebuild,
  -files/PyQt4-4.7.7-fix-scpk-and-flag-issue.diff,
  -files/PyQt4-4.8.3-configure-multilib.patch, metadata.xml:
  Add <upstream> tag to metadata. Cleanup old ebuilds and patches.

  20 Feb 2012; Patrick Lauer <patrick@gentoo.org> PyQt4-4.7.3.ebuild,
  PyQt4-4.7.7-r1.ebuild, PyQt4-4.8.1-r1.ebuild, PyQt4-4.8.1.ebuild,
  PyQt4-4.8.2.ebuild, PyQt4-4.8.3.ebuild, PyQt4-4.8.4.ebuild,
  PyQt4-4.8.5.ebuild, PyQt4-4.8.6.ebuild, PyQt4-4.9.1.ebuild, PyQt4-4.9.ebuild:
  Fixing pypy restricts to actually work

*PyQt4-4.9.1 (12 Feb 2012)

  12 Feb 2012; Markos Chandras <hwoarang@gentoo.org> +PyQt4-4.9.1.ebuild:
  version bump

  25 Jan 2012; Alex Alexander <wired@gentoo.org> PyQt4-4.9.ebuild:
  builds with qt-opengl-4.8.0[egl], updated dep

  27 Dec 2011; Maxim Koltsov <maksbotan@gentoo.org> PyQt4-4.9.ebuild:
  Enable versioning of /usr/bin/pyuic4. Run eqmake4() in qpy/QtDBus directory.
  Fixes backported from Progress Overlay. Patch by Arfrever.

*PyQt4-4.9 (24 Dec 2011)

  24 Dec 2011; Markos Chandras <hwoarang@gentoo.org> +PyQt4-4.9.ebuild:
  Version bump

*PyQt4-4.8.6 (11 Nov 2011)

  11 Nov 2011; Markos Chandras <hwoarang@gentoo.org> +PyQt4-4.8.6.ebuild:
  Version bump

  24 Aug 2011; Markos Chandras <hwoarang@gentoo.org> PyQt4-4.8.5.ebuild:
  Restrict PyPy ABIs. Avoid warnings about insecure runpaths (bug #376483).
  Print useful warning in pkg_postinst(). Patch by Arfrever. Backported from
  python overlay.

*PyQt4-4.8.5 (19 Aug 2011)

  19 Aug 2011; Markos Chandras <hwoarang@gentoo.org> +PyQt4-4.8.5.ebuild:
  Version bump

  25 Jul 2011; Kacper Kowalik <xarthisius@gentoo.org> PyQt4-4.8.4.ebuild:
  ppc/ppc64 stable wrt #374591

  21 Jul 2011; Markus Meier <maekke@gentoo.org> PyQt4-4.8.4.ebuild:
  x86 stable, bug #374591

  13 Jul 2011; Kacper Kowalik <xarthisius@gentoo.org> PyQt4-4.8.3.ebuild:
  ppc64 stable wrt #354033

  10 Jul 2011; Markos Chandras <hwoarang@gentoo.org> PyQt4-4.8.4.ebuild:
  Stable on amd64 wrt bug #374591

  01 Jun 2011; Brent Baude <ranger@gentoo.org> PyQt4-4.8.3.ebuild:
  Marking PyQt4-4.8.3 ppc stable for bug 354033

  09 May 2011; Markos Chandras <hwoarang@gentoo.org> PyQt4-4.8.3.ebuild:
  Stable on amd64 wrt bug #354033

  09 May 2011; Thomas Kahle <tomka@gentoo.org> PyQt4-4.8.3.ebuild:
  x86 stable per bug 354033

*PyQt4-4.8.4 (02 May 2011)

  02 May 2011; Arfrever Frehtes Taifersar Arahesis <arfrever@gentoo.org>
  +PyQt4-4.8.4.ebuild:
  Version bump.

  26 Mar 2011; Andreas K. Huettel <dilfridge@gentoo.org> PyQt4-4.7.3.ebuild,
  PyQt4-4.7.7-r1.ebuild, PyQt4-4.8.1.ebuild, PyQt4-4.8.1-r1.ebuild,
  PyQt4-4.8.2.ebuild, PyQt4-4.8.3.ebuild:
  Adapt phonon dependency for package move

  16 Mar 2011; Kacper Kowalik <xarthisius@gentoo.org> PyQt4-4.8.1.ebuild:
  ppc64 stable wrt #349607

  27 Feb 2011; Raúl Porcel <armin76@gentoo.org> PyQt4-4.8.1.ebuild:
  ia64/sparc stable wrt #349607

  27 Feb 2011; Tobias Klausmann <klausman@gentoo.org> PyQt4-4.8.1.ebuild:
  Stable on alpha, bug #349607

  28 Jan 2011; Arfrever Frehtes Taifersar Arahesis <arfrever@gentoo.org>
  PyQt4-4.8.3.ebuild:
  Update dependencies (bug #353053).

*PyQt4-4.8.3 (25 Jan 2011)

  25 Jan 2011; Arfrever Frehtes Taifersar Arahesis <arfrever@gentoo.org>
  +PyQt4-4.8.3.ebuild, +files/PyQt4-4.8.3-configure-multilib.patch:
  Version bump.

  16 Jan 2011; Pawel Hajdan jr <phajdan.jr@gentoo.org> PyQt4-4.8.1.ebuild:
  x86 stable wrt bug #349607

  07 Jan 2011; Brent Baude <ranger@gentoo.org> PyQt4-4.8.1.ebuild:
  Marking PyQt4-4.8.1 ppc stable for bug 349607

  04 Jan 2011; Markos Chandras <hwoarang@gentoo.org> PyQt4-4.8.1.ebuild:
  Stable on amd64 wrt bug #349607

  30 Dec 2010; Arfrever Frehtes Taifersar Arahesis <arfrever@gentoo.org>
  PyQt4-4.8.1.ebuild, PyQt4-4.8.1-r1.ebuild, PyQt4-4.8.2.ebuild:
  Require x11-libs/qt-opengl[-egl] until bug #344513 is fixed.

*PyQt4-4.8.1-r1 (30 Dec 2010)

  30 Dec 2010; Arfrever Frehtes Taifersar Arahesis <arfrever@gentoo.org>
  PyQt4-4.8.1.ebuild, +PyQt4-4.8.1-r1.ebuild:
  Copy 4.8.1 to 4.8.1-r1. Delete "declarative" USE flag in 4.8.1.

  25 Dec 2010; Arfrever Frehtes Taifersar Arahesis <arfrever@gentoo.org>
  PyQt4-4.8.2.ebuild:
  Fix dependencies (bug #349672).

*PyQt4-4.8.2 (24 Dec 2010)

  24 Dec 2010; Arfrever Frehtes Taifersar Arahesis <arfrever@gentoo.org>
  +PyQt4-4.8.2.ebuild:
  Version bump.

  19 Dec 2010; Arfrever Frehtes Taifersar Arahesis <arfrever@gentoo.org>
  PyQt4-4.7.3.ebuild, PyQt4-4.7.7-r1.ebuild, PyQt4-4.8.1.ebuild:
  Restrict Jython ABIs.

  19 Dec 2010; Arfrever Frehtes Taifersar Arahesis <arfrever@gentoo.org>
  -files/PyQt4-4.5.4-qgraphicslinearlayout-fix.patch,
  -files/configure-4.6.1.py.patch, -PyQt4-4.6.2.ebuild, -PyQt4-4.8.ebuild,
  -files/configure.py.patch:
  Delete.

  06 Dec 2010; Alex Alexander <wired@gentoo.org> -PyQt4-4.5.4-r4.ebuild:
  old, depends on qt 4.5

  06 Nov 2010; Jeroen Roovers <jer@gentoo.org> PyQt4-4.5.4-r4.ebuild,
  PyQt4-4.6.2.ebuild, PyQt4-4.7.3.ebuild, PyQt4-4.7.7-r1.ebuild,
  PyQt4-4.8.ebuild, PyQt4-4.8.1.ebuild:
  Remove HPPA keywording (bug #239441).

*PyQt4-4.8.1 (30 Oct 2010)

  30 Oct 2010; Arfrever Frehtes Taifersar Arahesis <arfrever@gentoo.org>
  +PyQt4-4.8.1.ebuild:
  Version bump.

  23 Oct 2010; Raúl Porcel <armin76@gentoo.org> PyQt4-4.7.3.ebuild:
  ia64/sparc stable wrt #315775

*PyQt4-4.8 (23 Oct 2010)

  23 Oct 2010; Arfrever Frehtes Taifersar Arahesis <arfrever@gentoo.org>
  -PyQt4-4.7.ebuild, -PyQt4-4.7.5.ebuild, -PyQt4-4.7.7.ebuild,
  +PyQt4-4.8.ebuild, metadata.xml:
  Version bump.

*PyQt4-4.7.7-r1 (06 Oct 2010)

  06 Oct 2010; Theo Chatzimichos <tampakrap@gentoo.org>
  +PyQt4-4.7.7-r1.ebuild, +files/PyQt4-4.7.7-fix-scpk-and-flag-issue.diff:
  Revision bump, add patch that fixes compilation with PyKDE 4.5.2

*PyQt4-4.7.7 (21 Sep 2010)

  21 Sep 2010; Markos Chandras <hwoarang@gentoo.org> -PyQt4-4.7.6.ebuild,
  +PyQt4-4.7.7.ebuild:
  Version bump. Remove old bogus version

  13 Sep 2010; Tobias Klausmann <klausman@gentoo.org> PyQt4-4.7.3.ebuild:
  Stable on alpha, bug #315775

  13 Sep 2010; Joseph Jezak <josejx@gentoo.org> PyQt4-4.7.3.ebuild:
  Marked ppc stable for bug #315775.

  10 Sep 2010; Arfrever Frehtes Taifersar Arahesis <arfrever@gentoo.org>
  PyQt4-4.7.6.ebuild:
  Update EAPI. Fix dependencies.

*PyQt4-4.7.6 (08 Sep 2010)

  08 Sep 2010; Markos Chandras <hwoarang@gentoo.org> -PyQt4-4.7.2.ebuild,
  +PyQt4-4.7.6.ebuild:
  Version bump. Remove old ebuild

  01 Sep 2010; Markos Chandras <hwoarang@gentoo.org> -PyQt4-4.7.4.ebuild,
  PyQt4-4.7.5.ebuild:
  Drop old bogus ebuild. Drop RESTRICT_PYTHON_ABIS from latest ebuild

*PyQt4-4.7.5 (01 Sep 2010)

  01 Sep 2010; Markos Chandras <hwoarang@gentoo.org> PyQt4-4.7.4.ebuild,
  +PyQt4-4.7.5.ebuild:
  Version bump

  18 Aug 2010; Jeroen Roovers <jer@gentoo.org> PyQt4-4.7.3.ebuild:
  Stable for HPPA (bug #315775).

  15 Jul 2010; Markos Chandras <hwoarang@gentoo.org> PyQt4-4.7.4.ebuild:
  Bump sip dependency to 4.10.3. Fix arm epatch command

*PyQt4-4.7.4 (13 Jul 2010)

  13 Jul 2010; Markos Chandras <hwoarang@gentoo.org> +PyQt4-4.7.4.ebuild:
  Version bump

  05 Jul 2010; Samuli Suominen <ssuominen@gentoo.org> PyQt4-4.7.3.ebuild:
  ppc64 stable wrt #315775

  16 Jun 2010; Tomas Touceda <chiiph@gentoo.org> PyQt4-4.7.3.ebuild,
  +files/PyQt4-4.7.3-qreal_float_support.patch:
  Add patch for qreal/float support in ARM wrt bug 322349

  03 Jun 2010; Pawel Hajdan jr <phajdan.jr@gentoo.org> PyQt4-4.7.3.ebuild:
  x86 stable wrt bug 315775

  25 May 2010; Markos Chandras <hwoarang@gentoo.org> PyQt4-4.7.3.ebuild:
  Stable on amd64 wrt bug 315775

  23 Apr 2010; Theo Chatzimichos <tampakrap@gentoo.org> PyQt4-4.7.ebuild,
  PyQt4-4.7.2.ebuild, PyQt4-4.7.3.ebuild:
  Fix sip dep in PyQt4 ebuilds

*PyQt4-4.7.3 (17 Apr 2010)

  17 Apr 2010; Markos Chandras <hwoarang@gentoo.org> +PyQt4-4.7.3.ebuild:
  Version bump

  11 Apr 2010; <nixnut@gentoo.org> PyQt4-4.7.ebuild:
  ppc stable #301105

*PyQt4-4.7.2 (18 Mar 2010)

  18 Mar 2010; Ben de Groot <yngwin@gentoo.org> +PyQt4-4.7.2.ebuild,
  +files/PyQt4-4.7.2-configure.py.patch:
  Version bump. ChangeLog is no longer shipped. Update patch.

  03 Mar 2010; Christian Faulhammer <fauli@gentoo.org> PyQt4-4.7.ebuild:
  stable x86, bug 301105

  02 Mar 2010; Samuli Suominen <ssuominen@gentoo.org> PyQt4-4.7.ebuild:
  amd64 stable wrt #301105

  16 Feb 2010; Jonathan Callen <abcd@gentoo.org>
  -files/PyQt4-4.4.4-qgraphicsproxywidget-avoid-event-callback-loop.patch,
  -files/fix_license_check.patch:
  Drop old patches

  10 Feb 2010; Jeroen Roovers <jer@gentoo.org> PyQt4-4.6.2.ebuild:
  Stable for HPPA (bug #300713).

  08 Feb 2010; Christian Faulhammer <fauli@gentoo.org> PyQt4-4.6.2.ebuild:
  stable x86, bug 300713

  02 Feb 2010; Alex Alexander <wired@gentoo.org> PyQt4-4.5.4-r4.ebuild,
  PyQt4-4.6.2.ebuild:
  updated SRC_URI to use gentoo mirrors, upstream doesn't provide these
  versions anymore

  31 Jan 2010; <hwoarang@gentoo.org> PyQt4-4.6.2.ebuild:
  Stable on amd64 wrt bug #300713

  20 Jan 2010; Jonathan Callen <abcd@gentoo.org> PyQt4-4.7.ebuild:
  Add prefix keywords, support

*PyQt4-4.7 (15 Jan 2010)

  15 Jan 2010; Ben de Groot <yngwin@gentoo.org> +PyQt4-4.7.ebuild:
  Version bump

  11 Jan 2010; Arfrever Frehtes Taifersar Arahesis <arfrever@gentoo.org>
  PyQt4-4.5.4-r4.ebuild, PyQt4-4.6.2.ebuild:
  Don't call python_need_rebuild().

  06 Jan 2010; <hwoarang@gentoo.org> PyQt4-4.6.2.ebuild:
  Migrate to qt4-r2 eclass

  02 Jan 2010; Arfrever Frehtes Taifersar Arahesis <arfrever@gentoo.org>
  PyQt4-4.5.4-r4.ebuild, PyQt4-4.6.2.ebuild:
  Only restrict Python 3.2.

  02 Jan 2010; Ben de Groot <yngwin@gentoo.org> PyQt4-4.5.4-r4.ebuild,
  PyQt4-4.6.2.ebuild:
  Adding RESTRICT_PYTHON_ABIS for python3. Current PyQt4 versions only work
  with python2. Fixes bug 292419.

  13 Dec 2009; Ben de Groot <yngwin@gentoo.org> -PyQt4-4.4.4-r2.ebuild,
  -PyQt4-4.4.4-r5.ebuild, -PyQt4-4.5.2.ebuild, -PyQt4-4.5.4-r3.ebuild,
  PyQt4-4.5.4-r4.ebuild, -PyQt4-4.6.1.ebuild, -PyQt4-4.6.1-r1.ebuild,
  PyQt4-4.6.2.ebuild, metadata.xml:
  Remove obsolete versions. Pin 4.5.4 on correct sip and Qt versions. Remove
  qt3support useflag description from metadata, as it is no longer in use.

  30 Nov 2009; Joseph Jezak <josejx@gentoo.org> PyQt4-4.5.4-r4.ebuild:
  Marked ppc64 stable.

*PyQt4-4.6.2 (20 Nov 2009)

  20 Nov 2009; Arfrever Frehtes Taifersar Arahesis <arfrever@gentoo.org>
  +PyQt4-4.6.2.ebuild:
  Version bump.

*PyQt4-4.6.1-r1 (05 Nov 2009)

  05 Nov 2009; Alex Alexander <wired@gentoo.org> +PyQt4-4.6.1-r1.ebuild,
  +files/PyQt4-4.6.1-configure-multilib.patch:
  added multilib patch wrt bug #283936

*PyQt4-4.6.1 (28 Oct 2009)

  28 Oct 2009; Markos Chandras <hwoarang@gentoo.org> +PyQt4-4.6.1.ebuild,
  +files/configure-4.6.1.py.patch:
  Version bump. Add new configuration patch

  18 Oct 2009; Raúl Porcel <armin76@gentoo.org> PyQt4-4.5.4-r4.ebuild:
  alpha/ia64/sparc stable wrt #284707

  27 Sep 2009; nixnut <nixnut@gentoo.org> PyQt4-4.5.4-r4.ebuild:
  ppc stable #284707

  22 Sep 2009; Markus Meier <maekke@gentoo.org> PyQt4-4.5.4-r4.ebuild:
  add ~arm

  22 Sep 2009; Jeroen Roovers <jer@gentoo.org> PyQt4-4.5.4-r4.ebuild:
  Stable for HPPA (bug #284707).

  22 Sep 2009; Markus Meier <maekke@gentoo.org> PyQt4-4.5.4-r4.ebuild:
  amd64 stable, bug #284707

  16 Sep 2009; Christian Faulhammer <fauli@gentoo.org>
  PyQt4-4.5.4-r4.ebuild:
  stable x86, bug 284707

  06 Sep 2009; Christian Ruppert <idl0r@gentoo.org>
  -files/PyQt4-4.4_compile.patch:
  Remove unused patch.

  16 Aug 2009; Markos Chandras <hwoarang@gentoo.org> -PyQt4-4.5.4.ebuild,
  -PyQt4-4.5.4-r2.ebuild:
  Remove old ebuilds

  16 Aug 2009; Thomas Anderson <gentoofan23@gentoo.org>
  PyQt4-4.4.4-r5.ebuild:
  stable amd64, bug 276852

  16 Aug 2009; Raúl Porcel <armin76@gentoo.org> PyQt4-4.4.4-r5.ebuild:
  ia64 stable wrt #276852

*PyQt4-4.5.4-r4 (15 Aug 2009)

  15 Aug 2009; Markos Chandras <hwoarang@gentoo.org> +PyQt4-4.5.4-r4.ebuild:
  Build QtScriptTools bindings. Fixes bug 279945. Thanks to Davide Pesavento
  <davidepesa@gmail.com> for the patch

*PyQt4-4.5.4-r3 (12 Aug 2009)

  12 Aug 2009; Markos Chandras <hwoarang@gentoo.org> -PyQt4-4.5.4-r1.ebuild,
  +PyQt4-4.5.4-r3.ebuild,
  +files/PyQt4-4.5.4-qgraphicslinearlayout-fix.patch:
  Added patch for removing items from QGraphicsLinearLayout. Fixes bug
  280634 .
  THanks to Fabio Erculiani <lxnay@sabayonlinux.org> for the patch

*PyQt4-4.5.4-r2 (11 Aug 2009)

  11 Aug 2009; Markos Chandras <hwoarang@gentoo.org> +PyQt4-4.5.4-r2.ebuild:
  Respect LINK, add missing inherit. Thanks to Davide Pesavento

*PyQt4-4.5.4-r1 (05 Aug 2009)

  05 Aug 2009; Markos Chandras <hwoarang@gentoo.org> +PyQt4-4.5.4-r1.ebuild:
  New revision including various QA fixes due to eqmake4 usage

  04 Aug 2009; Markos Chandras <hwoarang@gentoo.org> PyQt4-4.5.4.ebuild:
  Fix bug #280055 for real this time

  02 Aug 2009; Markos Chandras <hwoarang@gentoo.org> PyQt4-4.5.4.ebuild:
  Fix QtCore rpath without checking X use flag. Install all html
  documentation (
  bug #280055 )

  02 Aug 2009; Arfrever Frehtes Taifersar Arahesis <arfrever@gentoo.org>
  PyQt4-4.5.4.ebuild:
  Set SUPPORT_PYTHON_ABIS.

*PyQt4-4.5.4 (31 Jul 2009)

  31 Jul 2009; Alex Alexander <wired@gentoo.org> +PyQt4-4.5.4.ebuild:
  version bump

  27 Jul 2009; nixnut <nixnut@gentoo.org> PyQt4-4.4.4-r5.ebuild:
  ppc stable #276852

  21 Jul 2009; Tobias Klausmann <klausman@gentoo.org> PyQt4-4.4.4-r5.ebuild:
  Stable on alpha, bug #276852

  17 Jul 2009; Markos Chandras <hwoarang@gentoo.org> -PyQt4-4.4.4-r4.ebuild,
  -PyQt4-4.5.1.ebuild:
  Remove old ebuilds

*PyQt4-4.5.2 (14 Jul 2009)

  14 Jul 2009; Markos Chandras <hwoarang@gentoo.org> +PyQt4-4.5.2.ebuild:
  Version bump

  09 Jul 2009; Ferris McCormick <fmccor@gentoo.org> PyQt4-4.4.4-r5.ebuild:
  Sparc stable, Bug #276852.

  08 Jul 2009; Christian Faulhammer <fauli@gentoo.org>
  PyQt4-4.4.4-r5.ebuild:
  stable x86, bug 276852

  08 Jul 2009; Jeroen Roovers <jer@gentoo.org> PyQt4-4.4.4-r5.ebuild:
  Stable for HPPA (bug #276852).

  28 Jun 2009; Markos Chandras <hwoarang@gentoo.org> -PyQt4-4.5.ebuild:
  Remove old ebuild

  20 Jun 2009; Arfrever Frehtes Taifersar Arahesis <arfrever@gentoo.org>
  PyQt4-4.5.1.ebuild:
  Don't install modules specific for other versions of Python (bug #274499).

  16 Jun 2009; Markos Chandras <hwoarang@gentoo.org> PyQt4-4.5.1.ebuild:
  Raise sip dependency to 4.8.1

*PyQt4-4.5.1 (16 Jun 2009)

  16 Jun 2009; Markos Chandras <hwoarang@gentoo.org> PyQt4-4.4.4-r5.ebuild,
  PyQt4-4.5.ebuild, +PyQt4-4.5.1.ebuild:
  Drop qt3support use flag. Version bump. Bug-fix release

  09 Jun 2009; Markos Chandras <hwoarang@gentoo.org> PyQt4-4.4.4-r2.ebuild,
  PyQt4-4.4.4-r4.ebuild, PyQt4-4.4.4-r5.ebuild:
  Add correct sip dependencies, fixes bug 273430

*PyQt4-4.5 (09 Jun 2009)

  09 Jun 2009; Markos Chandras <hwoarang@gentoo.org> +PyQt4-4.5.ebuild:
  Version bump

  05 Jun 2009; Ben de Groot <yngwin@gentoo.org> PyQt4-4.4.4-r5.ebuild:
  Specify !kde for qt-phonon dep

  03 Jun 2009; Ben de Groot <yngwin@gentoo.org> PyQt4-4.4.4-r5.ebuild,
  metadata.xml:
  Add kde useflag, for selecting media-sound/phonon, bug 270188

  02 Jun 2009; Ben de Groot <yngwin@gentoo.org> PyQt4-4.4.4-r5.ebuild:
  QtDesigner is triggered by USE=X, so hide sed behind X useflag. Thanks
  to Davide Pesavento for alerting.

  01 Jun 2009; Markos Chandras <hwoarang@gentoo.org>
  +files/fix_license_check.patch:
  Add missing patch. Fixes bug 272126

*PyQt4-4.4.4-r5 (01 Jun 2009)

  01 Jun 2009; Markos Chandras <hwoarang@gentoo.org> +PyQt4-4.4.4-r5.ebuild,
  files/configure.py.patch, metadata.xml:
  Fixed automagic dependency issue. ( bug 236341 ). Fixed rpath issues ( bug
  235819 , bug 271870 ). Thanks to Davide Pesavento <davidepesa@gmail.com>
  for the ebuilds and the rpath patch.

  20 May 2009; Ben de Groot <yngwin@gentoo.org> -PyQt4-4.4-r1.ebuild,
  -PyQt4-4.4.4-r1.ebuild, -PyQt4-4.4.4-r3.ebuild, PyQt4-4.4.4-r4.ebuild:
  Turn on default useflags for all Qt modules. Remove old. Move src_unpack
  content to src_prepare, where it belongs.

  15 May 2009; Alexis Ballier <aballier@gentoo.org> PyQt4-4.4.4-r4.ebuild:
  keyword ~x86-fbsd, bug #269880

*PyQt4-4.4.4-r4 (26 Apr 2009)

  26 Apr 2009; Markos Chandras <hwoarang@gentoo.org>
  +files/PyQt4-4.4.4-qgraphicsproxywidget-avoid-event-callback-loop.patch,
  +PyQt4-4.4.4-r4.ebuild:
  Adding qt-xmlpatterns as dependency. Add patch for QGraphicsProxyWidget (
  thanks to Fabio Erculiani <lxnay@sabayonlinux.org> for providing the patch
  ). Fixes bug #267012

*PyQt4-4.4.4-r3 (07 Apr 2009)

  07 Apr 2009; Markos Chandras <hwoarang@gentoo.org>
  +files/configure.py.patch, +PyQt4-4.4.4-r3.ebuild:
  Fixed bug #204877 ( thanks to Davide Pesavento <davidepesa@gmail.com> )

  27 Mar 2009; Jeroen Roovers <jer@gentoo.org> PyQt4-4.4.4-r2.ebuild:
  Stable for HPPA (bug #261652).

  24 Mar 2009; Brent Baude <ranger@gentoo.org> PyQt4-4.4.4-r2.ebuild:
  stable ppc64, bug 261652

  22 Mar 2009; Markus Meier <maekke@gentoo.org> PyQt4-4.4.4-r2.ebuild:
  amd64 stable, bug #261652

  20 Mar 2009; Raúl Porcel <armin76@gentoo.org> PyQt4-4.4.4-r2.ebuild:
  alpha/ia64/sparc/x86 stable wrt #261652

  20 Mar 2009; Brent Baude <ranger@gentoo.org> PyQt4-4.4.4-r2.ebuild:
  stable ppc, bug 261652

  20 Mar 2009; Markos Chandras <hwoarang@gentoo.org> -PyQt4-4.3.1.ebuild,
  -PyQt4-4.3.3.ebuild:
  Dropping old packages due to qt-4.3 removal

  18 Feb 2009; Jeroen Roovers <jer@gentoo.org> PyQt4-4.4.4-r1.ebuild:
  Stable for HPPA (bug #248083).

  06 Feb 2009; Raúl Porcel <armin76@gentoo.org> PyQt4-4.4.4-r1.ebuild:
  ia64/sparc stable wrt #248038

  04 Feb 2009; Brent Baude <ranger@gentoo.org> PyQt4-4.4.4-r1.ebuild:
  Marking PyQt4-4.4.4-r1 ppc64 stable for bug 248038

  31 Jan 2009; Tobias Klausmann <klausman@gentoo.org> PyQt4-4.4.4-r1.ebuild:
  Stable on alpha, bug #248038

*PyQt4-4.4.4-r2 (25 Jan 2009)

  25 Jan 2009; Ben de Groot <yngwin@gentoo.org> +PyQt4-4.4.4-r2.ebuild:
  Add dbus-python dep, thanks to Maciej Mrozowski. Remove no longer needed
  zlib useflag check.

  18 Jan 2009; Markus Meier <maekke@gentoo.org> PyQt4-4.4.4-r1.ebuild:
  amd64/x86 stable, bug #248038

  17 Jan 2009; nixnut <nixnut@gentoo.org> PyQt4-4.4.4-r1.ebuild:
  ppc stable #248038

  09 Jan 2009; Patrick Lauer <patrick@gentoo.org> -PyQt4-4.4.3.ebuild,
  -PyQt4-4.4.4.ebuild:
  Removing old

*PyQt4-4.4.4-r1 (23 Nov 2008)

  23 Nov 2008; Patrick Lauer <patrick@gentoo.org> +PyQt4-4.4.4-r1.ebuild:
  Adding webkit useflag. Fixes pykde failing to build because of ordering
  issues.

*PyQt4-4.4.4 (21 Nov 2008)

  21 Nov 2008; Ben de Groot <yngwin@gentoo.org> -PyQt4-4.4.2.ebuild,
  PyQt4-4.4.3.ebuild, +PyQt4-4.4.4.ebuild:
  Drop ~x86-fbsd, as qt-core isn't keyworded for that arch yet.
  Version bump, with updated deps. Remove hardmasked 4.4.2 version.

  07 Oct 2008; Jeroen Roovers <jer@gentoo.org> PyQt4-4.3.3.ebuild:
  Stable for HPPA too.

*PyQt4-4.4.3 (06 Sep 2008)

  06 Sep 2008; Ben de Groot <yngwin@gentoo.org> +PyQt4-4.4.3.ebuild:
  Version bump. Fixes bug 234559.

  06 Aug 2008; Jesus Rivero <neurogeek@gentoo.org> metadata.xml:
  add GLEP 56 USE flag desc from use.local.desc

*PyQt4-4.4-r1 (31 Jul 2008)

  31 Jul 2008; Jesus Rivero <neurogeek@gentoo.org>
  +files/PyQt4-4.4_compile.patch, -PyQt4-4.4.ebuild, +PyQt4-4.4-r1.ebuild:
  Fixes bugs #233369 and #222435, thanks to Remy Bosch for the patch.
  Removed old version

  25 May 2008; Ingmar Vanhassel <ingmar@gentoo.org> PyQt4-4.4.2.ebuild:
  dev-python/PyQt4-4.4.2 needs Qt-4.4.0, fix dependencies, mask package.

*PyQt4-4.4.2 (24 May 2008)

  24 May 2008; Ben de Groot <yngwin@gentoo.org> +PyQt4-4.4.2.ebuild:
  Version bump. Updated homepage URL. Added split qt deps from bug 222709.

*PyQt4-4.4 (14 May 2008)

  14 May 2008; Ali Polatel <hawking@gentoo.org> PyQt4-4.3.1.ebuild,
  PyQt4-4.3.3.ebuild, +PyQt4-4.4.ebuild:
  Version bump. Change SRC_URI of old ebuilds to mirror://gentoo because
  upstream doesn't have it anymore.

  13 May 2008; Ali Polatel <hawking@gentoo.org> PyQt4-4.3.1.ebuild,
  PyQt4-4.3.3.ebuild:
  Changed HOMEPAGE. Thanks to Elias Probst, #220653

  12 May 2008; Markus Rothe <corsair@gentoo.org> PyQt4-4.3.3.ebuild:
  Stable on ppc64

  07 Apr 2008; Alexis Ballier <aballier@gentoo.org> PyQt4-4.3.3.ebuild:
  keyword ~x86-fbsd

  02 Mar 2008; Wulf C. Krueger <philantrop@gentoo.org> PyQt4-4.3.1.ebuild:
  Marked stable on amd64 as per bug 201474.

  21 Feb 2008; Raúl Porcel <armin76@gentoo.org> PyQt4-4.3.3.ebuild:
  alpha/ia64/sparc stable

  15 Feb 2008; nixnut <nixnut@gentoo.org> PyQt4-4.3.1.ebuild:
  Stable on ppc wrt bug 201474

  09 Feb 2008; Markus Ullmann <jokey@gentoo.org> PyQt4-4.3.3.ebuild:
  Stable on x86

  28 Dec 2007; Caleb Tennis <caleb@gentoo.org> PyQt4-4.3.1.ebuild,
  PyQt4-4.3.3.ebuild:
  Explicitly depend on Qt 4.3 for these versions

*PyQt4-4.3.3 (26 Dec 2007)

  26 Dec 2007; Caleb Tennis <caleb@gentoo.org> +PyQt4-4.3.3.ebuild:
  version bump

  28 Nov 2007; Caleb Tennis <caleb@gentoo.org> -PyQt4-4.2.ebuild,
  -PyQt4-4.3.ebuild:
  Remove old versions

  09 Nov 2007; Jeroen Roovers <jer@gentoo.org> PyQt4-4.3.1.ebuild:
  Marked ~hppa (bug #198456). Fixed quoting issues.

  07 Nov 2007; Raúl Porcel <armin76@gentoo.org> PyQt4-4.3.1.ebuild:
  Add ~alpha/~ia64/~sparc

  20 Oct 2007; Markus Rothe <corsair@gentoo.org> PyQt4-4.3.1.ebuild:
  Added ~ppc64; bug #196474

*PyQt4-4.3.1 (02 Oct 2007)

  02 Oct 2007; Caleb Tennis <caleb@gentoo.org> +PyQt4-4.3.1.ebuild:
  version bump

  22 Aug 2007; Robert Buchholz <rbu@gentoo.org> PyQt4-4.3.ebuild:
  Added ~ppc (bug #188998)

  21 Aug 2007; Caleb Tennis <caleb@gentoo.org> PyQt4-4.3.ebuild:
  add a check for zlib, per bug #188389

*PyQt4-4.3 (09 Aug 2007)

  09 Aug 2007; Caleb Tennis <caleb@gentoo.org> +PyQt4-4.3.ebuild:
  Version bump

  24 Jun 2007; Tiziano Müller <dev-zero@gentoo.org> PyQt4-4.2.ebuild:
  Fixed $ROOT abuse (bug #167271) and some cleanup

  30 May 2007; Caleb Tennis <caleb@gentoo.org> -PyQt4-4.0.ebuild,
  -PyQt4-4.1.1.ebuild:
  remove old versions

  30 May 2007; Caleb Tennis <caleb@gentoo.org> PyQt4-4.2.ebuild:
  Fix doc install per bug #160675

  10 May 2007; Caleb Tennis <caleb@gentoo.org> PyQt4-4.2.ebuild:
  fix from bug #177973

*PyQt4-4.2 (10 May 2007)

  10 May 2007; Caleb Tennis <caleb@gentoo.org> +PyQt4-4.2.ebuild:
  version bump

*PyQt4-4.1.1 (20 Dec 2006)

  20 Dec 2006; Markus Ullmann <jokey@gentoo.org> -PyQt4-4.1.ebuild,
  +PyQt4-4.1.1.ebuild:
  Version bump

  15 Nov 2006; Caleb Tennis <caleb@gentoo.org> -PyQt4-4.0_beta1.ebuild:
  remove old version

*PyQt4-4.1 (14 Nov 2006)

  14 Nov 2006; Caleb Tennis <caleb@gentoo.org> +PyQt4-4.1.ebuild:
  version bump

  22 Oct 2006; Thomas Cort <tcort@gentoo.org> PyQt4-4.0.ebuild:
  Added ~amd64 keyword wrt Bug #137948.

  11 Jul 2006; Caleb Tennis <caleb@gentoo.org> PyQt4-4.0.ebuild:
  Fix a few minor issues with ebuild

*PyQt4-4.0 (26 Jun 2006)

  26 Jun 2006; Caleb Tennis <caleb@gentoo.org> +PyQt4-4.0.ebuild:
  adding the release version

*PyQt4-4.0_beta1 (05 May 2006)

  05 May 2006; Caleb Tennis <caleb@gentoo.org> +metadata.xml,
  +PyQt4-4.0_beta1.ebuild:
  initial import, from bug #121554