summaryrefslogtreecommitdiff
path: root/1.txt
blob: c1b3a986ea484c00fa11d602e281e03db111f901 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
1526
1527
1528
1529
1530
1531
1532
1533
1534
1535
1536
1537
1538
1539
1540
1541
1542
1543
1544
1545
1546
+ JOB=1
+ NO_JOBS=16
+ [[ ! -n 1 ]]
+ [[ ! -n 16 ]]
+ [[ 1 == global ]]
+ set +x
+ exec pkgcheck -r gentoo --reporter FancyReporter 'dev-python/*' 'dev-texlive/*' 'app-doc/*' 'sys-kernel/*' 'games-fps/*' 'mail-filter/*' 'sci-physics/*' 'dev-tcltk/*' 'app-mobilephone/*' 'gnustep-base/*' 'games-kids/*' -d imlate -d unstable_only -d cleanup -d stale_unstable -d UnusedGlobalFlags -d UnusedLicense --profile-disable-dev --profile-disable-exp
/home/mgorny/pkgcore-venv/lib/python2.7/site-packages/pkgcheck/glsa_scan.py:98: UserWarning: disabling GLSA checks due to no glsa source being found, and the check not being explicitly enabled; this behaviour may change
  "disabling GLSA checks due to no glsa source "
WARNING pkgcore: metadata.dtd cannot be opened from
               : /home/mgorny/repos/gentoo/metadata/dtd/metadata.dtd, will
               : refetch
WARNING pkgcore: metadata.dtd cannot be opened from
               : /home/mgorny/repos/gentoo/metadata/dtd/metadata.dtd, will
               : refetch

dev-python/Kivy
  SizeViolation: "files/Kivy-1.9.0-cython-0.22-backport.patch" exceeds 20k in size; 24701 bytes total

dev-python/PyQtMobility
  DeprecatedEclass: version 1.0.1: uses deprecated eclass(es): [ python (migrate to python-r1 / python-single-r1 / python-any-r1) ]

dev-python/SchemaObject
  NonExistentDeps: version 0.5.3: depset depends: nonexistent atoms [ =dev-lang/python-2.5*, =dev-lang/python-2.6* ]
  NonExistentDeps: version 0.5.3: depset rdepends: nonexistent atoms [ =dev-lang/python-2.5*, =dev-lang/python-2.6* ]
  DeprecatedEclass: version 0.5.3: uses deprecated eclass(es): [ distutils (migrate to distutils-r1), python (migrate to python-r1 / python-single-r1 / python-any-r1) ]

dev-python/aiohttp
  DroppedKeywordWarning: version 0.17.4: keywords dropped: x86

dev-python/autobahn
  DroppedKeywordWarning: version 0.10.4: keywords dropped: arm

dev-python/autopep8
  DeprecatedEclass: version 9999: uses deprecated eclass(es): [ git-2 (migrate to git-r3) ]

dev-python/bcrypt
  DroppedKeywordWarning: version 2.0.0: keywords dropped: ia64, ppc

dev-python/beaker
  DroppedKeywordWarning: version 1.7.0-r1: keywords dropped: ia64, sparc

dev-python/beautifulsoup
  DroppedKeywordWarning: version 4.3.2: keywords dropped: arm64
  SizeViolation: "files/beautifulsoup-3.1.0.1-python-3.patch" exceeds 20k in size; 42319 bytes total

dev-python/bsddb3
  DroppedKeywordWarning: version 6.1.0: keywords dropped: hppa

dev-python/cffi
  DroppedKeywordWarning: version 0.9.2: keywords dropped: alpha, sparc

dev-python/cov-core
  DroppedKeywordWarning: version 1.15.0: keywords dropped: sparc

dev-python/cryptography
  DroppedKeywordWarning: version 1.0: keywords dropped: alpha
  DroppedKeywordWarning: version 0.9.2: keywords dropped: arm64, ia64, m68k, mips, ppc, s390, sh
  DroppedKeywordWarning: version 0.7.1-r1: keywords dropped: sparc

dev-python/cryptography-vectors
  DroppedKeywordWarning: version 0.7: keywords dropped: sparc

dev-python/cvxopt
  SizeViolation: "files/cvxopt-1.1.6-glpk.patch" exceeds 20k in size; 32201 bytes total
  SizeViolation: "files/cvxopt-1.1.6-glpk449.patch" exceeds 20k in size; 39362 bytes total

dev-python/django
  DroppedKeywordWarning: version 1.5.12: keywords dropped: amd64, ia64, ppc, ppc64, sparc, x86

dev-python/editobj
  DeprecatedEAPI: version 0.5.7-r1: uses deprecated EAPI: 3
  DeprecatedEclass: version 0.5.7-r1: uses deprecated eclass(es): [ distutils (migrate to distutils-r1), python (migrate to python-r1 / python-single-r1 / python-any-r1) ]

dev-python/enzyme
  DeprecatedEclass: version 9999: uses deprecated eclass(es): [ git-2 (migrate to git-r3) ]

dev-python/flask
  DeprecatedEclass: version 9999: uses deprecated eclass(es): [ git-2 (migrate to git-r3) ]

dev-python/foolscap
  DroppedKeywordWarning: version 0.8.0: keywords dropped: sparc

dev-python/formencode
  DeprecatedEAPI: version 1.2.4: uses deprecated EAPI: 3
  DeprecatedEclass: version 1.2.4: uses deprecated eclass(es): [ distutils (migrate to distutils-r1), python (migrate to python-r1 / python-single-r1 / python-any-r1) ]

dev-python/gdata
  DeprecatedEclass: version 2.0.14: uses deprecated eclass(es): [ distutils (migrate to distutils-r1), python (migrate to python-r1 / python-single-r1 / python-any-r1) ]

dev-python/graph-tool
  WhitespaceFound: version 2.2.44: ebuild has trailing whitespace on line 25

dev-python/hacking
  DroppedKeywordWarning: version 0.9.6: keywords dropped: alpha

dev-python/hiredis
  DroppedKeywordWarning: version 0.2.0: keywords dropped: arm

dev-python/iconvcodec
  MetadataError: version 1.1.2-r1: attr(fetchables): error- Metadata Exception: pkg ebuild src: dev-python/iconvcodec-1.1.2-r1, attr fetchables
error: mirror://berlios/cjkpython/iconvcodec-1.1.2.tar.gz is unparseable
flagged token- uri mirror://berlios/cjkpython/iconvcodec-1.1.2.tar.gz isn't a known mirror tier

dev-python/id3-py
  DeprecatedEAPI: version 1.2: uses deprecated EAPI: 3
  DeprecatedEclass: version 1.2: uses deprecated eclass(es): [ distutils (migrate to distutils-r1), python (migrate to python-r1 / python-single-r1 / python-any-r1) ]

dev-python/ipython
  WhitespaceFound: version 3.2.1-r1: ebuild has trailing whitespace on line 114

dev-python/jsonrpclib
  DeprecatedEclass: version 9999: uses deprecated eclass(es): [ git-2 (migrate to git-r3) ]

dev-python/jsonschema
  DroppedKeywordWarning: version 2.5.1: keywords dropped: arm

dev-python/kaa-display
  NonExistentDeps: version 0.1.0: depset depends: nonexistent atoms [ =dev-lang/python-2.5*, =dev-lang/python-2.6* ]
  NonExistentDeps: version 0.1.0: depset rdepends: nonexistent atoms [ =dev-lang/python-2.5*, =dev-lang/python-2.6* ]
  DeprecatedEAPI: version 0.1.0: uses deprecated EAPI: 3
  DeprecatedEclass: version 0.1.0: uses deprecated eclass(es): [ distutils (migrate to distutils-r1), python (migrate to python-r1 / python-single-r1 / python-any-r1) ]

dev-python/kaa-imlib2
  NonExistentDeps: version 0.2.3-r1: depset depends: nonexistent atoms [ =dev-lang/python-2.5*, =dev-lang/python-2.6* ]
  NonExistentDeps: version 0.2.3-r1: depset rdepends: nonexistent atoms [ =dev-lang/python-2.5*, =dev-lang/python-2.6* ]
  DeprecatedEAPI: version 0.2.3-r1: uses deprecated EAPI: 3
  DeprecatedEclass: version 0.2.3-r1: uses deprecated eclass(es): [ distutils (migrate to distutils-r1), python (migrate to python-r1 / python-single-r1 / python-any-r1) ]

dev-python/kombu
  WhitespaceFound: version 3.0.26: ebuild has trailing whitespace on line 88

dev-python/lockfile
  DroppedKeywordWarning: version 0.10.2: keywords dropped: sparc

dev-python/louie
  DeprecatedEAPI: version 1.1: uses deprecated EAPI: 3
  DeprecatedEclass: version 1.1: uses deprecated eclass(es): [ distutils (migrate to distutils-r1), python (migrate to python-r1 / python-single-r1 / python-any-r1) ]

dev-python/mistune
  DroppedKeywordWarning: version 0.6-r1: keywords dropped: arm

dev-python/mock
  DroppedKeywordWarning: version 1.2.0: keywords dropped: ia64, ppc, ppc64, sparc, x86

dev-python/morbid
  DeprecatedEAPI: version 0.8.7.3: uses deprecated EAPI: 3
  DeprecatedEclass: version 0.8.7.3: uses deprecated eclass(es): [ distutils (migrate to distutils-r1), python (migrate to python-r1 / python-single-r1 / python-any-r1) ]

dev-python/mwlib
  BadInsIntoDir: version 0.15.15: ebuild uses insinto /etc/cron.d on line 118

dev-python/nautilus-python
  DeprecatedEclass: version 1.1-r1: uses deprecated eclass(es): [ python (migrate to python-r1 / python-single-r1 / python-any-r1) ]

dev-python/ndg-httpsclient
  DroppedKeywordWarning: version 0.4.0: keywords dropped: sparc

dev-python/networkx
  DroppedKeywordWarning: version 1.10-r1: keywords dropped: ppc

dev-python/nose
  DeprecatedEclass: version 9999: uses deprecated eclass(es): [ git-2 (migrate to git-r3) ]

dev-python/os-diskconfig-python-novaclient-ext
  DeprecatedEclass: version 9999: uses deprecated eclass(es): [ git-2 (migrate to git-r3) ]

dev-python/oslo-sphinx
  DroppedKeywordWarning: version 2.5.0: keywords dropped: alpha

dev-python/oslotest
  WrongIndentFound: version 1.10.0: ebuild has whitespace in indentation on line 49

dev-python/paisley
  DeprecatedEAPI: version 0.3.1: uses deprecated EAPI: 3
  DeprecatedEclass: version 0.3.1: uses deprecated eclass(es): [ distutils (migrate to distutils-r1), python (migrate to python-r1 / python-single-r1 / python-any-r1) ]

dev-python/paramiko
  DroppedKeywordWarning: version 1.12.2: keywords dropped: ppc, ppc64, s390

dev-python/paste
  SizeViolation: "files/paste-1.7.5.1-unbundle-stdlib.patch" exceeds 20k in size; 42645 bytes total
  SizeViolation: "files/paste-1.7.5.1-unbundle-tempita.patch" exceeds 20k in size; 59786 bytes total

dev-python/pbr
  DroppedKeywordWarning: version 1.6.0: keywords dropped: alpha, arm, ia64, ppc, ppc64

dev-python/pexpect
  DeprecatedEAPI: version 2.4: uses deprecated EAPI: 2
  DeprecatedEclass: version 2.4: uses deprecated eclass(es): [ distutils (migrate to distutils-r1), python (migrate to python-r1 / python-single-r1 / python-any-r1) ]

dev-python/piddle
  DeprecatedEAPI: version 1.0.15: uses deprecated EAPI: 3
  DeprecatedEclass: version 1.0.15: uses deprecated eclass(es): [ distutils (migrate to distutils-r1), python (migrate to python-r1 / python-single-r1 / python-any-r1) ]

dev-python/pillow
  DroppedKeywordWarning: version 2.9.0: keywords dropped: ia64, sparc

dev-python/pip
  DroppedKeywordWarning: version 7.1.2: keywords dropped: ia64, ppc, sparc

dev-python/ply
  DroppedKeywordWarning: version 3.6-r1: keywords dropped: sparc

dev-python/polygon
  DeprecatedEAPI: version 2.0.4: uses deprecated EAPI: 3
  DeprecatedEclass: version 2.0.4: uses deprecated eclass(es): [ distutils (migrate to distutils-r1), python (migrate to python-r1 / python-single-r1 / python-any-r1) ]

dev-python/py-smbpasswd
  DeprecatedEAPI: version 1.0.1: uses deprecated EAPI: 3
  DeprecatedEclass: version 1.0.1: uses deprecated eclass(es): [ distutils (migrate to distutils-r1), python (migrate to python-r1 / python-single-r1 / python-any-r1) ]
  DeprecatedEclass: version 1.0.1-r1: uses deprecated eclass(es): [ distutils (migrate to distutils-r1), python (migrate to python-r1 / python-single-r1 / python-any-r1) ]

dev-python/py-xmlrpc
  DeprecatedEAPI: version 0.8.8.3-r1: uses deprecated EAPI: 3
  DeprecatedEclass: version 0.8.8.3-r1: uses deprecated eclass(es): [ distutils (migrate to distutils-r1), python (migrate to python-r1 / python-single-r1 / python-any-r1) ]

dev-python/pyGPG
  DeprecatedEclass: version 9999: uses deprecated eclass(es): [ git-2 (migrate to git-r3) ]

dev-python/pyamazon
  DeprecatedEAPI: version 0.65: uses deprecated EAPI: 3
  DeprecatedEclass: version 0.65: uses deprecated eclass(es): [ python (migrate to python-r1 / python-single-r1 / python-any-r1) ]

dev-python/pyao
  DeprecatedEAPI: version 0.82-r2: uses deprecated EAPI: 3
  DeprecatedEclass: version 0.82-r2: uses deprecated eclass(es): [ distutils (migrate to distutils-r1), python (migrate to python-r1 / python-single-r1 / python-any-r1) ]

dev-python/pychm
  DeprecatedEAPI: version 0.8.4: uses deprecated EAPI: 3
  DeprecatedEclass: version 0.8.4: uses deprecated eclass(es): [ distutils (migrate to distutils-r1), python (migrate to python-r1 / python-single-r1 / python-any-r1) ]

dev-python/pycipher
  DeprecatedEAPI: version 0.2: uses deprecated EAPI: 3
  DeprecatedEclass: version 0.2: uses deprecated eclass(es): [ python (migrate to python-r1 / python-single-r1 / python-any-r1) ]

dev-python/pyclimate
  DeprecatedEAPI: version 1.2.2-r1: uses deprecated EAPI: 3
  DeprecatedEclass: version 1.2.2-r1: uses deprecated eclass(es): [ distutils (migrate to distutils-r1), python (migrate to python-r1 / python-single-r1 / python-any-r1) ]

dev-python/pycollada
  DeprecatedEclass: version 9999: uses deprecated eclass(es): [ git-2 (migrate to git-r3) ]

dev-python/pycparser
  DroppedKeywordWarning: version 2.14: keywords dropped: sparc

dev-python/pydb
  DeprecatedEclass: version 1.26-r1: uses deprecated eclass(es): [ python (migrate to python-r1 / python-single-r1 / python-any-r1) ]

dev-python/pydecomp
  DeprecatedEclass: version 9999: uses deprecated eclass(es): [ git-2 (migrate to git-r3) ]

dev-python/pyfits
  DeprecatedEAPI: version 2.4.0: uses deprecated EAPI: 2
  DeprecatedEclass: version 2.4.0: uses deprecated eclass(es): [ distutils (migrate to distutils-r1), python (migrate to python-r1 / python-single-r1 / python-any-r1) ]

dev-python/pygraphviz
  DroppedKeywordWarning: version 1.3.1: keywords dropped: ppc

dev-python/pygresql
  NonExistentDeps: version 4.1.1: depset depends: nonexistent atoms [ dev-db/postgresql:8.4, dev-db/postgresql:8.3 ]
  NonExistentDeps: version 4.1.1: depset rdepends: nonexistent atoms [ dev-db/postgresql:8.4, dev-db/postgresql:8.3 ]

dev-python/pygsl
  DeprecatedEclass: version 0.9.5: uses deprecated eclass(es): [ distutils (migrate to distutils-r1), python (migrate to python-r1 / python-single-r1 / python-any-r1) ]

dev-python/pygtkhelpers
  NonExistentDeps: version 0.4.3: depset depends: nonexistent atoms [ =dev-lang/python-2.6* ]
  NonExistentDeps: version 0.4.3: depset rdepends: nonexistent atoms [ =dev-lang/python-2.6* ]
  DeprecatedEAPI: version 0.4.3: uses deprecated EAPI: 3
  DeprecatedEclass: version 0.4.3: uses deprecated eclass(es): [ distutils (migrate to distutils-r1), python (migrate to python-r1 / python-single-r1 / python-any-r1) ]

dev-python/pyid3lib
  DeprecatedEAPI: version 0.5.1-r1: uses deprecated EAPI: 3
  DeprecatedEclass: version 0.5.1-r1: uses deprecated eclass(es): [ distutils (migrate to distutils-r1), python (migrate to python-r1 / python-single-r1 / python-any-r1) ]

dev-python/pylibpcap
  DeprecatedEclass: version 0.6.4: uses deprecated eclass(es): [ distutils (migrate to distutils-r1), python (migrate to python-r1 / python-single-r1 / python-any-r1) ]

dev-python/pyltxml
  DeprecatedEAPI: version 1.3-r1: uses deprecated EAPI: 3
  DeprecatedEclass: version 1.3-r1: uses deprecated eclass(es): [ distutils (migrate to distutils-r1), python (migrate to python-r1 / python-single-r1 / python-any-r1) ]

dev-python/pymad
  DeprecatedEAPI: version 0.6: uses deprecated EAPI: 3
  DeprecatedEclass: version 0.6: uses deprecated eclass(es): [ distutils (migrate to distutils-r1), python (migrate to python-r1 / python-single-r1 / python-any-r1) ]

dev-python/pyndex
  DeprecatedEAPI: version 0.3.2a: uses deprecated EAPI: 3
  DeprecatedEclass: version 0.3.2a: uses deprecated eclass(es): [ distutils (migrate to distutils-r1), python (migrate to python-r1 / python-single-r1 / python-any-r1) ]

dev-python/pynut
  DeprecatedEAPI: version 1.2: uses deprecated EAPI: 3
  DeprecatedEclass: version 1.2: uses deprecated eclass(es): [ python (migrate to python-r1 / python-single-r1 / python-any-r1) ]

dev-python/pyopencl
  DeprecatedEclass: version 9999: uses deprecated eclass(es): [ git-2 (migrate to git-r3) ]

dev-python/pyopenssl
  DroppedKeywordWarning: version 0.15.1: keywords dropped: sparc

dev-python/pyosd
  DeprecatedEAPI: version 0.2.14: uses deprecated EAPI: 3
  DeprecatedEclass: version 0.2.14: uses deprecated eclass(es): [ distutils (migrate to distutils-r1), python (migrate to python-r1 / python-single-r1 / python-any-r1) ]

dev-python/pyparsing
  DeprecatedEAPI: version 1.5.6: uses deprecated EAPI: 3
  DeprecatedEclass: version 1.5.6: uses deprecated eclass(es): [ distutils (migrate to distutils-r1), python (migrate to python-r1 / python-single-r1 / python-any-r1) ]

dev-python/pypax
  DeprecatedEclass: version 9999: uses deprecated eclass(es): [ git-2 (migrate to git-r3) ]

dev-python/pyquery
  MetadataError: version 1.2.4: attr(iuse): iuse unknown flag: [ beautifulsoup3 ]
  DroppedKeywordWarning: version 1.2.9-r1: keywords dropped: sparc
  DroppedKeywordWarning: version 1.2.9: keywords dropped: ia64, s390, sh

dev-python/pytest
  DroppedKeywordWarning: version 2.8.0-r1: keywords dropped: alpha, arm, arm64, hppa, ia64, m68k, mips, ppc, ppc64, s390, sh, sparc

dev-python/pytest-cov
  DroppedKeywordWarning: version 1.8.1: keywords dropped: sparc
  DroppedKeywordWarning: version 2.1.0: keywords dropped: alpha, arm, arm64, hppa, ia64, m68k, ppc, ppc64, s390, sh

dev-python/python-cdb
  DeprecatedEAPI: version 0.34: uses deprecated EAPI: 3
  DeprecatedEclass: version 0.34: uses deprecated eclass(es): [ distutils (migrate to distutils-r1), python (migrate to python-r1 / python-single-r1 / python-any-r1) ]

dev-python/python-cinderclient
  NonsolvableDeps: version 1.3.1: nonsolvable depset(rdepends) keyword(~amd64) profile (default/linux/amd64/13.0): solutions: [ >=dev-python/python-keystoneclient-1.6.0[-python_single_target_python2_7(-),-python_single_target_python3_3(-),-python_single_target_python3_4(-),python_targets_python2_7(-),python_targets_python3_3(-),python_targets_python3_4(-)] ]
  NonsolvableDeps: version 1.3.1: nonsolvable depset(rdepends) keyword(~amd64) profile (default/linux/amd64/13.0/desktop): solutions: [ >=dev-python/python-keystoneclient-1.6.0[-python_single_target_python2_7(-),-python_single_target_python3_3(-),-python_single_target_python3_4(-),python_targets_python2_7(-),python_targets_python3_3(-),python_targets_python3_4(-)] ]
  NonsolvableDeps: version 1.3.1: nonsolvable depset(rdepends) keyword(~amd64) profile (default/linux/amd64/13.0/desktop/gnome): solutions: [ >=dev-python/python-keystoneclient-1.6.0[-python_single_target_python2_7(-),-python_single_target_python3_3(-),-python_single_target_python3_4(-),python_targets_python2_7(-),python_targets_python3_3(-),python_targets_python3_4(-)] ]
  NonsolvableDeps: version 1.3.1: nonsolvable depset(rdepends) keyword(~amd64) profile (default/linux/amd64/13.0/developer): solutions: [ >=dev-python/python-keystoneclient-1.6.0[-python_single_target_python2_7(-),-python_single_target_python3_3(-),-python_single_target_python3_4(-),python_targets_python2_7(-),python_targets_python3_3(-),python_targets_python3_4(-)] ]
  NonsolvableDeps: version 1.3.1: nonsolvable depset(rdepends) keyword(~amd64) profile (default/linux/amd64/13.0/desktop/gnome/systemd): solutions: [ >=dev-python/python-keystoneclient-1.6.0[-python_single_target_python2_7(-),-python_single_target_python3_3(-),-python_single_target_python3_4(-),python_targets_python2_7(-),python_targets_python3_3(-),python_targets_python3_4(-)] ]
  NonsolvableDeps: version 1.3.1: nonsolvable depset(rdepends) keyword(~amd64) profile (default/linux/amd64/13.0/desktop/kde): solutions: [ >=dev-python/python-keystoneclient-1.6.0[-python_single_target_python2_7(-),-python_single_target_python3_3(-),-python_single_target_python3_4(-),python_targets_python2_7(-),python_targets_python3_3(-),python_targets_python3_4(-)] ]
  NonsolvableDeps: version 1.3.1: nonsolvable depset(rdepends) keyword(~amd64) profile (default/linux/amd64/13.0/desktop/plasma): solutions: [ >=dev-python/python-keystoneclient-1.6.0[-python_single_target_python2_7(-),-python_single_target_python3_3(-),-python_single_target_python3_4(-),python_targets_python2_7(-),python_targets_python3_3(-),python_targets_python3_4(-)] ]
  NonsolvableDeps: version 1.3.1: nonsolvable depset(rdepends) keyword(~amd64) profile (default/linux/amd64/13.0/desktop/kde/systemd): solutions: [ >=dev-python/python-keystoneclient-1.6.0[-python_single_target_python2_7(-),-python_single_target_python3_3(-),-python_single_target_python3_4(-),python_targets_python2_7(-),python_targets_python3_3(-),python_targets_python3_4(-)] ]
  NonsolvableDeps: version 1.3.1: nonsolvable depset(rdepends) keyword(~amd64) profile (default/linux/amd64/13.0/desktop/plasma/systemd): solutions: [ >=dev-python/python-keystoneclient-1.6.0[-python_single_target_python2_7(-),-python_single_target_python3_3(-),-python_single_target_python3_4(-),python_targets_python2_7(-),python_targets_python3_3(-),python_targets_python3_4(-)] ]
  NonsolvableDeps: version 1.3.1: nonsolvable depset(rdepends) keyword(~amd64) profile (default/linux/amd64/13.0/systemd): solutions: [ >=dev-python/python-keystoneclient-1.6.0[-python_single_target_python2_7(-),-python_single_target_python3_3(-),-python_single_target_python3_4(-),python_targets_python2_7(-),python_targets_python3_3(-),python_targets_python3_4(-)] ]
  NonsolvableDeps: version 1.3.1: nonsolvable depset(rdepends) keyword(~amd64) profile (hardened/linux/amd64): solutions: [ >=dev-python/python-keystoneclient-1.6.0[-python_single_target_python2_7(-),-python_single_target_python3_3(-),-python_single_target_python3_4(-),python_targets_python2_7(-),python_targets_python3_3(-),python_targets_python3_4(-)] ]
  NonsolvableDeps: version 1.3.1: nonsolvable depset(rdepends) keyword(~amd64) profile (hardened/linux/amd64/no-multilib): solutions: [ >=dev-python/python-keystoneclient-1.6.0[-python_single_target_python2_7(-),-python_single_target_python3_3(-),-python_single_target_python3_4(-),python_targets_python2_7(-),python_targets_python3_3(-),python_targets_python3_4(-)] ]
  NonsolvableDeps: version 1.3.1: nonsolvable depset(rdepends) keyword(~amd64) profile (hardened/linux/amd64/no-multilib/selinux): solutions: [ >=dev-python/python-keystoneclient-1.6.0[-python_single_target_python2_7(-),-python_single_target_python3_3(-),-python_single_target_python3_4(-),python_targets_python2_7(-),python_targets_python3_3(-),python_targets_python3_4(-)] ]
  NonsolvableDeps: version 1.3.1: nonsolvable depset(rdepends) keyword(~amd64) profile (hardened/linux/amd64/selinux): solutions: [ >=dev-python/python-keystoneclient-1.6.0[-python_single_target_python2_7(-),-python_single_target_python3_3(-),-python_single_target_python3_4(-),python_targets_python2_7(-),python_targets_python3_3(-),python_targets_python3_4(-)] ]
  NonsolvableDeps: version 1.3.1: nonsolvable depset(rdepends) keyword(~x86) profile (default/linux/x86/13.0): solutions: [ >=dev-python/python-keystoneclient-1.6.0[-python_single_target_python2_7(-),-python_single_target_python3_3(-),-python_single_target_python3_4(-),python_targets_python2_7(-),python_targets_python3_3(-),python_targets_python3_4(-)] ]
  NonsolvableDeps: version 1.3.1: nonsolvable depset(rdepends) keyword(~x86) profile (default/linux/x86/13.0/desktop): solutions: [ >=dev-python/python-keystoneclient-1.6.0[-python_single_target_python2_7(-),-python_single_target_python3_3(-),-python_single_target_python3_4(-),python_targets_python2_7(-),python_targets_python3_3(-),python_targets_python3_4(-)] ]
  NonsolvableDeps: version 1.3.1: nonsolvable depset(rdepends) keyword(~x86) profile (default/linux/x86/13.0/desktop/gnome): solutions: [ >=dev-python/python-keystoneclient-1.6.0[-python_single_target_python2_7(-),-python_single_target_python3_3(-),-python_single_target_python3_4(-),python_targets_python2_7(-),python_targets_python3_3(-),python_targets_python3_4(-)] ]
  NonsolvableDeps: version 1.3.1: nonsolvable depset(rdepends) keyword(~x86) profile (default/linux/x86/13.0/developer): solutions: [ >=dev-python/python-keystoneclient-1.6.0[-python_single_target_python2_7(-),-python_single_target_python3_3(-),-python_single_target_python3_4(-),python_targets_python2_7(-),python_targets_python3_3(-),python_targets_python3_4(-)] ]
  NonsolvableDeps: version 1.3.1: nonsolvable depset(rdepends) keyword(~x86) profile (default/linux/x86/13.0/desktop/gnome/systemd): solutions: [ >=dev-python/python-keystoneclient-1.6.0[-python_single_target_python2_7(-),-python_single_target_python3_3(-),-python_single_target_python3_4(-),python_targets_python2_7(-),python_targets_python3_3(-),python_targets_python3_4(-)] ]
  NonsolvableDeps: version 1.3.1: nonsolvable depset(rdepends) keyword(~x86) profile (default/linux/x86/13.0/desktop/kde): solutions: [ >=dev-python/python-keystoneclient-1.6.0[-python_single_target_python2_7(-),-python_single_target_python3_3(-),-python_single_target_python3_4(-),python_targets_python2_7(-),python_targets_python3_3(-),python_targets_python3_4(-)] ]
  NonsolvableDeps: version 1.3.1: nonsolvable depset(rdepends) keyword(~x86) profile (default/linux/x86/13.0/desktop/plasma): solutions: [ >=dev-python/python-keystoneclient-1.6.0[-python_single_target_python2_7(-),-python_single_target_python3_3(-),-python_single_target_python3_4(-),python_targets_python2_7(-),python_targets_python3_3(-),python_targets_python3_4(-)] ]
  NonsolvableDeps: version 1.3.1: nonsolvable depset(rdepends) keyword(~x86) profile (default/linux/x86/13.0/desktop/kde/systemd): solutions: [ >=dev-python/python-keystoneclient-1.6.0[-python_single_target_python2_7(-),-python_single_target_python3_3(-),-python_single_target_python3_4(-),python_targets_python2_7(-),python_targets_python3_3(-),python_targets_python3_4(-)] ]
  NonsolvableDeps: version 1.3.1: nonsolvable depset(rdepends) keyword(~x86) profile (default/linux/x86/13.0/desktop/plasma/systemd): solutions: [ >=dev-python/python-keystoneclient-1.6.0[-python_single_target_python2_7(-),-python_single_target_python3_3(-),-python_single_target_python3_4(-),python_targets_python2_7(-),python_targets_python3_3(-),python_targets_python3_4(-)] ]
  NonsolvableDeps: version 1.3.1: nonsolvable depset(rdepends) keyword(~x86) profile (hardened/linux/x86): solutions: [ >=dev-python/python-keystoneclient-1.6.0[-python_single_target_python2_7(-),-python_single_target_python3_3(-),-python_single_target_python3_4(-),python_targets_python2_7(-),python_targets_python3_3(-),python_targets_python3_4(-)] ]
  NonsolvableDeps: version 1.3.1: nonsolvable depset(rdepends) keyword(~x86) profile (hardened/linux/x86/selinux): solutions: [ >=dev-python/python-keystoneclient-1.6.0[-python_single_target_python2_7(-),-python_single_target_python3_3(-),-python_single_target_python3_4(-),python_targets_python2_7(-),python_targets_python3_3(-),python_targets_python3_4(-)] ]

dev-python/python-distutils-extra
  DeprecatedEAPI: version 2.33: uses deprecated EAPI: 3
  DeprecatedEclass: version 2.33: uses deprecated eclass(es): [ distutils (migrate to distutils-r1), python (migrate to python-r1 / python-single-r1 / python-any-r1) ]

dev-python/python-docs
  DeprecatedEAPI: version 3.2.5: uses deprecated EAPI: 3
  DeprecatedEAPI: version 3.3.2: uses deprecated EAPI: 3
  DroppedKeywordWarning: version 3.2.5: keywords dropped: arm64

dev-python/python-glanceclient
  NonsolvableDeps: version 0.19.0: nonsolvable depset(rdepends) keyword(~amd64) profile (default/linux/amd64/13.0): solutions: [ >=dev-python/python-keystoneclient-1.6.0[-python_single_target_python2_7(-),-python_single_target_python3_3(-),python_targets_python2_7(-),python_targets_python3_3(-)] ]
  NonsolvableDeps: version 0.19.0: nonsolvable depset(rdepends) keyword(~amd64) profile (default/linux/amd64/13.0/desktop): solutions: [ >=dev-python/python-keystoneclient-1.6.0[-python_single_target_python2_7(-),-python_single_target_python3_3(-),python_targets_python2_7(-),python_targets_python3_3(-)] ]
  NonsolvableDeps: version 0.19.0: nonsolvable depset(rdepends) keyword(~amd64) profile (default/linux/amd64/13.0/desktop/gnome): solutions: [ >=dev-python/python-keystoneclient-1.6.0[-python_single_target_python2_7(-),-python_single_target_python3_3(-),python_targets_python2_7(-),python_targets_python3_3(-)] ]
  NonsolvableDeps: version 0.19.0: nonsolvable depset(rdepends) keyword(~amd64) profile (default/linux/amd64/13.0/developer): solutions: [ >=dev-python/python-keystoneclient-1.6.0[-python_single_target_python2_7(-),-python_single_target_python3_3(-),python_targets_python2_7(-),python_targets_python3_3(-)] ]
  NonsolvableDeps: version 0.19.0: nonsolvable depset(rdepends) keyword(~amd64) profile (default/linux/amd64/13.0/desktop/gnome/systemd): solutions: [ >=dev-python/python-keystoneclient-1.6.0[-python_single_target_python2_7(-),-python_single_target_python3_3(-),python_targets_python2_7(-),python_targets_python3_3(-)] ]
  NonsolvableDeps: version 0.19.0: nonsolvable depset(rdepends) keyword(~amd64) profile (default/linux/amd64/13.0/desktop/kde): solutions: [ >=dev-python/python-keystoneclient-1.6.0[-python_single_target_python2_7(-),-python_single_target_python3_3(-),python_targets_python2_7(-),python_targets_python3_3(-)] ]
  NonsolvableDeps: version 0.19.0: nonsolvable depset(rdepends) keyword(~amd64) profile (default/linux/amd64/13.0/desktop/plasma): solutions: [ >=dev-python/python-keystoneclient-1.6.0[-python_single_target_python2_7(-),-python_single_target_python3_3(-),python_targets_python2_7(-),python_targets_python3_3(-)] ]
  NonsolvableDeps: version 0.19.0: nonsolvable depset(rdepends) keyword(~amd64) profile (default/linux/amd64/13.0/desktop/kde/systemd): solutions: [ >=dev-python/python-keystoneclient-1.6.0[-python_single_target_python2_7(-),-python_single_target_python3_3(-),python_targets_python2_7(-),python_targets_python3_3(-)] ]
  NonsolvableDeps: version 0.19.0: nonsolvable depset(rdepends) keyword(~amd64) profile (default/linux/amd64/13.0/desktop/plasma/systemd): solutions: [ >=dev-python/python-keystoneclient-1.6.0[-python_single_target_python2_7(-),-python_single_target_python3_3(-),python_targets_python2_7(-),python_targets_python3_3(-)] ]
  NonsolvableDeps: version 0.19.0: nonsolvable depset(rdepends) keyword(~amd64) profile (default/linux/amd64/13.0/systemd): solutions: [ >=dev-python/python-keystoneclient-1.6.0[-python_single_target_python2_7(-),-python_single_target_python3_3(-),python_targets_python2_7(-),python_targets_python3_3(-)] ]
  NonsolvableDeps: version 0.19.0: nonsolvable depset(rdepends) keyword(~amd64) profile (hardened/linux/amd64): solutions: [ >=dev-python/python-keystoneclient-1.6.0[-python_single_target_python2_7(-),-python_single_target_python3_3(-),python_targets_python2_7(-),python_targets_python3_3(-)] ]
  NonsolvableDeps: version 0.19.0: nonsolvable depset(rdepends) keyword(~amd64) profile (hardened/linux/amd64/no-multilib): solutions: [ >=dev-python/python-keystoneclient-1.6.0[-python_single_target_python2_7(-),-python_single_target_python3_3(-),python_targets_python2_7(-),python_targets_python3_3(-)] ]
  NonsolvableDeps: version 0.19.0: nonsolvable depset(rdepends) keyword(~amd64) profile (hardened/linux/amd64/no-multilib/selinux): solutions: [ >=dev-python/python-keystoneclient-1.6.0[-python_single_target_python2_7(-),-python_single_target_python3_3(-),python_targets_python2_7(-),python_targets_python3_3(-)] ]
  NonsolvableDeps: version 0.19.0: nonsolvable depset(rdepends) keyword(~amd64) profile (hardened/linux/amd64/selinux): solutions: [ >=dev-python/python-keystoneclient-1.6.0[-python_single_target_python2_7(-),-python_single_target_python3_3(-),python_targets_python2_7(-),python_targets_python3_3(-)] ]
  NonsolvableDeps: version 0.19.0: nonsolvable depset(rdepends) keyword(~x86) profile (default/linux/x86/13.0): solutions: [ >=dev-python/python-keystoneclient-1.6.0[-python_single_target_python2_7(-),-python_single_target_python3_3(-),python_targets_python2_7(-),python_targets_python3_3(-)] ]
  NonsolvableDeps: version 0.19.0: nonsolvable depset(rdepends) keyword(~x86) profile (default/linux/x86/13.0/desktop): solutions: [ >=dev-python/python-keystoneclient-1.6.0[-python_single_target_python2_7(-),-python_single_target_python3_3(-),python_targets_python2_7(-),python_targets_python3_3(-)] ]
  NonsolvableDeps: version 0.19.0: nonsolvable depset(rdepends) keyword(~x86) profile (default/linux/x86/13.0/desktop/gnome): solutions: [ >=dev-python/python-keystoneclient-1.6.0[-python_single_target_python2_7(-),-python_single_target_python3_3(-),python_targets_python2_7(-),python_targets_python3_3(-)] ]
  NonsolvableDeps: version 0.19.0: nonsolvable depset(rdepends) keyword(~x86) profile (default/linux/x86/13.0/developer): solutions: [ >=dev-python/python-keystoneclient-1.6.0[-python_single_target_python2_7(-),-python_single_target_python3_3(-),python_targets_python2_7(-),python_targets_python3_3(-)] ]
  NonsolvableDeps: version 0.19.0: nonsolvable depset(rdepends) keyword(~x86) profile (default/linux/x86/13.0/desktop/gnome/systemd): solutions: [ >=dev-python/python-keystoneclient-1.6.0[-python_single_target_python2_7(-),-python_single_target_python3_3(-),python_targets_python2_7(-),python_targets_python3_3(-)] ]
  NonsolvableDeps: version 0.19.0: nonsolvable depset(rdepends) keyword(~x86) profile (default/linux/x86/13.0/desktop/kde): solutions: [ >=dev-python/python-keystoneclient-1.6.0[-python_single_target_python2_7(-),-python_single_target_python3_3(-),python_targets_python2_7(-),python_targets_python3_3(-)] ]
  NonsolvableDeps: version 0.19.0: nonsolvable depset(rdepends) keyword(~x86) profile (default/linux/x86/13.0/desktop/plasma): solutions: [ >=dev-python/python-keystoneclient-1.6.0[-python_single_target_python2_7(-),-python_single_target_python3_3(-),python_targets_python2_7(-),python_targets_python3_3(-)] ]
  NonsolvableDeps: version 0.19.0: nonsolvable depset(rdepends) keyword(~x86) profile (default/linux/x86/13.0/desktop/kde/systemd): solutions: [ >=dev-python/python-keystoneclient-1.6.0[-python_single_target_python2_7(-),-python_single_target_python3_3(-),python_targets_python2_7(-),python_targets_python3_3(-)] ]
  NonsolvableDeps: version 0.19.0: nonsolvable depset(rdepends) keyword(~x86) profile (default/linux/x86/13.0/desktop/plasma/systemd): solutions: [ >=dev-python/python-keystoneclient-1.6.0[-python_single_target_python2_7(-),-python_single_target_python3_3(-),python_targets_python2_7(-),python_targets_python3_3(-)] ]
  NonsolvableDeps: version 0.19.0: nonsolvable depset(rdepends) keyword(~x86) profile (hardened/linux/x86): solutions: [ >=dev-python/python-keystoneclient-1.6.0[-python_single_target_python2_7(-),-python_single_target_python3_3(-),python_targets_python2_7(-),python_targets_python3_3(-)] ]
  NonsolvableDeps: version 0.19.0: nonsolvable depset(rdepends) keyword(~x86) profile (hardened/linux/x86/selinux): solutions: [ >=dev-python/python-keystoneclient-1.6.0[-python_single_target_python2_7(-),-python_single_target_python3_3(-),python_targets_python2_7(-),python_targets_python3_3(-)] ]
  NonsolvableDeps: version 0.19.0-r1: nonsolvable depset(rdepends) keyword(~amd64) profile (default/linux/amd64/13.0): solutions: [ >=dev-python/python-keystoneclient-1.6.0[-python_single_target_python2_7(-),-python_single_target_python3_3(-),-python_single_target_python3_4(-),python_targets_python2_7(-),python_targets_python3_3(-),python_targets_python3_4(-)] ]
  NonsolvableDeps: version 0.19.0-r1: nonsolvable depset(rdepends) keyword(~amd64) profile (default/linux/amd64/13.0/desktop): solutions: [ >=dev-python/python-keystoneclient-1.6.0[-python_single_target_python2_7(-),-python_single_target_python3_3(-),-python_single_target_python3_4(-),python_targets_python2_7(-),python_targets_python3_3(-),python_targets_python3_4(-)] ]
  NonsolvableDeps: version 0.19.0-r1: nonsolvable depset(rdepends) keyword(~amd64) profile (default/linux/amd64/13.0/desktop/gnome): solutions: [ >=dev-python/python-keystoneclient-1.6.0[-python_single_target_python2_7(-),-python_single_target_python3_3(-),-python_single_target_python3_4(-),python_targets_python2_7(-),python_targets_python3_3(-),python_targets_python3_4(-)] ]
  NonsolvableDeps: version 0.19.0-r1: nonsolvable depset(rdepends) keyword(~amd64) profile (default/linux/amd64/13.0/developer): solutions: [ >=dev-python/python-keystoneclient-1.6.0[-python_single_target_python2_7(-),-python_single_target_python3_3(-),-python_single_target_python3_4(-),python_targets_python2_7(-),python_targets_python3_3(-),python_targets_python3_4(-)] ]
  NonsolvableDeps: version 0.19.0-r1: nonsolvable depset(rdepends) keyword(~amd64) profile (default/linux/amd64/13.0/desktop/gnome/systemd): solutions: [ >=dev-python/python-keystoneclient-1.6.0[-python_single_target_python2_7(-),-python_single_target_python3_3(-),-python_single_target_python3_4(-),python_targets_python2_7(-),python_targets_python3_3(-),python_targets_python3_4(-)] ]
  NonsolvableDeps: version 0.19.0-r1: nonsolvable depset(rdepends) keyword(~amd64) profile (default/linux/amd64/13.0/desktop/kde): solutions: [ >=dev-python/python-keystoneclient-1.6.0[-python_single_target_python2_7(-),-python_single_target_python3_3(-),-python_single_target_python3_4(-),python_targets_python2_7(-),python_targets_python3_3(-),python_targets_python3_4(-)] ]
  NonsolvableDeps: version 0.19.0-r1: nonsolvable depset(rdepends) keyword(~amd64) profile (default/linux/amd64/13.0/desktop/plasma): solutions: [ >=dev-python/python-keystoneclient-1.6.0[-python_single_target_python2_7(-),-python_single_target_python3_3(-),-python_single_target_python3_4(-),python_targets_python2_7(-),python_targets_python3_3(-),python_targets_python3_4(-)] ]
  NonsolvableDeps: version 0.19.0-r1: nonsolvable depset(rdepends) keyword(~amd64) profile (default/linux/amd64/13.0/desktop/kde/systemd): solutions: [ >=dev-python/python-keystoneclient-1.6.0[-python_single_target_python2_7(-),-python_single_target_python3_3(-),-python_single_target_python3_4(-),python_targets_python2_7(-),python_targets_python3_3(-),python_targets_python3_4(-)] ]
  NonsolvableDeps: version 0.19.0-r1: nonsolvable depset(rdepends) keyword(~amd64) profile (default/linux/amd64/13.0/desktop/plasma/systemd): solutions: [ >=dev-python/python-keystoneclient-1.6.0[-python_single_target_python2_7(-),-python_single_target_python3_3(-),-python_single_target_python3_4(-),python_targets_python2_7(-),python_targets_python3_3(-),python_targets_python3_4(-)] ]
  NonsolvableDeps: version 0.19.0-r1: nonsolvable depset(rdepends) keyword(~amd64) profile (default/linux/amd64/13.0/systemd): solutions: [ >=dev-python/python-keystoneclient-1.6.0[-python_single_target_python2_7(-),-python_single_target_python3_3(-),-python_single_target_python3_4(-),python_targets_python2_7(-),python_targets_python3_3(-),python_targets_python3_4(-)] ]
  NonsolvableDeps: version 0.19.0-r1: nonsolvable depset(rdepends) keyword(~amd64) profile (hardened/linux/amd64): solutions: [ >=dev-python/python-keystoneclient-1.6.0[-python_single_target_python2_7(-),-python_single_target_python3_3(-),-python_single_target_python3_4(-),python_targets_python2_7(-),python_targets_python3_3(-),python_targets_python3_4(-)] ]
  NonsolvableDeps: version 0.19.0-r1: nonsolvable depset(rdepends) keyword(~amd64) profile (hardened/linux/amd64/no-multilib): solutions: [ >=dev-python/python-keystoneclient-1.6.0[-python_single_target_python2_7(-),-python_single_target_python3_3(-),-python_single_target_python3_4(-),python_targets_python2_7(-),python_targets_python3_3(-),python_targets_python3_4(-)] ]
  NonsolvableDeps: version 0.19.0-r1: nonsolvable depset(rdepends) keyword(~amd64) profile (hardened/linux/amd64/no-multilib/selinux): solutions: [ >=dev-python/python-keystoneclient-1.6.0[-python_single_target_python2_7(-),-python_single_target_python3_3(-),-python_single_target_python3_4(-),python_targets_python2_7(-),python_targets_python3_3(-),python_targets_python3_4(-)] ]
  NonsolvableDeps: version 0.19.0-r1: nonsolvable depset(rdepends) keyword(~amd64) profile (hardened/linux/amd64/selinux): solutions: [ >=dev-python/python-keystoneclient-1.6.0[-python_single_target_python2_7(-),-python_single_target_python3_3(-),-python_single_target_python3_4(-),python_targets_python2_7(-),python_targets_python3_3(-),python_targets_python3_4(-)] ]
  NonsolvableDeps: version 0.19.0-r1: nonsolvable depset(rdepends) keyword(~x86) profile (default/linux/x86/13.0): solutions: [ >=dev-python/python-keystoneclient-1.6.0[-python_single_target_python2_7(-),-python_single_target_python3_3(-),-python_single_target_python3_4(-),python_targets_python2_7(-),python_targets_python3_3(-),python_targets_python3_4(-)] ]
  NonsolvableDeps: version 0.19.0-r1: nonsolvable depset(rdepends) keyword(~x86) profile (default/linux/x86/13.0/desktop): solutions: [ >=dev-python/python-keystoneclient-1.6.0[-python_single_target_python2_7(-),-python_single_target_python3_3(-),-python_single_target_python3_4(-),python_targets_python2_7(-),python_targets_python3_3(-),python_targets_python3_4(-)] ]
  NonsolvableDeps: version 0.19.0-r1: nonsolvable depset(rdepends) keyword(~x86) profile (default/linux/x86/13.0/desktop/gnome): solutions: [ >=dev-python/python-keystoneclient-1.6.0[-python_single_target_python2_7(-),-python_single_target_python3_3(-),-python_single_target_python3_4(-),python_targets_python2_7(-),python_targets_python3_3(-),python_targets_python3_4(-)] ]
  NonsolvableDeps: version 0.19.0-r1: nonsolvable depset(rdepends) keyword(~x86) profile (default/linux/x86/13.0/developer): solutions: [ >=dev-python/python-keystoneclient-1.6.0[-python_single_target_python2_7(-),-python_single_target_python3_3(-),-python_single_target_python3_4(-),python_targets_python2_7(-),python_targets_python3_3(-),python_targets_python3_4(-)] ]
  NonsolvableDeps: version 0.19.0-r1: nonsolvable depset(rdepends) keyword(~x86) profile (default/linux/x86/13.0/desktop/gnome/systemd): solutions: [ >=dev-python/python-keystoneclient-1.6.0[-python_single_target_python2_7(-),-python_single_target_python3_3(-),-python_single_target_python3_4(-),python_targets_python2_7(-),python_targets_python3_3(-),python_targets_python3_4(-)] ]
  NonsolvableDeps: version 0.19.0-r1: nonsolvable depset(rdepends) keyword(~x86) profile (default/linux/x86/13.0/desktop/kde): solutions: [ >=dev-python/python-keystoneclient-1.6.0[-python_single_target_python2_7(-),-python_single_target_python3_3(-),-python_single_target_python3_4(-),python_targets_python2_7(-),python_targets_python3_3(-),python_targets_python3_4(-)] ]
  NonsolvableDeps: version 0.19.0-r1: nonsolvable depset(rdepends) keyword(~x86) profile (default/linux/x86/13.0/desktop/plasma): solutions: [ >=dev-python/python-keystoneclient-1.6.0[-python_single_target_python2_7(-),-python_single_target_python3_3(-),-python_single_target_python3_4(-),python_targets_python2_7(-),python_targets_python3_3(-),python_targets_python3_4(-)] ]
  NonsolvableDeps: version 0.19.0-r1: nonsolvable depset(rdepends) keyword(~x86) profile (default/linux/x86/13.0/desktop/kde/systemd): solutions: [ >=dev-python/python-keystoneclient-1.6.0[-python_single_target_python2_7(-),-python_single_target_python3_3(-),-python_single_target_python3_4(-),python_targets_python2_7(-),python_targets_python3_3(-),python_targets_python3_4(-)] ]
  NonsolvableDeps: version 0.19.0-r1: nonsolvable depset(rdepends) keyword(~x86) profile (default/linux/x86/13.0/desktop/plasma/systemd): solutions: [ >=dev-python/python-keystoneclient-1.6.0[-python_single_target_python2_7(-),-python_single_target_python3_3(-),-python_single_target_python3_4(-),python_targets_python2_7(-),python_targets_python3_3(-),python_targets_python3_4(-)] ]
  NonsolvableDeps: version 0.19.0-r1: nonsolvable depset(rdepends) keyword(~x86) profile (hardened/linux/x86): solutions: [ >=dev-python/python-keystoneclient-1.6.0[-python_single_target_python2_7(-),-python_single_target_python3_3(-),-python_single_target_python3_4(-),python_targets_python2_7(-),python_targets_python3_3(-),python_targets_python3_4(-)] ]
  NonsolvableDeps: version 0.19.0-r1: nonsolvable depset(rdepends) keyword(~x86) profile (hardened/linux/x86/selinux): solutions: [ >=dev-python/python-keystoneclient-1.6.0[-python_single_target_python2_7(-),-python_single_target_python3_3(-),-python_single_target_python3_4(-),python_targets_python2_7(-),python_targets_python3_3(-),python_targets_python3_4(-)] ]
  NonsolvableDeps: version 1.0.0: nonsolvable depset(rdepends) keyword(~amd64) profile (default/linux/amd64/13.0): solutions: [ >=dev-python/python-keystoneclient-1.6.0[-python_single_target_python2_7(-),-python_single_target_python3_3(-),-python_single_target_python3_4(-),python_targets_python2_7(-),python_targets_python3_3(-),python_targets_python3_4(-)] ]
  NonsolvableDeps: version 1.0.0: nonsolvable depset(rdepends) keyword(~amd64) profile (default/linux/amd64/13.0/desktop): solutions: [ >=dev-python/python-keystoneclient-1.6.0[-python_single_target_python2_7(-),-python_single_target_python3_3(-),-python_single_target_python3_4(-),python_targets_python2_7(-),python_targets_python3_3(-),python_targets_python3_4(-)] ]
  NonsolvableDeps: version 1.0.0: nonsolvable depset(rdepends) keyword(~amd64) profile (default/linux/amd64/13.0/desktop/gnome): solutions: [ >=dev-python/python-keystoneclient-1.6.0[-python_single_target_python2_7(-),-python_single_target_python3_3(-),-python_single_target_python3_4(-),python_targets_python2_7(-),python_targets_python3_3(-),python_targets_python3_4(-)] ]
  NonsolvableDeps: version 1.0.0: nonsolvable depset(rdepends) keyword(~amd64) profile (default/linux/amd64/13.0/developer): solutions: [ >=dev-python/python-keystoneclient-1.6.0[-python_single_target_python2_7(-),-python_single_target_python3_3(-),-python_single_target_python3_4(-),python_targets_python2_7(-),python_targets_python3_3(-),python_targets_python3_4(-)] ]
  NonsolvableDeps: version 1.0.0: nonsolvable depset(rdepends) keyword(~amd64) profile (default/linux/amd64/13.0/desktop/gnome/systemd): solutions: [ >=dev-python/python-keystoneclient-1.6.0[-python_single_target_python2_7(-),-python_single_target_python3_3(-),-python_single_target_python3_4(-),python_targets_python2_7(-),python_targets_python3_3(-),python_targets_python3_4(-)] ]
  NonsolvableDeps: version 1.0.0: nonsolvable depset(rdepends) keyword(~amd64) profile (default/linux/amd64/13.0/desktop/kde): solutions: [ >=dev-python/python-keystoneclient-1.6.0[-python_single_target_python2_7(-),-python_single_target_python3_3(-),-python_single_target_python3_4(-),python_targets_python2_7(-),python_targets_python3_3(-),python_targets_python3_4(-)] ]
  NonsolvableDeps: version 1.0.0: nonsolvable depset(rdepends) keyword(~amd64) profile (default/linux/amd64/13.0/desktop/plasma): solutions: [ >=dev-python/python-keystoneclient-1.6.0[-python_single_target_python2_7(-),-python_single_target_python3_3(-),-python_single_target_python3_4(-),python_targets_python2_7(-),python_targets_python3_3(-),python_targets_python3_4(-)] ]
  NonsolvableDeps: version 1.0.0: nonsolvable depset(rdepends) keyword(~amd64) profile (default/linux/amd64/13.0/desktop/kde/systemd): solutions: [ >=dev-python/python-keystoneclient-1.6.0[-python_single_target_python2_7(-),-python_single_target_python3_3(-),-python_single_target_python3_4(-),python_targets_python2_7(-),python_targets_python3_3(-),python_targets_python3_4(-)] ]
  NonsolvableDeps: version 1.0.0: nonsolvable depset(rdepends) keyword(~amd64) profile (default/linux/amd64/13.0/desktop/plasma/systemd): solutions: [ >=dev-python/python-keystoneclient-1.6.0[-python_single_target_python2_7(-),-python_single_target_python3_3(-),-python_single_target_python3_4(-),python_targets_python2_7(-),python_targets_python3_3(-),python_targets_python3_4(-)] ]
  NonsolvableDeps: version 1.0.0: nonsolvable depset(rdepends) keyword(~amd64) profile (default/linux/amd64/13.0/systemd): solutions: [ >=dev-python/python-keystoneclient-1.6.0[-python_single_target_python2_7(-),-python_single_target_python3_3(-),-python_single_target_python3_4(-),python_targets_python2_7(-),python_targets_python3_3(-),python_targets_python3_4(-)] ]
  NonsolvableDeps: version 1.0.0: nonsolvable depset(rdepends) keyword(~amd64) profile (hardened/linux/amd64): solutions: [ >=dev-python/python-keystoneclient-1.6.0[-python_single_target_python2_7(-),-python_single_target_python3_3(-),-python_single_target_python3_4(-),python_targets_python2_7(-),python_targets_python3_3(-),python_targets_python3_4(-)] ]
  NonsolvableDeps: version 1.0.0: nonsolvable depset(rdepends) keyword(~amd64) profile (hardened/linux/amd64/no-multilib): solutions: [ >=dev-python/python-keystoneclient-1.6.0[-python_single_target_python2_7(-),-python_single_target_python3_3(-),-python_single_target_python3_4(-),python_targets_python2_7(-),python_targets_python3_3(-),python_targets_python3_4(-)] ]
  NonsolvableDeps: version 1.0.0: nonsolvable depset(rdepends) keyword(~amd64) profile (hardened/linux/amd64/no-multilib/selinux): solutions: [ >=dev-python/python-keystoneclient-1.6.0[-python_single_target_python2_7(-),-python_single_target_python3_3(-),-python_single_target_python3_4(-),python_targets_python2_7(-),python_targets_python3_3(-),python_targets_python3_4(-)] ]
  NonsolvableDeps: version 1.0.0: nonsolvable depset(rdepends) keyword(~amd64) profile (hardened/linux/amd64/selinux): solutions: [ >=dev-python/python-keystoneclient-1.6.0[-python_single_target_python2_7(-),-python_single_target_python3_3(-),-python_single_target_python3_4(-),python_targets_python2_7(-),python_targets_python3_3(-),python_targets_python3_4(-)] ]
  NonsolvableDeps: version 1.0.0: nonsolvable depset(rdepends) keyword(~x86) profile (default/linux/x86/13.0): solutions: [ >=dev-python/python-keystoneclient-1.6.0[-python_single_target_python2_7(-),-python_single_target_python3_3(-),-python_single_target_python3_4(-),python_targets_python2_7(-),python_targets_python3_3(-),python_targets_python3_4(-)] ]
  NonsolvableDeps: version 1.0.0: nonsolvable depset(rdepends) keyword(~x86) profile (default/linux/x86/13.0/desktop): solutions: [ >=dev-python/python-keystoneclient-1.6.0[-python_single_target_python2_7(-),-python_single_target_python3_3(-),-python_single_target_python3_4(-),python_targets_python2_7(-),python_targets_python3_3(-),python_targets_python3_4(-)] ]
  NonsolvableDeps: version 1.0.0: nonsolvable depset(rdepends) keyword(~x86) profile (default/linux/x86/13.0/desktop/gnome): solutions: [ >=dev-python/python-keystoneclient-1.6.0[-python_single_target_python2_7(-),-python_single_target_python3_3(-),-python_single_target_python3_4(-),python_targets_python2_7(-),python_targets_python3_3(-),python_targets_python3_4(-)] ]
  NonsolvableDeps: version 1.0.0: nonsolvable depset(rdepends) keyword(~x86) profile (default/linux/x86/13.0/developer): solutions: [ >=dev-python/python-keystoneclient-1.6.0[-python_single_target_python2_7(-),-python_single_target_python3_3(-),-python_single_target_python3_4(-),python_targets_python2_7(-),python_targets_python3_3(-),python_targets_python3_4(-)] ]
  NonsolvableDeps: version 1.0.0: nonsolvable depset(rdepends) keyword(~x86) profile (default/linux/x86/13.0/desktop/gnome/systemd): solutions: [ >=dev-python/python-keystoneclient-1.6.0[-python_single_target_python2_7(-),-python_single_target_python3_3(-),-python_single_target_python3_4(-),python_targets_python2_7(-),python_targets_python3_3(-),python_targets_python3_4(-)] ]
  NonsolvableDeps: version 1.0.0: nonsolvable depset(rdepends) keyword(~x86) profile (default/linux/x86/13.0/desktop/kde): solutions: [ >=dev-python/python-keystoneclient-1.6.0[-python_single_target_python2_7(-),-python_single_target_python3_3(-),-python_single_target_python3_4(-),python_targets_python2_7(-),python_targets_python3_3(-),python_targets_python3_4(-)] ]
  NonsolvableDeps: version 1.0.0: nonsolvable depset(rdepends) keyword(~x86) profile (default/linux/x86/13.0/desktop/plasma): solutions: [ >=dev-python/python-keystoneclient-1.6.0[-python_single_target_python2_7(-),-python_single_target_python3_3(-),-python_single_target_python3_4(-),python_targets_python2_7(-),python_targets_python3_3(-),python_targets_python3_4(-)] ]
  NonsolvableDeps: version 1.0.0: nonsolvable depset(rdepends) keyword(~x86) profile (default/linux/x86/13.0/desktop/kde/systemd): solutions: [ >=dev-python/python-keystoneclient-1.6.0[-python_single_target_python2_7(-),-python_single_target_python3_3(-),-python_single_target_python3_4(-),python_targets_python2_7(-),python_targets_python3_3(-),python_targets_python3_4(-)] ]
  NonsolvableDeps: version 1.0.0: nonsolvable depset(rdepends) keyword(~x86) profile (default/linux/x86/13.0/desktop/plasma/systemd): solutions: [ >=dev-python/python-keystoneclient-1.6.0[-python_single_target_python2_7(-),-python_single_target_python3_3(-),-python_single_target_python3_4(-),python_targets_python2_7(-),python_targets_python3_3(-),python_targets_python3_4(-)] ]
  NonsolvableDeps: version 1.0.0: nonsolvable depset(rdepends) keyword(~x86) profile (hardened/linux/x86): solutions: [ >=dev-python/python-keystoneclient-1.6.0[-python_single_target_python2_7(-),-python_single_target_python3_3(-),-python_single_target_python3_4(-),python_targets_python2_7(-),python_targets_python3_3(-),python_targets_python3_4(-)] ]
  NonsolvableDeps: version 1.0.0: nonsolvable depset(rdepends) keyword(~x86) profile (hardened/linux/x86/selinux): solutions: [ >=dev-python/python-keystoneclient-1.6.0[-python_single_target_python2_7(-),-python_single_target_python3_3(-),-python_single_target_python3_4(-),python_targets_python2_7(-),python_targets_python3_3(-),python_targets_python3_4(-)] ]

dev-python/python-heatclient
  NonsolvableDeps: version 0.7.0: nonsolvable depset(rdepends) keyword(~amd64) profile (default/linux/amd64/13.0): solutions: [ >=dev-python/python-keystoneclient-1.6.0[-python_single_target_python2_7(-),-python_single_target_python3_3(-),-python_single_target_python3_4(-),python_targets_python2_7(-),python_targets_python3_3(-),python_targets_python3_4(-)] ]
  NonsolvableDeps: version 0.7.0: nonsolvable depset(rdepends) keyword(~amd64) profile (default/linux/amd64/13.0/desktop): solutions: [ >=dev-python/python-keystoneclient-1.6.0[-python_single_target_python2_7(-),-python_single_target_python3_3(-),-python_single_target_python3_4(-),python_targets_python2_7(-),python_targets_python3_3(-),python_targets_python3_4(-)] ]
  NonsolvableDeps: version 0.7.0: nonsolvable depset(rdepends) keyword(~amd64) profile (default/linux/amd64/13.0/desktop/gnome): solutions: [ >=dev-python/python-keystoneclient-1.6.0[-python_single_target_python2_7(-),-python_single_target_python3_3(-),-python_single_target_python3_4(-),python_targets_python2_7(-),python_targets_python3_3(-),python_targets_python3_4(-)] ]
  NonsolvableDeps: version 0.7.0: nonsolvable depset(rdepends) keyword(~amd64) profile (default/linux/amd64/13.0/developer): solutions: [ >=dev-python/python-keystoneclient-1.6.0[-python_single_target_python2_7(-),-python_single_target_python3_3(-),-python_single_target_python3_4(-),python_targets_python2_7(-),python_targets_python3_3(-),python_targets_python3_4(-)] ]
  NonsolvableDeps: version 0.7.0: nonsolvable depset(rdepends) keyword(~amd64) profile (default/linux/amd64/13.0/desktop/gnome/systemd): solutions: [ >=dev-python/python-keystoneclient-1.6.0[-python_single_target_python2_7(-),-python_single_target_python3_3(-),-python_single_target_python3_4(-),python_targets_python2_7(-),python_targets_python3_3(-),python_targets_python3_4(-)] ]
  NonsolvableDeps: version 0.7.0: nonsolvable depset(rdepends) keyword(~amd64) profile (default/linux/amd64/13.0/desktop/kde): solutions: [ >=dev-python/python-keystoneclient-1.6.0[-python_single_target_python2_7(-),-python_single_target_python3_3(-),-python_single_target_python3_4(-),python_targets_python2_7(-),python_targets_python3_3(-),python_targets_python3_4(-)] ]
  NonsolvableDeps: version 0.7.0: nonsolvable depset(rdepends) keyword(~amd64) profile (default/linux/amd64/13.0/desktop/plasma): solutions: [ >=dev-python/python-keystoneclient-1.6.0[-python_single_target_python2_7(-),-python_single_target_python3_3(-),-python_single_target_python3_4(-),python_targets_python2_7(-),python_targets_python3_3(-),python_targets_python3_4(-)] ]
  NonsolvableDeps: version 0.7.0: nonsolvable depset(rdepends) keyword(~amd64) profile (default/linux/amd64/13.0/desktop/kde/systemd): solutions: [ >=dev-python/python-keystoneclient-1.6.0[-python_single_target_python2_7(-),-python_single_target_python3_3(-),-python_single_target_python3_4(-),python_targets_python2_7(-),python_targets_python3_3(-),python_targets_python3_4(-)] ]
  NonsolvableDeps: version 0.7.0: nonsolvable depset(rdepends) keyword(~amd64) profile (default/linux/amd64/13.0/desktop/plasma/systemd): solutions: [ >=dev-python/python-keystoneclient-1.6.0[-python_single_target_python2_7(-),-python_single_target_python3_3(-),-python_single_target_python3_4(-),python_targets_python2_7(-),python_targets_python3_3(-),python_targets_python3_4(-)] ]
  NonsolvableDeps: version 0.7.0: nonsolvable depset(rdepends) keyword(~amd64) profile (default/linux/amd64/13.0/systemd): solutions: [ >=dev-python/python-keystoneclient-1.6.0[-python_single_target_python2_7(-),-python_single_target_python3_3(-),-python_single_target_python3_4(-),python_targets_python2_7(-),python_targets_python3_3(-),python_targets_python3_4(-)] ]
  NonsolvableDeps: version 0.7.0: nonsolvable depset(rdepends) keyword(~amd64) profile (hardened/linux/amd64): solutions: [ >=dev-python/python-keystoneclient-1.6.0[-python_single_target_python2_7(-),-python_single_target_python3_3(-),-python_single_target_python3_4(-),python_targets_python2_7(-),python_targets_python3_3(-),python_targets_python3_4(-)] ]
  NonsolvableDeps: version 0.7.0: nonsolvable depset(rdepends) keyword(~amd64) profile (hardened/linux/amd64/no-multilib): solutions: [ >=dev-python/python-keystoneclient-1.6.0[-python_single_target_python2_7(-),-python_single_target_python3_3(-),-python_single_target_python3_4(-),python_targets_python2_7(-),python_targets_python3_3(-),python_targets_python3_4(-)] ]
  NonsolvableDeps: version 0.7.0: nonsolvable depset(rdepends) keyword(~amd64) profile (hardened/linux/amd64/no-multilib/selinux): solutions: [ >=dev-python/python-keystoneclient-1.6.0[-python_single_target_python2_7(-),-python_single_target_python3_3(-),-python_single_target_python3_4(-),python_targets_python2_7(-),python_targets_python3_3(-),python_targets_python3_4(-)] ]
  NonsolvableDeps: version 0.7.0: nonsolvable depset(rdepends) keyword(~amd64) profile (hardened/linux/amd64/selinux): solutions: [ >=dev-python/python-keystoneclient-1.6.0[-python_single_target_python2_7(-),-python_single_target_python3_3(-),-python_single_target_python3_4(-),python_targets_python2_7(-),python_targets_python3_3(-),python_targets_python3_4(-)] ]
  NonsolvableDeps: version 0.7.0: nonsolvable depset(rdepends) keyword(~x86) profile (default/linux/x86/13.0): solutions: [ >=dev-python/python-keystoneclient-1.6.0[-python_single_target_python2_7(-),-python_single_target_python3_3(-),-python_single_target_python3_4(-),python_targets_python2_7(-),python_targets_python3_3(-),python_targets_python3_4(-)] ]
  NonsolvableDeps: version 0.7.0: nonsolvable depset(rdepends) keyword(~x86) profile (default/linux/x86/13.0/desktop): solutions: [ >=dev-python/python-keystoneclient-1.6.0[-python_single_target_python2_7(-),-python_single_target_python3_3(-),-python_single_target_python3_4(-),python_targets_python2_7(-),python_targets_python3_3(-),python_targets_python3_4(-)] ]
  NonsolvableDeps: version 0.7.0: nonsolvable depset(rdepends) keyword(~x86) profile (default/linux/x86/13.0/desktop/gnome): solutions: [ >=dev-python/python-keystoneclient-1.6.0[-python_single_target_python2_7(-),-python_single_target_python3_3(-),-python_single_target_python3_4(-),python_targets_python2_7(-),python_targets_python3_3(-),python_targets_python3_4(-)] ]
  NonsolvableDeps: version 0.7.0: nonsolvable depset(rdepends) keyword(~x86) profile (default/linux/x86/13.0/developer): solutions: [ >=dev-python/python-keystoneclient-1.6.0[-python_single_target_python2_7(-),-python_single_target_python3_3(-),-python_single_target_python3_4(-),python_targets_python2_7(-),python_targets_python3_3(-),python_targets_python3_4(-)] ]
  NonsolvableDeps: version 0.7.0: nonsolvable depset(rdepends) keyword(~x86) profile (default/linux/x86/13.0/desktop/gnome/systemd): solutions: [ >=dev-python/python-keystoneclient-1.6.0[-python_single_target_python2_7(-),-python_single_target_python3_3(-),-python_single_target_python3_4(-),python_targets_python2_7(-),python_targets_python3_3(-),python_targets_python3_4(-)] ]
  NonsolvableDeps: version 0.7.0: nonsolvable depset(rdepends) keyword(~x86) profile (default/linux/x86/13.0/desktop/kde): solutions: [ >=dev-python/python-keystoneclient-1.6.0[-python_single_target_python2_7(-),-python_single_target_python3_3(-),-python_single_target_python3_4(-),python_targets_python2_7(-),python_targets_python3_3(-),python_targets_python3_4(-)] ]
  NonsolvableDeps: version 0.7.0: nonsolvable depset(rdepends) keyword(~x86) profile (default/linux/x86/13.0/desktop/plasma): solutions: [ >=dev-python/python-keystoneclient-1.6.0[-python_single_target_python2_7(-),-python_single_target_python3_3(-),-python_single_target_python3_4(-),python_targets_python2_7(-),python_targets_python3_3(-),python_targets_python3_4(-)] ]
  NonsolvableDeps: version 0.7.0: nonsolvable depset(rdepends) keyword(~x86) profile (default/linux/x86/13.0/desktop/kde/systemd): solutions: [ >=dev-python/python-keystoneclient-1.6.0[-python_single_target_python2_7(-),-python_single_target_python3_3(-),-python_single_target_python3_4(-),python_targets_python2_7(-),python_targets_python3_3(-),python_targets_python3_4(-)] ]
  NonsolvableDeps: version 0.7.0: nonsolvable depset(rdepends) keyword(~x86) profile (default/linux/x86/13.0/desktop/plasma/systemd): solutions: [ >=dev-python/python-keystoneclient-1.6.0[-python_single_target_python2_7(-),-python_single_target_python3_3(-),-python_single_target_python3_4(-),python_targets_python2_7(-),python_targets_python3_3(-),python_targets_python3_4(-)] ]
  NonsolvableDeps: version 0.7.0: nonsolvable depset(rdepends) keyword(~x86) profile (hardened/linux/x86): solutions: [ >=dev-python/python-keystoneclient-1.6.0[-python_single_target_python2_7(-),-python_single_target_python3_3(-),-python_single_target_python3_4(-),python_targets_python2_7(-),python_targets_python3_3(-),python_targets_python3_4(-)] ]
  NonsolvableDeps: version 0.7.0: nonsolvable depset(rdepends) keyword(~x86) profile (hardened/linux/x86/selinux): solutions: [ >=dev-python/python-keystoneclient-1.6.0[-python_single_target_python2_7(-),-python_single_target_python3_3(-),-python_single_target_python3_4(-),python_targets_python2_7(-),python_targets_python3_3(-),python_targets_python3_4(-)] ]

dev-python/python-ldap
  DeprecatedEclass: version 9999: uses deprecated eclass(es): [ git-2 (migrate to git-r3) ]

dev-python/python-linux-procfs
  DeprecatedEclass: version 9999: uses deprecated eclass(es): [ git-2 (migrate to git-r3) ]

dev-python/python-neutronclient
  WhitespaceFound: version 3.0.0: ebuild has trailing whitespace on line 61
  NonsolvableDeps: version 3.0.0: nonsolvable depset(rdepends) keyword(~amd64) profile (default/linux/amd64/13.0): solutions: [ >=dev-python/python-keystoneclient-1.6.0[-python_single_target_python2_7(-),-python_single_target_python3_3(-),-python_single_target_python3_4(-),python_targets_python2_7(-),python_targets_python3_3(-),python_targets_python3_4(-)] ]
  NonsolvableDeps: version 3.0.0: nonsolvable depset(rdepends) keyword(~amd64) profile (default/linux/amd64/13.0/desktop): solutions: [ >=dev-python/python-keystoneclient-1.6.0[-python_single_target_python2_7(-),-python_single_target_python3_3(-),-python_single_target_python3_4(-),python_targets_python2_7(-),python_targets_python3_3(-),python_targets_python3_4(-)] ]
  NonsolvableDeps: version 3.0.0: nonsolvable depset(rdepends) keyword(~amd64) profile (default/linux/amd64/13.0/desktop/gnome): solutions: [ >=dev-python/python-keystoneclient-1.6.0[-python_single_target_python2_7(-),-python_single_target_python3_3(-),-python_single_target_python3_4(-),python_targets_python2_7(-),python_targets_python3_3(-),python_targets_python3_4(-)] ]
  NonsolvableDeps: version 3.0.0: nonsolvable depset(rdepends) keyword(~amd64) profile (default/linux/amd64/13.0/developer): solutions: [ >=dev-python/python-keystoneclient-1.6.0[-python_single_target_python2_7(-),-python_single_target_python3_3(-),-python_single_target_python3_4(-),python_targets_python2_7(-),python_targets_python3_3(-),python_targets_python3_4(-)] ]
  NonsolvableDeps: version 3.0.0: nonsolvable depset(rdepends) keyword(~amd64) profile (default/linux/amd64/13.0/desktop/gnome/systemd): solutions: [ >=dev-python/python-keystoneclient-1.6.0[-python_single_target_python2_7(-),-python_single_target_python3_3(-),-python_single_target_python3_4(-),python_targets_python2_7(-),python_targets_python3_3(-),python_targets_python3_4(-)] ]
  NonsolvableDeps: version 3.0.0: nonsolvable depset(rdepends) keyword(~amd64) profile (default/linux/amd64/13.0/desktop/kde): solutions: [ >=dev-python/python-keystoneclient-1.6.0[-python_single_target_python2_7(-),-python_single_target_python3_3(-),-python_single_target_python3_4(-),python_targets_python2_7(-),python_targets_python3_3(-),python_targets_python3_4(-)] ]
  NonsolvableDeps: version 3.0.0: nonsolvable depset(rdepends) keyword(~amd64) profile (default/linux/amd64/13.0/desktop/plasma): solutions: [ >=dev-python/python-keystoneclient-1.6.0[-python_single_target_python2_7(-),-python_single_target_python3_3(-),-python_single_target_python3_4(-),python_targets_python2_7(-),python_targets_python3_3(-),python_targets_python3_4(-)] ]
  NonsolvableDeps: version 3.0.0: nonsolvable depset(rdepends) keyword(~amd64) profile (default/linux/amd64/13.0/desktop/kde/systemd): solutions: [ >=dev-python/python-keystoneclient-1.6.0[-python_single_target_python2_7(-),-python_single_target_python3_3(-),-python_single_target_python3_4(-),python_targets_python2_7(-),python_targets_python3_3(-),python_targets_python3_4(-)] ]
  NonsolvableDeps: version 3.0.0: nonsolvable depset(rdepends) keyword(~amd64) profile (default/linux/amd64/13.0/desktop/plasma/systemd): solutions: [ >=dev-python/python-keystoneclient-1.6.0[-python_single_target_python2_7(-),-python_single_target_python3_3(-),-python_single_target_python3_4(-),python_targets_python2_7(-),python_targets_python3_3(-),python_targets_python3_4(-)] ]
  NonsolvableDeps: version 3.0.0: nonsolvable depset(rdepends) keyword(~amd64) profile (default/linux/amd64/13.0/systemd): solutions: [ >=dev-python/python-keystoneclient-1.6.0[-python_single_target_python2_7(-),-python_single_target_python3_3(-),-python_single_target_python3_4(-),python_targets_python2_7(-),python_targets_python3_3(-),python_targets_python3_4(-)] ]
  NonsolvableDeps: version 3.0.0: nonsolvable depset(rdepends) keyword(~amd64) profile (hardened/linux/amd64): solutions: [ >=dev-python/python-keystoneclient-1.6.0[-python_single_target_python2_7(-),-python_single_target_python3_3(-),-python_single_target_python3_4(-),python_targets_python2_7(-),python_targets_python3_3(-),python_targets_python3_4(-)] ]
  NonsolvableDeps: version 3.0.0: nonsolvable depset(rdepends) keyword(~amd64) profile (hardened/linux/amd64/no-multilib): solutions: [ >=dev-python/python-keystoneclient-1.6.0[-python_single_target_python2_7(-),-python_single_target_python3_3(-),-python_single_target_python3_4(-),python_targets_python2_7(-),python_targets_python3_3(-),python_targets_python3_4(-)] ]
  NonsolvableDeps: version 3.0.0: nonsolvable depset(rdepends) keyword(~amd64) profile (hardened/linux/amd64/no-multilib/selinux): solutions: [ >=dev-python/python-keystoneclient-1.6.0[-python_single_target_python2_7(-),-python_single_target_python3_3(-),-python_single_target_python3_4(-),python_targets_python2_7(-),python_targets_python3_3(-),python_targets_python3_4(-)] ]
  NonsolvableDeps: version 3.0.0: nonsolvable depset(rdepends) keyword(~amd64) profile (hardened/linux/amd64/selinux): solutions: [ >=dev-python/python-keystoneclient-1.6.0[-python_single_target_python2_7(-),-python_single_target_python3_3(-),-python_single_target_python3_4(-),python_targets_python2_7(-),python_targets_python3_3(-),python_targets_python3_4(-)] ]
  NonsolvableDeps: version 3.0.0: nonsolvable depset(rdepends) keyword(~x86) profile (default/linux/x86/13.0): solutions: [ >=dev-python/python-keystoneclient-1.6.0[-python_single_target_python2_7(-),-python_single_target_python3_3(-),-python_single_target_python3_4(-),python_targets_python2_7(-),python_targets_python3_3(-),python_targets_python3_4(-)] ]
  NonsolvableDeps: version 3.0.0: nonsolvable depset(rdepends) keyword(~x86) profile (default/linux/x86/13.0/desktop): solutions: [ >=dev-python/python-keystoneclient-1.6.0[-python_single_target_python2_7(-),-python_single_target_python3_3(-),-python_single_target_python3_4(-),python_targets_python2_7(-),python_targets_python3_3(-),python_targets_python3_4(-)] ]
  NonsolvableDeps: version 3.0.0: nonsolvable depset(rdepends) keyword(~x86) profile (default/linux/x86/13.0/desktop/gnome): solutions: [ >=dev-python/python-keystoneclient-1.6.0[-python_single_target_python2_7(-),-python_single_target_python3_3(-),-python_single_target_python3_4(-),python_targets_python2_7(-),python_targets_python3_3(-),python_targets_python3_4(-)] ]
  NonsolvableDeps: version 3.0.0: nonsolvable depset(rdepends) keyword(~x86) profile (default/linux/x86/13.0/developer): solutions: [ >=dev-python/python-keystoneclient-1.6.0[-python_single_target_python2_7(-),-python_single_target_python3_3(-),-python_single_target_python3_4(-),python_targets_python2_7(-),python_targets_python3_3(-),python_targets_python3_4(-)] ]
  NonsolvableDeps: version 3.0.0: nonsolvable depset(rdepends) keyword(~x86) profile (default/linux/x86/13.0/desktop/gnome/systemd): solutions: [ >=dev-python/python-keystoneclient-1.6.0[-python_single_target_python2_7(-),-python_single_target_python3_3(-),-python_single_target_python3_4(-),python_targets_python2_7(-),python_targets_python3_3(-),python_targets_python3_4(-)] ]
  NonsolvableDeps: version 3.0.0: nonsolvable depset(rdepends) keyword(~x86) profile (default/linux/x86/13.0/desktop/kde): solutions: [ >=dev-python/python-keystoneclient-1.6.0[-python_single_target_python2_7(-),-python_single_target_python3_3(-),-python_single_target_python3_4(-),python_targets_python2_7(-),python_targets_python3_3(-),python_targets_python3_4(-)] ]
  NonsolvableDeps: version 3.0.0: nonsolvable depset(rdepends) keyword(~x86) profile (default/linux/x86/13.0/desktop/plasma): solutions: [ >=dev-python/python-keystoneclient-1.6.0[-python_single_target_python2_7(-),-python_single_target_python3_3(-),-python_single_target_python3_4(-),python_targets_python2_7(-),python_targets_python3_3(-),python_targets_python3_4(-)] ]
  NonsolvableDeps: version 3.0.0: nonsolvable depset(rdepends) keyword(~x86) profile (default/linux/x86/13.0/desktop/kde/systemd): solutions: [ >=dev-python/python-keystoneclient-1.6.0[-python_single_target_python2_7(-),-python_single_target_python3_3(-),-python_single_target_python3_4(-),python_targets_python2_7(-),python_targets_python3_3(-),python_targets_python3_4(-)] ]
  NonsolvableDeps: version 3.0.0: nonsolvable depset(rdepends) keyword(~x86) profile (default/linux/x86/13.0/desktop/plasma/systemd): solutions: [ >=dev-python/python-keystoneclient-1.6.0[-python_single_target_python2_7(-),-python_single_target_python3_3(-),-python_single_target_python3_4(-),python_targets_python2_7(-),python_targets_python3_3(-),python_targets_python3_4(-)] ]
  NonsolvableDeps: version 3.0.0: nonsolvable depset(rdepends) keyword(~x86) profile (hardened/linux/x86): solutions: [ >=dev-python/python-keystoneclient-1.6.0[-python_single_target_python2_7(-),-python_single_target_python3_3(-),-python_single_target_python3_4(-),python_targets_python2_7(-),python_targets_python3_3(-),python_targets_python3_4(-)] ]
  NonsolvableDeps: version 3.0.0: nonsolvable depset(rdepends) keyword(~x86) profile (hardened/linux/x86/selinux): solutions: [ >=dev-python/python-keystoneclient-1.6.0[-python_single_target_python2_7(-),-python_single_target_python3_3(-),-python_single_target_python3_4(-),python_targets_python2_7(-),python_targets_python3_3(-),python_targets_python3_4(-)] ]

dev-python/python-novaclient
  NonsolvableDeps: version 2.27.0: nonsolvable depset(rdepends) keyword(~amd64) profile (default/linux/amd64/13.0): solutions: [ >=dev-python/python-keystoneclient-1.6.0[-python_single_target_python2_7(-),-python_single_target_python3_3(-),-python_single_target_python3_4(-),python_targets_python2_7(-),python_targets_python3_3(-),python_targets_python3_4(-)] ]
  NonsolvableDeps: version 2.27.0: nonsolvable depset(rdepends) keyword(~amd64) profile (default/linux/amd64/13.0/desktop): solutions: [ >=dev-python/python-keystoneclient-1.6.0[-python_single_target_python2_7(-),-python_single_target_python3_3(-),-python_single_target_python3_4(-),python_targets_python2_7(-),python_targets_python3_3(-),python_targets_python3_4(-)] ]
  NonsolvableDeps: version 2.27.0: nonsolvable depset(rdepends) keyword(~amd64) profile (default/linux/amd64/13.0/desktop/gnome): solutions: [ >=dev-python/python-keystoneclient-1.6.0[-python_single_target_python2_7(-),-python_single_target_python3_3(-),-python_single_target_python3_4(-),python_targets_python2_7(-),python_targets_python3_3(-),python_targets_python3_4(-)] ]
  NonsolvableDeps: version 2.27.0: nonsolvable depset(rdepends) keyword(~amd64) profile (default/linux/amd64/13.0/developer): solutions: [ >=dev-python/python-keystoneclient-1.6.0[-python_single_target_python2_7(-),-python_single_target_python3_3(-),-python_single_target_python3_4(-),python_targets_python2_7(-),python_targets_python3_3(-),python_targets_python3_4(-)] ]
  NonsolvableDeps: version 2.27.0: nonsolvable depset(rdepends) keyword(~amd64) profile (default/linux/amd64/13.0/desktop/gnome/systemd): solutions: [ >=dev-python/python-keystoneclient-1.6.0[-python_single_target_python2_7(-),-python_single_target_python3_3(-),-python_single_target_python3_4(-),python_targets_python2_7(-),python_targets_python3_3(-),python_targets_python3_4(-)] ]
  NonsolvableDeps: version 2.27.0: nonsolvable depset(rdepends) keyword(~amd64) profile (default/linux/amd64/13.0/desktop/kde): solutions: [ >=dev-python/python-keystoneclient-1.6.0[-python_single_target_python2_7(-),-python_single_target_python3_3(-),-python_single_target_python3_4(-),python_targets_python2_7(-),python_targets_python3_3(-),python_targets_python3_4(-)] ]
  NonsolvableDeps: version 2.27.0: nonsolvable depset(rdepends) keyword(~amd64) profile (default/linux/amd64/13.0/desktop/plasma): solutions: [ >=dev-python/python-keystoneclient-1.6.0[-python_single_target_python2_7(-),-python_single_target_python3_3(-),-python_single_target_python3_4(-),python_targets_python2_7(-),python_targets_python3_3(-),python_targets_python3_4(-)] ]
  NonsolvableDeps: version 2.27.0: nonsolvable depset(rdepends) keyword(~amd64) profile (default/linux/amd64/13.0/desktop/kde/systemd): solutions: [ >=dev-python/python-keystoneclient-1.6.0[-python_single_target_python2_7(-),-python_single_target_python3_3(-),-python_single_target_python3_4(-),python_targets_python2_7(-),python_targets_python3_3(-),python_targets_python3_4(-)] ]
  NonsolvableDeps: version 2.27.0: nonsolvable depset(rdepends) keyword(~amd64) profile (default/linux/amd64/13.0/desktop/plasma/systemd): solutions: [ >=dev-python/python-keystoneclient-1.6.0[-python_single_target_python2_7(-),-python_single_target_python3_3(-),-python_single_target_python3_4(-),python_targets_python2_7(-),python_targets_python3_3(-),python_targets_python3_4(-)] ]
  NonsolvableDeps: version 2.27.0: nonsolvable depset(rdepends) keyword(~amd64) profile (default/linux/amd64/13.0/systemd): solutions: [ >=dev-python/python-keystoneclient-1.6.0[-python_single_target_python2_7(-),-python_single_target_python3_3(-),-python_single_target_python3_4(-),python_targets_python2_7(-),python_targets_python3_3(-),python_targets_python3_4(-)] ]
  NonsolvableDeps: version 2.27.0: nonsolvable depset(rdepends) keyword(~amd64) profile (hardened/linux/amd64): solutions: [ >=dev-python/python-keystoneclient-1.6.0[-python_single_target_python2_7(-),-python_single_target_python3_3(-),-python_single_target_python3_4(-),python_targets_python2_7(-),python_targets_python3_3(-),python_targets_python3_4(-)] ]
  NonsolvableDeps: version 2.27.0: nonsolvable depset(rdepends) keyword(~amd64) profile (hardened/linux/amd64/no-multilib): solutions: [ >=dev-python/python-keystoneclient-1.6.0[-python_single_target_python2_7(-),-python_single_target_python3_3(-),-python_single_target_python3_4(-),python_targets_python2_7(-),python_targets_python3_3(-),python_targets_python3_4(-)] ]
  NonsolvableDeps: version 2.27.0: nonsolvable depset(rdepends) keyword(~amd64) profile (hardened/linux/amd64/no-multilib/selinux): solutions: [ >=dev-python/python-keystoneclient-1.6.0[-python_single_target_python2_7(-),-python_single_target_python3_3(-),-python_single_target_python3_4(-),python_targets_python2_7(-),python_targets_python3_3(-),python_targets_python3_4(-)] ]
  NonsolvableDeps: version 2.27.0: nonsolvable depset(rdepends) keyword(~amd64) profile (hardened/linux/amd64/selinux): solutions: [ >=dev-python/python-keystoneclient-1.6.0[-python_single_target_python2_7(-),-python_single_target_python3_3(-),-python_single_target_python3_4(-),python_targets_python2_7(-),python_targets_python3_3(-),python_targets_python3_4(-)] ]
  NonsolvableDeps: version 2.27.0: nonsolvable depset(rdepends) keyword(~x86) profile (default/linux/x86/13.0): solutions: [ >=dev-python/python-keystoneclient-1.6.0[-python_single_target_python2_7(-),-python_single_target_python3_3(-),-python_single_target_python3_4(-),python_targets_python2_7(-),python_targets_python3_3(-),python_targets_python3_4(-)] ]
  NonsolvableDeps: version 2.27.0: nonsolvable depset(rdepends) keyword(~x86) profile (default/linux/x86/13.0/desktop): solutions: [ >=dev-python/python-keystoneclient-1.6.0[-python_single_target_python2_7(-),-python_single_target_python3_3(-),-python_single_target_python3_4(-),python_targets_python2_7(-),python_targets_python3_3(-),python_targets_python3_4(-)] ]
  NonsolvableDeps: version 2.27.0: nonsolvable depset(rdepends) keyword(~x86) profile (default/linux/x86/13.0/desktop/gnome): solutions: [ >=dev-python/python-keystoneclient-1.6.0[-python_single_target_python2_7(-),-python_single_target_python3_3(-),-python_single_target_python3_4(-),python_targets_python2_7(-),python_targets_python3_3(-),python_targets_python3_4(-)] ]
  NonsolvableDeps: version 2.27.0: nonsolvable depset(rdepends) keyword(~x86) profile (default/linux/x86/13.0/developer): solutions: [ >=dev-python/python-keystoneclient-1.6.0[-python_single_target_python2_7(-),-python_single_target_python3_3(-),-python_single_target_python3_4(-),python_targets_python2_7(-),python_targets_python3_3(-),python_targets_python3_4(-)] ]
  NonsolvableDeps: version 2.27.0: nonsolvable depset(rdepends) keyword(~x86) profile (default/linux/x86/13.0/desktop/gnome/systemd): solutions: [ >=dev-python/python-keystoneclient-1.6.0[-python_single_target_python2_7(-),-python_single_target_python3_3(-),-python_single_target_python3_4(-),python_targets_python2_7(-),python_targets_python3_3(-),python_targets_python3_4(-)] ]
  NonsolvableDeps: version 2.27.0: nonsolvable depset(rdepends) keyword(~x86) profile (default/linux/x86/13.0/desktop/kde): solutions: [ >=dev-python/python-keystoneclient-1.6.0[-python_single_target_python2_7(-),-python_single_target_python3_3(-),-python_single_target_python3_4(-),python_targets_python2_7(-),python_targets_python3_3(-),python_targets_python3_4(-)] ]
  NonsolvableDeps: version 2.27.0: nonsolvable depset(rdepends) keyword(~x86) profile (default/linux/x86/13.0/desktop/plasma): solutions: [ >=dev-python/python-keystoneclient-1.6.0[-python_single_target_python2_7(-),-python_single_target_python3_3(-),-python_single_target_python3_4(-),python_targets_python2_7(-),python_targets_python3_3(-),python_targets_python3_4(-)] ]
  NonsolvableDeps: version 2.27.0: nonsolvable depset(rdepends) keyword(~x86) profile (default/linux/x86/13.0/desktop/kde/systemd): solutions: [ >=dev-python/python-keystoneclient-1.6.0[-python_single_target_python2_7(-),-python_single_target_python3_3(-),-python_single_target_python3_4(-),python_targets_python2_7(-),python_targets_python3_3(-),python_targets_python3_4(-)] ]
  NonsolvableDeps: version 2.27.0: nonsolvable depset(rdepends) keyword(~x86) profile (default/linux/x86/13.0/desktop/plasma/systemd): solutions: [ >=dev-python/python-keystoneclient-1.6.0[-python_single_target_python2_7(-),-python_single_target_python3_3(-),-python_single_target_python3_4(-),python_targets_python2_7(-),python_targets_python3_3(-),python_targets_python3_4(-)] ]
  NonsolvableDeps: version 2.27.0: nonsolvable depset(rdepends) keyword(~x86) profile (hardened/linux/x86): solutions: [ >=dev-python/python-keystoneclient-1.6.0[-python_single_target_python2_7(-),-python_single_target_python3_3(-),-python_single_target_python3_4(-),python_targets_python2_7(-),python_targets_python3_3(-),python_targets_python3_4(-)] ]
  NonsolvableDeps: version 2.27.0: nonsolvable depset(rdepends) keyword(~x86) profile (hardened/linux/x86/selinux): solutions: [ >=dev-python/python-keystoneclient-1.6.0[-python_single_target_python2_7(-),-python_single_target_python3_3(-),-python_single_target_python3_4(-),python_targets_python2_7(-),python_targets_python3_3(-),python_targets_python3_4(-)] ]
  NonsolvableDeps: version 2.30.1: nonsolvable depset(rdepends) keyword(~amd64) profile (default/linux/amd64/13.0): solutions: [ >=dev-python/python-keystoneclient-1.6.0[-python_single_target_python2_7(-),-python_single_target_python3_3(-),-python_single_target_python3_4(-),python_targets_python2_7(-),python_targets_python3_3(-),python_targets_python3_4(-)] ]
  NonsolvableDeps: version 2.30.1: nonsolvable depset(rdepends) keyword(~amd64) profile (default/linux/amd64/13.0/desktop): solutions: [ >=dev-python/python-keystoneclient-1.6.0[-python_single_target_python2_7(-),-python_single_target_python3_3(-),-python_single_target_python3_4(-),python_targets_python2_7(-),python_targets_python3_3(-),python_targets_python3_4(-)] ]
  NonsolvableDeps: version 2.30.1: nonsolvable depset(rdepends) keyword(~amd64) profile (default/linux/amd64/13.0/desktop/gnome): solutions: [ >=dev-python/python-keystoneclient-1.6.0[-python_single_target_python2_7(-),-python_single_target_python3_3(-),-python_single_target_python3_4(-),python_targets_python2_7(-),python_targets_python3_3(-),python_targets_python3_4(-)] ]
  NonsolvableDeps: version 2.30.1: nonsolvable depset(rdepends) keyword(~amd64) profile (default/linux/amd64/13.0/developer): solutions: [ >=dev-python/python-keystoneclient-1.6.0[-python_single_target_python2_7(-),-python_single_target_python3_3(-),-python_single_target_python3_4(-),python_targets_python2_7(-),python_targets_python3_3(-),python_targets_python3_4(-)] ]
  NonsolvableDeps: version 2.30.1: nonsolvable depset(rdepends) keyword(~amd64) profile (default/linux/amd64/13.0/desktop/gnome/systemd): solutions: [ >=dev-python/python-keystoneclient-1.6.0[-python_single_target_python2_7(-),-python_single_target_python3_3(-),-python_single_target_python3_4(-),python_targets_python2_7(-),python_targets_python3_3(-),python_targets_python3_4(-)] ]
  NonsolvableDeps: version 2.30.1: nonsolvable depset(rdepends) keyword(~amd64) profile (default/linux/amd64/13.0/desktop/kde): solutions: [ >=dev-python/python-keystoneclient-1.6.0[-python_single_target_python2_7(-),-python_single_target_python3_3(-),-python_single_target_python3_4(-),python_targets_python2_7(-),python_targets_python3_3(-),python_targets_python3_4(-)] ]
  NonsolvableDeps: version 2.30.1: nonsolvable depset(rdepends) keyword(~amd64) profile (default/linux/amd64/13.0/desktop/plasma): solutions: [ >=dev-python/python-keystoneclient-1.6.0[-python_single_target_python2_7(-),-python_single_target_python3_3(-),-python_single_target_python3_4(-),python_targets_python2_7(-),python_targets_python3_3(-),python_targets_python3_4(-)] ]
  NonsolvableDeps: version 2.30.1: nonsolvable depset(rdepends) keyword(~amd64) profile (default/linux/amd64/13.0/desktop/kde/systemd): solutions: [ >=dev-python/python-keystoneclient-1.6.0[-python_single_target_python2_7(-),-python_single_target_python3_3(-),-python_single_target_python3_4(-),python_targets_python2_7(-),python_targets_python3_3(-),python_targets_python3_4(-)] ]
  NonsolvableDeps: version 2.30.1: nonsolvable depset(rdepends) keyword(~amd64) profile (default/linux/amd64/13.0/desktop/plasma/systemd): solutions: [ >=dev-python/python-keystoneclient-1.6.0[-python_single_target_python2_7(-),-python_single_target_python3_3(-),-python_single_target_python3_4(-),python_targets_python2_7(-),python_targets_python3_3(-),python_targets_python3_4(-)] ]
  NonsolvableDeps: version 2.30.1: nonsolvable depset(rdepends) keyword(~amd64) profile (default/linux/amd64/13.0/systemd): solutions: [ >=dev-python/python-keystoneclient-1.6.0[-python_single_target_python2_7(-),-python_single_target_python3_3(-),-python_single_target_python3_4(-),python_targets_python2_7(-),python_targets_python3_3(-),python_targets_python3_4(-)] ]
  NonsolvableDeps: version 2.30.1: nonsolvable depset(rdepends) keyword(~amd64) profile (hardened/linux/amd64): solutions: [ >=dev-python/python-keystoneclient-1.6.0[-python_single_target_python2_7(-),-python_single_target_python3_3(-),-python_single_target_python3_4(-),python_targets_python2_7(-),python_targets_python3_3(-),python_targets_python3_4(-)] ]
  NonsolvableDeps: version 2.30.1: nonsolvable depset(rdepends) keyword(~amd64) profile (hardened/linux/amd64/no-multilib): solutions: [ >=dev-python/python-keystoneclient-1.6.0[-python_single_target_python2_7(-),-python_single_target_python3_3(-),-python_single_target_python3_4(-),python_targets_python2_7(-),python_targets_python3_3(-),python_targets_python3_4(-)] ]
  NonsolvableDeps: version 2.30.1: nonsolvable depset(rdepends) keyword(~amd64) profile (hardened/linux/amd64/no-multilib/selinux): solutions: [ >=dev-python/python-keystoneclient-1.6.0[-python_single_target_python2_7(-),-python_single_target_python3_3(-),-python_single_target_python3_4(-),python_targets_python2_7(-),python_targets_python3_3(-),python_targets_python3_4(-)] ]
  NonsolvableDeps: version 2.30.1: nonsolvable depset(rdepends) keyword(~amd64) profile (hardened/linux/amd64/selinux): solutions: [ >=dev-python/python-keystoneclient-1.6.0[-python_single_target_python2_7(-),-python_single_target_python3_3(-),-python_single_target_python3_4(-),python_targets_python2_7(-),python_targets_python3_3(-),python_targets_python3_4(-)] ]
  NonsolvableDeps: version 2.30.1: nonsolvable depset(rdepends) keyword(~x86) profile (default/linux/x86/13.0): solutions: [ >=dev-python/python-keystoneclient-1.6.0[-python_single_target_python2_7(-),-python_single_target_python3_3(-),-python_single_target_python3_4(-),python_targets_python2_7(-),python_targets_python3_3(-),python_targets_python3_4(-)] ]
  NonsolvableDeps: version 2.30.1: nonsolvable depset(rdepends) keyword(~x86) profile (default/linux/x86/13.0/desktop): solutions: [ >=dev-python/python-keystoneclient-1.6.0[-python_single_target_python2_7(-),-python_single_target_python3_3(-),-python_single_target_python3_4(-),python_targets_python2_7(-),python_targets_python3_3(-),python_targets_python3_4(-)] ]
  NonsolvableDeps: version 2.30.1: nonsolvable depset(rdepends) keyword(~x86) profile (default/linux/x86/13.0/desktop/gnome): solutions: [ >=dev-python/python-keystoneclient-1.6.0[-python_single_target_python2_7(-),-python_single_target_python3_3(-),-python_single_target_python3_4(-),python_targets_python2_7(-),python_targets_python3_3(-),python_targets_python3_4(-)] ]
  NonsolvableDeps: version 2.30.1: nonsolvable depset(rdepends) keyword(~x86) profile (default/linux/x86/13.0/developer): solutions: [ >=dev-python/python-keystoneclient-1.6.0[-python_single_target_python2_7(-),-python_single_target_python3_3(-),-python_single_target_python3_4(-),python_targets_python2_7(-),python_targets_python3_3(-),python_targets_python3_4(-)] ]
  NonsolvableDeps: version 2.30.1: nonsolvable depset(rdepends) keyword(~x86) profile (default/linux/x86/13.0/desktop/gnome/systemd): solutions: [ >=dev-python/python-keystoneclient-1.6.0[-python_single_target_python2_7(-),-python_single_target_python3_3(-),-python_single_target_python3_4(-),python_targets_python2_7(-),python_targets_python3_3(-),python_targets_python3_4(-)] ]
  NonsolvableDeps: version 2.30.1: nonsolvable depset(rdepends) keyword(~x86) profile (default/linux/x86/13.0/desktop/kde): solutions: [ >=dev-python/python-keystoneclient-1.6.0[-python_single_target_python2_7(-),-python_single_target_python3_3(-),-python_single_target_python3_4(-),python_targets_python2_7(-),python_targets_python3_3(-),python_targets_python3_4(-)] ]
  NonsolvableDeps: version 2.30.1: nonsolvable depset(rdepends) keyword(~x86) profile (default/linux/x86/13.0/desktop/plasma): solutions: [ >=dev-python/python-keystoneclient-1.6.0[-python_single_target_python2_7(-),-python_single_target_python3_3(-),-python_single_target_python3_4(-),python_targets_python2_7(-),python_targets_python3_3(-),python_targets_python3_4(-)] ]
  NonsolvableDeps: version 2.30.1: nonsolvable depset(rdepends) keyword(~x86) profile (default/linux/x86/13.0/desktop/kde/systemd): solutions: [ >=dev-python/python-keystoneclient-1.6.0[-python_single_target_python2_7(-),-python_single_target_python3_3(-),-python_single_target_python3_4(-),python_targets_python2_7(-),python_targets_python3_3(-),python_targets_python3_4(-)] ]
  NonsolvableDeps: version 2.30.1: nonsolvable depset(rdepends) keyword(~x86) profile (default/linux/x86/13.0/desktop/plasma/systemd): solutions: [ >=dev-python/python-keystoneclient-1.6.0[-python_single_target_python2_7(-),-python_single_target_python3_3(-),-python_single_target_python3_4(-),python_targets_python2_7(-),python_targets_python3_3(-),python_targets_python3_4(-)] ]
  NonsolvableDeps: version 2.30.1: nonsolvable depset(rdepends) keyword(~x86) profile (hardened/linux/x86): solutions: [ >=dev-python/python-keystoneclient-1.6.0[-python_single_target_python2_7(-),-python_single_target_python3_3(-),-python_single_target_python3_4(-),python_targets_python2_7(-),python_targets_python3_3(-),python_targets_python3_4(-)] ]
  NonsolvableDeps: version 2.30.1: nonsolvable depset(rdepends) keyword(~x86) profile (hardened/linux/x86/selinux): solutions: [ >=dev-python/python-keystoneclient-1.6.0[-python_single_target_python2_7(-),-python_single_target_python3_3(-),-python_single_target_python3_4(-),python_targets_python2_7(-),python_targets_python3_3(-),python_targets_python3_4(-)] ]

dev-python/python-openstackclient
  NonsolvableDeps: version 1.6.0: nonsolvable depset(rdepends) keyword(~amd64) profile (default/linux/amd64/13.0): solutions: [ >=dev-python/python-keystoneclient-1.6.0[-python_single_target_python2_7(-),-python_single_target_python3_3(-),-python_single_target_python3_4(-),python_targets_python2_7(-),python_targets_python3_3(-),python_targets_python3_4(-)] ]
  NonsolvableDeps: version 1.6.0: nonsolvable depset(rdepends) keyword(~amd64) profile (default/linux/amd64/13.0/desktop): solutions: [ >=dev-python/python-keystoneclient-1.6.0[-python_single_target_python2_7(-),-python_single_target_python3_3(-),-python_single_target_python3_4(-),python_targets_python2_7(-),python_targets_python3_3(-),python_targets_python3_4(-)] ]
  NonsolvableDeps: version 1.6.0: nonsolvable depset(rdepends) keyword(~amd64) profile (default/linux/amd64/13.0/desktop/gnome): solutions: [ >=dev-python/python-keystoneclient-1.6.0[-python_single_target_python2_7(-),-python_single_target_python3_3(-),-python_single_target_python3_4(-),python_targets_python2_7(-),python_targets_python3_3(-),python_targets_python3_4(-)] ]
  NonsolvableDeps: version 1.6.0: nonsolvable depset(rdepends) keyword(~amd64) profile (default/linux/amd64/13.0/developer): solutions: [ >=dev-python/python-keystoneclient-1.6.0[-python_single_target_python2_7(-),-python_single_target_python3_3(-),-python_single_target_python3_4(-),python_targets_python2_7(-),python_targets_python3_3(-),python_targets_python3_4(-)] ]
  NonsolvableDeps: version 1.6.0: nonsolvable depset(rdepends) keyword(~amd64) profile (default/linux/amd64/13.0/desktop/gnome/systemd): solutions: [ >=dev-python/python-keystoneclient-1.6.0[-python_single_target_python2_7(-),-python_single_target_python3_3(-),-python_single_target_python3_4(-),python_targets_python2_7(-),python_targets_python3_3(-),python_targets_python3_4(-)] ]
  NonsolvableDeps: version 1.6.0: nonsolvable depset(rdepends) keyword(~amd64) profile (default/linux/amd64/13.0/desktop/kde): solutions: [ >=dev-python/python-keystoneclient-1.6.0[-python_single_target_python2_7(-),-python_single_target_python3_3(-),-python_single_target_python3_4(-),python_targets_python2_7(-),python_targets_python3_3(-),python_targets_python3_4(-)] ]
  NonsolvableDeps: version 1.6.0: nonsolvable depset(rdepends) keyword(~amd64) profile (default/linux/amd64/13.0/desktop/plasma): solutions: [ >=dev-python/python-keystoneclient-1.6.0[-python_single_target_python2_7(-),-python_single_target_python3_3(-),-python_single_target_python3_4(-),python_targets_python2_7(-),python_targets_python3_3(-),python_targets_python3_4(-)] ]
  NonsolvableDeps: version 1.6.0: nonsolvable depset(rdepends) keyword(~amd64) profile (default/linux/amd64/13.0/desktop/kde/systemd): solutions: [ >=dev-python/python-keystoneclient-1.6.0[-python_single_target_python2_7(-),-python_single_target_python3_3(-),-python_single_target_python3_4(-),python_targets_python2_7(-),python_targets_python3_3(-),python_targets_python3_4(-)] ]
  NonsolvableDeps: version 1.6.0: nonsolvable depset(rdepends) keyword(~amd64) profile (default/linux/amd64/13.0/desktop/plasma/systemd): solutions: [ >=dev-python/python-keystoneclient-1.6.0[-python_single_target_python2_7(-),-python_single_target_python3_3(-),-python_single_target_python3_4(-),python_targets_python2_7(-),python_targets_python3_3(-),python_targets_python3_4(-)] ]
  NonsolvableDeps: version 1.6.0: nonsolvable depset(rdepends) keyword(~amd64) profile (default/linux/amd64/13.0/systemd): solutions: [ >=dev-python/python-keystoneclient-1.6.0[-python_single_target_python2_7(-),-python_single_target_python3_3(-),-python_single_target_python3_4(-),python_targets_python2_7(-),python_targets_python3_3(-),python_targets_python3_4(-)] ]
  NonsolvableDeps: version 1.6.0: nonsolvable depset(rdepends) keyword(~amd64) profile (hardened/linux/amd64): solutions: [ >=dev-python/python-keystoneclient-1.6.0[-python_single_target_python2_7(-),-python_single_target_python3_3(-),-python_single_target_python3_4(-),python_targets_python2_7(-),python_targets_python3_3(-),python_targets_python3_4(-)] ]
  NonsolvableDeps: version 1.6.0: nonsolvable depset(rdepends) keyword(~amd64) profile (hardened/linux/amd64/no-multilib): solutions: [ >=dev-python/python-keystoneclient-1.6.0[-python_single_target_python2_7(-),-python_single_target_python3_3(-),-python_single_target_python3_4(-),python_targets_python2_7(-),python_targets_python3_3(-),python_targets_python3_4(-)] ]
  NonsolvableDeps: version 1.6.0: nonsolvable depset(rdepends) keyword(~amd64) profile (hardened/linux/amd64/no-multilib/selinux): solutions: [ >=dev-python/python-keystoneclient-1.6.0[-python_single_target_python2_7(-),-python_single_target_python3_3(-),-python_single_target_python3_4(-),python_targets_python2_7(-),python_targets_python3_3(-),python_targets_python3_4(-)] ]
  NonsolvableDeps: version 1.6.0: nonsolvable depset(rdepends) keyword(~amd64) profile (hardened/linux/amd64/selinux): solutions: [ >=dev-python/python-keystoneclient-1.6.0[-python_single_target_python2_7(-),-python_single_target_python3_3(-),-python_single_target_python3_4(-),python_targets_python2_7(-),python_targets_python3_3(-),python_targets_python3_4(-)] ]
  NonsolvableDeps: version 1.6.0: nonsolvable depset(rdepends) keyword(~x86) profile (default/linux/x86/13.0): solutions: [ >=dev-python/python-keystoneclient-1.6.0[-python_single_target_python2_7(-),-python_single_target_python3_3(-),-python_single_target_python3_4(-),python_targets_python2_7(-),python_targets_python3_3(-),python_targets_python3_4(-)] ]
  NonsolvableDeps: version 1.6.0: nonsolvable depset(rdepends) keyword(~x86) profile (default/linux/x86/13.0/desktop): solutions: [ >=dev-python/python-keystoneclient-1.6.0[-python_single_target_python2_7(-),-python_single_target_python3_3(-),-python_single_target_python3_4(-),python_targets_python2_7(-),python_targets_python3_3(-),python_targets_python3_4(-)] ]
  NonsolvableDeps: version 1.6.0: nonsolvable depset(rdepends) keyword(~x86) profile (default/linux/x86/13.0/desktop/gnome): solutions: [ >=dev-python/python-keystoneclient-1.6.0[-python_single_target_python2_7(-),-python_single_target_python3_3(-),-python_single_target_python3_4(-),python_targets_python2_7(-),python_targets_python3_3(-),python_targets_python3_4(-)] ]
  NonsolvableDeps: version 1.6.0: nonsolvable depset(rdepends) keyword(~x86) profile (default/linux/x86/13.0/developer): solutions: [ >=dev-python/python-keystoneclient-1.6.0[-python_single_target_python2_7(-),-python_single_target_python3_3(-),-python_single_target_python3_4(-),python_targets_python2_7(-),python_targets_python3_3(-),python_targets_python3_4(-)] ]
  NonsolvableDeps: version 1.6.0: nonsolvable depset(rdepends) keyword(~x86) profile (default/linux/x86/13.0/desktop/gnome/systemd): solutions: [ >=dev-python/python-keystoneclient-1.6.0[-python_single_target_python2_7(-),-python_single_target_python3_3(-),-python_single_target_python3_4(-),python_targets_python2_7(-),python_targets_python3_3(-),python_targets_python3_4(-)] ]
  NonsolvableDeps: version 1.6.0: nonsolvable depset(rdepends) keyword(~x86) profile (default/linux/x86/13.0/desktop/kde): solutions: [ >=dev-python/python-keystoneclient-1.6.0[-python_single_target_python2_7(-),-python_single_target_python3_3(-),-python_single_target_python3_4(-),python_targets_python2_7(-),python_targets_python3_3(-),python_targets_python3_4(-)] ]
  NonsolvableDeps: version 1.6.0: nonsolvable depset(rdepends) keyword(~x86) profile (default/linux/x86/13.0/desktop/plasma): solutions: [ >=dev-python/python-keystoneclient-1.6.0[-python_single_target_python2_7(-),-python_single_target_python3_3(-),-python_single_target_python3_4(-),python_targets_python2_7(-),python_targets_python3_3(-),python_targets_python3_4(-)] ]
  NonsolvableDeps: version 1.6.0: nonsolvable depset(rdepends) keyword(~x86) profile (default/linux/x86/13.0/desktop/kde/systemd): solutions: [ >=dev-python/python-keystoneclient-1.6.0[-python_single_target_python2_7(-),-python_single_target_python3_3(-),-python_single_target_python3_4(-),python_targets_python2_7(-),python_targets_python3_3(-),python_targets_python3_4(-)] ]
  NonsolvableDeps: version 1.6.0: nonsolvable depset(rdepends) keyword(~x86) profile (default/linux/x86/13.0/desktop/plasma/systemd): solutions: [ >=dev-python/python-keystoneclient-1.6.0[-python_single_target_python2_7(-),-python_single_target_python3_3(-),-python_single_target_python3_4(-),python_targets_python2_7(-),python_targets_python3_3(-),python_targets_python3_4(-)] ]
  NonsolvableDeps: version 1.6.0: nonsolvable depset(rdepends) keyword(~x86) profile (hardened/linux/x86): solutions: [ >=dev-python/python-keystoneclient-1.6.0[-python_single_target_python2_7(-),-python_single_target_python3_3(-),-python_single_target_python3_4(-),python_targets_python2_7(-),python_targets_python3_3(-),python_targets_python3_4(-)] ]
  NonsolvableDeps: version 1.6.0: nonsolvable depset(rdepends) keyword(~x86) profile (hardened/linux/x86/selinux): solutions: [ >=dev-python/python-keystoneclient-1.6.0[-python_single_target_python2_7(-),-python_single_target_python3_3(-),-python_single_target_python3_4(-),python_targets_python2_7(-),python_targets_python3_3(-),python_targets_python3_4(-)] ]
  NonsolvableDeps: version 1.7.1: nonsolvable depset(rdepends) keyword(~amd64) profile (default/linux/amd64/13.0): solutions: [ >=dev-python/python-keystoneclient-1.6.0[-python_single_target_python2_7(-),-python_single_target_python3_3(-),-python_single_target_python3_4(-),python_targets_python2_7(-),python_targets_python3_3(-),python_targets_python3_4(-)] ]
  NonsolvableDeps: version 1.7.1: nonsolvable depset(rdepends) keyword(~amd64) profile (default/linux/amd64/13.0/desktop): solutions: [ >=dev-python/python-keystoneclient-1.6.0[-python_single_target_python2_7(-),-python_single_target_python3_3(-),-python_single_target_python3_4(-),python_targets_python2_7(-),python_targets_python3_3(-),python_targets_python3_4(-)] ]
  NonsolvableDeps: version 1.7.1: nonsolvable depset(rdepends) keyword(~amd64) profile (default/linux/amd64/13.0/desktop/gnome): solutions: [ >=dev-python/python-keystoneclient-1.6.0[-python_single_target_python2_7(-),-python_single_target_python3_3(-),-python_single_target_python3_4(-),python_targets_python2_7(-),python_targets_python3_3(-),python_targets_python3_4(-)] ]
  NonsolvableDeps: version 1.7.1: nonsolvable depset(rdepends) keyword(~amd64) profile (default/linux/amd64/13.0/developer): solutions: [ >=dev-python/python-keystoneclient-1.6.0[-python_single_target_python2_7(-),-python_single_target_python3_3(-),-python_single_target_python3_4(-),python_targets_python2_7(-),python_targets_python3_3(-),python_targets_python3_4(-)] ]
  NonsolvableDeps: version 1.7.1: nonsolvable depset(rdepends) keyword(~amd64) profile (default/linux/amd64/13.0/desktop/gnome/systemd): solutions: [ >=dev-python/python-keystoneclient-1.6.0[-python_single_target_python2_7(-),-python_single_target_python3_3(-),-python_single_target_python3_4(-),python_targets_python2_7(-),python_targets_python3_3(-),python_targets_python3_4(-)] ]
  NonsolvableDeps: version 1.7.1: nonsolvable depset(rdepends) keyword(~amd64) profile (default/linux/amd64/13.0/desktop/kde): solutions: [ >=dev-python/python-keystoneclient-1.6.0[-python_single_target_python2_7(-),-python_single_target_python3_3(-),-python_single_target_python3_4(-),python_targets_python2_7(-),python_targets_python3_3(-),python_targets_python3_4(-)] ]
  NonsolvableDeps: version 1.7.1: nonsolvable depset(rdepends) keyword(~amd64) profile (default/linux/amd64/13.0/desktop/plasma): solutions: [ >=dev-python/python-keystoneclient-1.6.0[-python_single_target_python2_7(-),-python_single_target_python3_3(-),-python_single_target_python3_4(-),python_targets_python2_7(-),python_targets_python3_3(-),python_targets_python3_4(-)] ]
  NonsolvableDeps: version 1.7.1: nonsolvable depset(rdepends) keyword(~amd64) profile (default/linux/amd64/13.0/desktop/kde/systemd): solutions: [ >=dev-python/python-keystoneclient-1.6.0[-python_single_target_python2_7(-),-python_single_target_python3_3(-),-python_single_target_python3_4(-),python_targets_python2_7(-),python_targets_python3_3(-),python_targets_python3_4(-)] ]
  NonsolvableDeps: version 1.7.1: nonsolvable depset(rdepends) keyword(~amd64) profile (default/linux/amd64/13.0/desktop/plasma/systemd): solutions: [ >=dev-python/python-keystoneclient-1.6.0[-python_single_target_python2_7(-),-python_single_target_python3_3(-),-python_single_target_python3_4(-),python_targets_python2_7(-),python_targets_python3_3(-),python_targets_python3_4(-)] ]
  NonsolvableDeps: version 1.7.1: nonsolvable depset(rdepends) keyword(~amd64) profile (default/linux/amd64/13.0/systemd): solutions: [ >=dev-python/python-keystoneclient-1.6.0[-python_single_target_python2_7(-),-python_single_target_python3_3(-),-python_single_target_python3_4(-),python_targets_python2_7(-),python_targets_python3_3(-),python_targets_python3_4(-)] ]
  NonsolvableDeps: version 1.7.1: nonsolvable depset(rdepends) keyword(~amd64) profile (hardened/linux/amd64): solutions: [ >=dev-python/python-keystoneclient-1.6.0[-python_single_target_python2_7(-),-python_single_target_python3_3(-),-python_single_target_python3_4(-),python_targets_python2_7(-),python_targets_python3_3(-),python_targets_python3_4(-)] ]
  NonsolvableDeps: version 1.7.1: nonsolvable depset(rdepends) keyword(~amd64) profile (hardened/linux/amd64/no-multilib): solutions: [ >=dev-python/python-keystoneclient-1.6.0[-python_single_target_python2_7(-),-python_single_target_python3_3(-),-python_single_target_python3_4(-),python_targets_python2_7(-),python_targets_python3_3(-),python_targets_python3_4(-)] ]
  NonsolvableDeps: version 1.7.1: nonsolvable depset(rdepends) keyword(~amd64) profile (hardened/linux/amd64/no-multilib/selinux): solutions: [ >=dev-python/python-keystoneclient-1.6.0[-python_single_target_python2_7(-),-python_single_target_python3_3(-),-python_single_target_python3_4(-),python_targets_python2_7(-),python_targets_python3_3(-),python_targets_python3_4(-)] ]
  NonsolvableDeps: version 1.7.1: nonsolvable depset(rdepends) keyword(~amd64) profile (hardened/linux/amd64/selinux): solutions: [ >=dev-python/python-keystoneclient-1.6.0[-python_single_target_python2_7(-),-python_single_target_python3_3(-),-python_single_target_python3_4(-),python_targets_python2_7(-),python_targets_python3_3(-),python_targets_python3_4(-)] ]
  NonsolvableDeps: version 1.7.1: nonsolvable depset(rdepends) keyword(~x86) profile (default/linux/x86/13.0): solutions: [ >=dev-python/python-keystoneclient-1.6.0[-python_single_target_python2_7(-),-python_single_target_python3_3(-),-python_single_target_python3_4(-),python_targets_python2_7(-),python_targets_python3_3(-),python_targets_python3_4(-)] ]
  NonsolvableDeps: version 1.7.1: nonsolvable depset(rdepends) keyword(~x86) profile (default/linux/x86/13.0/desktop): solutions: [ >=dev-python/python-keystoneclient-1.6.0[-python_single_target_python2_7(-),-python_single_target_python3_3(-),-python_single_target_python3_4(-),python_targets_python2_7(-),python_targets_python3_3(-),python_targets_python3_4(-)] ]
  NonsolvableDeps: version 1.7.1: nonsolvable depset(rdepends) keyword(~x86) profile (default/linux/x86/13.0/desktop/gnome): solutions: [ >=dev-python/python-keystoneclient-1.6.0[-python_single_target_python2_7(-),-python_single_target_python3_3(-),-python_single_target_python3_4(-),python_targets_python2_7(-),python_targets_python3_3(-),python_targets_python3_4(-)] ]
  NonsolvableDeps: version 1.7.1: nonsolvable depset(rdepends) keyword(~x86) profile (default/linux/x86/13.0/developer): solutions: [ >=dev-python/python-keystoneclient-1.6.0[-python_single_target_python2_7(-),-python_single_target_python3_3(-),-python_single_target_python3_4(-),python_targets_python2_7(-),python_targets_python3_3(-),python_targets_python3_4(-)] ]
  NonsolvableDeps: version 1.7.1: nonsolvable depset(rdepends) keyword(~x86) profile (default/linux/x86/13.0/desktop/gnome/systemd): solutions: [ >=dev-python/python-keystoneclient-1.6.0[-python_single_target_python2_7(-),-python_single_target_python3_3(-),-python_single_target_python3_4(-),python_targets_python2_7(-),python_targets_python3_3(-),python_targets_python3_4(-)] ]
  NonsolvableDeps: version 1.7.1: nonsolvable depset(rdepends) keyword(~x86) profile (default/linux/x86/13.0/desktop/kde): solutions: [ >=dev-python/python-keystoneclient-1.6.0[-python_single_target_python2_7(-),-python_single_target_python3_3(-),-python_single_target_python3_4(-),python_targets_python2_7(-),python_targets_python3_3(-),python_targets_python3_4(-)] ]
  NonsolvableDeps: version 1.7.1: nonsolvable depset(rdepends) keyword(~x86) profile (default/linux/x86/13.0/desktop/plasma): solutions: [ >=dev-python/python-keystoneclient-1.6.0[-python_single_target_python2_7(-),-python_single_target_python3_3(-),-python_single_target_python3_4(-),python_targets_python2_7(-),python_targets_python3_3(-),python_targets_python3_4(-)] ]
  NonsolvableDeps: version 1.7.1: nonsolvable depset(rdepends) keyword(~x86) profile (default/linux/x86/13.0/desktop/kde/systemd): solutions: [ >=dev-python/python-keystoneclient-1.6.0[-python_single_target_python2_7(-),-python_single_target_python3_3(-),-python_single_target_python3_4(-),python_targets_python2_7(-),python_targets_python3_3(-),python_targets_python3_4(-)] ]
  NonsolvableDeps: version 1.7.1: nonsolvable depset(rdepends) keyword(~x86) profile (default/linux/x86/13.0/desktop/plasma/systemd): solutions: [ >=dev-python/python-keystoneclient-1.6.0[-python_single_target_python2_7(-),-python_single_target_python3_3(-),-python_single_target_python3_4(-),python_targets_python2_7(-),python_targets_python3_3(-),python_targets_python3_4(-)] ]
  NonsolvableDeps: version 1.7.1: nonsolvable depset(rdepends) keyword(~x86) profile (hardened/linux/x86): solutions: [ >=dev-python/python-keystoneclient-1.6.0[-python_single_target_python2_7(-),-python_single_target_python3_3(-),-python_single_target_python3_4(-),python_targets_python2_7(-),python_targets_python3_3(-),python_targets_python3_4(-)] ]
  NonsolvableDeps: version 1.7.1: nonsolvable depset(rdepends) keyword(~x86) profile (hardened/linux/x86/selinux): solutions: [ >=dev-python/python-keystoneclient-1.6.0[-python_single_target_python2_7(-),-python_single_target_python3_3(-),-python_single_target_python3_4(-),python_targets_python2_7(-),python_targets_python3_3(-),python_targets_python3_4(-)] ]

dev-python/python-sqlparse
  DroppedKeywordWarning: version 0.1.14: keywords dropped: sparc

dev-python/python-troveclient
  NonsolvableDeps: version 1.3.0: nonsolvable depset(rdepends) keyword(~amd64) profile (default/linux/amd64/13.0): solutions: [ >=dev-python/python-keystoneclient-1.6.0[-python_single_target_python2_7(-),-python_single_target_python3_3(-),-python_single_target_python3_4(-),python_targets_python2_7(-),python_targets_python3_3(-),python_targets_python3_4(-)] ]
  NonsolvableDeps: version 1.3.0: nonsolvable depset(rdepends) keyword(~amd64) profile (default/linux/amd64/13.0/desktop): solutions: [ >=dev-python/python-keystoneclient-1.6.0[-python_single_target_python2_7(-),-python_single_target_python3_3(-),-python_single_target_python3_4(-),python_targets_python2_7(-),python_targets_python3_3(-),python_targets_python3_4(-)] ]
  NonsolvableDeps: version 1.3.0: nonsolvable depset(rdepends) keyword(~amd64) profile (default/linux/amd64/13.0/desktop/gnome): solutions: [ >=dev-python/python-keystoneclient-1.6.0[-python_single_target_python2_7(-),-python_single_target_python3_3(-),-python_single_target_python3_4(-),python_targets_python2_7(-),python_targets_python3_3(-),python_targets_python3_4(-)] ]
  NonsolvableDeps: version 1.3.0: nonsolvable depset(rdepends) keyword(~amd64) profile (default/linux/amd64/13.0/developer): solutions: [ >=dev-python/python-keystoneclient-1.6.0[-python_single_target_python2_7(-),-python_single_target_python3_3(-),-python_single_target_python3_4(-),python_targets_python2_7(-),python_targets_python3_3(-),python_targets_python3_4(-)] ]
  NonsolvableDeps: version 1.3.0: nonsolvable depset(rdepends) keyword(~amd64) profile (default/linux/amd64/13.0/desktop/gnome/systemd): solutions: [ >=dev-python/python-keystoneclient-1.6.0[-python_single_target_python2_7(-),-python_single_target_python3_3(-),-python_single_target_python3_4(-),python_targets_python2_7(-),python_targets_python3_3(-),python_targets_python3_4(-)] ]
  NonsolvableDeps: version 1.3.0: nonsolvable depset(rdepends) keyword(~amd64) profile (default/linux/amd64/13.0/desktop/kde): solutions: [ >=dev-python/python-keystoneclient-1.6.0[-python_single_target_python2_7(-),-python_single_target_python3_3(-),-python_single_target_python3_4(-),python_targets_python2_7(-),python_targets_python3_3(-),python_targets_python3_4(-)] ]
  NonsolvableDeps: version 1.3.0: nonsolvable depset(rdepends) keyword(~amd64) profile (default/linux/amd64/13.0/desktop/plasma): solutions: [ >=dev-python/python-keystoneclient-1.6.0[-python_single_target_python2_7(-),-python_single_target_python3_3(-),-python_single_target_python3_4(-),python_targets_python2_7(-),python_targets_python3_3(-),python_targets_python3_4(-)] ]
  NonsolvableDeps: version 1.3.0: nonsolvable depset(rdepends) keyword(~amd64) profile (default/linux/amd64/13.0/desktop/kde/systemd): solutions: [ >=dev-python/python-keystoneclient-1.6.0[-python_single_target_python2_7(-),-python_single_target_python3_3(-),-python_single_target_python3_4(-),python_targets_python2_7(-),python_targets_python3_3(-),python_targets_python3_4(-)] ]
  NonsolvableDeps: version 1.3.0: nonsolvable depset(rdepends) keyword(~amd64) profile (default/linux/amd64/13.0/desktop/plasma/systemd): solutions: [ >=dev-python/python-keystoneclient-1.6.0[-python_single_target_python2_7(-),-python_single_target_python3_3(-),-python_single_target_python3_4(-),python_targets_python2_7(-),python_targets_python3_3(-),python_targets_python3_4(-)] ]
  NonsolvableDeps: version 1.3.0: nonsolvable depset(rdepends) keyword(~amd64) profile (default/linux/amd64/13.0/systemd): solutions: [ >=dev-python/python-keystoneclient-1.6.0[-python_single_target_python2_7(-),-python_single_target_python3_3(-),-python_single_target_python3_4(-),python_targets_python2_7(-),python_targets_python3_3(-),python_targets_python3_4(-)] ]
  NonsolvableDeps: version 1.3.0: nonsolvable depset(rdepends) keyword(~amd64) profile (hardened/linux/amd64): solutions: [ >=dev-python/python-keystoneclient-1.6.0[-python_single_target_python2_7(-),-python_single_target_python3_3(-),-python_single_target_python3_4(-),python_targets_python2_7(-),python_targets_python3_3(-),python_targets_python3_4(-)] ]
  NonsolvableDeps: version 1.3.0: nonsolvable depset(rdepends) keyword(~amd64) profile (hardened/linux/amd64/no-multilib): solutions: [ >=dev-python/python-keystoneclient-1.6.0[-python_single_target_python2_7(-),-python_single_target_python3_3(-),-python_single_target_python3_4(-),python_targets_python2_7(-),python_targets_python3_3(-),python_targets_python3_4(-)] ]
  NonsolvableDeps: version 1.3.0: nonsolvable depset(rdepends) keyword(~amd64) profile (hardened/linux/amd64/no-multilib/selinux): solutions: [ >=dev-python/python-keystoneclient-1.6.0[-python_single_target_python2_7(-),-python_single_target_python3_3(-),-python_single_target_python3_4(-),python_targets_python2_7(-),python_targets_python3_3(-),python_targets_python3_4(-)] ]
  NonsolvableDeps: version 1.3.0: nonsolvable depset(rdepends) keyword(~amd64) profile (hardened/linux/amd64/selinux): solutions: [ >=dev-python/python-keystoneclient-1.6.0[-python_single_target_python2_7(-),-python_single_target_python3_3(-),-python_single_target_python3_4(-),python_targets_python2_7(-),python_targets_python3_3(-),python_targets_python3_4(-)] ]
  NonsolvableDeps: version 1.3.0: nonsolvable depset(rdepends) keyword(~x86) profile (default/linux/x86/13.0): solutions: [ >=dev-python/python-keystoneclient-1.6.0[-python_single_target_python2_7(-),-python_single_target_python3_3(-),-python_single_target_python3_4(-),python_targets_python2_7(-),python_targets_python3_3(-),python_targets_python3_4(-)] ]
  NonsolvableDeps: version 1.3.0: nonsolvable depset(rdepends) keyword(~x86) profile (default/linux/x86/13.0/desktop): solutions: [ >=dev-python/python-keystoneclient-1.6.0[-python_single_target_python2_7(-),-python_single_target_python3_3(-),-python_single_target_python3_4(-),python_targets_python2_7(-),python_targets_python3_3(-),python_targets_python3_4(-)] ]
  NonsolvableDeps: version 1.3.0: nonsolvable depset(rdepends) keyword(~x86) profile (default/linux/x86/13.0/desktop/gnome): solutions: [ >=dev-python/python-keystoneclient-1.6.0[-python_single_target_python2_7(-),-python_single_target_python3_3(-),-python_single_target_python3_4(-),python_targets_python2_7(-),python_targets_python3_3(-),python_targets_python3_4(-)] ]
  NonsolvableDeps: version 1.3.0: nonsolvable depset(rdepends) keyword(~x86) profile (default/linux/x86/13.0/developer): solutions: [ >=dev-python/python-keystoneclient-1.6.0[-python_single_target_python2_7(-),-python_single_target_python3_3(-),-python_single_target_python3_4(-),python_targets_python2_7(-),python_targets_python3_3(-),python_targets_python3_4(-)] ]
  NonsolvableDeps: version 1.3.0: nonsolvable depset(rdepends) keyword(~x86) profile (default/linux/x86/13.0/desktop/gnome/systemd): solutions: [ >=dev-python/python-keystoneclient-1.6.0[-python_single_target_python2_7(-),-python_single_target_python3_3(-),-python_single_target_python3_4(-),python_targets_python2_7(-),python_targets_python3_3(-),python_targets_python3_4(-)] ]
  NonsolvableDeps: version 1.3.0: nonsolvable depset(rdepends) keyword(~x86) profile (default/linux/x86/13.0/desktop/kde): solutions: [ >=dev-python/python-keystoneclient-1.6.0[-python_single_target_python2_7(-),-python_single_target_python3_3(-),-python_single_target_python3_4(-),python_targets_python2_7(-),python_targets_python3_3(-),python_targets_python3_4(-)] ]
  NonsolvableDeps: version 1.3.0: nonsolvable depset(rdepends) keyword(~x86) profile (default/linux/x86/13.0/desktop/plasma): solutions: [ >=dev-python/python-keystoneclient-1.6.0[-python_single_target_python2_7(-),-python_single_target_python3_3(-),-python_single_target_python3_4(-),python_targets_python2_7(-),python_targets_python3_3(-),python_targets_python3_4(-)] ]
  NonsolvableDeps: version 1.3.0: nonsolvable depset(rdepends) keyword(~x86) profile (default/linux/x86/13.0/desktop/kde/systemd): solutions: [ >=dev-python/python-keystoneclient-1.6.0[-python_single_target_python2_7(-),-python_single_target_python3_3(-),-python_single_target_python3_4(-),python_targets_python2_7(-),python_targets_python3_3(-),python_targets_python3_4(-)] ]
  NonsolvableDeps: version 1.3.0: nonsolvable depset(rdepends) keyword(~x86) profile (default/linux/x86/13.0/desktop/plasma/systemd): solutions: [ >=dev-python/python-keystoneclient-1.6.0[-python_single_target_python2_7(-),-python_single_target_python3_3(-),-python_single_target_python3_4(-),python_targets_python2_7(-),python_targets_python3_3(-),python_targets_python3_4(-)] ]
  NonsolvableDeps: version 1.3.0: nonsolvable depset(rdepends) keyword(~x86) profile (hardened/linux/x86): solutions: [ >=dev-python/python-keystoneclient-1.6.0[-python_single_target_python2_7(-),-python_single_target_python3_3(-),-python_single_target_python3_4(-),python_targets_python2_7(-),python_targets_python3_3(-),python_targets_python3_4(-)] ]
  NonsolvableDeps: version 1.3.0: nonsolvable depset(rdepends) keyword(~x86) profile (hardened/linux/x86/selinux): solutions: [ >=dev-python/python-keystoneclient-1.6.0[-python_single_target_python2_7(-),-python_single_target_python3_3(-),-python_single_target_python3_4(-),python_targets_python2_7(-),python_targets_python3_3(-),python_targets_python3_4(-)] ]

dev-python/python-xlib
  DeprecatedEAPI: version 0.15_rc1: uses deprecated EAPI: 3
  DeprecatedEclass: version 0.15_rc1: uses deprecated eclass(es): [ distutils (migrate to distutils-r1), python (migrate to python-r1 / python-single-r1 / python-any-r1) ]

dev-python/pyusb
  DeprecatedEAPI: version 0.4.3: uses deprecated EAPI: 2
  DeprecatedEclass: version 0.4.3: uses deprecated eclass(es): [ distutils (migrate to distutils-r1), python (migrate to python-r1 / python-single-r1 / python-any-r1) ]

dev-python/pyxattr
  DroppedKeywordWarning: version 0.5.5: keywords dropped: alpha, ia64, ppc, sparc

dev-python/pyzmq
  DroppedKeywordWarning: version 14.7.0: keywords dropped: ppc

dev-python/pyzor
  DeprecatedEAPI: version 0.5.0-r2: uses deprecated EAPI: 3
  DeprecatedEclass: version 0.5.0-r2: uses deprecated eclass(es): [ distutils (migrate to distutils-r1), python (migrate to python-r1 / python-single-r1 / python-any-r1) ]
  DroppedKeywordWarning: version 0.7.0: keywords dropped: ppc, ppc64
  DroppedKeywordWarning: version 1.0.0: keywords dropped: ia64, sparc

dev-python/rackspace-auth-openstack
  DeprecatedEclass: version 9999: uses deprecated eclass(es): [ git-2 (migrate to git-r3) ]

dev-python/rdflib
  DroppedKeywordWarning: version 4.1.2: keywords dropped: ia64, sparc

dev-python/remoteobjects
  DeprecatedEclass: version 99999999: uses deprecated eclass(es): [ git-2 (migrate to git-r3) ]

dev-python/rtslib
  DeprecatedEclass: version 9999: uses deprecated eclass(es): [ git-2 (migrate to git-r3) ]

dev-python/sancho
  DeprecatedEAPI: version 2.4: uses deprecated EAPI: 3
  DeprecatedEclass: version 2.4: uses deprecated eclass(es): [ distutils (migrate to distutils-r1), python (migrate to python-r1 / python-single-r1 / python-any-r1) ]

dev-python/scientificpython
  DeprecatedEAPI: version 2.9.1: uses deprecated EAPI: 3
  DeprecatedEclass: version 2.9.1: uses deprecated eclass(es): [ distutils (migrate to distutils-r1), python (migrate to python-r1 / python-single-r1 / python-any-r1) ]

dev-python/setuptools
  DroppedKeywordWarning: version 18.2-r3: keywords dropped: alpha, arm, arm64, hppa, ia64, m68k, ppc, ppc64, s390, sh, sparc

dev-python/simpleparse
  DeprecatedEAPI: version 2.1.1: uses deprecated EAPI: 3
  DeprecatedEclass: version 2.1.1: uses deprecated eclass(es): [ distutils (migrate to distutils-r1), python (migrate to python-r1 / python-single-r1 / python-any-r1) ]

dev-python/soappy
  DroppedKeywordWarning: version 0.12.22: keywords dropped: ia64, ppc, s390, sh, sparc

dev-python/sparql-wrapper
  DroppedKeywordWarning: version 1.6.1: keywords dropped: ia64, sparc
  DroppedKeywordWarning: version 1.6.2: keywords dropped: alpha

dev-python/sphinx
  DroppedKeywordWarning: version 1.3.1: keywords dropped: arm64, ia64, ppc, s390, sh, sparc

dev-python/sqlalchemy
  NonExistentDeps: version 0.7.10: depset depends: nonexistent atoms [ dev-python/kinterbasdb ]
  NonExistentDeps: version 0.7.10: depset rdepends: nonexistent atoms [ dev-python/kinterbasdb ]

dev-python/sqlalchemy-migrate
  DroppedKeywordWarning: version 0.9.1: keywords dropped: s390, sh, sparc
  DroppedKeywordWarning: version 0.9.6: keywords dropped: ia64, ppc

dev-python/ssl-fetch
  DeprecatedEclass: version 9999: uses deprecated eclass(es): [ git-2 (migrate to git-r3) ]

dev-python/subunit
  DeprecatedEAPI: version 0.0.6: uses deprecated EAPI: 3
  DeprecatedEclass: version 0.0.6: uses deprecated eclass(es): [ python (migrate to python-r1 / python-single-r1 / python-any-r1) ]
  DroppedKeywordWarning: version 0.0.16: keywords dropped: s390, sh, sparc

dev-python/tagpy
  DeprecatedEclass: version 0.94.8-r1: uses deprecated eclass(es): [ distutils (migrate to distutils-r1), python (migrate to python-r1 / python-single-r1 / python-any-r1) ]

dev-python/testtools
  DroppedKeywordWarning: version 1.7.1: keywords dropped: arm64, ia64, mips, ppc, s390, sh, sparc, x86

dev-python/twisted-conch
  DroppedKeywordWarning: version 15.1.0: keywords dropped: alpha, sparc

dev-python/twisted-core
  DroppedKeywordWarning: version 14.0.1: keywords dropped: mips, sparc

dev-python/twisted-lore
  DroppedKeywordWarning: version 15.1.0: keywords dropped: alpha, sparc

dev-python/twisted-mail
  DroppedKeywordWarning: version 15.1.0: keywords dropped: alpha, sparc

dev-python/twisted-names
  DroppedKeywordWarning: version 15.1.0: keywords dropped: alpha, sparc

dev-python/twisted-news
  DroppedKeywordWarning: version 15.1.0: keywords dropped: alpha, sparc

dev-python/twisted-runner
  DroppedKeywordWarning: version 15.1.0: keywords dropped: alpha, sparc

dev-python/twisted-web
  DroppedKeywordWarning: version 15.1.0: keywords dropped: alpha, sparc

dev-python/twisted-words
  DroppedKeywordWarning: version 15.1.0: keywords dropped: alpha, sparc

dev-python/twistedsnmp
  NonExistentDeps: version 0.3.13-r1: depset depends: nonexistent atoms [ =dev-python/pysnmp-3* ]
  NonExistentDeps: version 0.3.13-r1: depset rdepends: nonexistent atoms [ =dev-python/pysnmp-3* ]

dev-python/unittest2
  DroppedKeywordWarning: version 1.0.1-r1: keywords dropped: arm64, ia64, mips, ppc, s390, sh, sparc, x86

dev-python/urllib3
  DroppedKeywordWarning: version 1.12: keywords dropped: ppc
  DroppedKeywordWarning: version 1.10: keywords dropped: alpha

dev-python/urwid
  DroppedKeywordWarning: version 1.3.0: keywords dropped: arm64

dev-python/utidylib
  MetadataError: version 0.2-r2: attr(fetchables): error- Metadata Exception: pkg ebuild src: dev-python/utidylib-0.2-r2, attr fetchables
error: mirror://berlios/utidylib/uTidylib-0.2.zip is unparseable
flagged token- uri mirror://berlios/utidylib/uTidylib-0.2.zip isn't a known mirror tier

dev-python/virtualenv
  DroppedKeywordWarning: version 13.1.2: keywords dropped: alpha, arm, arm64, hppa, ia64, m68k, ppc, ppc64, s390, sh

dev-python/visual
  DeprecatedEclass: version 5.74: uses deprecated eclass(es): [ python (migrate to python-r1 / python-single-r1 / python-any-r1) ]

dev-python/webpy
  DeprecatedEAPI: version 0.37: uses deprecated EAPI: 3
  DeprecatedEclass: version 0.37: uses deprecated eclass(es): [ distutils (migrate to distutils-r1), python (migrate to python-r1 / python-single-r1 / python-any-r1) ]

dev-python/webtest
  DroppedKeywordWarning: version 2.0.16: keywords dropped: ia64, s390, sh, sparc
  DroppedKeywordWarning: version 2.0.18: keywords dropped: alpha

dev-python/webut
  DeprecatedEAPI: version 0.1.0.2: uses deprecated EAPI: 3
  DeprecatedEclass: version 0.1.0.2: uses deprecated eclass(es): [ distutils (migrate to distutils-r1), python (migrate to python-r1 / python-single-r1 / python-any-r1) ]

dev-python/winpdb
  DeprecatedEAPI: version 1.4.8: uses deprecated EAPI: 3
  DeprecatedEclass: version 1.4.8: uses deprecated eclass(es): [ distutils (migrate to distutils-r1), python (migrate to python-r1 / python-single-r1 / python-any-r1) ]

dev-python/ws4py
  DeprecatedEclass: version 9999: uses deprecated eclass(es): [ git-2 (migrate to git-r3) ]

dev-python/wsgiproxy2
  DroppedKeywordWarning: version 0.4.2: keywords dropped: alpha

dev-python/xlwt
  DroppedKeywordWarning: version 1.0.0: keywords dropped: ppc

dev-python/xmpppy
  DeprecatedEAPI: version 0.5.0_rc1: uses deprecated EAPI: 3
  DeprecatedEclass: version 0.5.0_rc1: uses deprecated eclass(es): [ distutils (migrate to distutils-r1), python (migrate to python-r1 / python-single-r1 / python-any-r1) ]
WARNING pkgcore: metadata.dtd cannot be opened from
               : /home/mgorny/repos/gentoo/metadata/dtd/metadata.dtd, will
               : refetch
WARNING pkgcore: metadata.dtd cannot be opened from
               : /home/mgorny/repos/gentoo/metadata/dtd/metadata.dtd, will
               : refetch

dev-texlive/texlive-basic
  DroppedKeywordWarning: version 2014: keywords dropped: ia64, sparc

dev-texlive/texlive-bibtexextra
  DroppedKeywordWarning: version 2014: keywords dropped: ia64, sparc

dev-texlive/texlive-context
  DroppedKeywordWarning: version 2014: keywords dropped: ia64, sparc

dev-texlive/texlive-fontsextra
  DroppedKeywordWarning: version 2014: keywords dropped: ia64, sparc

dev-texlive/texlive-fontsrecommended
  DroppedKeywordWarning: version 2014: keywords dropped: ia64, sparc

dev-texlive/texlive-fontutils
  DroppedKeywordWarning: version 2014: keywords dropped: ia64, sparc

dev-texlive/texlive-formatsextra
  DroppedKeywordWarning: version 2014: keywords dropped: ia64, sparc

dev-texlive/texlive-games
  DroppedKeywordWarning: version 2014: keywords dropped: ia64, sparc

dev-texlive/texlive-genericextra
  DroppedKeywordWarning: version 2014: keywords dropped: ia64, sparc

dev-texlive/texlive-genericrecommended
  DroppedKeywordWarning: version 2014: keywords dropped: ia64, sparc

dev-texlive/texlive-humanities
  DroppedKeywordWarning: version 2014: keywords dropped: ia64, sparc

dev-texlive/texlive-langafrican
  DroppedKeywordWarning: version 2014: keywords dropped: ia64, sparc

dev-texlive/texlive-langarabic
  DroppedKeywordWarning: version 2014: keywords dropped: ia64, sparc

dev-texlive/texlive-langcjk
  DroppedKeywordWarning: version 2014: keywords dropped: ia64, sparc

dev-texlive/texlive-langcyrillic
  DroppedKeywordWarning: version 2014: keywords dropped: ia64, sparc

dev-texlive/texlive-langczechslovak
  DroppedKeywordWarning: version 2014: keywords dropped: ia64, sparc

dev-texlive/texlive-langenglish
  DroppedKeywordWarning: version 2014: keywords dropped: ia64, sparc

dev-texlive/texlive-langfrench
  DroppedKeywordWarning: version 2014: keywords dropped: ia64, sparc

dev-texlive/texlive-langgerman
  DroppedKeywordWarning: version 2014: keywords dropped: ia64, sparc

dev-texlive/texlive-langgreek
  DroppedKeywordWarning: version 2014: keywords dropped: ia64, sparc

dev-texlive/texlive-langindic
  DroppedKeywordWarning: version 2014: keywords dropped: ia64, sparc

dev-texlive/texlive-langitalian
  DroppedKeywordWarning: version 2014: keywords dropped: ia64, sparc

dev-texlive/texlive-langother
  DroppedKeywordWarning: version 2014: keywords dropped: ia64, sparc

dev-texlive/texlive-langpolish
  DroppedKeywordWarning: version 2014: keywords dropped: ia64, sparc

dev-texlive/texlive-langportuguese
  DroppedKeywordWarning: version 2014: keywords dropped: ia64, sparc

dev-texlive/texlive-langspanish
  DroppedKeywordWarning: version 2014: keywords dropped: ia64, sparc

dev-texlive/texlive-latex
  DroppedKeywordWarning: version 2014: keywords dropped: ia64, sparc

dev-texlive/texlive-latexextra
  DroppedKeywordWarning: version 2014: keywords dropped: ia64, sparc

dev-texlive/texlive-latexrecommended
  DroppedKeywordWarning: version 2014: keywords dropped: ia64, sparc

dev-texlive/texlive-luatex
  DroppedKeywordWarning: version 2014: keywords dropped: ia64, sparc

dev-texlive/texlive-mathextra
  DroppedKeywordWarning: version 2014: keywords dropped: ia64, sparc

dev-texlive/texlive-metapost
  DroppedKeywordWarning: version 2014: keywords dropped: ia64, sparc

dev-texlive/texlive-music
  DroppedKeywordWarning: version 2014: keywords dropped: ia64, sparc

dev-texlive/texlive-omega
  DroppedKeywordWarning: version 2014: keywords dropped: ia64, sparc

dev-texlive/texlive-pictures
  DroppedKeywordWarning: version 2014: keywords dropped: ia64, sparc

dev-texlive/texlive-plainextra
  DroppedKeywordWarning: version 2014: keywords dropped: ia64, sparc

dev-texlive/texlive-pstricks
  DroppedKeywordWarning: version 2014: keywords dropped: ia64, sparc

dev-texlive/texlive-publishers
  DroppedKeywordWarning: version 2014: keywords dropped: ia64, sparc

dev-texlive/texlive-science
  DroppedKeywordWarning: version 2014: keywords dropped: ia64, sparc

dev-texlive/texlive-xetex
  DroppedKeywordWarning: version 2014: keywords dropped: ia64, sparc
WARNING pkgcore: metadata.dtd cannot be opened from
               : /home/mgorny/repos/gentoo/metadata/dtd/metadata.dtd, will
               : refetch
WARNING pkgcore: metadata.dtd cannot be opened from
               : /home/mgorny/repos/gentoo/metadata/dtd/metadata.dtd, will
               : refetch

app-doc/autobook
  DeprecatedEAPI: version 1.5: uses deprecated EAPI: 0

app-doc/blas-docs
  DeprecatedEAPI: version 3.1.1: uses deprecated EAPI: 0

app-doc/casting-spels-emacs
  DeprecatedEAPI: version 19-r1: uses deprecated EAPI: 3

app-doc/devmanual
  DeprecatedEclass: version 9999: uses deprecated eclass(es): [ git-2 (migrate to git-r3) ]

app-doc/ebookmerge
  DeprecatedEAPI: version 0.9.3: uses deprecated EAPI: 0

app-doc/edox-data
  DeprecatedEAPI: version 0.16.8.0.2: uses deprecated EAPI: 0

app-doc/halibut
  DeprecatedEAPI: version 1.0: uses deprecated EAPI: 0

app-doc/jargon
  DeprecatedEAPI: version 4.4.7: uses deprecated EAPI: 0

app-doc/lapack-docs
  DeprecatedEAPI: version 3.1.1: uses deprecated EAPI: 0

app-doc/linux-device-drivers
  DeprecatedEAPI: version 2: uses deprecated EAPI: 0
  DeprecatedEAPI: version 3: uses deprecated EAPI: 0

app-doc/linux-gazette-all
  DeprecatedEAPI: version 182: uses deprecated EAPI: 0

app-doc/linux-gazette-base
  DeprecatedEAPI: version 182: uses deprecated EAPI: 0

app-doc/linux-kernel-in-a-nutshell
  DeprecatedEAPI: version 1: uses deprecated EAPI: 0

app-doc/mkdoxy
  DeprecatedEAPI: version 1.0.0: uses deprecated EAPI: 0

app-doc/phrack-all
  DeprecatedEAPI: version 68: uses deprecated EAPI: 0

app-doc/podbrowser
  NonExistentDeps: version 0.12-r3: depset depends: nonexistent atoms [ <dev-lang/perl-5.16 ]
  NonExistentDeps: version 0.12-r3: depset rdepends: nonexistent atoms [ <dev-lang/perl-5.16 ]

app-doc/single-unix-specification
  DeprecatedEAPI: version 3: uses deprecated EAPI: 0
  DeprecatedEAPI: version 4-r1: uses deprecated EAPI: 0

app-doc/tldp-howto
  DeprecatedEAPI: version 20100701: uses deprecated EAPI: 2
WARNING pkgcore: metadata.dtd cannot be opened from
               : /home/mgorny/repos/gentoo/metadata/dtd/metadata.dtd, will
               : refetch
WARNING pkgcore: metadata.dtd cannot be opened from
               : /home/mgorny/repos/gentoo/metadata/dtd/metadata.dtd, will
               : refetch

sys-kernel/genkernel
  DeprecatedEAPI: version 3.4.45.1: uses deprecated EAPI: 3
  DeprecatedEAPI: version 3.4.48: uses deprecated EAPI: 3
  DeprecatedEAPI: version 3.4.49.2: uses deprecated EAPI: 3
  DeprecatedEAPI: version 3.4.50: uses deprecated EAPI: 3
  DeprecatedEAPI: version 3.4.51.4: uses deprecated EAPI: 3
  DeprecatedEclass: version 9999: uses deprecated eclass(es): [ git-2 (migrate to git-r3) ]
  DroppedKeywordWarning: version 3.4.50: keywords dropped: sh

sys-kernel/genkernel-next
  DroppedKeywordWarning: version 60: keywords dropped: ppc, ppc64
  DroppedKeywordWarning: version 55: keywords dropped: alpha

sys-kernel/linux-firmware
  DeprecatedEclass: version 99999999: uses deprecated eclass(es): [ git-2 (migrate to git-r3) ]

sys-kernel/raspberrypi-image
  DeprecatedEclass: version 3.10.9999: uses deprecated eclass(es): [ git-2 (migrate to git-r3) ]

sys-kernel/raspberrypi-sources
  DeprecatedEclass: version 3.10.9999: uses deprecated eclass(es): [ git-2 (migrate to git-r3) ]
  DeprecatedEclass: version 3.12.9999: uses deprecated eclass(es): [ git-2 (migrate to git-r3) ]
  DeprecatedEclass: version 3.14.9999: uses deprecated eclass(es): [ git-2 (migrate to git-r3) ]
  DeprecatedEclass: version 3.18.9999: uses deprecated eclass(es): [ git-2 (migrate to git-r3) ]
  DeprecatedEclass: version 3.19.9999: uses deprecated eclass(es): [ git-2 (migrate to git-r3) ]

sys-kernel/spl
  DeprecatedEclass: version 9999: uses deprecated eclass(es): [ git-2 (migrate to git-r3) ]

sys-kernel/zen-sources
  DeprecatedEclass: version 3.8.9999: uses deprecated eclass(es): [ git-2 (migrate to git-r3) ]
  DeprecatedEclass: version 3.9.9999: uses deprecated eclass(es): [ git-2 (migrate to git-r3) ]
  DeprecatedEclass: version 3.10.9999: uses deprecated eclass(es): [ git-2 (migrate to git-r3) ]
  DeprecatedEclass: version 3.11.9999: uses deprecated eclass(es): [ git-2 (migrate to git-r3) ]
  DeprecatedEclass: version 3.12.9999: uses deprecated eclass(es): [ git-2 (migrate to git-r3) ]
  DeprecatedEclass: version 3.13.9999: uses deprecated eclass(es): [ git-2 (migrate to git-r3) ]
WARNING pkgcore: metadata.dtd cannot be opened from
               : /home/mgorny/repos/gentoo/metadata/dtd/metadata.dtd, will
               : refetch
WARNING pkgcore: metadata.dtd cannot be opened from
               : /home/mgorny/repos/gentoo/metadata/dtd/metadata.dtd, will
               : refetch

games-fps/aaut
  DeprecatedEAPI: version 1: uses deprecated EAPI: 0

games-fps/alienarena
  DeprecatedEAPI: version 20120629: uses deprecated EAPI: 2

games-fps/darkplaces
  DeprecatedEAPI: version 20110628: uses deprecated EAPI: 2

games-fps/doom3-cdoom
  DeprecatedEAPI: version 1.3.1: uses deprecated EAPI: 2
  MissingChksum: version 1.3.1: "classic_doom_3_131.zip" missing required chksums: sha512, whirlpool; has chksums: sha256, size

games-fps/doom3-chextrek
  DeprecatedEAPI: version 0.52: uses deprecated EAPI: 2
  MissingChksum: version 0.52: "chextrek_beta_052.zip" missing required chksums: sha512, whirlpool; has chksums: sha256, size

games-fps/doom3-data
  DeprecatedEAPI: version 1.1.1282-r1: uses deprecated EAPI: 0

games-fps/doom3-ducttape
  DeprecatedEAPI: version 0006-r1: uses deprecated EAPI: 2

games-fps/doom3-eventhorizon
  DeprecatedEAPI: version 1.3: uses deprecated EAPI: 2

games-fps/doom3-hellcampaign
  DeprecatedEAPI: version 1-r1: uses deprecated EAPI: 2
  MissingChksum: version 1-r1: "sp_hc_final.zip" missing required chksums: sha512, whirlpool; has chksums: sha256, size
  MissingChksum: version 1-r1: "hardcorehellcampaign_patch.zip" missing required chksums: sha512, whirlpool; has chksums: sha256, size

games-fps/doom3-inhell
  DeprecatedEAPI: version 1.1-r1: uses deprecated EAPI: 2
  MissingChksum: version 1.1-r1: "in_hell_v11.zip" missing required chksums: sha512, whirlpool; has chksums: sha256, size

games-fps/doom3-lms
  DeprecatedEAPI: version 4: uses deprecated EAPI: 2
  MissingChksum: version 4: "LastManStandingCoop4Multiplatform.zip" missing required chksums: sha512, whirlpool; has chksums: sha256, size

games-fps/doom3-mitm
  DeprecatedEAPI: version 20070129: uses deprecated EAPI: 2
  MissingChksum: version 20070129: "mitm_4.zip" missing required chksums: sha512, whirlpool; has chksums: sha256, size
  MissingChksum: version 20070129: "mitm5.zip" missing required chksums: sha512, whirlpool; has chksums: sha256, size

games-fps/doom3-roe
  DeprecatedEAPI: version 1: uses deprecated EAPI: 0

games-fps/duke3d
  DeprecatedEAPI: version 20040817-r2: uses deprecated EAPI: 2

games-fps/duke3d-data
  DeprecatedEAPI: version 1.0: uses deprecated EAPI: 0
  MissingUri: version 1.0-r3: file gog_duke_nukem_3d_atomic_edition_2.0.0.8.sh is unfetchable- no URI available, and RESTRICT=fetch isn't set

games-fps/enemy-territory-etpro
  DeprecatedEAPI: version 3.2.6-r1: uses deprecated EAPI: 2

games-fps/enemy-territory-omnibot
  DeprecatedEAPI: version 0.82: uses deprecated EAPI: 2
  DeprecatedEAPI: version 0.83.1: uses deprecated EAPI: 2

games-fps/enemy-territory-truecombat
  DeprecatedEAPI: version 0.49b: uses deprecated EAPI: 2

games-fps/etqw-data
  DeprecatedEAPI: version 1.0: uses deprecated EAPI: 0

games-fps/imaze
  DeprecatedEAPI: version 1.4: uses deprecated EAPI: 0

games-fps/industri
  DeprecatedEAPI: version 1.01: uses deprecated EAPI: 2

games-fps/lsdldoom
  DeprecatedEAPI: version 1.4.4.4-r1: uses deprecated EAPI: 0
  DeprecatedEAPI: version 1.5: uses deprecated EAPI: 2
  DroppedKeywordWarning: version 1.5: keywords dropped: sparc

games-fps/quake1-data
  DeprecatedEAPI: version 2.40: uses deprecated EAPI: 2

games-fps/quake1-movies
  DeprecatedEAPI: version 0: uses deprecated EAPI: 0

games-fps/quake2-data
  DeprecatedEAPI: version 3.20: uses deprecated EAPI: 2

games-fps/quake3
  DeprecatedEAPI: version 1.36-r1: uses deprecated EAPI: 2
  DeprecatedEAPI: version 9999: uses deprecated EAPI: 2
  DeprecatedEclass: version 9999: uses deprecated eclass(es): [ git-2 (migrate to git-r3) ]

games-fps/quake3-alliance
  DeprecatedEAPI: version 3.3-r1: uses deprecated EAPI: 2

games-fps/quake3-alternatefire
  DeprecatedEAPI: version 2.0-r1: uses deprecated EAPI: 2

games-fps/quake3-bfp
  DeprecatedEAPI: version 1.2-r1: uses deprecated EAPI: 2

games-fps/quake3-cpma
  DeprecatedEAPI: version 1.48: uses deprecated EAPI: 2

games-fps/quake3-defrag
  DeprecatedEAPI: version 1.91.20: uses deprecated EAPI: 2
  DeprecatedEAPI: version 1.91.21: uses deprecated EAPI: 2

games-fps/quake3-excessiveplus
  DeprecatedEAPI: version 2.2b: uses deprecated EAPI: 2

games-fps/quake3-lrctf
  DeprecatedEAPI: version 1.1: uses deprecated EAPI: 2

games-fps/quake3-matrix
  DeprecatedEAPI: version 2.4_beta-r1: uses deprecated EAPI: 2

games-fps/quake3-nsco
  DeprecatedEAPI: version 1.93-r1: uses deprecated EAPI: 2
  MissingChksum: version 1.93-r1: "nsco_beta191a.zip" missing required chksums: sha512, whirlpool; has chksums: rmd160, sha1, sha256, size
  MissingChksum: version 1.93-r1: "nsco_beta193upd.zip" missing required chksums: sha512, whirlpool; has chksums: rmd160, sha1, sha256, size

games-fps/quake3-osp
  DeprecatedEAPI: version 1.03a-r1: uses deprecated EAPI: 2

games-fps/quake3-ra3
  DeprecatedEAPI: version 1.76-r1: uses deprecated EAPI: 2

games-fps/quake3-reaction
  DeprecatedEAPI: version 3.2: uses deprecated EAPI: 2

games-fps/quake3-ruinhunters
  DeprecatedEAPI: version 1.0a-r1: uses deprecated EAPI: 2

games-fps/quake3-threewave
  DeprecatedEAPI: version 1.7-r1: uses deprecated EAPI: 2

games-fps/quake4-data
  DeprecatedEAPI: version 1.0.2147.12: uses deprecated EAPI: 0

games-fps/quakeforge
  DeprecatedEAPI: version 0.5.5-r2: uses deprecated EAPI: 2

games-fps/red-blue-quake2
  DeprecatedEAPI: version 0.1: uses deprecated EAPI: 2

games-fps/rott
  DeprecatedEAPI: version 1.0: uses deprecated EAPI: 0

games-fps/tenebrae
  DeprecatedEAPI: version 1.04: uses deprecated EAPI: 2

games-fps/transfusion-bin
  DeprecatedEAPI: version 1.01: uses deprecated EAPI: 0

games-fps/tribes2
  DeprecatedEAPI: version 25034: uses deprecated EAPI: 0

games-fps/unreal-tournament-bonuspacks
  DeprecatedEAPI: version 436: uses deprecated EAPI: 0

games-fps/unreal-tournament-strikeforce
  DeprecatedEAPI: version 1.81: uses deprecated EAPI: 0

games-fps/ut2003-bonuspack-cm
  DeprecatedEAPI: version 1: uses deprecated EAPI: 0
  MissingChksum: version 1: "cbp2003.zip" missing required chksums: sha512, whirlpool; has chksums: rmd160, sha1, sha256, size

games-fps/ut2003-bonuspack-de
  DeprecatedEAPI: version 1: uses deprecated EAPI: 0
  MissingChksum: version 1: "debonus.ut2mod.zip" missing required chksums: sha512, whirlpool; has chksums: rmd160, sha1, sha256, size

games-fps/ut2003-bonuspack-epic
  DeprecatedEAPI: version 1: uses deprecated EAPI: 0
  MissingChksum: version 1: "UT2003-epicbonuspackone.exe" missing required chksums: sha512, whirlpool; has chksums: rmd160, sha1, sha256, size

games-fps/ut2003-data
  DeprecatedEAPI: version 2107: uses deprecated EAPI: 0

games-fps/ut2004-action
  DeprecatedEAPI: version 1: uses deprecated EAPI: 2
  MissingChksum: version 1: "aut-r1-msuc.zip" missing required chksums: sha512, whirlpool; has chksums: rmd160, sha1, sha256, size

games-fps/ut2004-airbuccaneers
  DeprecatedEAPI: version 1.6-r2: uses deprecated EAPI: 2
  MissingChksum: version 1.6-r2: "airbuccaneers1_6_zipinstall.zip" missing required chksums: sha512, whirlpool; has chksums: rmd160, sha1, sha256, size

games-fps/ut2004-alienswarm
  DeprecatedEAPI: version 1.32: uses deprecated EAPI: 2
  MissingChksum: version 1.32: "AlienSwarm-v13.zip" missing required chksums: sha512, whirlpool; has chksums: rmd160, sha1, sha256, size
  MissingChksum: version 1.32: "phalanxaswcampaign10.zip" missing required chksums: sha512, whirlpool; has chksums: rmd160, sha1, sha256, size
  MissingChksum: version 1.32: "TelicCampaign_1_1.zip" missing required chksums: sha512, whirlpool; has chksums: rmd160, sha1, sha256, size
  MissingChksum: version 1.32: "AlienSwarm_13_or_131_to_132_Patch.zip" missing required chksums: sha512, whirlpool; has chksums: rmd160, sha1, sha256, size

games-fps/ut2004-bonuspack-cbp1
  DeprecatedEAPI: version 1-r2: uses deprecated EAPI: 2

games-fps/ut2004-bonuspack-cbp2
  DeprecatedEAPI: version 1-r2: uses deprecated EAPI: 2
  MissingChksum: version 1-r2: "cbp2-volume1_zip.zip" missing required chksums: sha512, whirlpool; has chksums: rmd160, sha1, sha256, size
  MissingChksum: version 1-r2: "cbp2-volume2_zip.zip" missing required chksums: sha512, whirlpool; has chksums: rmd160, sha1, sha256, size

games-fps/ut2004-bonuspack-ece
  DeprecatedEAPI: version 1-r3: uses deprecated EAPI: 2

games-fps/ut2004-bonuspack-mega
  DeprecatedEAPI: version 1-r2: uses deprecated EAPI: 2

games-fps/ut2004-cor
  DeprecatedEAPI: version 1.01-r1: uses deprecated EAPI: 2
  MissingChksum: version 1.01-r1: "COR_Beta_v1.0.zip" missing required chksums: sha512, whirlpool; has chksums: rmd160, sha1, sha256, size
  MissingChksum: version 1.01-r1: "COR_Patch_B1.0_to_B1.01.zip" missing required chksums: sha512, whirlpool; has chksums: rmd160, sha1, sha256, size

games-fps/ut2004-crossfire
  DeprecatedEAPI: version 1.95: uses deprecated EAPI: 2
  MissingChksum: version 1.95: "TOCrossfire_beta_1.95_full.zip" missing required chksums: sha512, whirlpool; has chksums: sha256, size

games-fps/ut2004-data
  DeprecatedEAPI: version 3186-r4: uses deprecated EAPI: 0

games-fps/ut2004-deathball
  DeprecatedEAPI: version 2.4w: uses deprecated EAPI: 2
  MissingChksum: version 2.4w: "deathball24w.zip" missing required chksums: sha512, whirlpool; has chksums: rmd160, sha1, sha256, size

games-fps/ut2004-fragops
  DeprecatedEAPI: version 2.20: uses deprecated EAPI: 2
  MissingChksum: version 2.20: "FragOps_v220_FullLMW.zip" missing required chksums: sha512, whirlpool; has chksums: rmd160, sha1, sha256, size

games-fps/ut2004-hamsterbash
  DeprecatedEAPI: version 1: uses deprecated EAPI: 2
  MissingChksum: version 1: "HamsterBashFinal.zip" missing required chksums: sha512, whirlpool; has chksums: sha256, size

games-fps/ut2004-muralis
  DeprecatedEAPI: version 1.15: uses deprecated EAPI: 2
  MissingChksum: version 1.15: "muralis-v1.15-zip.zip" missing required chksums: sha512, whirlpool; has chksums: sha256, size

games-fps/ut2004-strikeforce
  DeprecatedEAPI: version 4.1: uses deprecated EAPI: 2
  MissingChksum: version 4.1: "StrikeForce-CE-V4.1.zip" missing required chksums: sha512, whirlpool; has chksums: rmd160, sha1, sha256, size

games-fps/ut2004-troopers
  DeprecatedEAPI: version 6.0: uses deprecated EAPI: 2
  MissingChksum: version 6.0: "troopersversion60zip.zip" missing required chksums: sha512, whirlpool; has chksums: rmd160, sha1, sha256, size

games-fps/ut2004-ultraduel
  DeprecatedEAPI: version 2.1: uses deprecated EAPI: 2
  MissingChksum: version 2.1: "1on1-Ultra-Duel-2K4.zip" missing required chksums: sha512, whirlpool; has chksums: rmd160, sha1, sha256, size
  MissingChksum: version 2.1: "1on1-Ultra-Duel-2K4_Patch21.zip" missing required chksums: sha512, whirlpool; has chksums: rmd160, sha1, sha256, size

games-fps/ut2004-unwheel
  DeprecatedEAPI: version 0_beta5: uses deprecated EAPI: 2
  MissingChksum: version 0_beta5: "unwheel_r5.zip" missing required chksums: sha512, whirlpool; has chksums: sha256, size
  MissingChksum: version 0_beta5: "UnWheel-R5_BonusPack-Volume_1.zip" missing required chksums: sha512, whirlpool; has chksums: sha256, size

games-fps/wolfgl
  DeprecatedEAPI: version 0.93-r1: uses deprecated EAPI: 2
WARNING pkgcore: metadata.dtd cannot be opened from
               : /home/mgorny/repos/gentoo/metadata/dtd/metadata.dtd, will
               : refetch
WARNING pkgcore: metadata.dtd cannot be opened from
               : /home/mgorny/repos/gentoo/metadata/dtd/metadata.dtd, will
               : refetch

mail-filter/MailScanner
  DeprecatedEAPI: version 4.84.5.2: uses deprecated EAPI: 0

mail-filter/amavisd-new
  DroppedKeywordWarning: version 2.10.1-r1: keywords dropped: ppc

mail-filter/ask
  DeprecatedEAPI: version 2.4.1: uses deprecated EAPI: 0
  DeprecatedEAPI: version 2.5.3: uses deprecated EAPI: 0

mail-filter/assp
  DeprecatedEAPI: version 1.8.5.9: uses deprecated EAPI: 0
  DeprecatedEAPI: version 1.9.4.7: uses deprecated EAPI: 0
  DeprecatedEAPI: version 1.9.4.8: uses deprecated EAPI: 0
  DeprecatedEAPI: version 1.9.4.9: uses deprecated EAPI: 0
  DeprecatedEAPI: version 1.9.8.13030: uses deprecated EAPI: 0

mail-filter/clamassassin
  DeprecatedEAPI: version 1.2.4: uses deprecated EAPI: 0

mail-filter/clamsmtp
  DeprecatedEAPI: version 1.10: uses deprecated EAPI: 0

mail-filter/couriersrs
  DeprecatedEAPI: version 0.1.2: uses deprecated EAPI: 2

mail-filter/dcc
  DeprecatedEAPI: version 1.3.140-r1: uses deprecated EAPI: 2

mail-filter/disspam
  DeprecatedEAPI: version 0.14: uses deprecated EAPI: 0

mail-filter/isbg
  DeprecatedEAPI: version 0.99-r1: uses deprecated EAPI: 3
  DeprecatedEclass: version 0.99-r1: uses deprecated eclass(es): [ python (migrate to python-r1 / python-single-r1 / python-any-r1) ]

mail-filter/libmilter
  DeprecatedEAPI: version 1.0.2: uses deprecated EAPI: 2

mail-filter/libsieve
  DeprecatedEAPI: version 2.2.7: uses deprecated EAPI: 0

mail-filter/libsrs_alt
  DeprecatedEAPI: version 1.0: uses deprecated EAPI: 0

mail-filter/mailfilter
  DeprecatedEAPI: version 0.8.2: uses deprecated EAPI: 2

mail-filter/normalizemime
  DeprecatedEAPI: version 1.19: uses deprecated EAPI: 0

mail-filter/opendmarc
  DroppedKeywordWarning: version 1.3.0: keywords dropped: ppc, ppc64, sparc

mail-filter/p3scan
  DeprecatedEAPI: version 2.3.1: uses deprecated EAPI: 0
  DeprecatedEAPI: version 2.3.2-r1: uses deprecated EAPI: 2

mail-filter/policyd
  DeprecatedEAPI: version 1.82-r1: uses deprecated EAPI: 0

mail-filter/procmail
  DeprecatedEAPI: version 3.22-r10: uses deprecated EAPI: 0

mail-filter/procmail-lib
  DeprecatedEAPI: version 20081108: uses deprecated EAPI: 0
  DeprecatedEAPI: version 20091202: uses deprecated EAPI: 0

mail-filter/pypolicyd-spf
  DeprecatedEAPI: version 1.1: uses deprecated EAPI: 3
  DeprecatedEclass: version 1.1: uses deprecated eclass(es): [ distutils (migrate to distutils-r1), python (migrate to python-r1 / python-single-r1 / python-any-r1) ]

mail-filter/qmail-scanner
  DeprecatedEAPI: version 1.25-r1: uses deprecated EAPI: 0
  DeprecatedEAPI: version 2.05: uses deprecated EAPI: 0
  DeprecatedEAPI: version 2.06: uses deprecated EAPI: 2
  DeprecatedEAPI: version 2.08: uses deprecated EAPI: 2

mail-filter/rblcheck
  DeprecatedEAPI: version 1.5-r1: uses deprecated EAPI: 2

mail-filter/spamdyke
  DeprecatedEAPI: version 4.3.0: uses deprecated EAPI: 2

mail-filter/spampd
  DeprecatedEAPI: version 2.30: uses deprecated EAPI: 0

mail-filter/spamprobe
  DeprecatedEAPI: version 1.4d: uses deprecated EAPI: 2

mail-filter/sqlgrey
  DeprecatedEAPI: version 1.7.6-r1: uses deprecated EAPI: 0

mail-filter/tmda
  DeprecatedEAPI: version 1.1.12: uses deprecated EAPI: 3
  DeprecatedEclass: version 1.1.12: uses deprecated eclass(es): [ python (migrate to python-r1 / python-single-r1 / python-any-r1) ]
WARNING pkgcore: metadata.dtd cannot be opened from
               : /home/mgorny/repos/gentoo/metadata/dtd/metadata.dtd, will
               : refetch
WARNING pkgcore: metadata.dtd cannot be opened from
               : /home/mgorny/repos/gentoo/metadata/dtd/metadata.dtd, will
               : refetch

sci-physics/clhep
  DeprecatedEAPI: version 2.0.4.6: uses deprecated EAPI: 2
  DeprecatedEAPI: version 2.1.0.1: uses deprecated EAPI: 2

sci-physics/geant
  DeprecatedEAPI: version 3.21.14-r2: uses deprecated EAPI: 2

sci-physics/hepmc
  DeprecatedEAPI: version 2.06.03: uses deprecated EAPI: 2

sci-physics/herwig
  DeprecatedEAPI: version 6.5.10: uses deprecated EAPI: 2

sci-physics/lhapdf
  DeprecatedEAPI: version 5.8.4: uses deprecated EAPI: 2

sci-physics/meep
  DeprecatedEAPI: version 1.1.1: uses deprecated EAPI: 2
WARNING pkgcore: metadata.dtd cannot be opened from
               : /home/mgorny/repos/gentoo/metadata/dtd/metadata.dtd, will
               : refetch
WARNING pkgcore: metadata.dtd cannot be opened from
               : /home/mgorny/repos/gentoo/metadata/dtd/metadata.dtd, will
               : refetch

dev-tcltk/expect
  DeprecatedEAPI: version 5.44.1.15: uses deprecated EAPI: 3

dev-tcltk/expect-lite
  DeprecatedEAPI: version 4.0.3: uses deprecated EAPI: 0
  DeprecatedEAPI: version 4.1.0: uses deprecated EAPI: 0
  DeprecatedEAPI: version 4.1.2: uses deprecated EAPI: 0
  DeprecatedEAPI: version 4.2.0: uses deprecated EAPI: 0
  DeprecatedEAPI: version 4.2.1: uses deprecated EAPI: 0
  DeprecatedEAPI: version 4.2.2: uses deprecated EAPI: 0
  DeprecatedEAPI: version 4.3.0: uses deprecated EAPI: 0
  DeprecatedEAPI: version 4.3.1: uses deprecated EAPI: 0
  DeprecatedEAPI: version 4.3.2: uses deprecated EAPI: 0
  DeprecatedEAPI: version 4.3.3: uses deprecated EAPI: 0
  DeprecatedEAPI: version 4.4.0: uses deprecated EAPI: 0
  DeprecatedEAPI: version 4.4.1: uses deprecated EAPI: 0
  DeprecatedEAPI: version 4.5.0: uses deprecated EAPI: 0
  DeprecatedEAPI: version 4.6.0: uses deprecated EAPI: 0
  DeprecatedEAPI: version 4.6.1: uses deprecated EAPI: 0
  DeprecatedEAPI: version 4.6.2: uses deprecated EAPI: 0
  DeprecatedEAPI: version 4.7.2: uses deprecated EAPI: 0

dev-tcltk/iwidgets
  DeprecatedEAPI: version 4.0.1: uses deprecated EAPI: 0

dev-tcltk/scwoop
  DeprecatedEAPI: version 4.1: uses deprecated EAPI: 0

dev-tcltk/snack
  DeprecatedEclass: version 2.2.10-r5: uses deprecated eclass(es): [ distutils (migrate to distutils-r1), python (migrate to python-r1 / python-single-r1 / python-any-r1) ]

dev-tcltk/tcllib
  DroppedKeywordWarning: version 1.16: keywords dropped: ia64, ppc64, s390, sparc
  SizeViolation: "files/tcllib-1.15-XSS-vuln.patch" exceeds 20k in size; 29465 bytes total

dev-tcltk/tkcon
  DeprecatedEAPI: version 2.5: uses deprecated EAPI: 0

dev-tcltk/tkpiechart
  DeprecatedEAPI: version 6.5-r1: uses deprecated EAPI: 0

dev-tcltk/tktable
  DeprecatedEAPI: version 2.10: uses deprecated EAPI: 2

dev-tcltk/tktreectrl
  DeprecatedEAPI: version 2.2.9: uses deprecated EAPI: 3

dev-tcltk/vtcl
  DeprecatedEAPI: version 1.6.0-r1: uses deprecated EAPI: 0
WARNING pkgcore: metadata.dtd cannot be opened from
               : /home/mgorny/repos/gentoo/metadata/dtd/metadata.dtd, will
               : refetch
WARNING pkgcore: metadata.dtd cannot be opened from
               : /home/mgorny/repos/gentoo/metadata/dtd/metadata.dtd, will
               : refetch

app-mobilephone/bitpim
  ExecutableFile: "files/maketarball" has unnecessary executable bit

app-mobilephone/cobex
  DeprecatedEAPI: version 0.2.13: uses deprecated EAPI: 0

app-mobilephone/dfu-util
  DeprecatedEclass: version 9999: uses deprecated eclass(es): [ git-2 (migrate to git-r3) ]

app-mobilephone/freesmee
  DeprecatedEclass: version 9999: uses deprecated eclass(es): [ git-2 (migrate to git-r3) ]

app-mobilephone/gammu
  DeprecatedEclass: version 1.33.0: uses deprecated eclass(es): [ python (migrate to python-r1 / python-single-r1 / python-any-r1) ]

app-mobilephone/ganyremote
  DeprecatedEAPI: version 6.0.1: uses deprecated EAPI: 2

app-mobilephone/gnokii
  DeprecatedEAPI: version 0.6.29: uses deprecated EAPI: 2
  DeprecatedEclass: version 9999: uses deprecated eclass(es): [ git-2 (migrate to git-r3) ]

app-mobilephone/gsmlib
  DeprecatedEAPI: version 1.11_pre041028: uses deprecated EAPI: 0

app-mobilephone/heimdall
  DeprecatedEclass: version 9999: uses deprecated eclass(es): [ git-2 (migrate to git-r3) ]

app-mobilephone/kannel
  DeprecatedEAPI: version 1.4.3-r1: uses deprecated EAPI: 2

app-mobilephone/kannel-sqlbox
  DeprecatedEAPI: version 0.7.2: uses deprecated EAPI: 2

app-mobilephone/ringtonetools
  DeprecatedEAPI: version 2.26: uses deprecated EAPI: 0

app-mobilephone/scmxx
  DeprecatedEAPI: version 0.9.0: uses deprecated EAPI: 0

app-mobilephone/sms
  DeprecatedEAPI: version 2.0.3: uses deprecated EAPI: 0
  DeprecatedEAPI: version 2.1.0: uses deprecated EAPI: 0

app-mobilephone/sobexsrv
  DeprecatedEAPI: version 1.0.1: uses deprecated EAPI: 0

app-mobilephone/wammu
  DeprecatedEAPI: version 0.35: uses deprecated EAPI: 3
  DeprecatedEclass: version 0.35: uses deprecated eclass(es): [ distutils (migrate to distutils-r1), python (migrate to python-r1 / python-single-r1 / python-any-r1) ]
WARNING pkgcore: metadata.dtd cannot be opened from
               : /home/mgorny/repos/gentoo/metadata/dtd/metadata.dtd, will
               : refetch
WARNING pkgcore: metadata.dtd cannot be opened from
               : /home/mgorny/repos/gentoo/metadata/dtd/metadata.dtd, will
               : refetch

gnustep-base/mknfonts
  DeprecatedEAPI: version 0.5-r1: uses deprecated EAPI: 0
WARNING pkgcore: metadata.dtd cannot be opened from
               : /home/mgorny/repos/gentoo/metadata/dtd/metadata.dtd, will
               : refetch
WARNING pkgcore: metadata.dtd cannot be opened from
               : /home/mgorny/repos/gentoo/metadata/dtd/metadata.dtd, will
               : refetch