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
|
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
<HTML>
<HEAD>
<TITLE> [Mageia-dev] Current cauldron updates want to install 32-bit versions that conflict with 64-bit versions
</TITLE>
<LINK REL="Index" HREF="index.html" >
<LINK REL="made" HREF="mailto:mageia-dev%40mageia.org?Subject=Re%3A%20%5BMageia-dev%5D%20Current%20cauldron%20updates%20want%20to%20install%2032-bit%0A%20versions%20that%20conflict%20with%2064-bit%20versions&In-Reply-To=%3C4E24490F.10602%40roadrunner.com%3E">
<META NAME="robots" CONTENT="index,nofollow">
<META http-equiv="Content-Type" content="text/html; charset=us-ascii">
<LINK REL="Previous" HREF="006858.html">
<LINK REL="Next" HREF="006871.html">
</HEAD>
<BODY BGCOLOR="#ffffff">
<H1>[Mageia-dev] Current cauldron updates want to install 32-bit versions that conflict with 64-bit versions</H1>
<B>Frank Griffin</B>
<A HREF="mailto:mageia-dev%40mageia.org?Subject=Re%3A%20%5BMageia-dev%5D%20Current%20cauldron%20updates%20want%20to%20install%2032-bit%0A%20versions%20that%20conflict%20with%2064-bit%20versions&In-Reply-To=%3C4E24490F.10602%40roadrunner.com%3E"
TITLE="[Mageia-dev] Current cauldron updates want to install 32-bit versions that conflict with 64-bit versions">ftg at roadrunner.com
</A><BR>
<I>Mon Jul 18 16:54:07 CEST 2011</I>
<P><UL>
<LI>Previous message: <A HREF="006858.html">[Mageia-dev] [RPM] cauldron core/release mplayer-1.0-1.rc4.0.r32713.7.mga2
</A></li>
<LI>Next message: <A HREF="006871.html">[Mageia-dev] Current cauldron updates want to install 32-bit versions that conflict with 64-bit versions
</A></li>
<LI> <B>Messages sorted by:</B>
<a href="date.html#6870">[ date ]</a>
<a href="thread.html#6870">[ thread ]</a>
<a href="subject.html#6870">[ subject ]</a>
<a href="author.html#6870">[ author ]</a>
</LI>
</UL>
<HR>
<!--beginarticle-->
<PRE>Problem seems to be with libX11_6-devel:
[<A HREF="https://www.mageia.org/mailman/listinfo/mageia-dev">root at ftgme2</A> ftg]# urpmi --auto-update --keep --debug
getting lock on urpmi
parsing: /etc/urpmi/mediacfg.d/Devel-1-x86_64
comparing
/mnt/cooker/cauldron/x86_64/media/core/release/media_info/MD5SUM and
/var/lib/urpmi/Core Release/MD5SUM
medium "Core Release" is up-to-date
comparing
/mnt/cooker/cauldron/x86_64/media/debug/core/release/media_info/MD5SUM
and /var/lib/urpmi/Core Release Debug/MD5SUM
medium "Core Release Debug" is up-to-date
comparing
/mnt/cooker/cauldron/x86_64/media/core/updates/media_info/MD5SUM and
/var/lib/urpmi/Core Updates/MD5SUM
medium "Core Updates" is up-to-date
comparing
/mnt/cooker/cauldron/x86_64/media/nonfree/release/media_info/MD5SUM and
/var/lib/urpmi/Nonfree Release/MD5SUM
medium "Nonfree Release" is up-to-date
comparing
/mnt/cooker/cauldron/x86_64/media/debug/nonfree/release/media_info/MD5SUM and
/var/lib/urpmi/Nonfree Release Debug/MD5SUM
medium "Nonfree Release Debug" is up-to-date
comparing
/mnt/cooker/cauldron/x86_64/media/nonfree/updates/media_info/MD5SUM and
/var/lib/urpmi/Nonfree Updates/MD5SUM
medium "Nonfree Updates" is up-to-date
comparing
/mnt/cooker/cauldron/x86_64/media/tainted/release/media_info/MD5SUM and
/var/lib/urpmi/Tainted Release/MD5SUM
medium "Tainted Release" is up-to-date
comparing
/mnt/cooker/cauldron/x86_64/media/debug/tainted/release/media_info/MD5SUM and
/var/lib/urpmi/Tainted Release Debug/MD5SUM
medium "Tainted Release Debug" is up-to-date
comparing /mnt/cooker/cauldron/i586/media/core/release/media_info/MD5SUM
and /var/lib/urpmi/Core 32bit Release/MD5SUM
medium "Core 32bit Release" is up-to-date
comparing
/mnt/cooker/cauldron/i586/media/debug/core/release/media_info/MD5SUM and
/var/lib/urpmi/Core 32bit Release Debug/MD5SUM
medium "Core 32bit Release Debug" is up-to-date
comparing /mnt/cooker/cauldron/i586/media/core/updates/media_info/MD5SUM
and /var/lib/urpmi/Core 32bit Updates/MD5SUM
medium "Core 32bit Updates" is up-to-date
comparing /mnt/plf/cooker/non-free/binary/x86_64/media_info/MD5SUM and
/var/lib/urpmi/plf-nonfree/MD5SUM
medium "plf-nonfree" is up-to-date
comparing /mnt/plf/cooker/free/binary/x86_64/media_info/MD5SUM and
/var/lib/urpmi/plf-free/MD5SUM
medium "plf-free" is up-to-date
examining synthesis file [/var/lib/urpmi/Core Release/synthesis.hdlist.cz]
examining synthesis file [/var/lib/urpmi/Core Release
Debug/synthesis.hdlist.cz]
examining synthesis file [/var/lib/urpmi/Core Updates/synthesis.hdlist.cz]
examining synthesis file [/var/lib/urpmi/Nonfree
Release/synthesis.hdlist.cz]
examining synthesis file [/var/lib/urpmi/Nonfree Release
Debug/synthesis.hdlist.cz]
examining synthesis file [/var/lib/urpmi/Nonfree
Updates/synthesis.hdlist.cz]
examining synthesis file [/var/lib/urpmi/Tainted
Release/synthesis.hdlist.cz]
examining synthesis file [/var/lib/urpmi/Tainted Release
Debug/synthesis.hdlist.cz]
examining synthesis file [/var/lib/urpmi/Core 32bit
Release/synthesis.hdlist.cz]
examining synthesis file [/var/lib/urpmi/Core 32bit Release
Debug/synthesis.hdlist.cz]
examining synthesis file [/var/lib/urpmi/Core 32bit
Updates/synthesis.hdlist.cz]
examining synthesis file [/var/lib/urpmi/plf-nonfree/synthesis.hdlist.cz]
examining synthesis file [/var/lib/urpmi/plf-free/synthesis.hdlist.cz]
skipping package lib64freetype6-2.4.4-3plf-plf2011.0.x86_64
skipping package freetype2-demos-2.4.4-3plf-plf2011.0.x86_64
skipping package freetype2-demos-2.4.4-4plf-plf2011.0.x86_64
skipping package lib64freetype6-devel-2.4.4-4plf-plf2011.0.x86_64
skipping package lib64freetype6-devel-2.4.4-3plf-plf2011.0.x86_64
skipping package lib64freetype6-static-devel-2.4.4-4plf-plf2011.0.x86_64
skipping package lib64freetype6-2.4.4-4plf-plf2011.0.x86_64
skipping package lib64freetype6-static-devel-2.4.4-3plf-plf2011.0.x86_64
getting exclusive lock on rpm
opening rpmdb (root=, write=)
auto-select: adding libreoffice-calc-3.4.2.1-2.mga2.x86_64 replacing
libreoffice-calc-3.3.2.2-14.mga1.x86_64
auto-select: adding
libreoffice-presentation-minimizer-3.4.2.1-2.mga2.x86_64 replacing
libreoffice-presentation-minimizer-3.3.2.2-14.mga1.x86_64
auto-select: adding libreoffice-pyuno-3.4.2.1-2.mga2.x86_64 replacing
libreoffice-pyuno-3.3.2.2-14.mga1.x86_64
auto-select: adding libreoffice-graphicfilter-3.4.2.1-2.mga2.x86_64
replacing libreoffice-graphicfilter-3.3.2.2-14.mga1.x86_64
auto-select: adding libreoffice-ure-3.4.2.1-2.mga2.x86_64 replacing
libreoffice-ure-3.3.2.2-14.mga1.x86_64
auto-select: adding libreoffice-langpack-es-3.4.2.1-2.mga2.x86_64
replacing libreoffice-langpack-es-3.3.2.2-14.mga1.x86_64
auto-select: adding libreoffice-base-3.4.2.1-2.mga2.x86_64 replacing
libreoffice-base-3.3.2.2-14.mga1.x86_64
auto-select: adding libreoffice-core-3.4.2.1-2.mga2.x86_64 replacing
libreoffice-core-3.3.2.2-14.mga1.x86_64
auto-select: adding libreoffice-langpack-en-3.4.2.1-2.mga2.x86_64
replacing libreoffice-langpack-en-3.3.2.2-14.mga1.x86_64
auto-select: adding libreoffice-impress-3.4.2.1-2.mga2.x86_64 replacing
libreoffice-impress-3.3.2.2-14.mga1.x86_64
auto-select: adding libreoffice-kde-3.4.2.1-2.mga2.x86_64 replacing
libreoffice-kde-3.3.2.2-14.mga1.x86_64
auto-select: adding libreoffice-report-builder-3.4.2.1-2.mga2.x86_64
replacing libreoffice-report-builder-3.3.2.2-14.mga1.x86_64
auto-select: adding libreoffice-wiki-publisher-3.4.2.1-2.mga2.x86_64
replacing libreoffice-wiki-publisher-3.3.2.2-14.mga1.x86_64
auto-select: adding libdbus-1_3-1.4.12-1.mga2.i586 replacing
libdbus-1_3-1.4.1-3.mga1.i586
auto-select: adding libreoffice-presenter-screen-3.4.2.1-2.mga2.x86_64
replacing libreoffice-presenter-screen-3.3.2.2-14.mga1.x86_64
auto-select: adding libreoffice-java-common-3.4.2.1-2.mga2.x86_64
replacing libreoffice-java-common-3.3.2.2-14.mga1.x86_64
auto-select: adding libreoffice-draw-3.4.2.1-2.mga2.x86_64 replacing
libreoffice-draw-3.3.2.2-14.mga1.x86_64
auto-select: adding libpng3-1.2.46-1.mga2.i586 replacing
libpng3-1.2.44-3.mga1.i586
auto-select: adding libreoffice-langpack-fr-3.4.2.1-2.mga2.x86_64
replacing libreoffice-langpack-fr-3.3.2.2-14.mga1.x86_64
auto-select: adding libreoffice-opensymbol-fonts-3.4.2.1-2.mga2.noarch
replacing libreoffice-opensymbol-fonts-3.3.2.2-14.mga1.noarch
auto-select: adding libreoffice-langpack-it-3.4.2.1-2.mga2.x86_64
replacing libreoffice-langpack-it-3.3.2.2-14.mga1.x86_64
auto-select: adding libreoffice-writer-3.4.2.1-2.mga2.x86_64 replacing
libreoffice-writer-3.3.2.2-14.mga1.x86_64
auto-select: adding libreoffice-xsltfilter-3.4.2.1-2.mga2.x86_64
replacing libreoffice-xsltfilter-3.3.2.2-14.mga1.x86_64
auto-select: adding db51-utils-5.1.25-5.mga2.x86_64 replacing
db51-utils-5.1.19-6.mga1.x86_64
auto-select: adding libreoffice-langpack-de-3.4.2.1-2.mga2.x86_64
replacing libreoffice-langpack-de-3.3.2.2-14.mga1.x86_64
auto-select: adding libreoffice-math-3.4.2.1-2.mga2.x86_64 replacing
libreoffice-math-3.3.2.2-14.mga1.x86_64
auto-select: adding libreoffice-emailmerge-3.4.2.1-2.mga2.x86_64
replacing libreoffice-emailmerge-3.3.2.2-14.mga1.x86_64
auto-select: adding lib64poppler-qt4-devel-0.16.7-2.mga2.x86_64
replacing lib64poppler-qt4-devel-0.16.7-1.mga2.x86_64
auto-select: adding libreoffice-pdfimport-3.4.2.1-2.mga2.x86_64
replacing libreoffice-pdfimport-3.3.2.2-14.mga1.x86_64
auto-select: adding kipi-plugins-2.0.0-0.rc.1.mga2.x86_64 replacing
kipi-plugins-1.9.0-4.mga2.x86_64
selecting libreoffice-langpack-de-3.4.2.1-2.mga2.x86_64
set_rejected: libreoffice-langpack-de-3.3.2.2-14.mga1.x86_64
requiring libreoffice-core[== 3.4.2.1-2.mga2] for
libreoffice-langpack-de-3.4.2.1-2.mga2.x86_64
chosen libreoffice-core-3.4.2.1-2.mga2.x86_64 for libreoffice-core[==
3.4.2.1-2.mga2]
selecting libreoffice-core-3.4.2.1-2.mga2.x86_64
set_rejected: libreoffice-core-3.3.2.2-14.mga1.x86_64
requiring libreoffice-opensymbol-fonts[==
3.4.2.1-2.mga2],libreoffice-ure[== 3.4.2.1-2.mga2] for
libreoffice-core-3.4.2.1-2.mga2.x86_64
chosen libreoffice-opensymbol-fonts-3.4.2.1-2.mga2.noarch for
libreoffice-opensymbol-fonts[== 3.4.2.1-2.mga2]
selecting libreoffice-opensymbol-fonts-3.4.2.1-2.mga2.noarch
set_rejected: libreoffice-opensymbol-fonts-3.3.2.2-14.mga1.noarch
chosen libreoffice-ure-3.4.2.1-2.mga2.x86_64 for libreoffice-ure[==
3.4.2.1-2.mga2]
selecting libreoffice-ure-3.4.2.1-2.mga2.x86_64
set_rejected: libreoffice-ure-3.3.2.2-14.mga1.x86_64
selecting libreoffice-presentation-minimizer-3.4.2.1-2.mga2.x86_64
set_rejected: libreoffice-presentation-minimizer-3.3.2.2-14.mga1.x86_64
requiring libreoffice-impress[== 3.4.2.1-2.mga2] for
libreoffice-presentation-minimizer-3.4.2.1-2.mga2.x86_64
chosen libreoffice-impress-3.4.2.1-2.mga2.x86_64 for
libreoffice-impress[== 3.4.2.1-2.mga2]
selecting libreoffice-impress-3.4.2.1-2.mga2.x86_64
set_rejected: libreoffice-impress-3.3.2.2-14.mga1.x86_64
requiring libreoffice-presenter-screen[== 3.4.2.1-2.mga2] for
libreoffice-impress-3.4.2.1-2.mga2.x86_64
chosen libreoffice-presenter-screen-3.4.2.1-2.mga2.x86_64 for
libreoffice-presenter-screen[== 3.4.2.1-2.mga2]
selecting libreoffice-presenter-screen-3.4.2.1-2.mga2.x86_64
set_rejected: libreoffice-presenter-screen-3.3.2.2-14.mga1.x86_64
selecting libreoffice-kde-3.4.2.1-2.mga2.x86_64
set_rejected: libreoffice-kde-3.3.2.2-14.mga1.x86_64
selecting libreoffice-langpack-fr-3.4.2.1-2.mga2.x86_64
set_rejected: libreoffice-langpack-fr-3.3.2.2-14.mga1.x86_64
selecting libreoffice-langpack-it-3.4.2.1-2.mga2.x86_64
set_rejected: libreoffice-langpack-it-3.3.2.2-14.mga1.x86_64
selecting libreoffice-langpack-es-3.4.2.1-2.mga2.x86_64
set_rejected: libreoffice-langpack-es-3.3.2.2-14.mga1.x86_64
selecting libreoffice-pdfimport-3.4.2.1-2.mga2.x86_64
set_rejected: libreoffice-pdfimport-3.3.2.2-14.mga1.x86_64
requiring libreoffice-draw[== 3.4.2.1-2.mga2] for
libreoffice-pdfimport-3.4.2.1-2.mga2.x86_64
chosen libreoffice-draw-3.4.2.1-2.mga2.x86_64 for libreoffice-draw[==
3.4.2.1-2.mga2]
selecting libreoffice-draw-3.4.2.1-2.mga2.x86_64
set_rejected: libreoffice-draw-3.3.2.2-14.mga1.x86_64
requiring libreoffice-graphicfilter[== 3.4.2.1-2.mga2] for
libreoffice-draw-3.4.2.1-2.mga2.x86_64
chosen libreoffice-graphicfilter-3.4.2.1-2.mga2.x86_64 for
libreoffice-graphicfilter[== 3.4.2.1-2.mga2]
selecting libreoffice-graphicfilter-3.4.2.1-2.mga2.x86_64
set_rejected: libreoffice-graphicfilter-3.3.2.2-14.mga1.x86_64
selecting db51-utils-5.1.25-5.mga2.x86_64
set_rejected: db51-utils-5.1.19-6.mga1.x86_64
selecting libreoffice-report-builder-3.4.2.1-2.mga2.x86_64
set_rejected: libreoffice-report-builder-3.3.2.2-14.mga1.x86_64
requiring libreoffice-base[== 3.4.2.1-2.mga2] for
libreoffice-report-builder-3.4.2.1-2.mga2.x86_64
chosen libreoffice-base-3.4.2.1-2.mga2.x86_64 for libreoffice-base[==
3.4.2.1-2.mga2]
selecting libreoffice-base-3.4.2.1-2.mga2.x86_64
set_rejected: libreoffice-base-3.3.2.2-14.mga1.x86_64
requiring libreoffice-calc[== 3.4.2.1-2.mga2] for
libreoffice-base-3.4.2.1-2.mga2.x86_64
chosen libreoffice-calc-3.4.2.1-2.mga2.x86_64 for libreoffice-calc[==
3.4.2.1-2.mga2]
selecting libreoffice-calc-3.4.2.1-2.mga2.x86_64
set_rejected: libreoffice-calc-3.3.2.2-14.mga1.x86_64
selecting libreoffice-writer-3.4.2.1-2.mga2.x86_64
set_rejected: libreoffice-writer-3.3.2.2-14.mga1.x86_64
selecting libdbus-1_3-1.4.12-1.mga2.i586
set_rejected: libdbus-1_3-1.4.1-3.mga1.i586
selecting kipi-plugins-2.0.0-0.rc.1.mga2.x86_64
set_rejected: kipi-plugins-1.9.0-4.mga2.x86_64
selecting libreoffice-langpack-en-3.4.2.1-2.mga2.x86_64
set_rejected: libreoffice-langpack-en-3.3.2.2-14.mga1.x86_64
selecting libreoffice-wiki-publisher-3.4.2.1-2.mga2.x86_64
set_rejected: libreoffice-wiki-publisher-3.3.2.2-14.mga1.x86_64
selecting libreoffice-xsltfilter-3.4.2.1-2.mga2.x86_64
set_rejected: libreoffice-xsltfilter-3.3.2.2-14.mga1.x86_64
selecting lib64poppler-qt4-devel-0.16.7-2.mga2.x86_64
set_rejected: lib64poppler-qt4-devel-0.16.7-1.mga2.x86_64
selecting libreoffice-java-common-3.4.2.1-2.mga2.x86_64
set_rejected: libreoffice-java-common-3.3.2.2-14.mga1.x86_64
selecting libreoffice-math-3.4.2.1-2.mga2.x86_64
set_rejected: libreoffice-math-3.3.2.2-14.mga1.x86_64
selecting libreoffice-pyuno-3.4.2.1-2.mga2.x86_64
set_rejected: libreoffice-pyuno-3.3.2.2-14.mga1.x86_64
selecting libreoffice-emailmerge-3.4.2.1-2.mga2.x86_64
set_rejected: libreoffice-emailmerge-3.3.2.2-14.mga1.x86_64
selecting libpng3-1.2.46-1.mga2.i586
set_rejected: libpng3-1.2.44-3.mga1.i586
installed libreoffice-writer-3.3.2.2-14.mga1.x86_64 is conflicting
because of unsatisfied libreoffice-core[== 3.3.2.2-14.mga1]
promoting libreoffice-writer-3.4.2.1-2.mga2.x86_64 because of conflict above
installed libreoffice-pyuno-3.3.2.2-14.mga1.x86_64 is conflicting
because of unsatisfied libreoffice-core[== 3.3.2.2-14.mga1]
promoting libreoffice-pyuno-3.4.2.1-2.mga2.x86_64 because of conflict above
installed libreoffice-pyuno-3.3.2.2-14.mga1.x86_64 is conflicting
because of unsatisfied libreoffice-core[== 3.3.2.2-14.mga1]
promoting libreoffice-pyuno-3.4.2.1-2.mga2.x86_64 because of conflict above
installed libreoffice-pyuno-3.3.2.2-14.mga1.x86_64 is conflicting
because of unsatisfied libreoffice-core[== 3.3.2.2-14.mga1]
promoting libreoffice-pyuno-3.4.2.1-2.mga2.x86_64 because of conflict above
installed libreoffice-impress-3.3.2.2-14.mga1.x86_64 is conflicting
because of unsatisfied libreoffice-core[== 3.3.2.2-14.mga1]
promoting libreoffice-impress-3.4.2.1-2.mga2.x86_64 because of conflict
above
installed libreoffice-graphicfilter-3.3.2.2-14.mga1.x86_64 is
conflicting because of unsatisfied libreoffice-core[== 3.3.2.2-14.mga1]
promoting libreoffice-graphicfilter-3.4.2.1-2.mga2.x86_64 because of
conflict above
installed libreoffice-draw-3.3.2.2-14.mga1.x86_64 is conflicting because
of unsatisfied libreoffice-core[== 3.3.2.2-14.mga1]
promoting libreoffice-draw-3.4.2.1-2.mga2.x86_64 because of conflict above
installed libreoffice-calc-3.3.2.2-14.mga1.x86_64 is conflicting because
of unsatisfied libreoffice-core[== 3.3.2.2-14.mga1]
promoting libreoffice-calc-3.4.2.1-2.mga2.x86_64 because of conflict above
installed libreoffice-base-3.3.2.2-14.mga1.x86_64 is conflicting because
of unsatisfied libreoffice-core[== 3.3.2.2-14.mga1]
promoting libreoffice-base-3.4.2.1-2.mga2.x86_64 because of conflict above
installed libreoffice-langpack-it-3.3.2.2-14.mga1.x86_64 is conflicting
because of unsatisfied libreoffice-core[== 3.3.2.2-14.mga1]
promoting libreoffice-langpack-it-3.4.2.1-2.mga2.x86_64 because of
conflict above
installed libreoffice-langpack-br-3.3.2.2-14.mga1.x86_64 is conflicting
because of unsatisfied libreoffice-core[== 3.3.2.2-14.mga1]
unselecting libreoffice-core-3.4.2.1-2.mga2.x86_64
unselecting libreoffice-math-3.4.2.1-2.mga2.x86_64
unselecting libreoffice-writer-3.4.2.1-2.mga2.x86_64
unselecting libreoffice-calc-3.4.2.1-2.mga2.x86_64
unselecting libreoffice-graphicfilter-3.4.2.1-2.mga2.x86_64
unselecting libreoffice-base-3.4.2.1-2.mga2.x86_64
unselecting libreoffice-langpack-de-3.4.2.1-2.mga2.x86_64
unselecting libreoffice-kde-3.4.2.1-2.mga2.x86_64
unselecting libreoffice-langpack-it-3.4.2.1-2.mga2.x86_64
unselecting libreoffice-langpack-fr-3.4.2.1-2.mga2.x86_64
unselecting libreoffice-langpack-es-3.4.2.1-2.mga2.x86_64
unselecting libreoffice-draw-3.4.2.1-2.mga2.x86_64
unselecting libreoffice-langpack-en-3.4.2.1-2.mga2.x86_64
unselecting libreoffice-xsltfilter-3.4.2.1-2.mga2.x86_64
unselecting libreoffice-java-common-3.4.2.1-2.mga2.x86_64
unselecting libreoffice-pyuno-3.4.2.1-2.mga2.x86_64
unselecting libreoffice-impress-3.4.2.1-2.mga2.x86_64
unselecting libreoffice-emailmerge-3.4.2.1-2.mga2.x86_64
unselecting libreoffice-wiki-publisher-3.4.2.1-2.mga2.x86_64
unselecting libreoffice-report-builder-3.4.2.1-2.mga2.x86_64
unselecting libreoffice-pdfimport-3.4.2.1-2.mga2.x86_64
unselecting libreoffice-presenter-screen-3.4.2.1-2.mga2.x86_64
unselecting libreoffice-presentation-minimizer-3.4.2.1-2.mga2.x86_64
no packages match libreoffice-writer (it is either in skip.list or
already rejected)
no packages match libreoffice-pyuno (it is either in skip.list or
already rejected)
no packages match libreoffice-pyuno (it is either in skip.list or
already rejected)
no packages match libreoffice-pyuno (it is either in skip.list or
already rejected)
no packages match libreoffice-impress (it is either in skip.list or
already rejected)
no packages match libreoffice-graphicfilter (it is either in skip.list
or already rejected)
no packages match libreoffice-draw (it is either in skip.list or already
rejected)
no packages match libreoffice-calc (it is either in skip.list or already
rejected)
no packages match libreoffice-base (it is either in skip.list or already
rejected)
no packages match libreoffice-langpack-it (it is either in skip.list or
already rejected)
installed libreoffice-core-3.3.2.2-14.mga1.x86_64 is conflicting because
of unsatisfied libreoffice-opensymbol-fonts[== 3.3.2.2-14.mga1]
unselecting libreoffice-opensymbol-fonts-3.4.2.1-2.mga2.noarch
installed libreoffice-core-3.3.2.2-14.mga1.x86_64 is conflicting because
of unsatisfied libreoffice-ure[== 3.3.2.2-14.mga1]
unselecting libreoffice-ure-3.4.2.1-2.mga2.x86_64
installed openldap-servers-2.4.25-1.mga1.x86_64 is conflicting because
of unsatisfied db-utils[*] db-utils[== 5.1.19]
unselecting db51-utils-5.1.25-5.mga2.x86_64
installed lib64kipiplugins1-1.9.0-4.mga2.x86_64 is conflicting because
of unsatisfied kipi-plugins[== 1:1.9.0-4.mga2]
unselecting kipi-plugins-2.0.0-0.rc.1.mga2.x86_64
installed okular-devel-4.6.95-0.mga2.x86_64 is conflicting because of
unsatisfied libpoppler-qt4-devel[>= 0.8.0]
promoting libpoppler-qt4-devel-0.16.7-2.mga2.i586 because of conflict above
selecting libpoppler-qt4-devel-0.16.7-2.mga2.i586
requiring
devel(libQtCore),devel(libQtGui),devel(libQtXml),devel(libpoppler),libpoppler-devel[==
0.16.7],libpoppler-qt4-3[== 0.16.7] for
libpoppler-qt4-devel-0.16.7-2.mga2.i586
chosen libqt4-devel-4.7.3-1.mga1.i586 for devel(libQtCore)
selecting libqt4-devel-4.7.3-1.mga1.i586
requiring
devel(libGL),devel(libX11),devel(libXext),devel(libXrender),devel(libasound),devel(libdbus-1),devel(libfontconfig),devel(libfreetype),devel(libglib-2.0),devel(libgobject-2.0),devel(libgthread-2.0),devel(libphonon),devel(libpng12),libQt3Support.so.4,libqt3support4[==
4:4.7.3],libqtclucene4[== 4:4.7.3],libqtdesigner4[==
4:4.7.3],libqthelp4[== 4:4.7.3],libqtmultimedia4[==
4:4.7.3],libqtopengl4[== 4:4.7.3],libqttest4[== 4:4.7.3] for
libqt4-devel-4.7.3-1.mga1.i586
chosen libxrender1-devel-0.9.6-1.mga1.i586 for devel(libXrender)
selecting libxrender1-devel-0.9.6-1.mga1.i586
requiring devel(libX11) for libxrender1-devel-0.9.6-1.mga1.i586
chosen libx11_6-devel-1.4.3-1.mga1.i586 for devel(libX11)
selecting libx11_6-devel-1.4.3-1.mga1.i586
requiring devel(libxcb) for libx11_6-devel-1.4.3-1.mga1.i586
chosen libxcb-devel-1.7-2.mga2.i586 for devel(libxcb)
selecting libxcb-devel-1.7-2.mga2.i586
requiring libxcb-dri2_0[== 1.7],libxcb-xevie0[== 1.7],libxcb-xf86dri0[==
1.7],libxcb-xtest0[== 1.7] for libxcb-devel-1.7-2.mga2.i586
chosen libxcb-xf86dri0-1.7-2.mga2.i586 for libxcb-xf86dri0[== 1.7]
selecting libxcb-xf86dri0-1.7-2.mga2.i586
chosen libxcb-xtest0-1.7-2.mga2.i586 for libxcb-xtest0[== 1.7]
selecting libxcb-xtest0-1.7-2.mga2.i586
chosen libxcb-xevie0-1.7-2.mga2.i586 for libxcb-xevie0[== 1.7]
selecting libxcb-xevie0-1.7-2.mga2.i586
chosen libxcb-dri2_0-1.7-2.mga2.i586 for libxcb-dri2_0[== 1.7]
selecting libxcb-dri2_0-1.7-2.mga2.i586
chosen libqthelp4-4.7.3-1.mga1.i586 for libqthelp4[== 4:4.7.3]
selecting libqthelp4-4.7.3-1.mga1.i586
requiring libQtCLucene.so.4 for libqthelp4-4.7.3-1.mga1.i586
chosen libqtclucene4-4.7.3-1.mga1.i586 for libQtCLucene.so.4
selecting libqtclucene4-4.7.3-1.mga1.i586
chosen libx11_6-devel-1.4.3-1.mga1.i586 for devel(libX11)
chosen libxext6-devel-1.3.0-1.mga2.i586 for devel(libXext)
selecting libxext6-devel-1.3.0-1.mga2.i586
chosen libqtopengl4-4.7.3-1.mga1.i586 for libqtopengl4[== 4:4.7.3]
selecting libqtopengl4-4.7.3-1.mga1.i586
chosen libglib2.0-devel-2.29.10-1.mga2.i586 for devel(libglib-2.0)
selecting libglib2.0-devel-2.29.10-1.mga2.i586
requiring devel(libffi),devel(libpcre) for
libglib2.0-devel-2.29.10-1.mga2.i586
chosen libpcre-devel-8.12-3.mga1.i586 for devel(libpcre)
selecting libpcre-devel-8.12-3.mga1.i586
chosen libffi5-devel-3.0.9-4.mga1.i586 for devel(libffi)
selecting libffi5-devel-3.0.9-4.mga1.i586
chosen libqtmultimedia4-4.7.3-1.mga1.i586 for libqtmultimedia4[== 4:4.7.3]
selecting libqtmultimedia4-4.7.3-1.mga1.i586
chosen libqtdesigner4-4.7.3-1.mga1.i586 for libqtdesigner4[== 4:4.7.3]
selecting libqtdesigner4-4.7.3-1.mga1.i586
chosen libpng-devel-1.2.46-1.mga2.i586 for devel(libpng12)
selecting libpng-devel-1.2.46-1.mga2.i586
chosen libglib2.0-devel-2.29.10-1.mga2.i586 for devel(libgobject-2.0)
chosen libalsa2-devel-1.0.24.1-3.mga1.i586 for devel(libasound)
selecting libalsa2-devel-1.0.24.1-3.mga1.i586
chosen libqt3support4-4.7.3-1.mga1.i586 for libQt3Support.so.4
selecting libqt3support4-4.7.3-1.mga1.i586
chosen libqt3support4-4.7.3-1.mga1.i586 for libqt3support4[== 4:4.7.3]
chosen libfontconfig-devel-2.8.0-5.mga1.i586 for devel(libfontconfig)
selecting libfontconfig-devel-2.8.0-5.mga1.i586
requiring devel(libfreetype),devel(libxml2) for
libfontconfig-devel-2.8.0-5.mga1.i586
chosen libxml2-devel-2.7.8-10.mga2.i586 for devel(libxml2)
selecting libxml2-devel-2.7.8-10.mga2.i586
chosen libfreetype6-devel-2.4.5-1.mga2.i586 for devel(libfreetype)
selecting libfreetype6-devel-2.4.5-1.mga2.i586
chosen libfreetype6-devel-2.4.5-1.mga2.i586 for devel(libfreetype)
chosen libmesagl1-devel-7.11-0.rc1.1.git20110712.1.mga2.i586 for
devel(libGL)
selecting libmesagl1-devel-7.11-0.rc1.1.git20110712.1.mga2.i586
requiring
devel(libXdamage),devel(libXfixes),devel(libXxf86vm),devel(libdrm) for
libmesagl1-devel-7.11-0.rc1.1.git20110712.1.mga2.i586
chosen libxxf86vm-devel-1.1.1-2.mga1.i586 for devel(libXxf86vm)
selecting libxxf86vm-devel-1.1.1-2.mga1.i586
chosen libxdamage-devel-1.1.3-1.mga1.i586 for devel(libXdamage)
selecting libxdamage-devel-1.1.3-1.mga1.i586
chosen libxfixes3-devel-5.0-1.mga1.i586 for devel(libXfixes)
selecting libxfixes3-devel-5.0-1.mga1.i586
chosen libdrm-devel-2.4.26-1.mga2.i586 for devel(libdrm)
selecting libdrm-devel-2.4.26-1.mga2.i586
requiring libdrm_nouveau1[== 2.4.26],libkms1[== 2.4.26] for
libdrm-devel-2.4.26-1.mga2.i586
chosen libdrm_nouveau1-2.4.26-1.mga2.i586 for libdrm_nouveau1[== 2.4.26]
selecting libdrm_nouveau1-2.4.26-1.mga2.i586
chosen libkms1-2.4.26-1.mga2.i586 for libkms1[== 2.4.26]
selecting libkms1-2.4.26-1.mga2.i586
chosen libglib2.0-devel-2.29.10-1.mga2.i586 for devel(libgthread-2.0)
chosen libqttest4-4.7.3-1.mga1.i586 for libqttest4[== 4:4.7.3]
selecting libqttest4-4.7.3-1.mga1.i586
no packages match devel(libphonon) (it is either in skip.list or already
rejected)
no packages match phonon-devel (it is either in skip.list or already
rejected)
unselecting libqt4-devel-4.7.3-1.mga1.i586
unselecting libpoppler-qt4-devel-0.16.7-2.mga2.i586
adding a reason to already rejected package
libqt4-devel-4.7.3-1.mga1.i586: unsatisfied 31064
unselecting lib64poppler-qt4-devel-0.16.7-2.mga2.x86_64
Some requested packages cannot be installed:
db51-utils-5.1.25-5.mga2.x86_64 (in order to keep
openldap-servers-2.4.25-1.mga1.x86_64)
kipi-plugins-2.0.0-0.rc.1.mga2.x86_64 (in order to keep
lib64kipiplugins1-1.9.0-4.mga2.x86_64)
lib64poppler-qt4-devel-0.16.7-2.mga2.x86_64 (trying to promote
libpoppler-qt4-devel)
libqt4-devel-4.7.3-1.mga1.i586 (due to unsatisfied
phonon-devel-4.5.0-2.mga2.i586)
libreoffice-base-3.4.2.1-2.mga2.x86_64 (due to conflicts with
libreoffice-core-3.4.2.1-2.mga2.x86_64, trying to promote libreoffice-core)
libreoffice-calc-3.4.2.1-2.mga2.x86_64 (due to conflicts with
libreoffice-core-3.4.2.1-2.mga2.x86_64, trying to promote libreoffice-core)
libreoffice-core-3.4.2.1-2.mga2.x86_64 (in order to keep
libreoffice-langpack-br-3.3.2.2-14.mga1.x86_64)
libreoffice-draw-3.4.2.1-2.mga2.x86_64 (due to conflicts with
libreoffice-core-3.4.2.1-2.mga2.x86_64, trying to promote libreoffice-core)
libreoffice-graphicfilter-3.4.2.1-2.mga2.x86_64 (due to conflicts with
libreoffice-core-3.4.2.1-2.mga2.x86_64, trying to promote libreoffice-core)
libreoffice-impress-3.4.2.1-2.mga2.x86_64 (due to conflicts with
libreoffice-core-3.4.2.1-2.mga2.x86_64, trying to promote libreoffice-core)
libreoffice-langpack-it-3.4.2.1-2.mga2.x86_64 (due to conflicts with
libreoffice-core-3.4.2.1-2.mga2.x86_64, trying to promote libreoffice-core)
libreoffice-opensymbol-fonts-3.4.2.1-2.mga2.noarch (in order to keep
libreoffice-core-3.3.2.2-14.mga1.x86_64)
libreoffice-pyuno-3.4.2.1-2.mga2.x86_64 (due to conflicts with
libreoffice-core-3.4.2.1-2.mga2.x86_64, trying to promote libreoffice-core)
libreoffice-ure-3.4.2.1-2.mga2.x86_64 (in order to keep
libreoffice-core-3.3.2.2-14.mga1.x86_64)
libreoffice-writer-3.4.2.1-2.mga2.x86_64 (due to conflicts with
libreoffice-core-3.4.2.1-2.mga2.x86_64, trying to promote libreoffice-core)
Continue installation anyway? (Y/n)
To satisfy dependencies, the following packages are going to be installed:
Package Version Release Arch
(medium "Core 32bit Release")
libalsa2-devel 1.0.24.1 3.mga1 i586
libdbus-1_3 1.4.12 1.mga2 i586
libdrm-devel 2.4.26 1.mga2 i586
libdrm_nouveau1 2.4.26 1.mga2 i586
libffi5-devel 3.0.9 4.mga1 i586
libfontconfig-devel 2.8.0 5.mga1 i586
libfreetype6-devel 2.4.5 1.mga2 i586
libglib2.0-devel 2.29.10 1.mga2 i586
libkms1 2.4.26 1.mga2 i586
libmesagl1-devel 7.11 0.rc1.1.git2> i586
libpcre-devel 8.12 3.mga1 i586
libpng-devel 1.2.46 1.mga2 i586
libpng3 1.2.46 1.mga2 i586
libqt3support4 4.7.3 1.mga1 i586
libqtclucene4 4.7.3 1.mga1 i586
libqtdesigner4 4.7.3 1.mga1 i586
libqthelp4 4.7.3 1.mga1 i586
libqtmultimedia4 4.7.3 1.mga1 i586
libqtopengl4 4.7.3 1.mga1 i586
libqttest4 4.7.3 1.mga1 i586
libx11_6-devel 1.4.3 1.mga1 i586
libxcb-devel 1.7 2.mga2 i586
libxcb-dri2_0 1.7 2.mga2 i586
libxcb-xevie0 1.7 2.mga2 i586
libxcb-xf86dri0 1.7 2.mga2 i586
libxcb-xtest0 1.7 2.mga2 i586
libxdamage-devel 1.1.3 1.mga1 i586
libxext6-devel 1.3.0 1.mga2 i586
libxfixes3-devel 5.0 1.mga1 i586
libxml2-devel 2.7.8 10.mga2 i586
libxrender1-devel 0.9.6 1.mga1 i586
libxxf86vm-devel 1.1.1 2.mga1 i586
70MB of additional disk space will be used.
13MB of packages will be retrieved.
Proceed with the installation of the 32 packages? (Y/n)
opening rpmdb (root=, write=)
getting graph of dependencies for sorting
sorting graph of dependencies
rpms sorted by dependencies:
libxcb-xtest0
libxcb-xf86dri0
libxcb-xevie0
libxcb-dri2_0
libxcb-devel
libx11_6-devel
libxfixes3-devel
libxdamage-devel
libxrender1-devel
libqttest4
libqt3support4
libalsa2-devel
libqtdesigner4
libqtclucene4
libqthelp4
libpcre-devel
libxml2-devel
libfreetype6-devel
libfontconfig-devel
libqtopengl4
libxext6-devel
libxxf86vm-devel
libqtmultimedia4
libffi5-devel
libkms1
libdrm_nouveau1
libdrm-devel
libglib2.0-devel
libmesagl1-devel
libdbus-1_3
libpng3
libpng-devel
selecting libxfixes3-devel-5.0-1.mga1.i586
requiring devel(libX11) for libxfixes3-devel-5.0-1.mga1.i586
chosen libx11_6-devel-1.4.3-1.mga1.i586 for devel(libX11)
selecting libx11_6-devel-1.4.3-1.mga1.i586
requiring devel(libxcb) for libx11_6-devel-1.4.3-1.mga1.i586
chosen libxcb-devel-1.7-2.mga2.i586 for devel(libxcb)
selecting libxcb-devel-1.7-2.mga2.i586
requiring libxcb-dri2_0[== 1.7],libxcb-xevie0[== 1.7],libxcb-xf86dri0[==
1.7],libxcb-xtest0[== 1.7] for libxcb-devel-1.7-2.mga2.i586
chosen libxcb-xf86dri0-1.7-2.mga2.i586 for libxcb-xf86dri0[== 1.7]
selecting libxcb-xf86dri0-1.7-2.mga2.i586
chosen libxcb-xtest0-1.7-2.mga2.i586 for libxcb-xtest0[== 1.7]
selecting libxcb-xtest0-1.7-2.mga2.i586
chosen libxcb-xevie0-1.7-2.mga2.i586 for libxcb-xevie0[== 1.7]
selecting libxcb-xevie0-1.7-2.mga2.i586
chosen libxcb-dri2_0-1.7-2.mga2.i586 for libxcb-dri2_0[== 1.7]
selecting libxcb-dri2_0-1.7-2.mga2.i586
selecting libxdamage-devel-1.1.3-1.mga1.i586
transaction valid: remove=
update=libxfixes3-devel,libxdamage-devel,libxcb-xevie0,libxcb-dri2_0,libx11_6-devel,libxcb-devel,libxcb-xf86dri0,libxcb-xtest0
selecting libqt3support4-4.7.3-1.mga1.i586
selecting libqttest4-4.7.3-1.mga1.i586
selecting libqthelp4-4.7.3-1.mga1.i586
requiring libQtCLucene.so.4 for libqthelp4-4.7.3-1.mga1.i586
chosen libqtclucene4-4.7.3-1.mga1.i586 for libQtCLucene.so.4
selecting libqtclucene4-4.7.3-1.mga1.i586
selecting libpcre-devel-8.12-3.mga1.i586
selecting libqtdesigner4-4.7.3-1.mga1.i586
selecting libalsa2-devel-1.0.24.1-3.mga1.i586
selecting libxrender1-devel-0.9.6-1.mga1.i586
transaction valid: remove=
update=libqt3support4,libqttest4,libqthelp4,libpcre-devel,libalsa2-devel,libqtdesigner4,libqtclucene4,libxrender1-devel
selecting libxml2-devel-2.7.8-10.mga2.i586
selecting libffi5-devel-3.0.9-4.mga1.i586
selecting libxext6-devel-1.3.0-1.mga2.i586
selecting libfontconfig-devel-2.8.0-5.mga1.i586
requiring devel(libfreetype) for libfontconfig-devel-2.8.0-5.mga1.i586
chosen libfreetype6-devel-2.4.5-1.mga2.i586 for devel(libfreetype)
selecting libfreetype6-devel-2.4.5-1.mga2.i586
selecting libqtopengl4-4.7.3-1.mga1.i586
selecting libxxf86vm-devel-1.1.1-2.mga1.i586
selecting libqtmultimedia4-4.7.3-1.mga1.i586
transaction valid: remove=
update=libxml2-devel,libffi5-devel,libxext6-devel,libqtopengl4,libxxf86vm-devel,libfreetype6-devel,libfontconfig-devel,libqtmultimedia4
selecting libpng-devel-1.2.46-1.mga2.i586
requiring libpng3[== 2:1.2.46-1.mga2] for libpng-devel-1.2.46-1.mga2.i586
chosen libpng3-1.2.46-1.mga2.i586 for libpng3[== 2:1.2.46-1.mga2]
selecting libpng3-1.2.46-1.mga2.i586
set_rejected: libpng3-1.2.44-3.mga1.i586
selecting libglib2.0-devel-2.29.10-1.mga2.i586
selecting libdrm_nouveau1-2.4.26-1.mga2.i586
selecting libmesagl1-devel-7.11-0.rc1.1.git20110712.1.mga2.i586
requiring devel(libdrm) for
libmesagl1-devel-7.11-0.rc1.1.git20110712.1.mga2.i586
chosen libdrm-devel-2.4.26-1.mga2.i586 for devel(libdrm)
selecting libdrm-devel-2.4.26-1.mga2.i586
requiring libkms1[== 2.4.26] for libdrm-devel-2.4.26-1.mga2.i586
chosen libkms1-2.4.26-1.mga2.i586 for libkms1[== 2.4.26]
selecting libkms1-2.4.26-1.mga2.i586
selecting libdbus-1_3-1.4.12-1.mga2.i586
set_rejected: libdbus-1_3-1.4.1-3.mga1.i586
transaction valid: remove=
update=libpng-devel,libkms1,libdrm_nouveau1,libmesagl1-devel,libdbus-1_3,libglib2.0-devel,libdrm-devel,libpng3
scheduled sets of transactions:
remove=0=
update=8=libxfixes3-devel,libxdamage-devel,libxcb-xevie0,libxcb-dri2_0,libx11_6-devel,libxcb-devel,libxcb-xf86dri0,libxcb-xtest0
remove=0=
update=8=libqt3support4,libqttest4,libqthelp4,libpcre-devel,libalsa2-devel,libqtdesigner4,libqtclucene4,libxrender1-devel
remove=0=
update=8=libxml2-devel,libffi5-devel,libxext6-devel,libqtopengl4,libxxf86vm-devel,libfreetype6-devel,libfontconfig-devel,libqtmultimedia4
remove=0=
update=8=libpng-devel,libkms1,libdrm_nouveau1,libmesagl1-devel,libdbus-1_3,libglib2.0-devel,libdrm-devel,libpng3
verifying signature of
/mnt/cooker/cauldron/i586/media/core/release/libxcb-devel-1.7-2.mga2.i586.rpm
verifying signature of
/mnt/cooker/cauldron/i586/media/core/release/libxcb-xf86dri0-1.7-2.mga2.i586.rpm
verifying signature of
/mnt/cooker/cauldron/i586/media/core/release/libxfixes3-devel-5.0-1.mga1.i586.rpm
verifying signature of
/mnt/cooker/cauldron/i586/media/core/release/libxcb-xtest0-1.7-2.mga2.i586.rpm
verifying signature of
/mnt/cooker/cauldron/i586/media/core/release/libxcb-xevie0-1.7-2.mga2.i586.rpm
verifying signature of
/mnt/cooker/cauldron/i586/media/core/release/libxdamage-devel-1.1.3-1.mga1.i586.rpm
verifying signature of
/mnt/cooker/cauldron/i586/media/core/release/libx11_6-devel-1.4.3-1.mga1.i586.rpm
verifying signature of
/mnt/cooker/cauldron/i586/media/core/release/libxcb-dri2_0-1.7-2.mga2.i586.rpm
installing libxcb-devel-1.7-2.mga2.i586.rpm
libxcb-xf86dri0-1.7-2.mga2.i586.rpm libxfixes3-devel-5.0-1.mga1.i586.rpm
libxcb-xtest0-1.7-2.mga2.i586.rpm libxcb-xevie0-1.7-2.mga2.i586.rpm
libxdamage-devel-1.1.3-1.mga1.i586.rpm
libx11_6-devel-1.4.3-1.mga1.i586.rpm libxcb-dri2_0-1.7-2.mga2.i586.rpm
from /mnt/cooker/cauldron/i586/media/core/release
starting installing packages
opening rpmdb (root=, write=1)
created transaction for installing on / (remove=0, install=0, upgrade=8)
trans: scheduling update of libxcb-devel-1.7-2.mga2.i586 (id=31679,
file=/mnt/cooker/cauldron/i586/media/core/release/libxcb-devel-1.7-2.mga2.i586.rpm)
trans: scheduling update of libxcb-xf86dri0-1.7-2.mga2.i586 (id=31657,
file=/mnt/cooker/cauldron/i586/media/core/release/libxcb-xf86dri0-1.7-2.mga2.i586.rpm)
trans: scheduling update of libxfixes3-devel-5.0-1.mga1.i586 (id=22423,
file=/mnt/cooker/cauldron/i586/media/core/release/libxfixes3-devel-5.0-1.mga1.i586.rpm)
trans: scheduling update of libxcb-xtest0-1.7-2.mga2.i586 (id=31669,
file=/mnt/cooker/cauldron/i586/media/core/release/libxcb-xtest0-1.7-2.mga2.i586.rpm)
trans: scheduling update of libxcb-xevie0-1.7-2.mga2.i586 (id=31664,
file=/mnt/cooker/cauldron/i586/media/core/release/libxcb-xevie0-1.7-2.mga2.i586.rpm)
trans: scheduling update of libxdamage-devel-1.1.3-1.mga1.i586
(id=21961,
file=/mnt/cooker/cauldron/i586/media/core/release/libxdamage-devel-1.1.3-1.mga1.i586.rpm)
trans: scheduling update of libx11_6-devel-1.4.3-1.mga1.i586 (id=23138,
file=/mnt/cooker/cauldron/i586/media/core/release/libx11_6-devel-1.4.3-1.mga1.i586.rpm)
trans: scheduling update of libxcb-dri2_0-1.7-2.mga2.i586 (id=31661,
file=/mnt/cooker/cauldron/i586/media/core/release/libxcb-dri2_0-1.7-2.mga2.i586.rpm)
Preparing...
#############################################
Installation failed:
file /usr/share/doc/libX11/Compose/C.html from install of
libx11_6-devel-1.4.3-1.mga1.i586 conflicts with file from package
lib64x11_6-devel-1.4.3-1.mga1.x86_64
file /usr/share/doc/libX11/Compose/am_ET.UTF-8.html from
install of libx11_6-devel-1.4.3-1.mga1.i586 conflicts with file from
package lib64x11_6-devel-1.4.3-1.mga1.x86_64
file /usr/share/doc/libX11/Compose/armscii-8.html from install
of libx11_6-devel-1.4.3-1.mga1.i586 conflicts with file from package
lib64x11_6-devel-1.4.3-1.mga1.x86_64
file /usr/share/doc/libX11/Compose/el_GR.UTF-8.html from
install of libx11_6-devel-1.4.3-1.mga1.i586 conflicts with file from
package lib64x11_6-devel-1.4.3-1.mga1.x86_64
file /usr/share/doc/libX11/Compose/en_US.UTF-8.html from
install of libx11_6-devel-1.4.3-1.mga1.i586 conflicts with file from
package lib64x11_6-devel-1.4.3-1.mga1.x86_64
file /usr/share/doc/libX11/Compose/fi_FI.UTF-8.html from
install of libx11_6-devel-1.4.3-1.mga1.i586 conflicts with file from
package lib64x11_6-devel-1.4.3-1.mga1.x86_64
file /usr/share/doc/libX11/Compose/georgian-academy.html from
install of libx11_6-devel-1.4.3-1.mga1.i586 conflicts with file from
package lib64x11_6-devel-1.4.3-1.mga1.x86_64
file /usr/share/doc/libX11/Compose/georgian-ps.html from
install of libx11_6-devel-1.4.3-1.mga1.i586 conflicts with file from
package lib64x11_6-devel-1.4.3-1.mga1.x86_64
file /usr/share/doc/libX11/Compose/ibm-cp1133.html from install
of libx11_6-devel-1.4.3-1.mga1.i586 conflicts with file from package
lib64x11_6-devel-1.4.3-1.mga1.x86_64
file /usr/share/doc/libX11/Compose/index.html from install of
libx11_6-devel-1.4.3-1.mga1.i586 conflicts with file from package
lib64x11_6-devel-1.4.3-1.mga1.x86_64
file /usr/share/doc/libX11/Compose/iscii-dev.html from install
of libx11_6-devel-1.4.3-1.mga1.i586 conflicts with file from package
lib64x11_6-devel-1.4.3-1.mga1.x86_64
file /usr/share/doc/libX11/Compose/isiri-3342.html from install
of libx11_6-devel-1.4.3-1.mga1.i586 conflicts with file from package
lib64x11_6-devel-1.4.3-1.mga1.x86_64
file /usr/share/doc/libX11/Compose/iso8859-1.html from install
of libx11_6-devel-1.4.3-1.mga1.i586 conflicts with file from package
lib64x11_6-devel-1.4.3-1.mga1.x86_64
file /usr/share/doc/libX11/Compose/iso8859-10.html from install
of libx11_6-devel-1.4.3-1.mga1.i586 conflicts with file from package
lib64x11_6-devel-1.4.3-1.mga1.x86_64
file /usr/share/doc/libX11/Compose/iso8859-11.html from install
of libx11_6-devel-1.4.3-1.mga1.i586 conflicts with file from package
lib64x11_6-devel-1.4.3-1.mga1.x86_64
file /usr/share/doc/libX11/Compose/iso8859-13.html from install
of libx11_6-devel-1.4.3-1.mga1.i586 conflicts with file from package
lib64x11_6-devel-1.4.3-1.mga1.x86_64
file /usr/share/doc/libX11/Compose/iso8859-14.html from install
of libx11_6-devel-1.4.3-1.mga1.i586 conflicts with file from package
lib64x11_6-devel-1.4.3-1.mga1.x86_64
file /usr/share/doc/libX11/Compose/iso8859-15.html from install
of libx11_6-devel-1.4.3-1.mga1.i586 conflicts with file from package
lib64x11_6-devel-1.4.3-1.mga1.x86_64
file /usr/share/doc/libX11/Compose/iso8859-2.html from install
of libx11_6-devel-1.4.3-1.mga1.i586 conflicts with file from package
lib64x11_6-devel-1.4.3-1.mga1.x86_64
file /usr/share/doc/libX11/Compose/iso8859-3.html from install
of libx11_6-devel-1.4.3-1.mga1.i586 conflicts with file from package
lib64x11_6-devel-1.4.3-1.mga1.x86_64
file /usr/share/doc/libX11/Compose/iso8859-4.html from install
of libx11_6-devel-1.4.3-1.mga1.i586 conflicts with file from package
lib64x11_6-devel-1.4.3-1.mga1.x86_64
file /usr/share/doc/libX11/Compose/iso8859-5.html from install
of libx11_6-devel-1.4.3-1.mga1.i586 conflicts with file from package
lib64x11_6-devel-1.4.3-1.mga1.x86_64
file /usr/share/doc/libX11/Compose/iso8859-6.html from install
of libx11_6-devel-1.4.3-1.mga1.i586 conflicts with file from package
lib64x11_6-devel-1.4.3-1.mga1.x86_64
file /usr/share/doc/libX11/Compose/iso8859-7.html from install
of libx11_6-devel-1.4.3-1.mga1.i586 conflicts with file from package
lib64x11_6-devel-1.4.3-1.mga1.x86_64
file /usr/share/doc/libX11/Compose/iso8859-8.html from install
of libx11_6-devel-1.4.3-1.mga1.i586 conflicts with file from package
lib64x11_6-devel-1.4.3-1.mga1.x86_64
file /usr/share/doc/libX11/Compose/iso8859-9.html from install
of libx11_6-devel-1.4.3-1.mga1.i586 conflicts with file from package
lib64x11_6-devel-1.4.3-1.mga1.x86_64
file /usr/share/doc/libX11/Compose/iso8859-9e.html from install
of libx11_6-devel-1.4.3-1.mga1.i586 conflicts with file from package
lib64x11_6-devel-1.4.3-1.mga1.x86_64
file /usr/share/doc/libX11/Compose/ja.JIS.html from install of
libx11_6-devel-1.4.3-1.mga1.i586 conflicts with file from package
lib64x11_6-devel-1.4.3-1.mga1.x86_64
file /usr/share/doc/libX11/Compose/ja.S90.html from install of
libx11_6-devel-1.4.3-1.mga1.i586 conflicts with file from package
lib64x11_6-devel-1.4.3-1.mga1.x86_64
file /usr/share/doc/libX11/Compose/ja.SJIS.html from install of
libx11_6-devel-1.4.3-1.mga1.i586 conflicts with file from package
lib64x11_6-devel-1.4.3-1.mga1.x86_64
file /usr/share/doc/libX11/Compose/ja.U90.html from install of
libx11_6-devel-1.4.3-1.mga1.i586 conflicts with file from package
lib64x11_6-devel-1.4.3-1.mga1.x86_64
file /usr/share/doc/libX11/Compose/ja.html from install of
libx11_6-devel-1.4.3-1.mga1.i586 conflicts with file from package
lib64x11_6-devel-1.4.3-1.mga1.x86_64
file /usr/share/doc/libX11/Compose/ja_JP.UTF-8.html from
install of libx11_6-devel-1.4.3-1.mga1.i586 conflicts with file from
package lib64x11_6-devel-1.4.3-1.mga1.x86_64
file /usr/share/doc/libX11/Compose/ko.html from install of
libx11_6-devel-1.4.3-1.mga1.i586 conflicts with file from package
lib64x11_6-devel-1.4.3-1.mga1.x86_64
file /usr/share/doc/libX11/Compose/ko_KR.UTF-8.html from
install of libx11_6-devel-1.4.3-1.mga1.i586 conflicts with file from
package lib64x11_6-devel-1.4.3-1.mga1.x86_64
file /usr/share/doc/libX11/Compose/koi8-c.html from install of
libx11_6-devel-1.4.3-1.mga1.i586 conflicts with file from package
lib64x11_6-devel-1.4.3-1.mga1.x86_64
file /usr/share/doc/libX11/Compose/koi8-r.html from install of
libx11_6-devel-1.4.3-1.mga1.i586 conflicts with file from package
lib64x11_6-devel-1.4.3-1.mga1.x86_64
file /usr/share/doc/libX11/Compose/koi8-u.html from install of
libx11_6-devel-1.4.3-1.mga1.i586 conflicts with file from package
lib64x11_6-devel-1.4.3-1.mga1.x86_64
file /usr/share/doc/libX11/Compose/microsoft-cp1251.html from
install of libx11_6-devel-1.4.3-1.mga1.i586 conflicts with file from
package lib64x11_6-devel-1.4.3-1.mga1.x86_64
file /usr/share/doc/libX11/Compose/microsoft-cp1255.html from
install of libx11_6-devel-1.4.3-1.mga1.i586 conflicts with file from
package lib64x11_6-devel-1.4.3-1.mga1.x86_64
file /usr/share/doc/libX11/Compose/microsoft-cp1256.html from
install of libx11_6-devel-1.4.3-1.mga1.i586 conflicts with file from
package lib64x11_6-devel-1.4.3-1.mga1.x86_64
file /usr/share/doc/libX11/Compose/mulelao-1.html from install
of libx11_6-devel-1.4.3-1.mga1.i586 conflicts with file from package
lib64x11_6-devel-1.4.3-1.mga1.x86_64
file /usr/share/doc/libX11/Compose/nokhchi-1.html from install
of libx11_6-devel-1.4.3-1.mga1.i586 conflicts with file from package
lib64x11_6-devel-1.4.3-1.mga1.x86_64
file /usr/share/doc/libX11/Compose/pt_BR.UTF-8.html from
install of libx11_6-devel-1.4.3-1.mga1.i586 conflicts with file from
package lib64x11_6-devel-1.4.3-1.mga1.x86_64
file /usr/share/doc/libX11/Compose/ru_RU.UTF-8.html from
install of libx11_6-devel-1.4.3-1.mga1.i586 conflicts with file from
package lib64x11_6-devel-1.4.3-1.mga1.x86_64
file /usr/share/doc/libX11/Compose/tatar-cyr.html from install
of libx11_6-devel-1.4.3-1.mga1.i586 conflicts with file from package
lib64x11_6-devel-1.4.3-1.mga1.x86_64
file /usr/share/doc/libX11/Compose/th_TH.UTF-8.html from
install of libx11_6-devel-1.4.3-1.mga1.i586 conflicts with file from
package lib64x11_6-devel-1.4.3-1.mga1.x86_64
file /usr/share/doc/libX11/Compose/th_TH.html from install of
libx11_6-devel-1.4.3-1.mga1.i586 conflicts with file from package
lib64x11_6-devel-1.4.3-1.mga1.x86_64
file /usr/share/doc/libX11/Compose/tscii-0.html from install of
libx11_6-devel-1.4.3-1.mga1.i586 conflicts with file from package
lib64x11_6-devel-1.4.3-1.mga1.x86_64
file /usr/share/doc/libX11/Compose/vi_VN.tcvn.html from install
of libx11_6-devel-1.4.3-1.mga1.i586 conflicts with file from package
lib64x11_6-devel-1.4.3-1.mga1.x86_64
file /usr/share/doc/libX11/Compose/vi_VN.viscii.html from
install of libx11_6-devel-1.4.3-1.mga1.i586 conflicts with file from
package lib64x11_6-devel-1.4.3-1.mga1.x86_64
file /usr/share/doc/libX11/Compose/zh_CN.UTF-8.html from
install of libx11_6-devel-1.4.3-1.mga1.i586 conflicts with file from
package lib64x11_6-devel-1.4.3-1.mga1.x86_64
file /usr/share/doc/libX11/Compose/zh_CN.gb18030.html from
install of libx11_6-devel-1.4.3-1.mga1.i586 conflicts with file from
package lib64x11_6-devel-1.4.3-1.mga1.x86_64
file /usr/share/doc/libX11/Compose/zh_CN.gbk.html from install
of libx11_6-devel-1.4.3-1.mga1.i586 conflicts with file from package
lib64x11_6-devel-1.4.3-1.mga1.x86_64
file /usr/share/doc/libX11/Compose/zh_CN.html from install of
libx11_6-devel-1.4.3-1.mga1.i586 conflicts with file from package
lib64x11_6-devel-1.4.3-1.mga1.x86_64
file /usr/share/doc/libX11/Compose/zh_HK.UTF-8.html from
install of libx11_6-devel-1.4.3-1.mga1.i586 conflicts with file from
package lib64x11_6-devel-1.4.3-1.mga1.x86_64
file /usr/share/doc/libX11/Compose/zh_HK.big5.html from install
of libx11_6-devel-1.4.3-1.mga1.i586 conflicts with file from package
lib64x11_6-devel-1.4.3-1.mga1.x86_64
file /usr/share/doc/libX11/Compose/zh_HK.big5hkscs.html from
install of libx11_6-devel-1.4.3-1.mga1.i586 conflicts with file from
package lib64x11_6-devel-1.4.3-1.mga1.x86_64
file /usr/share/doc/libX11/Compose/zh_TW.UTF-8.html from
install of libx11_6-devel-1.4.3-1.mga1.i586 conflicts with file from
package lib64x11_6-devel-1.4.3-1.mga1.x86_64
file /usr/share/doc/libX11/Compose/zh_TW.big5.html from install
of libx11_6-devel-1.4.3-1.mga1.i586 conflicts with file from package
lib64x11_6-devel-1.4.3-1.mga1.x86_64
file /usr/share/doc/libX11/Compose/zh_TW.html from install of
libx11_6-devel-1.4.3-1.mga1.i586 conflicts with file from package
lib64x11_6-devel-1.4.3-1.mga1.x86_64
file /usr/share/doc/libX11/XIM/xim.html from install of
libx11_6-devel-1.4.3-1.mga1.i586 conflicts with file from package
lib64x11_6-devel-1.4.3-1.mga1.x86_64
file /usr/share/doc/libX11/XKB/xkblib.html from install of
libx11_6-devel-1.4.3-1.mga1.i586 conflicts with file from package
lib64x11_6-devel-1.4.3-1.mga1.x86_64
file /usr/share/doc/libX11/framework/framework.html from
install of libx11_6-devel-1.4.3-1.mga1.i586 conflicts with file from
package lib64x11_6-devel-1.4.3-1.mga1.x86_64
file /usr/share/doc/libX11/libX11.html from install of
libx11_6-devel-1.4.3-1.mga1.i586 conflicts with file from package
lib64x11_6-devel-1.4.3-1.mga1.x86_64
file /usr/share/doc/libX11/localedb/localedb.html from install
of libx11_6-devel-1.4.3-1.mga1.i586 conflicts with file from package
lib64x11_6-devel-1.4.3-1.mga1.x86_64
file /usr/share/doc/libX11/trans/trans.html from install of
libx11_6-devel-1.4.3-1.mga1.i586 conflicts with file from package
lib64x11_6-devel-1.4.3-1.mga1.x86_64
verifying signature of
/mnt/cooker/cauldron/i586/media/core/release/libpcre-devel-8.12-3.mga1.i586.rpm
verifying signature of
/mnt/cooker/cauldron/i586/media/core/release/libqt3support4-4.7.3-1.mga1.i586.rpm
verifying signature of
/mnt/cooker/cauldron/i586/media/core/release/libqtdesigner4-4.7.3-1.mga1.i586.rpm
verifying signature of
/mnt/cooker/cauldron/i586/media/core/release/libalsa2-devel-1.0.24.1-3.mga1.i586.rpm
verifying signature of
/mnt/cooker/cauldron/i586/media/core/release/libqttest4-4.7.3-1.mga1.i586.rpm
verifying signature of
/mnt/cooker/cauldron/i586/media/core/release/libqthelp4-4.7.3-1.mga1.i586.rpm
verifying signature of
/mnt/cooker/cauldron/i586/media/core/release/libqtclucene4-4.7.3-1.mga1.i586.rpm
verifying signature of
/mnt/cooker/cauldron/i586/media/core/release/libxrender1-devel-0.9.6-1.mga1.i586.rpm
installing libpcre-devel-8.12-3.mga1.i586.rpm
libqt3support4-4.7.3-1.mga1.i586.rpm
libqtdesigner4-4.7.3-1.mga1.i586.rpm
libalsa2-devel-1.0.24.1-3.mga1.i586.rpm libqttest4-4.7.3-1.mga1.i586.rpm
libqthelp4-4.7.3-1.mga1.i586.rpm libqtclucene4-4.7.3-1.mga1.i586.rpm
libxrender1-devel-0.9.6-1.mga1.i586.rpm from
/mnt/cooker/cauldron/i586/media/core/release
starting installing packages
opening rpmdb (root=, write=1)
created transaction for installing on / (remove=0, install=0, upgrade=8)
trans: scheduling update of libpcre-devel-8.12-3.mga1.i586 (id=25897,
file=/mnt/cooker/cauldron/i586/media/core/release/libpcre-devel-8.12-3.mga1.i586.rpm)
trans: scheduling update of libqt3support4-4.7.3-1.mga1.i586 (id=23979,
file=/mnt/cooker/cauldron/i586/media/core/release/libqt3support4-4.7.3-1.mga1.i586.rpm)
trans: scheduling update of libqtdesigner4-4.7.3-1.mga1.i586 (id=24199,
file=/mnt/cooker/cauldron/i586/media/core/release/libqtdesigner4-4.7.3-1.mga1.i586.rpm)
trans: scheduling update of libalsa2-devel-1.0.24.1-3.mga1.i586
(id=24148,
file=/mnt/cooker/cauldron/i586/media/core/release/libalsa2-devel-1.0.24.1-3.mga1.i586.rpm)
trans: scheduling update of libqttest4-4.7.3-1.mga1.i586 (id=23871,
file=/mnt/cooker/cauldron/i586/media/core/release/libqttest4-4.7.3-1.mga1.i586.rpm)
trans: scheduling update of libqthelp4-4.7.3-1.mga1.i586 (id=24843,
file=/mnt/cooker/cauldron/i586/media/core/release/libqthelp4-4.7.3-1.mga1.i586.rpm)
trans: scheduling update of libqtclucene4-4.7.3-1.mga1.i586 (id=27541,
file=/mnt/cooker/cauldron/i586/media/core/release/libqtclucene4-4.7.3-1.mga1.i586.rpm)
trans: scheduling update of libxrender1-devel-0.9.6-1.mga1.i586
(id=22929,
file=/mnt/cooker/cauldron/i586/media/core/release/libxrender1-devel-0.9.6-1.mga1.i586.rpm)
Installation failed:
devel(libX11) is needed by libxrender1-devel-0.9.6-1.mga1.i586
verifying signature of
/mnt/cooker/cauldron/i586/media/core/release/libqtopengl4-4.7.3-1.mga1.i586.rpm
verifying signature of
/mnt/cooker/cauldron/i586/media/core/release/libxml2-devel-2.7.8-10.mga2.i586.rpm
verifying signature of
/mnt/cooker/cauldron/i586/media/core/release/libffi5-devel-3.0.9-4.mga1.i586.rpm
verifying signature of
/mnt/cooker/cauldron/i586/media/core/release/libfreetype6-devel-2.4.5-1.mga2.i586.rpm
verifying signature of
/mnt/cooker/cauldron/i586/media/core/release/libxxf86vm-devel-1.1.1-2.mga1.i586.rpm
verifying signature of
/mnt/cooker/cauldron/i586/media/core/release/libqtmultimedia4-4.7.3-1.mga1.i586.rpm
verifying signature of
/mnt/cooker/cauldron/i586/media/core/release/libxext6-devel-1.3.0-1.mga2.i586.rpm
verifying signature of
/mnt/cooker/cauldron/i586/media/core/release/libfontconfig-devel-2.8.0-5.mga1.i586.rpm
installing libqtopengl4-4.7.3-1.mga1.i586.rpm
libxml2-devel-2.7.8-10.mga2.i586.rpm libffi5-devel-3.0.9-4.mga1.i586.rpm
libfreetype6-devel-2.4.5-1.mga2.i586.rpm
libxxf86vm-devel-1.1.1-2.mga1.i586.rpm
libqtmultimedia4-4.7.3-1.mga1.i586.rpm
libxext6-devel-1.3.0-1.mga2.i586.rpm
libfontconfig-devel-2.8.0-5.mga1.i586.rpm from
/mnt/cooker/cauldron/i586/media/core/release
starting installing packages
opening rpmdb (root=, write=1)
created transaction for installing on / (remove=0, install=0, upgrade=8)
trans: scheduling update of libqtopengl4-4.7.3-1.mga1.i586 (id=27591,
file=/mnt/cooker/cauldron/i586/media/core/release/libqtopengl4-4.7.3-1.mga1.i586.rpm)
trans: scheduling update of libxml2-devel-2.7.8-10.mga2.i586 (id=32822,
file=/mnt/cooker/cauldron/i586/media/core/release/libxml2-devel-2.7.8-10.mga2.i586.rpm)
trans: scheduling update of libffi5-devel-3.0.9-4.mga1.i586 (id=28138,
file=/mnt/cooker/cauldron/i586/media/core/release/libffi5-devel-3.0.9-4.mga1.i586.rpm)
trans: scheduling update of libfreetype6-devel-2.4.5-1.mga2.i586
(id=30919,
file=/mnt/cooker/cauldron/i586/media/core/release/libfreetype6-devel-2.4.5-1.mga2.i586.rpm)
trans: scheduling update of libxxf86vm-devel-1.1.1-2.mga1.i586
(id=27889,
file=/mnt/cooker/cauldron/i586/media/core/release/libxxf86vm-devel-1.1.1-2.mga1.i586.rpm)
trans: scheduling update of libqtmultimedia4-4.7.3-1.mga1.i586
(id=27962,
file=/mnt/cooker/cauldron/i586/media/core/release/libqtmultimedia4-4.7.3-1.mga1.i586.rpm)
trans: scheduling update of libxext6-devel-1.3.0-1.mga2.i586 (id=29481,
file=/mnt/cooker/cauldron/i586/media/core/release/libxext6-devel-1.3.0-1.mga2.i586.rpm)
trans: scheduling update of libfontconfig-devel-2.8.0-5.mga1.i586
(id=27384,
file=/mnt/cooker/cauldron/i586/media/core/release/libfontconfig-devel-2.8.0-5.mga1.i586.rpm)
Installation failed:
devel(libX11) is needed by libxxf86vm-devel-1.1.1-2.mga1.i586
devel(libX11) is needed by libxext6-devel-1:1.3.0-1.mga2.i586
verifying signature of
/mnt/cooker/cauldron/i586/media/core/release/libpng-devel-1.2.46-1.mga2.i586.rpm
verifying signature of
/mnt/cooker/cauldron/i586/media/core/release/libglib2.0-devel-2.29.10-1.mga2.i586.rpm
verifying signature of
/mnt/cooker/cauldron/i586/media/core/release/libdrm_nouveau1-2.4.26-1.mga2.i586.rpm
verifying signature of
/mnt/cooker/cauldron/i586/media/core/release/libmesagl1-devel-7.11-0.rc1.1.git20110712.1.mga2.i586.rpm
verifying signature of
/mnt/cooker/cauldron/i586/media/core/release/libdrm-devel-2.4.26-1.mga2.i586.rpm
verifying signature of
/mnt/cooker/cauldron/i586/media/core/release/libpng3-1.2.46-1.mga2.i586.rpm
verifying signature of
/mnt/cooker/cauldron/i586/media/core/release/libdbus-1_3-1.4.12-1.mga2.i586.rpm
verifying signature of
/mnt/cooker/cauldron/i586/media/core/release/libkms1-2.4.26-1.mga2.i586.rpm
installing libpng-devel-1.2.46-1.mga2.i586.rpm
libglib2.0-devel-2.29.10-1.mga2.i586.rpm
libdrm_nouveau1-2.4.26-1.mga2.i586.rpm
libmesagl1-devel-7.11-0.rc1.1.git20110712.1.mga2.i586.rpm
libdrm-devel-2.4.26-1.mga2.i586.rpm libpng3-1.2.46-1.mga2.i586.rpm
libdbus-1_3-1.4.12-1.mga2.i586.rpm libkms1-2.4.26-1.mga2.i586.rpm from
/mnt/cooker/cauldron/i586/media/core/release
starting installing packages
opening rpmdb (root=, write=1)
created transaction for installing on / (remove=0, install=0, upgrade=8)
trans: scheduling update of libpng-devel-1.2.46-1.mga2.i586 (id=33550,
file=/mnt/cooker/cauldron/i586/media/core/release/libpng-devel-1.2.46-1.mga2.i586.rpm)
trans: scheduling update of libglib2.0-devel-2.29.10-1.mga2.i586
(id=32011,
file=/mnt/cooker/cauldron/i586/media/core/release/libglib2.0-devel-2.29.10-1.mga2.i586.rpm)
trans: scheduling update of libdrm_nouveau1-2.4.26-1.mga2.i586
(id=28586,
file=/mnt/cooker/cauldron/i586/media/core/release/libdrm_nouveau1-2.4.26-1.mga2.i586.rpm)
trans: scheduling update of
libmesagl1-devel-7.11-0.rc1.1.git20110712.1.mga2.i586 (id=33053,
file=/mnt/cooker/cauldron/i586/media/core/release/libmesagl1-devel-7.11-0.rc1.1.git20110712.1.mga2.i586.rpm)
trans: scheduling update of libdrm-devel-2.4.26-1.mga2.i586 (id=28587,
file=/mnt/cooker/cauldron/i586/media/core/release/libdrm-devel-2.4.26-1.mga2.i586.rpm)
trans: scheduling update of libpng3-1.2.46-1.mga2.i586 (id=33549,
file=/mnt/cooker/cauldron/i586/media/core/release/libpng3-1.2.46-1.mga2.i586.rpm)
trans: scheduling update of libdbus-1_3-1.4.12-1.mga2.i586 (id=33532,
file=/mnt/cooker/cauldron/i586/media/core/release/libdbus-1_3-1.4.12-1.mga2.i586.rpm)
trans: scheduling update of libkms1-2.4.26-1.mga2.i586 (id=28583,
file=/mnt/cooker/cauldron/i586/media/core/release/libkms1-2.4.26-1.mga2.i586.rpm)
Installation failed:
devel(libffi) is needed by libglib2.0-devel-2.29.10-1.mga2.i586
devel(libpcre) is needed by libglib2.0-devel-2.29.10-1.mga2.i586
devel(libX11) is needed by
libmesagl1-devel-7.11-0.rc1.1.git20110712.1.mga2.i586
devel(libXdamage) is needed by
libmesagl1-devel-7.11-0.rc1.1.git20110712.1.mga2.i586
devel(libXext) is needed by
libmesagl1-devel-7.11-0.rc1.1.git20110712.1.mga2.i586
devel(libXfixes) is needed by
libmesagl1-devel-7.11-0.rc1.1.git20110712.1.mga2.i586
devel(libXxf86vm) is needed by
libmesagl1-devel-7.11-0.rc1.1.git20110712.1.mga2.i586
Installation failed: file /usr/share/doc/libX11/Compose/C.html from
install of libx11_6-devel-1.4.3-1.mga1.i586 conflicts with file from
package lib64x11_6-devel-1.4.3-1.mga1.x86_64
file /usr/share/doc/libX11/Compose/am_ET.UTF-8.html from
install of libx11_6-devel-1.4.3-1.mga1.i586 conflicts with file from
package lib64x11_6-devel-1.4.3-1.mga1.x86_64
file /usr/share/doc/libX11/Compose/armscii-8.html from install
of libx11_6-devel-1.4.3-1.mga1.i586 conflicts with file from package
lib64x11_6-devel-1.4.3-1.mga1.x86_64
file /usr/share/doc/libX11/Compose/el_GR.UTF-8.html from
install of libx11_6-devel-1.4.3-1.mga1.i586 conflicts with file from
package lib64x11_6-devel-1.4.3-1.mga1.x86_64
file /usr/share/doc/libX11/Compose/en_US.UTF-8.html from
install of libx11_6-devel-1.4.3-1.mga1.i586 conflicts with file from
package lib64x11_6-devel-1.4.3-1.mga1.x86_64
file /usr/share/doc/libX11/Compose/fi_FI.UTF-8.html from
install of libx11_6-devel-1.4.3-1.mga1.i586 conflicts with file from
package lib64x11_6-devel-1.4.3-1.mga1.x86_64
file /usr/share/doc/libX11/Compose/georgian-academy.html from
install of libx11_6-devel-1.4.3-1.mga1.i586 conflicts with file from
package lib64x11_6-devel-1.4.3-1.mga1.x86_64
file /usr/share/doc/libX11/Compose/georgian-ps.html from
install of libx11_6-devel-1.4.3-1.mga1.i586 conflicts with file from
package lib64x11_6-devel-1.4.3-1.mga1.x86_64
file /usr/share/doc/libX11/Compose/ibm-cp1133.html from install
of libx11_6-devel-1.4.3-1.mga1.i586 conflicts with file from package
lib64x11_6-devel-1.4.3-1.mga1.x86_64
file /usr/share/doc/libX11/Compose/index.html from install of
libx11_6-devel-1.4.3-1.mga1.i586 conflicts with file from package
lib64x11_6-devel-1.4.3-1.mga1.x86_64
file /usr/share/doc/libX11/Compose/iscii-dev.html from install
of libx11_6-devel-1.4.3-1.mga1.i586 conflicts with file from package
lib64x11_6-devel-1.4.3-1.mga1.x86_64
file /usr/share/doc/libX11/Compose/isiri-3342.html from install
of libx11_6-devel-1.4.3-1.mga1.i586 conflicts with file from package
lib64x11_6-devel-1.4.3-1.mga1.x86_64
file /usr/share/doc/libX11/Compose/iso8859-1.html from install
of libx11_6-devel-1.4.3-1.mga1.i586 conflicts with file from package
lib64x11_6-devel-1.4.3-1.mga1.x86_64
file /usr/share/doc/libX11/Compose/iso8859-10.html from install
of libx11_6-devel-1.4.3-1.mga1.i586 conflicts with file from package
lib64x11_6-devel-1.4.3-1.mga1.x86_64
file /usr/share/doc/libX11/Compose/iso8859-11.html from install
of libx11_6-devel-1.4.3-1.mga1.i586 conflicts with file from package
lib64x11_6-devel-1.4.3-1.mga1.x86_64
file /usr/share/doc/libX11/Compose/iso8859-13.html from install
of libx11_6-devel-1.4.3-1.mga1.i586 conflicts with file from package
lib64x11_6-devel-1.4.3-1.mga1.x86_64
file /usr/share/doc/libX11/Compose/iso8859-14.html from install
of libx11_6-devel-1.4.3-1.mga1.i586 conflicts with file from package
lib64x11_6-devel-1.4.3-1.mga1.x86_64
file /usr/share/doc/libX11/Compose/iso8859-15.html from install
of libx11_6-devel-1.4.3-1.mga1.i586 conflicts with file from package
lib64x11_6-devel-1.4.3-1.mga1.x86_64
file /usr/share/doc/libX11/Compose/iso8859-2.html from install
of libx11_6-devel-1.4.3-1.mga1.i586 conflicts with file from package
lib64x11_6-devel-1.4.3-1.mga1.x86_64
file /usr/share/doc/libX11/Compose/iso8859-3.html from install
of libx11_6-devel-1.4.3-1.mga1.i586 conflicts with file from package
lib64x11_6-devel-1.4.3-1.mga1.x86_64
file /usr/share/doc/libX11/Compose/iso8859-4.html from install
of libx11_6-devel-1.4.3-1.mga1.i586 conflicts with file from package
lib64x11_6-devel-1.4.3-1.mga1.x86_64
file /usr/share/doc/libX11/Compose/iso8859-5.html from install
of libx11_6-devel-1.4.3-1.mga1.i586 conflicts with file from package
lib64x11_6-devel-1.4.3-1.mga1.x86_64
file /usr/share/doc/libX11/Compose/iso8859-6.html from install
of libx11_6-devel-1.4.3-1.mga1.i586 conflicts with file from package
lib64x11_6-devel-1.4.3-1.mga1.x86_64
file /usr/share/doc/libX11/Compose/iso8859-7.html from install
of libx11_6-devel-1.4.3-1.mga1.i586 conflicts with file from package
lib64x11_6-devel-1.4.3-1.mga1.x86_64
file /usr/share/doc/libX11/Compose/iso8859-8.html from install
of libx11_6-devel-1.4.3-1.mga1.i586 conflicts with file from package
lib64x11_6-devel-1.4.3-1.mga1.x86_64
file /usr/share/doc/libX11/Compose/iso8859-9.html from install
of libx11_6-devel-1.4.3-1.mga1.i586 conflicts with file from package
lib64x11_6-devel-1.4.3-1.mga1.x86_64
file /usr/share/doc/libX11/Compose/iso8859-9e.html from install
of libx11_6-devel-1.4.3-1.mga1.i586 conflicts with file from package
lib64x11_6-devel-1.4.3-1.mga1.x86_64
file /usr/share/doc/libX11/Compose/ja.JIS.html from install of
libx11_6-devel-1.4.3-1.mga1.i586 conflicts with file from package
lib64x11_6-devel-1.4.3-1.mga1.x86_64
file /usr/share/doc/libX11/Compose/ja.S90.html from install of
libx11_6-devel-1.4.3-1.mga1.i586 conflicts with file from package
lib64x11_6-devel-1.4.3-1.mga1.x86_64
file /usr/share/doc/libX11/Compose/ja.SJIS.html from install of
libx11_6-devel-1.4.3-1.mga1.i586 conflicts with file from package
lib64x11_6-devel-1.4.3-1.mga1.x86_64
file /usr/share/doc/libX11/Compose/ja.U90.html from install of
libx11_6-devel-1.4.3-1.mga1.i586 conflicts with file from package
lib64x11_6-devel-1.4.3-1.mga1.x86_64
file /usr/share/doc/libX11/Compose/ja.html from install of
libx11_6-devel-1.4.3-1.mga1.i586 conflicts with file from package
lib64x11_6-devel-1.4.3-1.mga1.x86_64
file /usr/share/doc/libX11/Compose/ja_JP.UTF-8.html from
install of libx11_6-devel-1.4.3-1.mga1.i586 conflicts with file from
package lib64x11_6-devel-1.4.3-1.mga1.x86_64
file /usr/share/doc/libX11/Compose/ko.html from install of
libx11_6-devel-1.4.3-1.mga1.i586 conflicts with file from package
lib64x11_6-devel-1.4.3-1.mga1.x86_64
file /usr/share/doc/libX11/Compose/ko_KR.UTF-8.html from
install of libx11_6-devel-1.4.3-1.mga1.i586 conflicts with file from
package lib64x11_6-devel-1.4.3-1.mga1.x86_64
file /usr/share/doc/libX11/Compose/koi8-c.html from install of
libx11_6-devel-1.4.3-1.mga1.i586 conflicts with file from package
lib64x11_6-devel-1.4.3-1.mga1.x86_64
file /usr/share/doc/libX11/Compose/koi8-r.html from install of
libx11_6-devel-1.4.3-1.mga1.i586 conflicts with file from package
lib64x11_6-devel-1.4.3-1.mga1.x86_64
file /usr/share/doc/libX11/Compose/koi8-u.html from install of
libx11_6-devel-1.4.3-1.mga1.i586 conflicts with file from package
lib64x11_6-devel-1.4.3-1.mga1.x86_64
file /usr/share/doc/libX11/Compose/microsoft-cp1251.html from
install of libx11_6-devel-1.4.3-1.mga1.i586 conflicts with file from
package lib64x11_6-devel-1.4.3-1.mga1.x86_64
file /usr/share/doc/libX11/Compose/microsoft-cp1255.html from
install of libx11_6-devel-1.4.3-1.mga1.i586 conflicts with file from
package lib64x11_6-devel-1.4.3-1.mga1.x86_64
file /usr/share/doc/libX11/Compose/microsoft-cp1256.html from
install of libx11_6-devel-1.4.3-1.mga1.i586 conflicts with file from
package lib64x11_6-devel-1.4.3-1.mga1.x86_64
file /usr/share/doc/libX11/Compose/mulelao-1.html from install
of libx11_6-devel-1.4.3-1.mga1.i586 conflicts with file from package
lib64x11_6-devel-1.4.3-1.mga1.x86_64
file /usr/share/doc/libX11/Compose/nokhchi-1.html from install
of libx11_6-devel-1.4.3-1.mga1.i586 conflicts with file from package
lib64x11_6-devel-1.4.3-1.mga1.x86_64
file /usr/share/doc/libX11/Compose/pt_BR.UTF-8.html from
install of libx11_6-devel-1.4.3-1.mga1.i586 conflicts with file from
package lib64x11_6-devel-1.4.3-1.mga1.x86_64
file /usr/share/doc/libX11/Compose/ru_RU.UTF-8.html from
install of libx11_6-devel-1.4.3-1.mga1.i586 conflicts with file from
package lib64x11_6-devel-1.4.3-1.mga1.x86_64
file /usr/share/doc/libX11/Compose/tatar-cyr.html from install
of libx11_6-devel-1.4.3-1.mga1.i586 conflicts with file from package
lib64x11_6-devel-1.4.3-1.mga1.x86_64
file /usr/share/doc/libX11/Compose/th_TH.UTF-8.html from
install of libx11_6-devel-1.4.3-1.mga1.i586 conflicts with file from
package lib64x11_6-devel-1.4.3-1.mga1.x86_64
file /usr/share/doc/libX11/Compose/th_TH.html from install of
libx11_6-devel-1.4.3-1.mga1.i586 conflicts with file from package
lib64x11_6-devel-1.4.3-1.mga1.x86_64
file /usr/share/doc/libX11/Compose/tscii-0.html from install of
libx11_6-devel-1.4.3-1.mga1.i586 conflicts with file from package
lib64x11_6-devel-1.4.3-1.mga1.x86_64
file /usr/share/doc/libX11/Compose/vi_VN.tcvn.html from install
of libx11_6-devel-1.4.3-1.mga1.i586 conflicts with file from package
lib64x11_6-devel-1.4.3-1.mga1.x86_64
file /usr/share/doc/libX11/Compose/vi_VN.viscii.html from
install of libx11_6-devel-1.4.3-1.mga1.i586 conflicts with file from
package lib64x11_6-devel-1.4.3-1.mga1.x86_64
file /usr/share/doc/libX11/Compose/zh_CN.UTF-8.html from
install of libx11_6-devel-1.4.3-1.mga1.i586 conflicts with file from
package lib64x11_6-devel-1.4.3-1.mga1.x86_64
file /usr/share/doc/libX11/Compose/zh_CN.gb18030.html from
install of libx11_6-devel-1.4.3-1.mga1.i586 conflicts with file from
package lib64x11_6-devel-1.4.3-1.mga1.x86_64
file /usr/share/doc/libX11/Compose/zh_CN.gbk.html from install
of libx11_6-devel-1.4.3-1.mga1.i586 conflicts with file from package
lib64x11_6-devel-1.4.3-1.mga1.x86_64
file /usr/share/doc/libX11/Compose/zh_CN.html from install of
libx11_6-devel-1.4.3-1.mga1.i586 conflicts with file from package
lib64x11_6-devel-1.4.3-1.mga1.x86_64
file /usr/share/doc/libX11/Compose/zh_HK.UTF-8.html from
install of libx11_6-devel-1.4.3-1.mga1.i586 conflicts with file from
package lib64x11_6-devel-1.4.3-1.mga1.x86_64
file /usr/share/doc/libX11/Compose/zh_HK.big5.html from install
of libx11_6-devel-1.4.3-1.mga1.i586 conflicts with file from package
lib64x11_6-devel-1.4.3-1.mga1.x86_64
file /usr/share/doc/libX11/Compose/zh_HK.big5hkscs.html from
install of libx11_6-devel-1.4.3-1.mga1.i586 conflicts with file from
package lib64x11_6-devel-1.4.3-1.mga1.x86_64
file /usr/share/doc/libX11/Compose/zh_TW.UTF-8.html from
install of libx11_6-devel-1.4.3-1.mga1.i586 conflicts with file from
package lib64x11_6-devel-1.4.3-1.mga1.x86_64
file /usr/share/doc/libX11/Compose/zh_TW.big5.html from install
of libx11_6-devel-1.4.3-1.mga1.i586 conflicts with file from package
lib64x11_6-devel-1.4.3-1.mga1.x86_64
file /usr/share/doc/libX11/Compose/zh_TW.html from install of
libx11_6-devel-1.4.3-1.mga1.i586 conflicts with file from package
lib64x11_6-devel-1.4.3-1.mga1.x86_64
file /usr/share/doc/libX11/XIM/xim.html from install of
libx11_6-devel-1.4.3-1.mga1.i586 conflicts with file from package
lib64x11_6-devel-1.4.3-1.mga1.x86_64
file /usr/share/doc/libX11/XKB/xkblib.html from install of
libx11_6-devel-1.4.3-1.mga1.i586 conflicts with file from package
lib64x11_6-devel-1.4.3-1.mga1.x86_64
file /usr/share/doc/libX11/framework/framework.html from
install of libx11_6-devel-1.4.3-1.mga1.i586 conflicts with file from
package lib64x11_6-devel-1.4.3-1.mga1.x86_64
file /usr/share/doc/libX11/libX11.html from install of
libx11_6-devel-1.4.3-1.mga1.i586 conflicts with file from package
lib64x11_6-devel-1.4.3-1.mga1.x86_64
file /usr/share/doc/libX11/localedb/localedb.html from install
of libx11_6-devel-1.4.3-1.mga1.i586 conflicts with file from package
lib64x11_6-devel-1.4.3-1.mga1.x86_64
file /usr/share/doc/libX11/trans/trans.html from install of
libx11_6-devel-1.4.3-1.mga1.i586 conflicts with file from package
lib64x11_6-devel-1.4.3-1.mga1.x86_64
devel(libX11) is needed by libxrender1-devel-0.9.6-1.mga1.i586
devel(libX11) is needed by libxxf86vm-devel-1.1.1-2.mga1.i586
devel(libX11) is needed by libxext6-devel-1:1.3.0-1.mga2.i586
devel(libffi) is needed by libglib2.0-devel-2.29.10-1.mga2.i586
devel(libpcre) is needed by libglib2.0-devel-2.29.10-1.mga2.i586
devel(libX11) is needed by
libmesagl1-devel-7.11-0.rc1.1.git20110712.1.mga2.i586
devel(libXdamage) is needed by
libmesagl1-devel-7.11-0.rc1.1.git20110712.1.mga2.i586
devel(libXext) is needed by
libmesagl1-devel-7.11-0.rc1.1.git20110712.1.mga2.i586
devel(libXfixes) is needed by
libmesagl1-devel-7.11-0.rc1.1.git20110712.1.mga2.i586
devel(libXxf86vm) is needed by
libmesagl1-devel-7.11-0.rc1.1.git20110712.1.mga2.i586
unlocking urpmi database
unlocking rpm database
EXITING (pid=14246)
[<A HREF="https://www.mageia.org/mailman/listinfo/mageia-dev">root at ftgme2</A> ftg]#
</PRE>
<!--endarticle-->
<HR>
<P><UL>
<!--threads-->
<LI>Previous message: <A HREF="006858.html">[Mageia-dev] [RPM] cauldron core/release mplayer-1.0-1.rc4.0.r32713.7.mga2
</A></li>
<LI>Next message: <A HREF="006871.html">[Mageia-dev] Current cauldron updates want to install 32-bit versions that conflict with 64-bit versions
</A></li>
<LI> <B>Messages sorted by:</B>
<a href="date.html#6870">[ date ]</a>
<a href="thread.html#6870">[ thread ]</a>
<a href="subject.html#6870">[ subject ]</a>
<a href="author.html#6870">[ author ]</a>
</LI>
</UL>
<hr>
<a href="https://www.mageia.org/mailman/listinfo/mageia-dev">More information about the Mageia-dev
mailing list</a><br>
</body></html>
|