-
Notifications
You must be signed in to change notification settings - Fork 0
/
installed.txt
2064 lines (2064 loc) · 163 KB
/
installed.txt
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
GConf2.x86_64 3.2.6-11.fc21 @System
LibRaw.x86_64 0.16.0-4.fc21 @System
ModemManager.x86_64 1.4.0-1.fc21 @System
ModemManager-glib.x86_64 1.4.0-1.fc21 @System
NetworkManager.x86_64 1:0.9.10.0-14.git20140704.fc21 @System
NetworkManager-adsl.x86_64 1:0.9.10.0-14.git20140704.fc21 @System
NetworkManager-bluetooth.x86_64 1:0.9.10.0-14.git20140704.fc21 @System
NetworkManager-config-connectivity-fedora.x86_64
1:0.9.10.0-14.git20140704.fc21 @System
NetworkManager-glib.x86_64 1:0.9.10.0-14.git20140704.fc21 @System
NetworkManager-openconnect.x86_64 0.9.8.6-2.fc21 @System
NetworkManager-openvpn.x86_64 1:0.9.9.0-3.git20140128.fc21 @System
NetworkManager-openvpn-gnome.x86_64 1:0.9.9.0-3.git20140128.fc21 @System
NetworkManager-pptp.x86_64 1:0.9.8.2-6.fc21 @System
NetworkManager-pptp-gnome.x86_64 1:0.9.8.2-6.fc21 @System
NetworkManager-vpnc.x86_64 1:0.9.9.0-6.git20140428.fc21 @System
NetworkManager-vpnc-gnome.x86_64 1:0.9.9.0-6.git20140428.fc21 @System
NetworkManager-wifi.x86_64 1:0.9.10.0-14.git20140704.fc21 @System
NetworkManager-wwan.x86_64 1:0.9.10.0-14.git20140704.fc21 @System
ORBit2.x86_64 2.14.19-13.fc21 @System
OpenEXR-libs.x86_64 2.1.0-5.fc21 @System
PackageKit.x86_64 1.0.3-4.fc21 @System
PackageKit-cached-metadata.x86_64 1.0.3-4.fc21 @System
PackageKit-command-not-found.x86_64 1.0.3-4.fc21 @System
PackageKit-glib.x86_64 1.0.3-4.fc21 @System
PackageKit-gstreamer-plugin.x86_64 1.0.3-4.fc21 @System
PackageKit-gtk3-module.x86_64 1.0.3-4.fc21 @System
PyXB.noarch 1.2.3-3.fc21 @System
PyYAML.x86_64 3.11-6.fc21 @System
SDL.x86_64 1.2.15-17.fc21 @System
SDL2.x86_64 2.0.3-4.fc21 @System
aajohan-comfortaa-fonts.noarch 2.004-4.fc21 @System
aalib-libs.x86_64 1.4.0-0.26.rc5.fc21 @System
abattis-cantarell-fonts.noarch 0.0.16-2.fc21 @System
abrt.x86_64 2.3.0-3.fc21 @System
abrt-addon-ccpp.x86_64 2.3.0-3.fc21 @System
abrt-addon-kerneloops.x86_64 2.3.0-3.fc21 @System
abrt-addon-pstoreoops.x86_64 2.3.0-3.fc21 @System
abrt-addon-python.x86_64 2.3.0-3.fc21 @System
abrt-addon-python3.x86_64 2.3.0-3.fc21 @System
abrt-addon-vmcore.x86_64 2.3.0-3.fc21 @System
abrt-addon-xorg.x86_64 2.3.0-3.fc21 @System
abrt-cli.x86_64 2.3.0-3.fc21 @System
abrt-dbus.x86_64 2.3.0-3.fc21 @System
abrt-desktop.x86_64 2.3.0-3.fc21 @System
abrt-gui.x86_64 2.3.0-3.fc21 @System
abrt-gui-libs.x86_64 2.3.0-3.fc21 @System
abrt-java-connector.x86_64 1.1.0-2.fc21 @System
abrt-libs.x86_64 2.3.0-3.fc21 @System
abrt-plugin-bodhi.x86_64 2.3.0-3.fc21 @System
abrt-python.x86_64 2.3.0-3.fc21 @System
abrt-python3.x86_64 2.3.0-3.fc21 @System
abrt-retrace-client.x86_64 2.3.0-3.fc21 @System
abrt-tui.x86_64 2.3.0-3.fc21 @System
accountsservice.x86_64 0.6.39-2.fc21 @System
accountsservice-libs.x86_64 0.6.39-2.fc21 @System
acl.x86_64 2.2.52-7.fc21 @System
acpi.x86_64 1.7-3.fc21 @System
adobe-source-han-sans-cn-fonts.noarch 1.001-1.fc21 @System
adobe-source-han-sans-twhk-fonts.noarch 1.001-1.fc21 @System
adwaita-cursor-theme.noarch 3.14.1-1.fc21 @System
adwaita-gtk2-theme.x86_64 3.14.2.2-1.fc21 @System
adwaita-icon-theme.noarch 3.14.1-1.fc21 @System
alsa-lib.i686 1.0.28-2.fc21 @System
alsa-lib.x86_64 1.0.28-2.fc21 @System
alsa-plugins-pulseaudio.x86_64 1.0.28-3.fc21 @System
alsa-utils.x86_64 1.0.28-2.fc21 @System
anaconda.x86_64 21.48.21-1.fc21 @System
anaconda-core.x86_64 21.48.21-1.fc21 @System
anaconda-gui.x86_64 21.48.21-1.fc21 @System
anaconda-tui.x86_64 21.48.21-1.fc21 @System
anaconda-widgets.x86_64 21.48.21-1.fc21 @System
apache-commons-logging.noarch 1.1.3-14.fc21 @System
appstream-data.noarch 21-19.fc21 @System
apr.x86_64 1.5.1-3.fc21 @System
apr-util.x86_64 1.5.4-1.fc21 @System
argyllcms.x86_64 1.6.3-4.fc21 @System
at.x86_64 3.1.16-2.fc21 @System
at-spi2-atk.x86_64 2.14.1-1.fc21 @System
at-spi2-core.x86_64 2.14.1-1.fc21 @System
atk.i686 2.14.0-1.fc21 @System
atk.x86_64 2.14.0-1.fc21 @System
atkmm.x86_64 2.22.7-4.fc21 @System
atlas.x86_64 3.10.1-16.fc21 @System
atmel-firmware.noarch 1.3-13.fc21 @System
attica.x86_64 0.4.2-4.fc21 @System
attr.x86_64 2.4.47-9.fc21 @System
audit.x86_64 2.4.1-1.fc21 @System
audit-libs.i686 2.4.1-1.fc21 @System
audit-libs.x86_64 2.4.1-1.fc21 @System
audit-libs-python.x86_64 2.4.1-1.fc21 @System
augeas-libs.x86_64 1.3.0-1.fc21 @System
authconfig.x86_64 6.2.9-4.fc21 @System
autocorr-en.noarch 1:4.3.4.1-10.fc21 @System
autogen-libopts.x86_64 5.18.3-3.fc21 @System
avahi.x86_64 0.6.31-30.fc21 @System
avahi-autoipd.x86_64 0.6.31-30.fc21 @System
avahi-compat-libdns_sd.x86_64 0.6.31-30.fc21 @System
avahi-glib.x86_64 0.6.31-30.fc21 @System
avahi-gobject.x86_64 0.6.31-30.fc21 @System
avahi-libs.i686 0.6.31-30.fc21 @System
avahi-libs.x86_64 0.6.31-30.fc21 @System
avahi-ui-gtk3.x86_64 0.6.31-30.fc21 @System
b43-fwcutter.x86_64 019-2.fc21 @System
b43-openfwwf.noarch 5.2-11.fc21 @System
babl.x86_64 0.1.10-10.fc21 @System
baobab.x86_64 3.14.1-1.fc21 @System
basesystem.noarch 10.0-10.fc21 @System
bash.x86_64 4.3.30-2.fc21 @System
bash-completion.noarch 1:2.1-6.20141110git52d8316.fc21 @System
bc.x86_64 1.06.95-13.fc21 @System
bijiben.x86_64 3.14.2-1.fc21 @System
bind-libs.x86_64 32:9.9.6-4.fc21 @System
bind-libs-lite.x86_64 32:9.9.6-4.fc21 @System
bind-license.noarch 32:9.9.6-4.fc21 @System
bind-utils.x86_64 32:9.9.6-4.fc21 @System
binutils.x86_64 2.24-21.fc21 @System
bluez.x86_64 5.23-1.fc21 @System
bluez-cups.x86_64 5.23-1.fc21 @System
bluez-libs.x86_64 5.23-1.fc21 @System
boost-date-time.x86_64 1.55.0-4.fc21 @System
boost-iostreams.x86_64 1.55.0-4.fc21 @System
boost-system.x86_64 1.55.0-4.fc21 @System
boost-thread.x86_64 1.55.0-4.fc21 @System
brasero.x86_64 3.12.0-1.fc21 @System
brasero-libs.x86_64 3.12.0-1.fc21 @System
brasero-nautilus.x86_64 3.12.0-1.fc21 @System
bridge-utils.x86_64 1.5-10.fc21 @System
brlapi.x86_64 0.6.3-1.fc21 @System
brltty.x86_64 5.2-1.fc21 @System
btrfs-progs.x86_64 3.17.3-1.fc21 @System
bzip2.x86_64 1.0.6-14.fc21 @System
bzip2-libs.i686 1.0.6-14.fc21 @System
bzip2-libs.x86_64 1.0.6-14.fc21 @System
c-ares.x86_64 1.10.0-4.fc21 @System
ca-certificates.noarch 2014.2.1-1.5.fc21 @System
cabal-install.x86_64 1.16.0.2-36.fc21 @System
cairo.i686 1.13.1-0.4.git337ab1f.fc21 @System
cairo.x86_64 1.13.1-0.4.git337ab1f.fc21 @System
cairo-gobject.x86_64 1.13.1-0.4.git337ab1f.fc21 @System
cairomm.x86_64 1.10.0-9.fc21 @System
caribou.x86_64 0.4.16-1.fc21 @System
caribou-gtk2-module.x86_64 0.4.16-1.fc21 @System
caribou-gtk3-module.x86_64 0.4.16-1.fc21 @System
cdparanoia.x86_64 10.2-18.fc21 @System
cdparanoia-libs.x86_64 10.2-18.fc21 @System
cdrdao.x86_64 1.2.3-23.fc21 @System
celt051.x86_64 0.5.1.3-9.fc21 @System
celt071.x86_64 0.7.1-9.fc21 @System
check.x86_64 0.9.14-2.fc21 @System
checkpolicy.x86_64 2.3-4.fc21 @System
cheese.x86_64 2:3.14.2-1.fc21 @System
cheese-libs.x86_64 2:3.14.2-1.fc21 @System
chkconfig.x86_64 1.3.63-1.fc21 @System
chrony.x86_64 1.31-1.fc21 @System
cifs-utils.x86_64 6.4-2.fc21 @System
clucene-contribs-lib.x86_64 2.3.3.4-13.fc21 @System
clucene-core.x86_64 2.3.3.4-13.fc21 @System
clucene09-core.x86_64 0.9.21b-13.fc21 @System
clutter.x86_64 1.20.0-1.fc21 @System
clutter-gst2.x86_64 2.0.12-4.fc21 @System
clutter-gtk.x86_64 1.6.0-1.fc21 @System
cogl.x86_64 1.18.2-9.fc21 @System
color-filesystem.noarch 1-15.fc21 @System
colord.x86_64 1.2.7-2.fc21 @System
colord-gtk.x86_64 0.1.26-1.fc21 @System
colord-libs.x86_64 1.2.7-2.fc21 @System
community-mysql.x86_64 5.6.21-5.fc21 @System
community-mysql-common.x86_64 5.6.21-5.fc21 @System
comps-extras.noarch 23-2.fc21 @System
control-center.x86_64 1:3.14.2-1.fc21 @System
control-center-filesystem.x86_64 1:3.14.2-1.fc21 @System
coreutils.x86_64 8.22-19.fc21 @System
corosync.x86_64 2.3.4-1.fc21 @System
corosynclib.x86_64 2.3.4-1.fc21 @System
cpio.x86_64 2.11-33.fc21 @System
cpp.x86_64 4.9.2-1.fc21 @System
cracklib.i686 2.9.1-5.fc21 @System
cracklib.x86_64 2.9.1-5.fc21 @System
cracklib-dicts.x86_64 2.9.1-5.fc21 @System
crda.x86_64 3.13_2014.11.18-1.fc21 @System
createrepo_c.x86_64 0.7.4-1.fc21 @System
createrepo_c-libs.x86_64 0.7.4-1.fc21 @System
cronie.x86_64 1.4.12-1.fc21 @System
cronie-anacron.x86_64 1.4.12-1.fc21 @System
crontabs.noarch 1.11-9.20130830git.fc21 @System
crypto-policies.noarch 20140905-1.git4649b7d.fc21 @System
cryptsetup.x86_64 1.6.6-1.fc21 @System
cryptsetup-libs.x86_64 1.6.6-1.fc21 @System
cryptsetup-python.x86_64 1.6.6-1.fc21 @System
cups.x86_64 1:1.7.5-13.fc21 @System
cups-client.x86_64 1:1.7.5-13.fc21 @System
cups-filesystem.noarch 1:1.7.5-13.fc21 @System
cups-filters.x86_64 1.0.58-1.fc21 @System
cups-filters-libs.x86_64 1.0.58-1.fc21 @System
cups-libs.i686 1:1.7.5-13.fc21 @System
cups-libs.x86_64 1:1.7.5-13.fc21 @System
cups-pk-helper.x86_64 0.2.5-5.fc21 @System
curl.x86_64 7.37.0-11.fc21 @System
cyrus-sasl.x86_64 2.1.26-19.fc21 @System
cyrus-sasl-gssapi.x86_64 2.1.26-19.fc21 @System
cyrus-sasl-lib.i686 2.1.26-19.fc21 @System
cyrus-sasl-lib.x86_64 2.1.26-19.fc21 @System
cyrus-sasl-md5.x86_64 2.1.26-19.fc21 @System
cyrus-sasl-plain.x86_64 2.1.26-19.fc21 @System
cyrus-sasl-scram.x86_64 2.1.26-19.fc21 @System
dbus.x86_64 1:1.8.12-3.fc21 @System
dbus-glib.x86_64 0.100.2-4.fc21 @System
dbus-libs.i686 1:1.8.12-3.fc21 @System
dbus-libs.x86_64 1:1.8.12-3.fc21 @System
dbus-python.x86_64 1.2.0-7.fc21 @System
dbus-x11.x86_64 1:1.8.12-3.fc21 @System
dbusmenu-qt.x86_64 0.9.2-8.fc21 @System
dconf.x86_64 0.22.0-1.fc21 @System
dejavu-fonts-common.noarch 2.34-4.fc21 @System
dejavu-sans-fonts.noarch 2.34-4.fc21 @System
dejavu-sans-mono-fonts.noarch 2.34-4.fc21 @System
dejavu-serif-fonts.noarch 2.34-4.fc21 @System
deltarpm.x86_64 3.6-6.fc21 @System
desktop-backgrounds-basic.noarch 21.0.0-0.fc21 @System
desktop-backgrounds-compat.noarch 21.0.0-0.fc21 @System
desktop-backgrounds-gnome.noarch 21.0.0-0.fc21 @System
desktop-file-utils.x86_64 0.22-3.fc21 @System
devassistant.noarch 0.9.3-3.fc21 @System
device-mapper.x86_64 1.02.90-1.fc21 @System
device-mapper-event.x86_64 1.02.90-1.fc21 @System
device-mapper-event-libs.x86_64 1.02.90-1.fc21 @System
device-mapper-libs.x86_64 1.02.90-1.fc21 @System
device-mapper-multipath.x86_64 0.4.9-68.fc21.1 @System
device-mapper-multipath-libs.x86_64 0.4.9-68.fc21.1 @System
device-mapper-persistent-data.x86_64 0.4.1-2.fc21 @System
dhclient.x86_64 12:4.3.1-8.fc21 @System
dhcp-common.x86_64 12:4.3.1-8.fc21 @System
dhcp-libs.x86_64 12:4.3.1-8.fc21 @System
diffutils.x86_64 3.3-9.fc21 @System
dmenu.x86_64 4.5-7.20140425git.fc21 @System
dmidecode.x86_64 1:2.12-8.fc21 @System
dmraid.x86_64 1.0.0.rc16-25.fc21 @System
dmraid-events.x86_64 1.0.0.rc16-25.fc21 @System
dnf.noarch 0.6.3-2.fc21 @System
dnf-plugins-core.noarch 0.1.4-1.fc21 @System
dnsmasq.x86_64 2.72-3.fc21 @System
docbook-dtds.noarch 1.0-63.fc21 @System
docbook-style-xsl.noarch 1.78.1-3.fc21 @System
dos2unix.x86_64 6.0.6-2.fc21 @System
dosfstools.x86_64 3.0.27-1.fc21 @System
dotconf.x86_64 1.3-10.fc21 @System
dracut.x86_64 038-31.git20141204.fc21 @System
dracut-config-rescue.x86_64 038-31.git20141204.fc21 @System
dracut-network.x86_64 038-31.git20141204.fc21 @System
dropbox.noarch 1:2.10.0-2.fc21 @System
dtc.x86_64 1.4.0-5.fc21 @System
dvd+rw-tools.x86_64 7.1-17.fc21 @System
dzen2.x86_64 0.8.5-15.20100104svn.fc21 @System
e2fsprogs.x86_64 1.42.11-4.fc21 @System
e2fsprogs-libs.x86_64 1.42.11-4.fc21 @System
ebtables.x86_64 2.0.10-16.fc21 @System
efibootmgr.x86_64 0.11.0-1.fc21 @System
efivar-libs.x86_64 0.13-1.fc21 @System
elfutils.x86_64 0.160-1.fc21 @System
elfutils-libelf.i686 0.160-1.fc21 @System
elfutils-libelf.x86_64 0.160-1.fc21 @System
elfutils-libs.i686 0.160-1.fc21 @System
elfutils-libs.x86_64 0.160-1.fc21 @System
emacs-filesystem.noarch 1:24.4-3.fc21 @System
empathy.x86_64 3.12.7-1.fc21 @System
enca.x86_64 1.15-3.fc21 @System
enchant.x86_64 1:1.6.0-9.fc21 @System
eog.x86_64 3.14.3-1.fc21 @System
epiphany-runtime.x86_64 1:3.14.2-3.fc21 @System
espeak.x86_64 1.48.04-3.fc21 @System
ethtool.x86_64 2:3.14-3.fc21 @System
evince.x86_64 3.14.1-7.fc21 @System
evince-libs.x86_64 3.14.1-7.fc21 @System
evince-nautilus.x86_64 3.14.1-7.fc21 @System
evolution.x86_64 3.12.9-1.fc21 @System
evolution-data-server.x86_64 3.12.9-2.fc21 @System
evolution-ews.x86_64 3.12.9-1.fc21 @System
evolution-help.noarch 3.12.9-1.fc21 @System
exempi.x86_64 2.2.1-7.fc21 @System
exiv2-libs.x86_64 0.24-3.fc21 @System
expat.i686 2.1.0-10.fc21 @System
expat.x86_64 2.1.0-10.fc21 @System
expat-devel.x86_64 2.1.0-10.fc21 @System
f21-backgrounds-base.noarch 21.1.0-1.fc21 @System
f21-backgrounds-gnome.noarch 21.1.0-1.fc21 @System
farstream.x86_64 0.1.2-9.fc21 @System
farstream02.x86_64 0.2.4-4.fc21 @System
fcoe-utils.x86_64 1.0.29-6.fc21 @System
fedora-bookmarks.noarch 15-5.fc21 @System
fedora-logos.x86_64 21.0.5-1.fc21 @System
fedora-logos-httpd.noarch 21.0.5-1.fc21 @System
fedora-productimg-workstation.noarch 21-8.fc21 @System
fedora-release.noarch 21-2 @System
fedora-release-workstation.noarch 21-2 @System
fedora-repos.noarch 21-2 @System
feh.x86_64 2.9.3-3.fc21 @System
festival.x86_64 1.96-29.fc21 @System
festival-freebsoft-utils.noarch 0.10-8.fc21 @System
festival-lib.x86_64 1.96-29.fc21 @System
festival-speechtools-libs.x86_64 1.2.96-29.fc21 @System
festvox-slt-arctic-hts.noarch 0.20061229-29.fc21 @System
ffmpeg-libs.x86_64 2.4.5-1.fc21 @System
fftw-libs-double.x86_64 3.3.4-5.fc21 @System
file.x86_64 5.19-7.fc21 @System
file-libs.x86_64 5.19-7.fc21 @System
file-roller.x86_64 3.14.2-1.fc21 @System
file-roller-nautilus.x86_64 3.14.2-1.fc21 @System
filesystem.x86_64 3.2-28.fc21 @System
findutils.x86_64 1:4.5.12-7.fc21 @System
fipscheck.x86_64 1.4.1-7.fc21 @System
fipscheck-lib.x86_64 1.4.1-7.fc21 @System
firebird-libfbembed.x86_64 2.5.2.26539.0-14.fc21 @System
firefox.x86_64 34.0-1.fc21 @System
firewalld.noarch 0.3.12-1.fc21 @System
firewalld-config-workstation.noarch 0.3.12-1.fc21 @System
flac-libs.x86_64 1.3.1-1.fc21 @System
flash-plugin.x86_64 11.2.202.418-release @System
flite.x86_64 1.3-23.fc21 @System
flute.noarch 1.3.0-13.OOo31.fc21 @System
folks.x86_64 1:0.10.0-1.fc21 @System
fontconfig.i686 2.11.1-5.fc21 @System
fontconfig.x86_64 2.11.1-5.fc21 @System
fontconfig-devel.x86_64 2.11.1-5.fc21 @System
fontpackages-filesystem.noarch 1.44-10.fc21 @System
foomatic.x86_64 4.0.11-6.fc21 @System
foomatic-db.noarch 4.0-44.20140707.fc21 @System
foomatic-db-filesystem.noarch 4.0-44.20140707.fc21 @System
foomatic-db-ppds.noarch 4.0-44.20140707.fc21 @System
fpaste.noarch 0.3.7.3.3-1.fc21 @System
fprintd.x86_64 0.5.1-3.fc21 @System
fprintd-pam.x86_64 0.5.1-3.fc21 @System
freerdp.x86_64 1:1.2.0-0.2.beta.1.fc21 @System
freerdp-libs.x86_64 1:1.2.0-0.2.beta.1.fc21 @System
freetype.i686 2.5.3-13.fc21 @System
freetype.x86_64 2.5.3-13.fc21 @System
freetype-devel.x86_64 2.5.3-13.fc21 @System
frei0r-plugins.x86_64 1.4-3.fc21 @System
fribidi.x86_64 0.19.6-3.fc21 @System
fros.noarch 1.0-5.fc21 @System
fuse.x86_64 2.9.3-4.fc21 @System
fuse-libs.x86_64 2.9.3-4.fc21 @System
gamin.x86_64 0.1.10-17.fc21 @System
gavl.x86_64 1.4.0-6.fc21 @System
gawk.x86_64 4.1.1-5.fc21 @System
gcc.x86_64 4.9.2-1.fc21 @System
gcr.x86_64 3.14.0-2.fc21 @System
gd.x86_64 2.1.0-7.fc21 @System
gd-devel.x86_64 2.1.0-7.fc21 @System
gdb.x86_64 7.8.1-36.fc21 @System
gdbm.x86_64 1.11-4.fc21 @System
gdisk.x86_64 0.8.10-4.fc21 @System
gdk-pixbuf2.i686 2.31.1-1.fc21 @System
gdk-pixbuf2.x86_64 2.31.1-1.fc21 @System
gdm.x86_64 1:3.14.1-1.fc21 @System
gedit.x86_64 2:3.14.2-1.fc21 @System
gegl.x86_64 0.2.0-19.fc21 @System
genisoimage.x86_64 1.1.11-25.fc21 @System
geoclue.x86_64 0.12.99-7.fc21 @System
geoclue2.x86_64 2.1.9-2.fc21 @System
geocode-glib.x86_64 3.14.0-1.fc21 @System
geronimo-jms.noarch 1.1.1-19.fc21 @System
gettext.x86_64 0.19.2-6.fc21 @System
gettext-libs.x86_64 0.19.2-6.fc21 @System
gfbgraph.x86_64 0.2.2-4.fc21 @System
ghc.x86_64 7.6.3-26.1.fc21 @System
ghc-Cabal.x86_64 1.16.0-26.1.fc21 @System
ghc-Cabal-devel.x86_64 1.16.0-26.1.fc21 @System
ghc-HTTP.x86_64 4000.2.8-34.fc21 @System
ghc-array.x86_64 0.4.0.1-26.1.fc21 @System
ghc-array-devel.x86_64 0.4.0.1-26.1.fc21 @System
ghc-base.x86_64 4.6.0.1-26.1.fc21 @System
ghc-base-devel.x86_64 4.6.0.1-26.1.fc21 @System
ghc-binary.x86_64 0.5.1.1-26.1.fc21 @System
ghc-binary-devel.x86_64 0.5.1.1-26.1.fc21 @System
ghc-bytestring.x86_64 0.10.0.2-26.1.fc21 @System
ghc-bytestring-devel.x86_64 0.10.0.2-26.1.fc21 @System
ghc-compiler.x86_64 7.6.3-26.1.fc21 @System
ghc-containers.x86_64 0.5.0.0-26.1.fc21 @System
ghc-containers-devel.x86_64 0.5.0.0-26.1.fc21 @System
ghc-deepseq.x86_64 1.3.0.1-26.1.fc21 @System
ghc-deepseq-devel.x86_64 1.3.0.1-26.1.fc21 @System
ghc-directory.x86_64 1.2.0.1-26.1.fc21 @System
ghc-directory-devel.x86_64 1.2.0.1-26.1.fc21 @System
ghc-doc-index.x86_64 7.6.3-26.1.fc21 @System
ghc-filepath.x86_64 1.3.0.1-26.1.fc21 @System
ghc-filepath-devel.x86_64 1.3.0.1-26.1.fc21 @System
ghc-ghc.x86_64 7.6.3-26.1.fc21 @System
ghc-ghc-devel.x86_64 7.6.3-26.1.fc21 @System
ghc-haskell2010.x86_64 1.1.1.0-26.1.fc21 @System
ghc-haskell2010-devel.x86_64 1.1.1.0-26.1.fc21 @System
ghc-haskell98.x86_64 2.0.0.2-26.1.fc21 @System
ghc-haskell98-devel.x86_64 2.0.0.2-26.1.fc21 @System
ghc-hoopl.x86_64 3.9.0.0-26.1.fc21 @System
ghc-hoopl-devel.x86_64 3.9.0.0-26.1.fc21 @System
ghc-hpc.x86_64 0.6.0.0-26.1.fc21 @System
ghc-hpc-devel.x86_64 0.6.0.0-26.1.fc21 @System
ghc-libraries.x86_64 7.6.3-26.1.fc21 @System
ghc-mtl.x86_64 2.1.2-29.fc21 @System
ghc-network.x86_64 2.4.1.2-33.fc21 @System
ghc-old-locale.x86_64 1.0.0.5-26.1.fc21 @System
ghc-old-locale-devel.x86_64 1.0.0.5-26.1.fc21 @System
ghc-old-time.x86_64 1.1.0.1-26.1.fc21 @System
ghc-old-time-devel.x86_64 1.1.0.1-26.1.fc21 @System
ghc-parsec.x86_64 3.1.3-32.fc21 @System
ghc-pretty.x86_64 1.1.1.0-26.1.fc21 @System
ghc-pretty-devel.x86_64 1.1.1.0-26.1.fc21 @System
ghc-process.x86_64 1.1.0.2-26.1.fc21 @System
ghc-process-devel.x86_64 1.1.0.2-26.1.fc21 @System
ghc-random.x86_64 1.0.1.1-28.fc21 @System
ghc-template-haskell.x86_64 2.8.0.0-26.1.fc21 @System
ghc-template-haskell-devel.x86_64 2.8.0.0-26.1.fc21 @System
ghc-text.x86_64 0.11.3.1-4.fc21 @System
ghc-time.x86_64 1.4.0.1-26.1.fc21 @System
ghc-time-devel.x86_64 1.4.0.1-26.1.fc21 @System
ghc-transformers.x86_64 0.3.0.0-35.fc21 @System
ghc-unix.x86_64 2.6.0.1-26.1.fc21 @System
ghc-unix-devel.x86_64 2.6.0.1-26.1.fc21 @System
ghc-zlib.x86_64 0.5.4.1-29.fc21 @System
ghostscript.x86_64 9.15-3.fc21 @System
ghostscript-fonts.noarch 5.50-33.fc21 @System
giblib.x86_64 1.2.4-22.fc21 @System
giflib.i686 4.1.6-12.fc21 @System
giflib.x86_64 4.1.6-12.fc21 @System
gimp.x86_64 2:2.8.14-1.fc21 @System
gimp-libs.x86_64 2:2.8.14-1.fc21 @System
git.x86_64 2.1.0-4.fc21 @System
gjs.x86_64 1.42.0-1.fc21 @System
glade-libs.x86_64 3.18.3-4.fc21 @System
glib-networking.x86_64 2.42.0-1.fc21 @System
glib2.i686 2.42.1-1.fc21 @System
glib2.x86_64 2.42.1-1.fc21 @System
glibc.i686 2.20-5.fc21 @System
glibc.x86_64 2.20-5.fc21 @System
glibc-common.x86_64 2.20-5.fc21 @System
glibc-devel.x86_64 2.20-5.fc21 @System
glibc-headers.x86_64 2.20-5.fc21 @System
glibmm24.x86_64 2.42.0-1.fc21 @System
glusterfs.x86_64 3.5.3-1.fc21 @System
glusterfs-api.x86_64 3.5.3-1.fc21 @System
glusterfs-fuse.x86_64 3.5.3-1.fc21 @System
glusterfs-libs.x86_64 3.5.3-1.fc21 @System
glx-utils.x86_64 8.2.0-2.fc21 @System
gmime.x86_64 2.6.20-4.fc21 @System
gmp.x86_64 1:6.0.0-7.fc21 @System
gmp-devel.x86_64 1:6.0.0-7.fc21 @System
gnome-abrt.x86_64 1.0.0-1.fc21 @System
gnome-backgrounds.noarch 3.14.1-1.fc21 @System
gnome-bluetooth.x86_64 1:3.14.0-3.fc21 @System
gnome-bluetooth-libs.x86_64 1:3.14.0-3.fc21 @System
gnome-boxes.x86_64 3.14.2-2.fc21 @System
gnome-calculator.x86_64 3.14.1-1.fc21 @System
gnome-classic-session.noarch 3.14.3-1.fc21 @System
gnome-clocks.x86_64 3.14.1-2.fc21 @System
gnome-color-manager.x86_64 3.14.2-1.fc21 @System
gnome-contacts.x86_64 3.14.2-1.fc21 @System
gnome-desktop3.x86_64 3.14.2-2.fc21 @System
gnome-dictionary.x86_64 3.14.2-1.fc21 @System
gnome-disk-utility.x86_64 3.14.0-1.fc21 @System
gnome-documents.x86_64 3.14.2-1.fc21 @System
gnome-font-viewer.x86_64 3.14.0-1.fc21 @System
gnome-getting-started-docs.noarch 3.14.1-1.fc21 @System
gnome-initial-setup.x86_64 3.14.2.1-2.fc21 @System
gnome-js-common.noarch 0.1.2-11.fc21 @System
gnome-keyring.x86_64 3.14.0-1.fc21 @System
gnome-keyring-pam.x86_64 3.14.0-1.fc21 @System
gnome-logs.x86_64 3.14.2-3.fc21 @System
gnome-maps.x86_64 3.14.2-1.fc21 @System
gnome-menus.x86_64 3.13.3-2.fc21 @System
gnome-online-accounts.x86_64 3.14.2-1.fc21 @System
gnome-online-miners.x86_64 3.14.0-1.fc21 @System
gnome-packagekit.x86_64 3.14.2-1.fc21 @System
gnome-screenshot.x86_64 3.14.0-1.fc21 @System
gnome-session.x86_64 3.14.0-1.fc21 @System
gnome-session-wayland-session.x86_64 3.14.0-1.fc21 @System
gnome-session-xsession.x86_64 3.14.0-1.fc21 @System
gnome-settings-daemon.x86_64 3.14.2-1.fc21 @System
gnome-shell.x86_64 3.14.3-1.fc21 @System
gnome-shell-extension-alternate-tab.noarch
3.14.3-1.fc21 @System
gnome-shell-extension-apps-menu.noarch 3.14.3-1.fc21 @System
gnome-shell-extension-background-logo.noarch
3.14.0-1.fc21 @System
gnome-shell-extension-common.noarch 3.14.3-1.fc21 @System
gnome-shell-extension-launch-new-instance.noarch
3.14.3-1.fc21 @System
gnome-shell-extension-places-menu.noarch
3.14.3-1.fc21 @System
gnome-shell-extension-window-list.noarch
3.14.3-1.fc21 @System
gnome-software.x86_64 3.14.2-2.fc21 @System
gnome-sound-recorder.noarch 3.14.2-1.fc21 @System
gnome-system-monitor.x86_64 3.14.1-1.fc21 @System
gnome-terminal.x86_64 3.14.2-1.fc21 @System
gnome-themes-standard.x86_64 3.14.2.2-1.fc21 @System
gnome-user-docs.noarch 3.14.2-1.fc21 @System
gnome-user-share.x86_64 3.14.0-2.fc21 @System
gnome-vfs2.x86_64 2.24.4-17.fc21 @System
gnome-video-effects.noarch 0.4.1-2.fc21 @System
gnome-weather.noarch 3.14.1-1.fc21 @System
gnu-free-fonts-common.noarch 20120503-10.fc21 @System
gnu-free-mono-fonts.noarch 20120503-10.fc21 @System
gnu-free-sans-fonts.noarch 20120503-10.fc21 @System
gnu-free-serif-fonts.noarch 20120503-10.fc21 @System
gnupg.x86_64 1.4.18-4.fc21 @System
gnupg2.x86_64 2.0.25-2.fc21 @System
gnutls.x86_64 3.3.10-1.fc21 @System
gnutls-dane.x86_64 3.3.10-1.fc21 @System
gnutls-utils.x86_64 3.3.10-1.fc21 @System
gobject-introspection.x86_64 1.42.0-1.fc21 @System
gom.x86_64 0.2.1-1.fc21 @System
google-crosextra-caladea-fonts.noarch 1.002-0.5.20130214.fc21 @System
google-crosextra-carlito-fonts.noarch 1.103-0.3.20130920.fc21 @System
google-noto-sans-lisu-fonts.noarch 20141001-3.fc21 @System
google-noto-sans-mandaic-fonts.noarch 20141001-3.fc21 @System
google-noto-sans-meeteimayek-fonts.noarch
20141001-3.fc21 @System
google-noto-sans-tagalog-fonts.noarch 20141001-3.fc21 @System
google-noto-sans-tai-tham-fonts.noarch 20141001-3.fc21 @System
google-noto-sans-tai-viet-fonts.noarch 20141001-3.fc21 @System
gpgme.x86_64 1.4.3-5.fc21 @System
gpm-libs.x86_64 1.20.7-6.fc21 @System
graphite2.i686 1.2.4-3.fc21 @System
graphite2.x86_64 1.2.4-3.fc21 @System
grep.x86_64 2.21-1.fc21 @System
grilo.x86_64 0.2.11-1.fc21 @System
grilo-plugins.x86_64 0.2.13-1.fc21 @System
groff-base.x86_64 1.22.2-11.fc21 @System
grub2.x86_64 1:2.02-0.13.fc21 @System
grub2-efi.x86_64 1:2.02-0.13.fc21 @System
grub2-tools.x86_64 1:2.02-0.13.fc21 @System
grubby.x86_64 8.35-8.fc21 @System
gsettings-desktop-schemas.x86_64 3.14.1-1.fc21 @System
gsm.x86_64 1.0.13-12.fc21 @System
gssdp.x86_64 0.14.10-1.fc21 @System
gssproxy.x86_64 0.3.1-4.fc21 @System
gstreamer.x86_64 0.10.36-10.fc21 @System
gstreamer-plugins-bad-free.x86_64 0.10.23-24.fc21 @System
gstreamer-plugins-base.x86_64 0.10.36-11.fc21 @System
gstreamer-plugins-espeak.x86_64 0.4.0-5.fc21 @System
gstreamer-plugins-good.x86_64 0.10.31-13.fc21 @System
gstreamer-tools.x86_64 0.10.36-10.fc21 @System
gstreamer1.x86_64 1.4.4-1.fc21 @System
gstreamer1-plugins-bad-free.x86_64 1.4.4-1.fc21 @System
gstreamer1-plugins-base.x86_64 1.4.4-1.fc21 @System
gstreamer1-plugins-good.x86_64 1.4.4-1.fc21 @System
gtk-vnc2.x86_64 0.5.3-6.fc21 @System
gtk2.i686 2.24.25-1.fc21 @System
gtk2.x86_64 2.24.25-1.fc21 @System
gtk3.x86_64 3.14.6-1.fc21 @System
gtkhtml3.x86_64 4.8.5-1.fc21 @System
gtkmm24.x86_64 2.24.4-4.fc21 @System
gtkmm30.x86_64 3.14.0-1.fc21 @System
gtksourceview3.x86_64 3.14.2-1.fc21 @System
gtkspell3.x86_64 3.0.6-4.fc21 @System
gucharmap.x86_64 3.14.2-1.fc21 @System
gupnp.x86_64 0.20.12-6.fc21 @System
gupnp-av.x86_64 0.12.6-5.fc21 @System
gupnp-dlna.x86_64 0.10.2-6.fc21 @System
gupnp-igd.x86_64 0.2.3-4.fc21 @System
gutenprint.x86_64 5.2.10-5.fc21 @System
gutenprint-cups.x86_64 5.2.10-5.fc21 @System
gutenprint-libs.x86_64 5.2.10-5.fc21 @System
gvfs.x86_64 1.22.2-1.fc21 @System
gvfs-afc.x86_64 1.22.2-1.fc21 @System
gvfs-afp.x86_64 1.22.2-1.fc21 @System
gvfs-archive.x86_64 1.22.2-1.fc21 @System
gvfs-fuse.x86_64 1.22.2-1.fc21 @System
gvfs-goa.x86_64 1.22.2-1.fc21 @System
gvfs-gphoto2.x86_64 1.22.2-1.fc21 @System
gvfs-mtp.x86_64 1.22.2-1.fc21 @System
gvfs-smb.x86_64 1.22.2-1.fc21 @System
gvnc.x86_64 0.5.3-6.fc21 @System
gzip.x86_64 1.6-5.fc21 @System
hardlink.x86_64 1:1.0-21.fc21 @System
harfbuzz.i686 0.9.35-1.fc21 @System
harfbuzz.x86_64 0.9.35-1.fc21 @System
harfbuzz-icu.x86_64 0.9.35-1.fc21 @System
hawkey.x86_64 0.5.2-1.fc21 @System
herqq.x86_64 1.0.0-8.fc21 @System
hfsplus-tools.x86_64 540.1.linux3-9.fc21 @System
hicolor-icon-theme.noarch 0.14-1.fc21 @System
highlight.x86_64 3.18-4.fc21 @System
hostname.x86_64 3.15-4.fc21 @System
hpijs.x86_64 1:3.14.10-1.fc21 @System
hplip.x86_64 3.14.10-1.fc21 @System
hplip-common.x86_64 3.14.10-1.fc21 @System
hplip-libs.x86_64 3.14.10-1.fc21 @System
htop.x86_64 1.0.3-4.fc21 @System
httpd.x86_64 2.4.10-9.fc21 @System
httpd-filesystem.noarch 2.4.10-9.fc21 @System
httpd-tools.x86_64 2.4.10-9.fc21 @System
hunspell.x86_64 1.3.3-3.fc21 @System
hunspell-en-US.noarch 0.20121024-9.fc21 @System
hwdata.noarch 0.272-1.fc21 @System
hyphen.x86_64 2.8.7-3.fc21 @System
hyphen-en.noarch 2.8.7-3.fc21 @System
i3.x86_64 4.8-4.fc21 @System
i3lock.x86_64 2.6-2.fc21 @System
i3status.x86_64 2.8-3.fc21 @System
ibus.x86_64 1.5.9-5.fc21 @System
ibus-chewing.x86_64 1.4.14-2.fc21 @System
ibus-gtk2.x86_64 1.5.9-5.fc21 @System
ibus-gtk3.x86_64 1.5.9-5.fc21 @System
ibus-hangul.x86_64 1.4.2-10.fc21 @System
ibus-kkc.x86_64 1.5.21-2.fc21 @System
ibus-libpinyin.x86_64 1.6.92-4.fc21 @System
ibus-libs.x86_64 1.5.9-5.fc21 @System
ibus-m17n.x86_64 1.3.4-17.fc21 @System
ibus-rawcode.x86_64 1.3.2-5.fc21 @System
ibus-setup.noarch 1.5.9-5.fc21 @System
ibus-typing-booster.noarch 1.2.11-1.fc21 @System
ibus-wayland.x86_64 1.5.9-5.fc21 @System
icedax.x86_64 1.1.11-25.fc21 @System
icoutils.x86_64 0.31.0-6.fc21 @System
ilmbase.x86_64 2.1.0-3.fc21 @System
imlib2.x86_64 1.4.6-2.fc21 @System
info.x86_64 5.2-5.fc21 @System
initscripts.x86_64 9.56.1-5.fc21 @System
iproute.x86_64 3.16.0-3.fc21 @System
iptables.x86_64 1.4.21-13.fc21 @System
iptstate.x86_64 2.2.5-5.fc21 @System
iputils.x86_64 20140519-4.fc21 @System
ipw2100-firmware.noarch 1.3-17.fc21 @System
ipw2200-firmware.noarch 3.1-10.fc21 @System
ipxe-roms-qemu.noarch 20140303-3.gitff1e7fc7.fc21 @System
iscsi-initiator-utils.x86_64 6.2.0.873-24.gitc9d830b.fc21 @System
iscsi-initiator-utils-iscsiuio.x86_64 6.2.0.873-24.gitc9d830b.fc21 @System
iso-codes.noarch 3.57-1.fc21 @System
isomd5sum.x86_64 1:1.0.12-3.fc21 @System
iw.x86_64 3.14-3.fc21 @System
iwl100-firmware.noarch 39.31.5.1-41.fc21 @System
iwl1000-firmware.noarch 1:39.31.5.1-41.fc21 @System
iwl105-firmware.noarch 18.168.6.1-41.fc21 @System
iwl135-firmware.noarch 18.168.6.1-41.fc21 @System
iwl2000-firmware.noarch 18.168.6.1-41.fc21 @System
iwl2030-firmware.noarch 18.168.6.1-41.fc21 @System
iwl3160-firmware.noarch 25.222.9.0-41.fc21 @System
iwl3945-firmware.noarch 15.32.2.9-41.fc21 @System
iwl4965-firmware.noarch 228.61.2.24-41.fc21 @System
iwl5000-firmware.noarch 8.83.5.1_1-41.fc21 @System
iwl5150-firmware.noarch 8.24.2.2-41.fc21 @System
iwl6000-firmware.noarch 9.221.4.1-41.fc21 @System
iwl6000g2a-firmware.noarch 17.168.5.3-41.fc21 @System
iwl6000g2b-firmware.noarch 17.168.5.2-41.fc21 @System
iwl6050-firmware.noarch 41.28.5.1-41.fc21 @System
iwl7260-firmware.noarch 25.222.9.0-41.fc21 @System
jansson.x86_64 2.6-4.fc21 @System
jasper-libs.i686 1.900.1-27.fc21 @System
jasper-libs.x86_64 1.900.1-27.fc21 @System
java-1.8.0-openjdk.i686 1:1.8.0.25-5.b18.fc21 @System
java-1.8.0-openjdk.x86_64 1:1.8.0.25-5.b18.fc21 @System
java-1.8.0-openjdk-headless.i686 1:1.8.0.25-5.b18.fc21 @System
java-1.8.0-openjdk-headless.x86_64 1:1.8.0.25-5.b18.fc21 @System
javamail.noarch 1.5.1-3.fc21 @System
javapackages-tools.noarch 4.1.0-4.fc21 @System
jbigkit-libs.i686 2.1-2.fc21 @System
jbigkit-libs.x86_64 2.1-2.fc21 @System
jimtcl.x86_64 0.75-3.fc21 @System
jomolhari-fonts.noarch 0.003-19.fc21 @System
json-c.x86_64 0.12-5.fc21 @System
json-glib.x86_64 1.0.2-4.fc21 @System
jwhois.x86_64 4.0-37.fc21 @System
kactivities-libs.x86_64 4.13.3-6.fc21 @System
kbd.x86_64 2.0.2-3.fc21 @System
kbd-legacy.noarch 2.0.2-3.fc21 @System
kbd-misc.noarch 2.0.2-3.fc21 @System
kde-filesystem.x86_64 4-49.fc21 @System
kde-l10n.noarch 4.14.3-1.fc21 @System
kde-l10n-British.noarch 4.14.3-1.fc21 @System
kde-runtime.x86_64 4.14.3-2.fc21 @System
kde-runtime-drkonqi.x86_64 4.14.3-2.fc21 @System
kde-runtime-flags.noarch 4.14.3-2.fc21 @System
kde-runtime-libs.x86_64 4.14.3-2.fc21 @System
kde-settings.noarch 21-1.fc21 @System
kdelibs.x86_64 6:4.14.3-1.fc21 @System
kdelibs-common.x86_64 6:4.14.3-1.fc21 @System
kdelibs-webkit.x86_64 6:4.14.3-1.fc21 @System
kdepimlibs-gpgme.x86_64 4.14.3-1.fc21 @System
kdepimlibs-kxmlrpcclient.x86_64 4.14.3-1.fc21 @System
kernel.x86_64 3.17.3-300.fc21 @System
kernel.x86_64 3.17.4-301.fc21 @System
kernel.x86_64 3.17.7-300.fc21 @System
kernel-core.x86_64 3.17.3-300.fc21 @System
kernel-core.x86_64 3.17.4-301.fc21 @System
kernel-core.x86_64 3.17.7-300.fc21 @System
kernel-headers.x86_64 3.17.7-300.fc21 @System
kernel-modules.x86_64 3.17.3-300.fc21 @System
kernel-modules.x86_64 3.17.4-301.fc21 @System
kernel-modules.x86_64 3.17.7-300.fc21 @System
kexec-tools.x86_64 2.0.7-11.fc21 @System
keybinder3.x86_64 0.3.0-4.fc21 @System
keyutils.x86_64 1.5.9-4.fc21 @System
keyutils-libs.i686 1.5.9-4.fc21 @System
keyutils-libs.x86_64 1.5.9-4.fc21 @System
khmeros-base-fonts.noarch 5.0-18.fc21 @System
khmeros-fonts-common.noarch 5.0-18.fc21 @System
kmod.x86_64 19-1.fc21 @System
kmod-libs.x86_64 19-1.fc21 @System
kpartx.x86_64 0.4.9-68.fc21.1 @System
krb5-libs.i686 1.12.2-9.fc21 @System
krb5-libs.x86_64 1.12.2-9.fc21 @System
lame-libs.x86_64 3.99.5-5.fc21 @System
langtable.noarch 0.0.27-1.fc21 @System
langtable-data.noarch 0.0.27-1.fc21 @System
langtable-python.noarch 0.0.27-1.fc21 @System
lcms2.i686 2.6-4.fc21 @System
lcms2.x86_64 2.6-4.fc21 @System
less.x86_64 458-13.fc21 @System
libGLEW.x86_64 1.10.0-5.fc21 @System
libICE.i686 1.0.9-2.fc21 @System
libICE.x86_64 1.0.9-2.fc21 @System
libIDL.x86_64 0.8.14-9.fc21 @System
libSM.i686 1.2.2-2.fc21 @System
libSM.x86_64 1.2.2-2.fc21 @System
libX11.i686 1.6.2-2.fc21 @System
libX11.x86_64 1.6.2-2.fc21 @System
libX11-common.noarch 1.6.2-2.fc21 @System
libX11-devel.x86_64 1.6.2-2.fc21 @System
libXScrnSaver.i686 1.2.2-8.fc21 @System
libXScrnSaver.x86_64 1.2.2-8.fc21 @System
libXau.i686 1.0.8-4.fc21 @System
libXau.x86_64 1.0.8-4.fc21 @System
libXau-devel.x86_64 1.0.8-4.fc21 @System
libXaw.x86_64 1.0.12-4.fc21 @System
libXcomposite.i686 0.4.4-6.fc21 @System
libXcomposite.x86_64 0.4.4-6.fc21 @System
libXcursor.i686 1.1.14-4.fc21 @System
libXcursor.x86_64 1.1.14-4.fc21 @System
libXdamage.i686 1.1.4-6.fc21 @System
libXdamage.x86_64 1.1.4-6.fc21 @System
libXdmcp.x86_64 1.1.1-7.fc21 @System
libXevie.x86_64 1.0.3-9.fc21 @System
libXext.i686 1.3.3-2.fc21 @System
libXext.x86_64 1.3.3-2.fc21 @System
libXfixes.i686 5.0.1-4.fc21 @System
libXfixes.x86_64 5.0.1-4.fc21 @System
libXfont.x86_64 1.5.0-2.fc21 @System
libXft.i686 2.3.2-2.fc21 @System
libXft.x86_64 2.3.2-2.fc21 @System
libXi.i686 1.7.4-2.fc21 @System
libXi.x86_64 1.7.4-2.fc21 @System
libXinerama.i686 1.1.3-4.fc21 @System
libXinerama.x86_64 1.1.3-4.fc21 @System
libXmu.x86_64 1.1.2-2.fc21 @System
libXp.x86_64 1.0.2-4.fc21 @System
libXpm.x86_64 3.5.11-3.fc21 @System
libXpm-devel.x86_64 3.5.11-3.fc21 @System
libXrandr.i686 1.4.2-2.fc21 @System
libXrandr.x86_64 1.4.2-2.fc21 @System
libXrender.i686 0.9.8-4.fc21 @System
libXrender.x86_64 0.9.8-4.fc21 @System
libXres.x86_64 1.0.7-4.fc21 @System
libXt.x86_64 1.1.4-10.fc21 @System
libXtst.i686 1.2.2-4.fc21 @System
libXtst.x86_64 1.2.2-4.fc21 @System
libXv.x86_64 1.0.10-2.fc21 @System
libXvMC.x86_64 1.0.8-4.fc21 @System
libXxf86dga.x86_64 1.1.4-4.fc21 @System
libXxf86misc.x86_64 1.0.3-9.fc21 @System
libXxf86vm.i686 1.1.3-4.fc21 @System
libXxf86vm.x86_64 1.1.3-4.fc21 @System
libabw.x86_64 0.1.1-1.fc21 @System
libacl.x86_64 2.2.52-7.fc21 @System
libaio.x86_64 0.3.110-4.fc21 @System
libao.x86_64 1.2.0-3.fc21 @System
libappstream-glib.x86_64 0.2.8-1.fc21 @System
libarchive.x86_64 3.1.2-10.fc21 @System
libass.x86_64 0.12.0-1.fc21 @System
libassuan.x86_64 2.1.0-5.fc21 @System
libasyncns.x86_64 0.8-8.fc21 @System
libatasmart.x86_64 0.19-7.fc21 @System
libatomic_ops.x86_64 7.4.2-4.fc21 @System
libattr.i686 2.4.47-9.fc21 @System
libattr.x86_64 2.4.47-9.fc21 @System
libavc1394.x86_64 0.5.3-16.fc21 @System
libbabeltrace.x86_64 1.2.1-3.fc21 @System
libbase.noarch 1.1.3-13.fc21 @System
libbasicobjects.x86_64 0.1.1-24.fc21 @System
libblkid.x86_64 2.25.2-2.fc21 @System
libbluray.x86_64 0.6.2-1.fc21 @System
libbonobo.x86_64 2.32.1-8.fc21 @System
libburn.x86_64 1.3.8-2.fc21 @System
libcacard.x86_64 2:2.1.2-7.fc21 @System
libcanberra.x86_64 0.30-7.fc21 @System
libcanberra-gtk2.x86_64 0.30-7.fc21 @System
libcanberra-gtk3.x86_64 0.30-7.fc21 @System
libcap.i686 2.24-7.fc21 @System
libcap.x86_64 2.24-7.fc21 @System
libcap-ng.x86_64 0.7.4-7.fc21 @System
libcdio.x86_64 0.92-3.fc21 @System
libcdio-paranoia.x86_64 10.2+0.90+1-4.fc21 @System
libcdr.x86_64 0.1.1-1.fc21 @System
libcgroup.x86_64 0.41-6.fc21 @System
libchamplain.x86_64 0.12.9-1.fc21 @System
libchamplain-gtk.x86_64 0.12.9-1.fc21 @System
libchewing.x86_64 0.4.0-4.fc21 @System
libcmis.x86_64 0.4.1-6.fc21 @System
libcollection.x86_64 0.6.2-24.fc21 @System
libcom_err.i686 1.42.11-4.fc21 @System
libcom_err.x86_64 1.42.11-4.fc21 @System
libcomps.x86_64 0.1.6-14.fc21 @System
libconfig.x86_64 1.4.9-7.fc21 @System
libconfuse.x86_64 2.7-8.fc21 @System
libcroco.x86_64 0.6.8-5.fc21 @System
libcue.x86_64 1.4.0-4.fc21 @System
libcurl.i686 7.37.0-11.fc21 @System
libcurl.x86_64 7.37.0-11.fc21 @System
libdaemon.x86_64 0.14-8.fc21 @System
libdatrie.i686 0.2.8-5.fc21 @System
libdatrie.x86_64 0.2.8-5.fc21 @System
libdb.i686 5.3.28-9.fc21 @System
libdb.x86_64 5.3.28-9.fc21 @System
libdb-utils.x86_64 5.3.28-9.fc21 @System
libdc1394.x86_64 2.2.2-3.fc21 @System
libdhash.x86_64 0.4.3-24.fc21 @System
libdmapsharing.x86_64 2.9.29-2.fc21 @System
libdmx.x86_64 1.1.3-4.fc21 @System
libdnet.x86_64 1.12-15.fc21 @System
libdrm.i686 2.4.58-3.fc21 @System
libdrm.x86_64 2.4.58-3.fc21 @System
libdv.x86_64 1.0.0-19.fc21 @System
libdvdnav.x86_64 5.0.1-2.20140901gite225924.fc21 @System
libdvdread.x86_64 5.0.0-1.fc21 @System
libe-book.x86_64 0.1.1-3.fc21 @System
libedit.i686 3.1-8.20140213cvs.fc21 @System
libedit.x86_64 3.1-8.20140213cvs.fc21 @System
libeot.x86_64 0.01-3.fc21 @System
libepoxy.x86_64 1.2-1.fc21 @System
liberation-fonts-common.noarch 1:1.07.4-4.fc21 @System
liberation-mono-fonts.noarch 1:1.07.4-4.fc21 @System
liberation-sans-fonts.noarch 1:1.07.4-4.fc21 @System
liberation-serif-fonts.noarch 1:1.07.4-4.fc21 @System
libertas-usb8388-firmware.noarch 2:20141013-41.git0e5f6377.fc21 @System
libetonyek.x86_64 0.1.1-3.fc21 @System
libev.x86_64 4.19-1.fc21 @System
libevdev.x86_64 1.2.2-4.fc21 @System
libevent.x86_64 2.0.21-6.fc21 @System
libexif.x86_64 0.6.21-8.fc21 @System
libexttextcat.x86_64 3.4.4-2.fc21 @System
libfdt.x86_64 1.4.0-5.fc21 @System
libffi.i686 3.1-6.fc21 @System
libffi.x86_64 3.1-6.fc21 @System
libffi-devel.x86_64 3.1-6.fc21 @System
libfontenc.x86_64 1.1.2-3.fc21 @System
libfonts.noarch 1.1.3-16.fc21 @System
libformula.noarch 1.1.3-13.fc21 @System
libfprint.x86_64 0.5.1-4.fc21 @System
libfreehand.x86_64 0.1.0-3.fc21 @System
libgadu.x86_64 1.12.0-4.fc21 @System
libgcc.i686 4.9.2-1.fc21 @System
libgcc.x86_64 4.9.2-1.fc21 @System
libgcrypt.i686 1.6.1-7.fc21 @System
libgcrypt.x86_64 1.6.1-7.fc21 @System
libgdata.x86_64 0.16.1-1.fc21 @System
libgdither.x86_64 0.6-9.fc21 @System
libgee.x86_64 0.16.1-1.fc21 @System
libgexiv2.x86_64 0.10.2-1.fc21 @System
libgfortran.x86_64 4.9.2-1.fc21 @System
libglade2.x86_64 2.6.4-12.fc21 @System
libgltf.x86_64 0.0.2-1.fc21 @System
libgnome.x86_64 2.32.1-9.fc21 @System
libgnome-keyring.x86_64 3.12.0-4.fc21 @System
libgnomekbd.x86_64 3.6.0-6.fc21 @System
libgomp.x86_64 4.9.2-1.fc21 @System
libgovirt.x86_64 0.3.2-1.fc21 @System
libgpg-error.i686 1.13-3.fc21 @System
libgpg-error.x86_64 1.13-3.fc21 @System
libgphoto2.x86_64 2.5.3-9.fc21 @System
libgpod.x86_64 0.8.3-7.fc21 @System
libgsf.x86_64 1.14.29-4.fc21 @System
libgsystem.x86_64 2014.2-4.fc21 @System
libgtop2.x86_64 2.30.0-4.fc21 @System
libgudev1.x86_64 216-12.fc21 @System
libguess.x86_64 1.1-9.fc21 @System
libgusb.x86_64 0.2.3-1.fc21 @System
libgweather.x86_64 3.14.1-1.fc21 @System
libgxps.x86_64 0.2.2-11.fc21 @System
libhangul.x86_64 0.1.0-9.fc21 @System
libhbaapi.x86_64 2.2.9-6.fc21 @System
libhbalinux.x86_64 1.0.16-5.fc21 @System
libhif.x86_64 0.1.6-2.fc21 @System
libibverbs.x86_64 1.1.8-3.fc21 @System
libical.x86_64 1.0-7.fc21 @System
libicu.x86_64 52.1-4.fc21 @System
libidn.i686 1.28-5.fc21 @System
libidn.x86_64 1.28-5.fc21 @System
libidn2.x86_64 0.10-1.fc21 @System
libiec61883.x86_64 1.2.0-12.fc21 @System
libieee1284.x86_64 0.2.11-17.fc21 @System
libimobiledevice.x86_64 1.1.7-1.fc21 @System
libini_config.x86_64 1.1.0-24.fc21 @System
libinput.x86_64 0.6.0-2.fc21 @System
libiodbc.x86_64 3.52.7-8.fc21 @System
libipa_hbac.x86_64 1.12.2-6.fc21 @System
libiptcdata.x86_64 1.0.4-12.fc21 @System
libiscsi.x86_64 1.11.0-2.fc21 @System
libisofs.x86_64 1.3.8-2.fc21 @System
libjpeg-turbo.i686 1.3.1-4.fc21 @System
libjpeg-turbo.x86_64 1.3.1-4.fc21 @System
libjpeg-turbo-devel.x86_64 1.3.1-4.fc21 @System
libkkc.x86_64 0.3.4-3.fc21 @System
libkkc-common.noarch 0.3.4-3.fc21 @System
libkkc-data.x86_64 1:0.2.7-4.fc21 @System
liblangtag.x86_64 0.5.4-4.fc21 @System
liblayout.noarch 0.2.10-10.fc21 @System
libldb.x86_64 1.1.17-4.fc21 @System
libloader.noarch 1.1.3-12.fc21 @System
liblouis.x86_64 2.6.0-1.fc21 @System
liblouis-python3.noarch 2.6.0-1.fc21 @System
libmbim.x86_64 1.10.0-2.fc21 @System
libmbim-utils.x86_64 1.10.0-2.fc21 @System
libmcpp.x86_64 2.7.2-13.fc21 @System
libmediaart.x86_64 0.7.0-1.fc21 @System
libmetalink.x86_64 0.1.2-7.fc21 @System
libmng.x86_64 2.0.2-3.fc21 @System
libmnl.x86_64 1.0.3-9.fc21 @System
libmodman.x86_64 2.0.1-9.fc21 @System
libmount.x86_64 2.25.2-2.fc21 @System
libmowgli.x86_64 1.0.0-8.fc21 @System
libmpc.x86_64 1.0.2-3.fc21 @System
libmpcdec.x86_64 1.2.6-14.fc21 @System
libmspack.x86_64 0.4-0.4.alpha.fc21 @System
libmspub.x86_64 0.1.1-2.fc21 @System
libmtp.x86_64 1.1.8-1.fc21 @System
libmusicbrainz5.x86_64 5.0.1-11.fc21 @System
libmwaw.x86_64 0.3.3-1.fc21 @System
libmx.x86_64 1.4.7-15.fc21 @System
libndp.x86_64 1.4-2.fc21 @System
libnetfilter_conntrack.x86_64 1.0.4-4.fc21 @System
libnfnetlink.x86_64 1.0.1-6.fc21 @System
libnfsidmap.x86_64 0.26-2.1.fc21 @System
libnice.x86_64 0.1.7-1.fc21 @System
libnice-gstreamer1.x86_64 0.1.7-1.fc21 @System
libnl3.x86_64 3.2.25-5.fc21 @System
libnl3-cli.x86_64 3.2.25-5.fc21 @System
libnm-gtk.x86_64 0.9.9.0-15.git20140424.fc21 @System
libnotify.x86_64 0.7.6-4.fc21 @System
liboath.x86_64 2.4.1-6.fc21 @System
liboauth.x86_64 1.0.3-3.fc21 @System
libodfgen.x86_64 0.1.2-1.fc21 @System
libofa.x86_64 0.9.3-25.fc21 @System
libogg.x86_64 2:1.3.0-8.fc21 @System
libopenraw.x86_64 0.0.9-9.fc21 @System
liborcus.x86_64 0.7.0-5.fc21 @System
libosinfo.x86_64 0.2.11-2.fc21 @System
libpaper.x86_64 1.1.24-10.fc21 @System
libpath_utils.x86_64 0.2.1-24.fc21 @System
libpcap.x86_64 14:1.6.2-1.fc21 @System
libpciaccess.i686 0.13.3-0.3.fc21 @System
libpciaccess.x86_64 0.13.3-0.3.fc21 @System
libpeas.x86_64 1.12.1-1.fc21 @System
libphodav-1.0.x86_64 0.4-5.fc21 @System
libpinyin.x86_64 1.0.0-3.fc21 @System
libpinyin-data.x86_64 1.0.0-3.fc21 @System
libpipeline.x86_64 1.3.0-4.fc21 @System
libplist.x86_64 1.12-1.fc21 @System
libpng.i686 2:1.6.10-3.fc21 @System
libpng.x86_64 2:1.6.10-3.fc21 @System
libpng-devel.x86_64 2:1.6.10-3.fc21 @System
libpng12.i686 1.2.50-8.fc21 @System
libproxy.x86_64 0.4.11-10.fc21 @System
libproxy-mozjs.x86_64 0.4.11-10.fc21 @System
libpsl.x86_64 0.6.2-1.fc21 @System
libpurple.x86_64 2.10.11-1.fc21 @System
libpwquality.x86_64 1.2.4-2.fc21 @System
libqb.x86_64 0.17.0-3.fc21 @System
libqmi.x86_64 1.10.2-2.fc21 @System
libqmi-utils.x86_64 1.10.2-2.fc21 @System
libquadmath.x86_64 4.9.2-1.fc21 @System
libquvi.x86_64 0.9.4-5.fc21 @System
libquvi-scripts.noarch 0.9.20131130-3.fc21 @System
libqzeitgeist.x86_64 0.8.0-12.fc21 @System
librados2.x86_64 1:0.80.7-2.fc21 @System
libraw1394.x86_64 2.1.0-4.fc21 @System
librbd1.x86_64 1:0.80.7-2.fc21 @System
librdmacm.x86_64 1.0.18.1-3.fc21 @System
libref_array.x86_64 0.1.4-24.fc21 @System
libreoffice.x86_64 1:4.3.4.1-10.fc21 @System
libreoffice-base.x86_64 1:4.3.4.1-10.fc21 @System
libreoffice-calc.x86_64 1:4.3.4.1-10.fc21 @System
libreoffice-core.x86_64 1:4.3.4.1-10.fc21 @System
libreoffice-draw.x86_64 1:4.3.4.1-10.fc21 @System
libreoffice-emailmerge.x86_64 1:4.3.4.1-10.fc21 @System
libreoffice-filters.x86_64 1:4.3.4.1-10.fc21 @System
libreoffice-graphicfilter.x86_64 1:4.3.4.1-10.fc21 @System
libreoffice-impress.x86_64 1:4.3.4.1-10.fc21 @System
libreoffice-math.x86_64 1:4.3.4.1-10.fc21 @System
libreoffice-opensymbol-fonts.noarch 1:4.3.4.1-10.fc21 @System
libreoffice-pdfimport.x86_64 1:4.3.4.1-10.fc21 @System
libreoffice-pyuno.x86_64 1:4.3.4.1-10.fc21 @System
libreoffice-ure.x86_64 1:4.3.4.1-10.fc21 @System
libreoffice-writer.x86_64 1:4.3.4.1-10.fc21 @System
libreoffice-writer2latex.x86_64 1.0.2-15.fc21 @System
libreoffice-xsltfilter.x86_64 1:4.3.4.1-10.fc21 @System
librepo.x86_64 1.7.10-1.fc21 @System
libreport.x86_64 2.3.0-5.fc21 @System
libreport-anaconda.x86_64 2.3.0-5.fc21 @System
libreport-cli.x86_64 2.3.0-5.fc21 @System
libreport-fedora.x86_64 2.3.0-5.fc21 @System