-
Notifications
You must be signed in to change notification settings - Fork 0
/
anaconda-ks.cfg
1567 lines (1563 loc) · 51.6 KB
/
anaconda-ks.cfg
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
# Kickstart file automatically generated by anaconda.
#version=DEVEL
install
lang en_US.UTF-8
keyboard fr-latin9
network --onboot yes --device em1 --bootproto dhcp --noipv6 --hostname gilgamesh.uruk.home
timezone --utc America/Edmonton
repo --name=fedora-os --baseurl=http://mir01.syntis.net/fedora/linux/releases/17/Everything/x86_64/os/
repo --name=fedora-updates --baseurl=http://download.fedoraproject.org/pub/fedora/linux/updates/17/x86_64/
repo --name=rpmfusion-free --baseurl=http://download1.rpmfusion.org/free/fedora/releases/17/Everything/x86_64/os/
repo --name=rpmfusion-non-free --baseurl=http://download1.rpmfusion.org/nonfree/fedora/releases/17/Everything/x86_64/os/
repo --name=rpmfusion-free-updates --baseurl=http://download1.rpmfusion.org/free/fedora/updates/17/x86_64/
repo --name=rpmfusion-non-free-updates --baseurl=http://download1.rpmfusion.org/nonfree/fedora/updates/17/x86_64/
rootpw --iscrypted $6$uQ0SQWhJ4bDHp4xK$pdAujZ6.9AeX0ps.RLsciofZRZr7RPZBcqp6feM/iwhjJwEXUXfNWAUd4a3nGXF1BWRBemvLB8hqOFKfVGAAf/
selinux --enforcing
authconfig --enableshadow --passalgo=sha512
firewall --service=ssh
# The following is the partition information you requested
# Note that any partitions you deleted are not expressed
# here so unless you clear all partitions first, this is
# not guaranteed to work
clearpart --none
ignoredisk --interactive
#ignoredisk --only-use=sdd
#part pv.008051 --onpart=sdd3 --noformat
#part / --fstype=ext4 --grow --maxsize=15000 --size=1024
#part /boot --fstype=ext4 --size=256
#part swap --grow --maxsize=2048 --size=1008
#bootloader --location=mbr --timeout=5 --driveorder=sdd --append="rhgb quiet"
%packages
abattis-cantarell-fonts-0.0.8-1.fc17.noarch
abrt-2.0.18-1.fc17.x86_64
abrt-addon-ccpp-2.0.18-1.fc17.x86_64
abrt-addon-kerneloops-2.0.18-1.fc17.x86_64
abrt-addon-python-2.0.18-1.fc17.x86_64
abrt-addon-vmcore-2.0.18-1.fc17.x86_64
abrt-addon-xorg-2.0.18-1.fc17.x86_64
abrt-dbus-2.0.18-1.fc17.x86_64
abrt-desktop-2.0.18-1.fc17.x86_64
abrt-gui-2.0.18-1.fc17.x86_64
abrt-libs-2.0.18-1.fc17.x86_64
abrt-plugin-bodhi-2.0.18-1.fc17.x86_64
abrt-retrace-client-2.0.18-1.fc17.x86_64
accountsservice-0.6.21-2.fc17.x86_64
accountsservice-libs-0.6.21-2.fc17.x86_64
acl-2.2.51-5.fc17.x86_64
adwaita-cursor-theme-3.4.2-1.fc17.noarch
adwaita-gtk2-theme-3.4.2-1.fc17.x86_64
adwaita-gtk3-theme-3.4.2-1.fc17.x86_64
aic94xx-firmware-30-3.fc17.noarch
alsa-firmware-1.0.25-1.fc17.noarch
alsa-lib-1.0.26-1.fc17.x86_64
alsa-plugins-pulseaudio-1.0.26-1.fc17.x86_64
alsa-tools-firmware-1.0.26.1-1.fc17.x86_64
alsa-utils-1.0.26-1.fc17.x86_64
anaconda-yum-plugins-1.0-7.fc17.noarch
ant-1.8.3-1.fc17.noarch
anthy-9100h-17.fc17.x86_64
apache-commons-codec-1.6-2.fc17.noarch
apache-commons-collections-3.2.1-12.fc17.noarch
apache-commons-daemon-1.0.11-1.fc17.x86_64
apache-commons-dbcp-1.4-9.fc17.noarch
apache-commons-io-2.3-1.fc17.noarch
apache-commons-logging-1.1.1-19.fc17.noarch
apache-commons-pool-1.5.7-2.fc17.noarch
apg-2.3.0b-16.fc17.x86_64
apr-1.4.6-1.fc17.x86_64
apr-util-1.4.1-2.fc17.x86_64
apr-util-ldap-1.4.1-2.fc17.x86_64
ar9170-firmware-2009.05.28-4.fc17.noarch
argyllcms-1.4.0-2.fc17.x86_64
at-3.1.13-8.fc17.x86_64
atk-2.4.0-1.fc17.x86_64
atkmm-2.22.6-1.fc17.x86_64
atmel-firmware-1.3-9.fc17.noarch
at-spi2-atk-2.4.0-2.fc17.x86_64
at-spi2-core-2.4.2-1.fc17.x86_64
attica-0.4.0-1.fc17.x86_64
attr-2.4.46-5.fc17.x86_64
audit-2.2.1-1.fc17.x86_64
audit-libs-2.2.1-1.fc17.x86_64
audit-libs-python-2.2.1-1.fc17.x86_64
augeas-libs-0.10.0-3.fc17.x86_64
authconfig-6.2.1-1.fc17.x86_64
authconfig-gtk-6.2.1-1.fc17.x86_64
autoconf-2.68-4.fc17.noarch
automake-1.11.6-1.fc17.noarch
avahi-0.6.31-5.fc17.x86_64
avahi-autoipd-0.6.31-5.fc17.x86_64
avahi-glib-0.6.31-5.fc17.x86_64
avahi-gobject-0.6.31-5.fc17.x86_64
avahi-libs-0.6.31-5.fc17.x86_64
avahi-ui-gtk3-0.6.31-5.fc17.x86_64
avalon-framework-4.3-5.fc17.noarch
avalon-logkit-2.1-8.fc17.noarch
b43-fwcutter-016-1.fc17.x86_64
b43-openfwwf-5.2-7.fc17.noarch
baekmuk-ttf-batang-fonts-2.2-32.fc17.noarch
baekmuk-ttf-fonts-common-2.2-32.fc17.noarch
basesystem-10.0-6.fc17.noarch
bash-4.2.39-2.fc17.x86_64
bash-completion-2.0-1.fc17.noarch
batik-1.8-0.5.svn1230816.fc17.noarch
bc-1.06.95-6.fc17.x86_64
beefy-miracle-backgrounds-gnome-16.91.0-2.fc17.noarch
beefy-miracle-backgrounds-single-16.91.0-2.fc17.noarch
bind-9.9.2-3.P1.fc17.x86_64
bind-libs-9.9.2-3.P1.fc17.x86_64
bind-libs-lite-9.9.2-3.P1.fc17.x86_64
bind-license-9.9.2-3.P1.fc17.noarch
bind-utils-9.9.2-3.P1.fc17.x86_64
binutils-2.22.52.0.1-10.fc17.x86_64
biosdevname-0.4.1-1.fc17.x86_64
bluez-cups-4.99-2.fc17.x86_64
bluez-libs-4.99-2.fc17.x86_64
boost-filesystem-1.48.0-13.fc17.x86_64
boost-program-options-1.48.0-13.fc17.x86_64
boost-regex-1.48.0-13.fc17.x86_64
boost-system-1.48.0-13.fc17.x86_64
boost-thread-1.48.0-13.fc17.x86_64
brasero-libs-3.4.1-1.fc17.x86_64
bridge-utils-1.5-3.fc17.x86_64
brlapi-0.5.6-4.fc17.x86_64
brltty-4.3-4.fc17.x86_64
btparser-0.22-1.fc17.x86_64
btrfs-progs-0.19-18.fc17.x86_64
busybox-1.19.3-2.fc17.x86_64
bzip2-1.0.6-4.fc17.x86_64
bzip2-libs-1.0.6-4.fc17.x86_64
bzr-2.5.0-1.fc17.x86_64
c2050-0.3b-5.fc17.x86_64
c2070-0.99-8.fc17.x86_64
ca-certificates-2012.81-1.fc17.noarch
cairo-1.10.2-7.fc17.x86_64
cairo-gobject-1.10.2-7.fc17.x86_64
cairomm-1.10.0-4.fc17.x86_64
c-ares-1.7.5-2.fc17.x86_64
cdparanoia-10.2-11.fc17.x86_64
cdparanoia-libs-10.2-11.fc17.x86_64
cdrdao-1.2.3-13.fc17.x86_64
celt-0.11.1-3.fc17.x86_64
celt051-0.5.1.3-4.fc17.x86_64
ceph-0.44-5.fc17.x86_64
check-0.9.8-5.fc17.x86_64
checkpolicy-2.1.10-1.fc17.x86_64
chkconfig-1.3.59-1.fc17.x86_64
chrony-1.27-0.3.pre1.fc17.x86_64
cifs-utils-5.8-1.fc17.x86_64
cjet-0.8.9-11.fc17.x86_64
cjkuni-uming-fonts-0.2.20080216.1-49.fc17.noarch
cloog-ppl-0.15.11-3.fc17.1.x86_64
clucene-core-2.3.3.4-6.fc17.x86_64
clutter-1.10.8-1.fc17.x86_64
clutter-gst-1.5.6-1.fc17.x86_64
clutter-gtk-1.2.0-1.fc17.x86_64
cogl-1.10.2-1.fc17.x86_64
colord-0.1.23-1.fc17.x86_64
colordiff-1.0.9-5.fc17.noarch
color-filesystem-1-9.noarch
comps-extras-20-3.fc17.noarch
control-center-filesystem-3.4.3-1.fc17.x86_64
coreutils-8.15-9.fc17.x86_64
cpio-2.11-6.fc17.x86_64
cpp-4.7.2-2.fc17.x86_64
cracklib-2.8.18-3.fc17.x86_64
cracklib-dicts-2.8.18-3.fc17.x86_64
crash-6.1.0-1.fc17.x86_64
crda-1.1.2_2011.04.28-2.fc17.x86_64
createrepo-0.9.9-11.fc17.noarch
cronie-1.4.10-1.fc17.x86_64
cronie-anacron-1.4.10-1.fc17.x86_64
crontabs-1.11-3.20101115git.fc17.noarch
cryptopp-5.6.1-7.fc17.x86_64
cryptsetup-1.5.1-1.fc17.x86_64
cryptsetup-libs-1.5.1-1.fc17.x86_64
cryptsetup-python-1.5.1-1.fc17.x86_64
cups-1.5.4-11.fc17.x86_64
cups-libs-1.5.4-11.fc17.x86_64
cups-pk-helper-0.2.2-2.fc17.x86_64
curl-7.24.0-5.fc17.x86_64
custom-kickstarts-0.17.5-1.fc17.noarch
cvs-1.11.23-25.fc17.x86_64
cyrus-sasl-2.1.23-31.fc17.x86_64
cyrus-sasl-devel-2.1.23-31.fc17.x86_64
cyrus-sasl-gssapi-2.1.23-31.fc17.x86_64
cyrus-sasl-lib-2.1.23-31.fc17.x86_64
cyrus-sasl-md5-2.1.23-31.fc17.x86_64
cyrus-sasl-plain-2.1.23-31.fc17.x86_64
db4-4.8.30-10.fc17.x86_64
dbus-1.4.10-7.fc17.x86_64
dbus-glib-0.98-2.fc17.x86_64
dbus-libs-1.4.10-7.fc17.x86_64
dbusmenu-qt-0.9.0-3.fc17.x86_64
dbus-python-0.83.0-9.fc17.x86_64
dbus-sharp-0.7.0-5.fc17.x86_64
dbus-sharp-glib-0.5.0-3.fc17.x86_64
dbus-x11-1.4.10-7.fc17.x86_64
dconf-0.12.1-1.fc17.x86_64
debootstrap-1.0.44-1.fc17.noarch
dejavu-fonts-common-2.33-3.fc17.noarch
dejavu-sans-fonts-2.33-3.fc17.noarch
dejavu-sans-mono-fonts-2.33-3.fc17.noarch
dejavu-serif-fonts-2.33-3.fc17.noarch
deltarpm-3.6-0.7.20110223git.fc17.x86_64
desktop-backgrounds-gnome-17.0.0-1.fc17.noarch
desktop-file-utils-0.21-1.fc17.x86_64
device-mapper-1.02.74-6.fc17.x86_64
device-mapper-event-1.02.74-6.fc17.x86_64
device-mapper-event-libs-1.02.74-6.fc17.x86_64
device-mapper-libs-1.02.74-6.fc17.x86_64
device-mapper-multipath-0.4.9-26.fc17.x86_64
device-mapper-multipath-libs-0.4.9-26.fc17.x86_64
dhclient-4.2.4-16.P2.fc17.x86_64
dhcp-common-4.2.4-16.P2.fc17.x86_64
dhcp-libs-4.2.4-16.P2.fc17.x86_64
dialog-1.1-15.20110707.fc17.x86_64
diffutils-3.2-6.fc17.x86_64
Django-1.4.3-1.fc17.noarch
django-addons-0.6.3-3.fc17.noarch
django-ajax-selects-1.1.4-5.fc17.noarch
django-authority-0.3-5.fc17.noarch
django-contact-form-0.3-7.fc17.hg97559a887345.noarch
django-filter-0.5.0-4.fc17.noarch
django-notification-0.1.2-6.fc17.noarch
django-pagination-1.0.5-7.fc17.noarch
django-piston-0.2.3-1.fc17.noarch
django-profile-0.6-0.5.20090813svnr420.fc17.noarch
django-sorting-0.1-4.fc17.noarch
Django-south-0.7.5-1.fc17.noarch
django-staticfiles-0.3.2-5.fc17.noarch
django-tagging-0.3.1-3.fc17.noarch
django-threadedcomments-0.5.3-4.fc17.noarch
dmidecode-2.11-8.fc17.x86_64
dmraid-1.0.0.rc16-16.fc17.x86_64
dmraid-events-1.0.0.rc16-16.fc17.x86_64
dnsmasq-2.63-1.fc17.x86_64
docbook-dtds-1.0-56.fc17.noarch
docbook-style-xsl-1.76.1-5.fc17.noarch
dosfstools-3.0.12-2.fc17.x86_64
dotconf-1.3-3.fc17.x86_64
dracut-018-105.git20120927.fc17.noarch
dracut-network-018-105.git20120927.fc17.noarch
dump-0.4-0.12.b44.fc17.x86_64
dumpet-2.1-4.fc17.x86_64
duplicity-0.6.18-1.fc17.x86_64
dvb-apps-1.1.2-1.1479.37781d27a444.fc17.x86_64
dvd+rw-tools-7.1-9.fc17.x86_64
e2fsprogs-1.42.3-3.fc17.x86_64
e2fsprogs-libs-1.42.3-3.fc17.x86_64
ebtables-2.0.10-5.fc17.x86_64
ecj-3.4.2-13.fc17.x86_64
ed-1.5-3.fc17.x86_64
eekboard-1.0.8-2.fc17.x86_64
eekboard-libs-1.0.8-2.fc17.x86_64
eekboard-service-1.0.8-2.fc17.x86_64
efibootmgr-0.5.4-12.fc17.x86_64
eject-2.1.5-22.fc17.x86_64
elfutils-0.154-2.fc17.x86_64
elfutils-devel-0.154-2.fc17.x86_64
elfutils-libelf-0.154-2.fc17.x86_64
elfutils-libelf-devel-0.154-2.fc17.x86_64
elfutils-libs-0.154-2.fc17.x86_64
emacs-filesystem-24.1-7.fc17.x86_64
enca-1.13-3.fc17.x86_64
enchant-1.6.0-4.fc17.x86_64
espeak-1.46.02-3.fc17.x86_64
ethtool-3.2-2.fc17.x86_64
evince-libs-3.4.0-2.fc17.x86_64
exempi-2.2.0-1.fc17.x86_64
exiv2-libs-0.22-6.fc17.x86_64
expat-2.1.0-1.fc17.x86_64
farstream-0.1.2-2.fc17.x86_64
fcoe-utils-1.0.22-2.fc17.x86_64
febootstrap-3.20-1.fc17.x86_64
febootstrap-supermin-helper-3.20-1.fc17.x86_64
fedora-bookmarks-15-0.2.noarch
fedora-kickstarts-0.17.5-1.fc17.noarch
fedora-logos-17.0.3-1.fc17.noarch
fedora-release-17-1.noarch
fedora-release-notes-17.1.0-1.fc17.noarch
fedup-0.7.2-1.fc17.noarch
festival-speechtools-libs-1.2.96-20.fc17.x86_64
ffmpeg-0.10.6-1.fc17.x86_64
ffmpeg-libs-0.10.6-1.fc17.x86_64
fftw-libs-double-3.3.3-4.fc17.x86_64
file-5.11-2.fc17.x86_64
file-libs-5.11-2.fc17.x86_64
filesystem-3-2.fc17.x86_64
findutils-4.5.10-4.fc17.x86_64
fipscheck-1.3.0-3.fc17.x86_64
fipscheck-lib-1.3.0-3.fc17.x86_64
firefox-17.0.1-1.fc17.x86_64
flac-1.2.1-9.fc17.x86_64
flite-1.3-17.fc17.x86_64
fontconfig-2.8.0-8.fc17.x86_64
fontpackages-filesystem-1.44-4.fc17.noarch
foomatic-filters-4.0.8-8.fc17.x86_64
fop-1.0-20.fc17.noarch
fortune-mod-1.99.1-15.fc17.x86_64
fpaste-0.3.7.1-2.fc17.noarch
fping-3.4-1.fc17.x86_64
fprintd-0.4.1-2.fc17.x86_64
fprintd-pam-0.4.1-2.fc17.x86_64
freetype-2.4.8-3.fc17.x86_64
fribidi-0.19.2-4.fc17.x86_64
fuse-2.8.7-2.fc17.x86_64
fuse-libs-2.8.7-2.fc17.x86_64
fxload-2002_04_11-11.fc17.x86_64
gamin-0.1.10-12.fc17.x86_64
gawk-4.0.1-1.fc17.x86_64
gcalctool-6.4.2.1-2.fc17.x86_64
gcc-4.7.2-2.fc17.x86_64
GConf2-3.2.5-3.fc17.x86_64
gcr-3.4.1-2.fc17.x86_64
gd-2.0.35-17.fc17.x86_64
gdb-7.4.50.20120120-52.fc17.x86_64
gdbm-1.10-2.fc17.x86_64
gdisk-0.8.5-1.fc17.x86_64
gdk-pixbuf2-2.26.1-1.fc17.x86_64
genisoimage-1.1.11-14.fc17.x86_64
geoclue-0.12.0-10.fc17.x86_64
geronimo-jms-1.1.1-11.fc17.noarch
gettext-0.18.1.1-14.fc17.x86_64
gettext-common-devel-0.18.1.1-14.fc17.noarch
gettext-devel-0.18.1.1-14.fc17.x86_64
gettext-libs-0.18.1.1-14.fc17.x86_64
ghostscript-9.06-3.fc17.x86_64
ghostscript-cups-9.06-3.fc17.x86_64
ghostscript-fonts-5.50-28.fc17.noarch
giflib-4.1.6-5.fc17.x86_64
git-1.7.11.7-2.fc17.x86_64
gjs-1.32.0-1.fc17.x86_64
glances-1.5.1-1.fc17.noarch
glib2-2.32.4-2.fc17.x86_64
glibc-2.15-58.fc17.i686
glibc-2.15-58.fc17.x86_64
glibc-common-2.15-58.fc17.x86_64
glibc-devel-2.15-58.fc17.x86_64
glibc-headers-2.15-58.fc17.x86_64
glibmm24-2.32.1-1.fc17.x86_64
glib-networking-2.32.3-1.fc17.x86_64
glusterfs-3.2.7-2.fc17.x86_64
glusterfs-fuse-3.2.7-2.fc17.x86_64
glx-utils-7.10-6.20101028.fc17.x86_64
gmime-2.6.9-1.fc17.x86_64
gmp-5.0.2-6.fc17.x86_64
gnupg-1.4.12-1.fc17.x86_64
gnupg2-2.0.19-5.fc17.x86_64
gnutls-2.12.20-4.fc17.x86_64
gnutls-c++-2.12.20-4.fc17.x86_64
gnutls-devel-2.12.20-4.fc17.x86_64
gnutls-utils-2.12.20-4.fc17.x86_64
gobject-introspection-1.32.1-1.fc17.x86_64
gperftools-libs-2.0-5.fc17.x86_64
gpgme-1.3.0-8.fc17.x86_64
gpm-libs-1.20.6-22.fc17.x86_64
grep-2.14-1.fc17.x86_64
groff-1.21-9.fc17.x86_64
groff-base-1.21-9.fc17.x86_64
grub2-2.0-0.39.fc17.x86_64
grub2-tools-2.0-0.39.fc17.x86_64
grubby-8.12-1.fc17.x86_64
grub-efi-0.97-93.fc17.x86_64
gsettings-desktop-schemas-3.4.2-1.fc17.x86_64
gsm-1.0.13-6.fc17.x86_64
gssdp-0.12.1-2.fc17.x86_64
gstreamer-0.10.36-1.fc17.x86_64
gstreamer-plugins-bad-free-0.10.23-8.fc17.x86_64
gstreamer-plugins-base-0.10.36-2.fc17.x86_64
gstreamer-plugins-good-0.10.31-4.fc17.x86_64
gstreamer-python-0.10.22-2.fc17.x86_64
gstreamer-rtsp-0.10.8-2.fc17.x86_64
gstreamer-tools-0.10.36-1.fc17.x86_64
gtk2-2.24.13-1.fc17.x86_64
gtk2-engines-2.20.2-4.fc17.x86_64
gtk2-immodule-xim-2.24.13-1.fc17.x86_64
gtk3-3.4.4-1.fc17.x86_64
gtk3-immodule-xim-3.4.4-1.fc17.x86_64
gtkhtml3-4.4.4-1.fc17.x86_64
gtkmm30-3.4.2-1.fc17.x86_64
gtk-sharp2-2.12.11-5.fc17.x86_64
gtksourceview3-3.4.2-1.fc17.x86_64
gtk-vnc2-0.5.1-4.fc17.x86_64
gucharmap-3.4.1.1-2.fc17.x86_64
guile-1.8.8-4.fc17.2.x86_64
gupnp-0.18.3-1.fc17.x86_64
gupnp-av-0.10.2-1.fc17.x86_64
gupnp-igd-0.2.1-1.fc17.x86_64
gutenprint-5.2.9-1.fc17.x86_64
gutenprint-cups-5.2.9-1.fc17.x86_64
gvfs-1.12.3-1.fc17.x86_64
gvfs-afc-1.12.3-1.fc17.x86_64
gvfs-archive-1.12.3-1.fc17.x86_64
gvfs-fuse-1.12.3-1.fc17.x86_64
gvfs-gphoto2-1.12.3-1.fc17.x86_64
gvfs-obexftp-1.12.3-1.fc17.x86_64
gvfs-smb-1.12.3-1.fc17.x86_64
gvnc-0.5.1-4.fc17.x86_64
gzip-1.4-6.fc17.x86_64
hardlink-1.0-13.fc17.x86_64
hdparm-9.39-1.fc17.x86_64
herqq-1.0.0-3.fc17.x86_64
hesiod-3.1.0-21.fc17.x86_64
hfsplus-tools-540.1.linux3-1.fc17.x86_64
hicolor-icon-theme-0.12-4.fc17.noarch
hostname-3.10-1.fc17.x86_64
hplip-common-3.12.11-1.fc17.x86_64
httpd-2.2.22-4.fc17.x86_64
httpd-tools-2.2.22-4.fc17.x86_64
hunspell-1.3.2-8.fc17.x86_64
hunspell-en-0.20110318-9.fc17.noarch
hunspell-en-GB-0.20110318-9.fc17.noarch
hunspell-en-US-0.20110318-9.fc17.noarch
hwdata-0.234-2.fc17.noarch
ibus-libs-1.4.99.20121109-9.fc17.x86_64
icedax-1.1.11-14.fc17.x86_64
id3lib-3.8.3-27.fc17.x86_64
id3v2-0.1.12-4.fc17.x86_64
ilmbase-1.0.2-4.fc17.x86_64
ImageMagick-6.7.5.6-4.fc17.x86_64
ImageMagick-perl-6.7.5.6-4.fc17.x86_64
im-chooser-1.5.2.2-1.fc17.x86_64
im-chooser-common-1.5.2.2-1.fc17.x86_64
imsettings-1.2.9-3.fc17.x86_64
imsettings-gnome-1.2.9-3.fc17.x86_64
imsettings-libs-1.2.9-3.fc17.x86_64
incron-0.5.9-4.fc17.1.x86_64
info-4.13a-16.fc17.x86_64
iniparser-3.1-1.fc17.x86_64
initscripts-9.37.2-1.fc17.x86_64
inotify-tools-3.14-3.fc17.x86_64
intltool-0.50.2-1.fc17.noarch
iok-2.1.3-1.fc17.x86_64
ipa-gothic-fonts-003.03-1.fc17.noarch
ipa-pgothic-fonts-003.03-1.fc17.noarch
iproute-3.3.0-5.fc17.x86_64
iptables-1.4.14-2.fc17.x86_64
iptstate-2.2.2-7.fc17.x86_64
iputils-20101006-16.fc17.x86_64
ipw2100-firmware-1.3-13.fc17.noarch
ipw2200-firmware-3.1-6.fc17.noarch
irda-utils-0.9.18-14.fc17.x86_64
irqbalance-1.0.3-6.fc17.x86_64
iscsi-initiator-utils-6.2.0.872-18.fc17.x86_64
iso-codes-3.34-1.fc17.noarch
isomd5sum-1.0.9-1.fc17.x86_64
ivtv-firmware-20080701-22.noarch
iw-3.3-1.fc17.x86_64
iwl1000-firmware-39.31.5.1-2.fc17.noarch
iwl100-firmware-39.31.5.1-9.fc17.noarch
iwl3945-firmware-15.32.2.9-9.fc17.noarch
iwl4965-firmware-228.61.2.24-9.fc17.noarch
iwl5000-firmware-8.83.5.1_1-9.fc17.noarch
iwl5150-firmware-8.24.2.2-9.fc17.noarch
iwl6000-firmware-9.221.4.1-9.fc17.noarch
iwl6000g2a-firmware-17.168.5.3-9.fc17.noarch
iwl6000g2b-firmware-17.168.5.2-9.fc17.noarch
iwl6050-firmware-41.28.5.1-9.fc17.noarch
jack-audio-connection-kit-1.9.8-11.fc17.x86_64
jai-imageio-core-1.2-0.9.20100217cvs.fc17.noarch
jakarta-commons-httpclient-3.1-7.fc17.noarch
jasper-libs-1.900.1-19.fc17.x86_64
java-1.7.0-openjdk-1.7.0.9-2.3.3.2.fc17.x86_64
java-1.7.0-openjdk-devel-1.7.0.9-2.3.3.2.fc17.x86_64
jline-1.0-1.fc17.noarch
jomolhari-fonts-0.003-11.fc17.noarch
jpackage-utils-1.7.5-18.2.fc17.x86_64
js-1.8.5-9.fc17.x86_64
json-c-0.10-2.fc17.x86_64
json-glib-0.14.2-2.fc17.x86_64
kasumi-2.5-9.fc17.x86_64
kbd-1.15.3-5.fc17.x86_64
kbd-misc-1.15.3-5.fc17.noarch
kde-filesystem-4-39.fc17.x86_64
kdelibs-4.9.4-5.fc17.x86_64
kdelibs-common-4.9.4-5.fc17.x86_64
kdepimlibs-4.9.4-1.fc17.x86_64
kdepimlibs-kxmlrpcclient-4.9.4-1.fc17.x86_64
kde-settings-4.8-22.fc17.noarch
kernel-3.6.11-1.fc17.x86_64
kernel-headers-3.6.11-1.fc17.x86_64
kexec-tools-2.0.3-47.fc17.4.x86_64
keyutils-1.5.5-2.fc17.x86_64
keyutils-libs-1.5.5-2.fc17.x86_64
keyutils-libs-devel-1.5.5-2.fc17.x86_64
khmeros-base-fonts-5.0-12.fc17.noarch
khmeros-fonts-common-5.0-12.fc17.noarch
kmod-7-2.fc17.x86_64
kmod-libs-7-2.fc17.x86_64
kpartx-0.4.9-26.fc17.x86_64
krb5-devel-1.10.2-6.fc17.x86_64
krb5-libs-1.10.2-6.fc17.x86_64
krb5-server-1.10.2-6.fc17.x86_64
krb5-server-ldap-1.10.2-6.fc17.x86_64
krb5-workstation-1.10.2-6.fc17.x86_64
lame-libs-3.99.5-1.fc17.x86_64
lcms2-2.4-1.fc17.x86_64
lcms-libs-1.19-5.fc17.x86_64
less-444-6.fc17.x86_64
lftp-4.3.8-1.fc17.x86_64
libacl-2.2.51-5.fc17.x86_64
libaio-0.3.109-5.fc17.x86_64
libao-1.1.0-2.fc17.x86_64
libarchive-3.0.3-2.fc17.x86_64
libart_lgpl-2.3.21-3.fc17.x86_64
libass-0.10.1-2.fc17.x86_64
libassuan-2.0.1-2.fc17.x86_64
libasyncns-0.8-3.fc17.x86_64
libatasmart-0.18-2.fc17.x86_64
libattr-2.4.46-5.fc17.x86_64
libavc1394-0.5.3-11.fc17.x86_64
libblkid-2.21.2-3.fc17.x86_64
libbluray-0.2.3-1.fc17.x86_64
libbonobo-2.32.1-2.fc17.x86_64
libbsd-0.3.0-2.fc17.x86_64
libburn-1.2.4-1.fc17.x86_64
libcacard-0.1.2-2.fc17.x86_64
libcanberra-0.28-6.fc17.x86_64
libcanberra-gtk2-0.28-6.fc17.x86_64
libcanberra-gtk3-0.28-6.fc17.x86_64
libcap-2.22-2.fc17.x86_64
libcap-ng-0.7.3-1.fc17.x86_64
libcdio-0.83-5.fc17.x86_64
libcgroup-0.38-1.fc17.x86_64
libchamplain-0.12.3-1.fc17.x86_64
libchamplain-gtk-0.12.3-1.fc17.x86_64
libchewing-0.3.3-5.fc17.x86_64
libcollection-0.6.1-8.fc17.x86_64
libcom_err-1.42.3-3.fc17.x86_64
libcom_err-devel-1.42.3-3.fc17.x86_64
libconfig-1.4.8-2.fc17.x86_64
libcroco-0.6.5-1.fc17.x86_64
libcue-1.3.0-4.fc17.x86_64
libcurl-7.24.0-5.fc17.x86_64
libdaemon-0.14-3.fc17.x86_64
libdb-5.2.36-5.fc17.x86_64
libdb-utils-5.2.36-5.fc17.x86_64
libdc1394-2.1.4-2.fc17.x86_64
libdhash-0.4.3-8.fc17.x86_64
libdiscid-0.2.2-6.fc17.x86_64
libdmapsharing-2.9.14-1.fc17.x86_64
libdmx-1.1.2-1.fc17.x86_64
libdrm-2.4.39-1.fc17.x86_64
libdv-1.0.0-13.fc17.x86_64
libdvdnav-4.2.0-2.fc17.x86_64
libdvdread-4.2.0-2.fc17.x86_64
libedit-3.0-6.20110802cvs.fc17.x86_64
liberation-fonts-common-1.07.2-6.fc17.noarch
liberation-mono-fonts-1.07.2-6.fc17.noarch
liberation-sans-fonts-1.07.2-6.fc17.noarch
liberation-serif-fonts-1.07.2-6.fc17.noarch
libevent-2.0.18-1.fc17.x86_64
libexif-0.6.20-2.fc17.x86_64
libffado-2.1.0-0.9.20120325.svn2088.fc17.x86_64
libffi-3.0.10-2.fc17.x86_64
libfontenc-1.1.0-2.fc17.x86_64
libfprint-0.5.0-1.fc17.x86_64
libfreebob-1.0.11-11.fc17.x86_64
libgadu-1.11.2-1.fc17.x86_64
libgcc-4.7.2-2.fc17.x86_64
libgcrypt-1.5.0-3.fc17.x86_64
libgcrypt-devel-1.5.0-3.fc17.x86_64
libgdata-0.12.0-1.fc17.x86_64
libgdiplus-2.10-2.fc16.x86_64
libgee06-0.6.4-1.fc17.x86_64
libgexiv2-0.4.1-1.fc17.x86_64
libglade2-2.6.4-8.fc17.x86_64
libGLEW-1.6.0-2.fc17.x86_64
libgnomecanvas-2.30.3-4.fc17.x86_64
libgnomekbd-3.4.0.2-2.fc17.x86_64
libgnome-keyring-3.4.1-2.fc17.x86_64
libgomp-4.7.2-2.fc17.x86_64
libgpg-error-1.10-2.fc17.x86_64
libgpg-error-devel-1.10-2.fc17.x86_64
libgphoto2-2.4.14-1.fc17.x86_64
libgpod-0.8.2-4.fc17.x86_64
libgsf-1.14.24-1.fc17.x86_64
libgssglue-0.4-0.fc17.x86_64
libgtop2-2.28.4-2.fc17.x86_64
libgudev1-182-3.fc17.x86_64
libgusb-0.1.4-1.fc17.x86_64
libgxps-0.2.2-1.fc17.x86_64
libhangul-0.1.0-2.fc17.x86_64
libhbaapi-2.2-14.fc17.x86_64
libhbalinux-1.0.13-3.fc17.x86_64
libical-0.48-2.fc17.x86_64
libICE-1.0.8-1.fc17.x86_64
libicu-4.8.1.1-4.fc17.x86_64
libIDL-0.8.14-4.fc17.x86_64
libidn-1.24-1.fc17.x86_64
libiec61883-1.2.0-7.fc17.x86_64
libieee1284-0.2.11-11.fc17.x86_64
libimobiledevice-1.1.4-4.fc17.x86_64
libini_config-0.6.2-8.fc17.x86_64
libiodbc-3.52.7-3.fc17.x86_64
libipa_hbac-1.8.5-3.fc17.x86_64
libiptcdata-1.0.4-7.fc17.x86_64
libisofs-1.2.4-1.fc17.x86_64
libjpeg-turbo-1.2.1-1.fc17.x86_64
libkcddb-4.9.4-1.fc17.x86_64
libksane-4.9.4-1.fc17.x86_64
libldb-1.1.6-1.fc17.x86_64
liblouis-2.4.1-1.fc17.x86_64
liblouis-python-2.4.1-1.fc17.noarch
libmash-0.2.0-7.fc17.x86_64
libmatchbox-1.9-9.fc17.x86_64
libmcpp-2.7.2-7.fc17.x86_64
libmcrypt-2.5.8-11.fc17.x86_64
libmcrypt-devel-2.5.8-11.fc17.x86_64
libmng-1.0.10-6.fc17.x86_64
libmnl-1.0.3-4.fc17.x86_64
libmodman-2.0.1-4.fc17.x86_64
libmongodb-2.0.7-2.fc17.x86_64
libmount-2.21.2-3.fc17.x86_64
libmpc-0.9-2.fc17.2.x86_64
libmpcdec-1.2.6-8.fc17.x86_64
libmtp-1.1.5-1.fc17.x86_64
libmusicbrainz3-3.0.3-4.fc17.x86_64
libmusicbrainz4-4.0.3-1.fc17.x86_64
libmx-1.4.7-1.fc17.x86_64
libnetfilter_conntrack-1.0.2-1.fc17.x86_64
libnfnetlink-1.0.1-1.fc17.x86_64
libnfsidmap-0.25-3.fc17.x86_64
libnice-0.1.2-1.fc17.x86_64
libnl-1.1-15.fc17.x86_64
libnl3-3.2.14-1.fc17.x86_64
libnotify-0.7.5-1.fc17.x86_64
liboauth-0.9.6-1.fc17.x86_64
libofa-0.9.3-20.fc17.x86_64
libogg-1.3.0-1.fc17.x86_64
libosinfo-0.1.2-1.fc17.x86_64
libpath_utils-0.2.1-8.fc17.x86_64
libpcap-1.2.1-2.fc17.x86_64
libpciaccess-0.13.1-1.fc17.x86_64
libpinyin-0.8.0-2.fc17.x86_64
libpinyin-data-0.8.0-2.fc17.x86_64
libpipeline-1.2.0-2.fc17.x86_64
libplist-1.8-4.fc17.x86_64
libpng-1.5.10-1.fc17.x86_64
libpng-compat-1.5.10-1.fc17.x86_64
libproxy-0.4.10-1.fc17.x86_64
libpurple-2.10.5-1.fc17.x86_64
libpwquality-1.1.1-1.fc17.x86_64
libquvi-0.4.1-1.fc17.x86_64
libquvi-scripts-0.4.9-1.fc17.noarch
libqzeitgeist-0.8.0-8.fc17.x86_64
LibRaw-0.14.3-4.fc17.x86_64
libraw1394-2.0.7-2.fc17.x86_64
libref_array-0.1.2-8.fc17.x86_64
libreport-2.0.18-1.fc17.x86_64
libreport-filesystem-2.0.18-1.fc17.x86_64
libreport-gtk-2.0.18-1.fc17.x86_64
libreport-newt-2.0.18-1.fc17.x86_64
libreport-plugin-bugzilla-2.0.18-1.fc17.x86_64
libreport-plugin-kerneloops-2.0.18-1.fc17.x86_64
libreport-plugin-logger-2.0.18-1.fc17.x86_64
libreport-plugin-ureport-2.0.18-1.fc17.x86_64
libreport-python-2.0.18-1.fc17.x86_64
libreport-web-2.0.18-1.fc17.x86_64
librsvg2-2.36.1-1.fc17.x86_64
librsync-0.9.7-17.fc17.x86_64
librtmp-2.4-0.2.20110811gitc58cfb3e.fc17.x86_64
libsamplerate-0.1.8-2.fc17.x86_64
libselinux-2.1.10-3.fc17.x86_64
libselinux-devel-2.1.10-3.fc17.x86_64
libselinux-python-2.1.10-3.fc17.x86_64
libselinux-utils-2.1.10-3.fc17.x86_64
libsemanage-2.1.6-3.fc17.x86_64
libsemanage-python-2.1.6-3.fc17.x86_64
libsepol-2.1.7-3.fc17.x86_64
libsepol-devel-2.1.7-3.fc17.x86_64
libshout-2.2.2-7.fc17.x86_64
libsigc++20-2.2.10-2.fc17.x86_64
libsilc-1.1.10-6.fc17.x86_64
libSM-1.2.1-1.fc17.x86_64
libsmbclient-3.6.9-96.fc17.1.x86_64
libsndfile-1.0.25-2.fc17.x86_64
libsocialweb-0.25.21-1.fc17.x86_64
libsocialweb-keys-0.25.21-1.fc17.noarch
libsoup-2.38.1-3.fc17.x86_64
libspectre-0.2.6-5.fc17.x86_64
libss-1.42.3-3.fc17.x86_64
libssh2-1.4.1-2.fc17.x86_64
libsss_sudo-1.8.5-3.fc17.x86_64
libstatgrab-0.17-2.fc17.x86_64
libstdc++-4.7.2-2.fc17.x86_64
libsysfs-2.1.0-11.fc17.x86_64
libtalloc-2.0.7-4.fc17.x86_64
libtasn1-2.12-1.fc17.x86_64
libtasn1-devel-2.12-1.fc17.x86_64
libtdb-1.2.10-15.fc17.x86_64
libtevent-0.9.16-1.fc17.x86_64
libthai-0.1.14-5.fc17.x86_64
libtheora-1.1.1-3.fc17.x86_64
libtiff-3.9.7-1.fc17.x86_64
libtirpc-0.2.2-2.1.fc17.x86_64
libtool-ltdl-2.4.2-3.1.fc17.x86_64
libtranslit-0.0.2-1.fc17.x86_64
libtranslit-m17n-0.0.2-1.fc17.x86_64
libudev-182-3.fc17.x86_64
libudisks2-1.94.0-11.fc17.x86_64
libunistring-0.9.3-5.fc17.x86_64
libunwind-1.0.1-3.fc17.x86_64
libusal-1.1.11-14.fc17.x86_64
libusb-0.1.3-10.fc17.x86_64
libusb1-1.0.9-0.6.rc1.fc17.x86_64
libuser-0.57.6-1.fc17.x86_64
libuser-python-0.57.6-1.fc17.x86_64
libutempter-1.1.5-6.fc17.x86_64
libuuid-2.21.2-3.fc17.x86_64
libv4l-0.8.8-2.fc17.x86_64
libva-1.0.16-1.fc17.x86_64
libvdpau-0.5-1.fc17.x86_64
libverto-0.2.5-1.fc17.x86_64
libverto-tevent-0.2.5-1.fc17.x86_64
libvirt-client-0.9.11.8-2.fc17.x86_64
libvirt-daemon-0.9.11.8-2.fc17.x86_64
libvirt-daemon-lxc-0.9.11.8-2.fc17.x86_64
libvisual-0.4.0-11.fc17.x86_64
libvorbis-1.3.3-1.fc17.x86_64
libvpx-1.0.0-3.fc17.x86_64
libwacom-0.6.1-1.fc17.x86_64
libwacom-data-0.6.1-1.fc17.noarch
libwbclient-3.6.9-96.fc17.1.x86_64
libwmf-lite-0.2.8.4-32.fc17.x86_64
libwnck3-3.4.2-1.fc17.x86_64
libwsman1-2.2.7-5.fc17.x86_64
libwvstreams-4.6.1-6.fc17.x86_64
libX11-1.5.0-2.fc17.x86_64
libX11-common-1.5.0-2.fc17.noarch
libXau-1.0.6-3.fc17.x86_64
libxcb-1.9-1.fc17.x86_64
libXcomposite-0.4.3-3.fc17.x86_64
libXcursor-1.1.13-1.fc17.x86_64
libXdamage-1.1.3-3.fc17.x86_64
libXdmcp-1.1.1-1.fc17.x86_64
libXevie-1.0.3-3.fc17.x86_64
libXext-1.3.1-1.fc17.x86_64
libXfixes-5.0-2.fc17.x86_64
libXfont-1.4.5-1.fc17.x86_64
libXft-2.3.0-2.fc17.x86_64
libXi-1.6.1-1.fc17.x86_64
libXinerama-1.1.2-1.fc17.x86_64
libxkbfile-1.0.8-1.fc17.x86_64
libxklavier-5.2.1-1.fc17.x86_64
libxml2-2.7.8-9.fc17.x86_64
libxml++-2.34.2-3.fc17.x86_64
libxml2-python-2.7.8-9.fc17.x86_64
libXmu-1.1.0-3.fc17.x86_64
libXpm-3.5.10-1.fc17.x86_64
libXrandr-1.3.1-3.fc17.x86_64
libXrender-0.9.7-1.fc17.x86_64
libXres-1.0.6-1.fc17.x86_64
libXScrnSaver-1.2.2-1.fc17.x86_64
libxslt-1.1.26-10.fc17.x86_64
libXt-1.1.2-2.fc17.x86_64
libXtst-1.2.0-3.fc17.x86_64
libXv-1.0.7-1.fc17.x86_64
libXvMC-1.0.7-1.fc17.x86_64
libXxf86dga-1.1.3-1.fc17.x86_64
libXxf86misc-1.0.3-3.fc17.x86_64
libXxf86vm-1.1.2-1.fc17.x86_64
libyaml-0.1.4-2.fc17.x86_64
libyaz-4.2.17-2.fc17.x86_64
libzeitgeist-0.3.18-3.fc17.x86_64
libzip-0.10.1-1.fc17.x86_64
linux-atm-libs-2.5.1-4.fc17.x86_64
linux-firmware-20120720-0.1.git7560108.fc17.noarch
livecd-tools-17.15-1.fc17.x86_64
liveusb-creator-3.11.7-1.fc17.noarch
lklug-fonts-0.6-6.20090803cvs.fc17.noarch
lldpad-0.9.44-1.fc17.x86_64
llvm-libs-3.0-14.fc17.x86_64
lm_sensors-devel-3.3.2-5.fc17.x86_64
lm_sensors-libs-3.3.2-5.fc17.x86_64
lockdev-1.0.4-0.4.20111007git.fc17.x86_64
log4j-1.2.17-2.fc17.noarch
logrotate-3.8.1-3.fc17.x86_64
lohit-assamese-fonts-2.5.1-2.fc17.noarch
lohit-bengali-fonts-2.5.1-1.fc17.noarch
lohit-devanagari-fonts-2.5.1-3.fc17.noarch
lohit-gujarati-fonts-2.5.1-2.fc17.noarch
lohit-kannada-fonts-2.5.1-2.fc17.noarch
lohit-oriya-fonts-2.5.1-1.fc17.noarch
lohit-punjabi-fonts-2.5.1-2.fc17.noarch
lohit-tamil-fonts-2.5.1-2.fc17.noarch
lohit-telugu-fonts-2.5.1-2.fc17.noarch
lorax-17.27-1.fc17.x86_64
lrzsz-0.12.20-30.fc17.x86_64
lsdvd-0.16-15.fc17.x86_64
lsof-4.85-2.fc17.x86_64
lua-5.1.4-10.fc17.x86_64
lucene-2.9.4-8.fc17.noarch
lvm2-2.02.95-6.fc17.x86_64
lvm2-libs-2.02.95-6.fc17.x86_64
lx-20030328-7.fc17.x86_64
lxc-0.7.5-1.fc17.x86_64
lxc-libs-0.7.5-1.fc17.x86_64
lzo-2.06-2.fc17.x86_64
lzop-1.03-4.fc17.x86_64
m17n-contrib-1.1.14-1.fc17.noarch
m17n-db-1.6.4-1.fc17.noarch
m17n-lib-1.6.4-1.fc17.x86_64
m4-1.4.16-3.fc17.x86_64
mactel-boot-0.9-6.fc17.x86_64
mailcap-2.1.39-1.fc17.noarch
mailx-12.5-6.fc17.x86_64
make-3.82-13.fc17.x86_64
makebootfat-1.4-13.fc17.x86_64
man-db-2.6.0.2-9.fc17.x86_64
matchbox-window-manager-1.2-9.20070628svn.fc17.x86_64
mcelog-1.0-0.4.6e4e2a00.fc17.x86_64
mcpp-2.7.2-7.fc17.x86_64
mdadm-3.2.6-7.fc17.x86_64
meanwhile-1.1.0-6.fc17.x86_64
media-player-info-17-2.fc17.noarch
memtest86+-4.20-6.fc17.x86_64
mercurial-2.2.3-1.fc17.x86_64
mesa-dri-drivers-8.0.4-1.fc17.x86_64
mesa-dri-filesystem-8.0.4-1.fc17.x86_64
mesa-libGL-8.0.4-1.fc17.x86_64
mesa-libglapi-8.0.4-1.fc17.x86_64
mesa-libGLU-8.0.4-1.fc17.x86_64
mesa-libxatracker-8.0.4-1.fc17.x86_64
microcode_ctl-1.17-25.fc17.x86_64
min12xxw-0.0.9-7.fc17.x86_64
mingetty-1.08-10.fc17.x86_64
mlocate-0.25-1.fc17.x86_64
mobile-broadband-provider-info-1.20120614-1.fc17.noarch
mock-1.1.28-1.fc17.noarch
ModemManager-0.6.0.0-1.fc17.x86_64
mod_ssl-2.2.22-4.fc17.x86_64
mongodb-2.0.7-2.fc17.x86_64
mongodb-server-2.0.7-2.fc17.x86_64
mono-core-2.10.8-2.fc17.x86_64
mozilla-filesystem-1.9-7.fc17.x86_64
mpfr-3.1.0-2.fc17.x86_64
mrtg-2.17.3-2.fc17.x86_64
mtdev-1.1.0-3.20110105.fc17.x86_64
mtools-4.0.17-2.fc17.x86_64
multitail-5.2.8-2.fc17.x86_64
mutter-3.4.1-4.fc17.x86_64
mysql-5.5.28-2.fc17.x86_64
mysql-devel-5.5.28-2.fc17.x86_64
mysql-libs-5.5.28-2.fc17.x86_64
MySQL-python-1.2.3-5.fc17.x86_64
mysql-server-5.5.28-2.fc17.x86_64
nc-1.109.20120711-1.fc17.x86_64
ncftp-3.2.5-3.fc17.x86_64
ncurses-5.9-4.20120204.fc17.x86_64
ncurses-base-5.9-4.20120204.fc17.x86_64
ncurses-libs-5.9-4.20120204.fc17.x86_64
neon-0.29.6-2.fc17.x86_64
netcf-libs-0.2.2-1.fc17.x86_64
net-snmp-5.7.1-5.fc17.x86_64
net-snmp-agent-libs-5.7.1-5.fc17.x86_64
net-snmp-devel-5.7.1-5.fc17.x86_64
net-snmp-libs-5.7.1-5.fc17.x86_64
net-snmp-perl-5.7.1-5.fc17.x86_64
net-snmp-utils-5.7.1-5.fc17.x86_64
net-tools-1.60-138.20120702git.fc17.x86_64
NetworkManager-0.9.6.4-3.fc17.x86_64
NetworkManager-glib-0.9.6.4-3.fc17.x86_64
NetworkManager-gtk-0.9.6.4-3.fc17.x86_64
NetworkManager-openconnect-0.9.4.0-7.git20120612.fc17.x86_64
netxen-firmware-4.0.534-5.fc17.noarch
newt-0.52.14-2.fc17.x86_64
newt-python-0.52.14-2.fc17.x86_64
nfs4-acl-tools-0.3.3-8.fc17.x86_64
nfs-utils-1.2.6-6.fc17.x86_64
nhn-nanum-gothic-fonts-3.020-1.fc17.noarch
nmap-6.01-3.fc17.x86_64
notification-daemon-0.7.4-1.fc17.x86_64
notify-python-0.1.1-20.fc17.x86_64
notify-sharp-0.4.0-0.18.20100411svn.fc17.x86_64
nspr-4.9.2-1.fc17.x86_64
nss-3.14-7.fc17.x86_64
nss-mdns-0.10-10.fc17.x86_64
nss-myhostname-0.3-2.fc17.x86_64
nss-softokn-3.14-5.fc17.x86_64
nss-softokn-freebl-3.14-5.fc17.i686
nss-softokn-freebl-3.14-5.fc17.x86_64
nss-sysinit-3.14-7.fc17.x86_64
nss-tools-3.14-7.fc17.x86_64
nss-util-3.14-1.fc17.x86_64
ntfs-3g-2012.1.15-5.fc17.x86_64
ntfsprogs-2012.1.15-5.fc17.x86_64
ntpdate-4.2.6p5-2.fc17.x86_64
numactl-libs-2.0.7-6.fc17.x86_64
numad-0.5-4.20120522git.fc17.x86_64
obexd-0.44-1.fc17.x86_64
obex-data-server-0.4.6-3.fc17.x86_64
openal-soft-1.14-2.fc17.x86_64
opencc-0.3.0-4.fc17.x86_64
openconnect-4.07-1.fc17.x86_64
OpenEXR-libs-1.7.0-4.fc17.x86_64
openjpeg-libs-1.4-14.fc17.x86_64
openldap-2.4.33-3.fc17.x86_64
openldap-clients-2.4.33-3.fc17.x86_64
openldap-devel-2.4.33-3.fc17.x86_64
openldap-servers-2.4.33-3.fc17.x86_64
openobex-1.5-4.fc17.x86_64
openssh-5.9p1-28.fc17.x86_64
openssh-clients-5.9p1-28.fc17.x86_64
openssh-server-5.9p1-28.fc17.x86_64
openssl-1.0.0j-2.fc17.x86_64
openssl-devel-1.0.0j-2.fc17.x86_64
openvpn-2.2.2-7.fc17.x86_64
opus-1.0.2-1.fc17.x86_64
ORBit2-2.14.19-3.fc17.x86_64
orc-0.4.16-5.fc17.x86_64
os-prober-1.56-1.fc17.x86_64
oxygen-icon-theme-4.9.4-1.fc17.noarch
p11-kit-0.12-1.fc17.x86_64
p11-kit-devel-0.12-1.fc17.x86_64
PackageKit-0.7.5-1.fc17.x86_64
PackageKit-command-not-found-0.7.5-1.fc17.x86_64
PackageKit-device-rebind-0.7.5-1.fc17.x86_64
PackageKit-glib-0.7.5-1.fc17.x86_64
PackageKit-gstreamer-plugin-0.7.5-1.fc17.x86_64
PackageKit-gtk3-module-0.7.5-1.fc17.x86_64
PackageKit-yum-0.7.5-1.fc17.x86_64
PackageKit-yum-plugin-0.7.5-1.fc17.x86_64
pakchois-0.4-5.x86_64
paktype-naqsh-fonts-3.0-6.fc17.noarch
pam-1.1.5-7.fc17.x86_64
pam_pkcs11-0.6.2-8.fc17.x86_64
pango-1.30.0-1.fc17.x86_64
pangomm-2.28.4-1.fc17.x86_64
paps-0.6.8-23.fc17.x86_64
paps-libs-0.6.8-23.fc17.x86_64
paratype-pt-sans-fonts-20100408-3.fc17.noarch
parted-3.0-10.fc17.x86_64
passwd-0.78.99-1.fc17.x86_64
passwdqc-1.2.2-3.fc17.x86_64
passwdqc-lib-1.2.2-3.fc17.x86_64
patch-2.6.1-12.fc17.x86_64
pax-3.4-13.fc17.x86_64
pbm2l2030-1.4-7.fc17.x86_64
pbm2l7k-990321-9.fc17.x86_64
pciutils-3.1.9-1.fc17.x86_64
pciutils-libs-3.1.9-1.fc17.x86_64
pcmciautils-018-2.fc17.x86_64
pcre-8.21-5.fc17.x86_64
pcsc-lite-libs-1.8.3-1.fc17.x86_64
perl-5.14.3-218.fc17.x86_64
perl-AnyEvent-5.27-7.fc17.noarch
perl-AnyEvent-AIO-1.1-8.fc17.noarch
perl-AnyEvent-BDB-1.1-7.fc17.noarch
perl-AppConfig-1.66-15.fc17.noarch
perl-Archive-Tar-1.82-2.fc17.noarch
perl-Archive-Zip-1.30-7.fc17.noarch
perl-Async-MergePoint-0.03-7.fc17.noarch
perl-Authen-SASL-2.15-5.fc17.noarch
perl-BDB-1.88-5.fc17.x86_64
perl-Carp-1.22-2.fc17.noarch
perl-CGI-3.52-218.fc17.noarch
perl-Class-Accessor-0.34-8.fc17.noarch
perl-Class-ISA-0.36-1007.fc17.noarch
perl-Class-Load-0.19-1.fc17.noarch
perl-Class-Singleton-1.4-11.fc17.noarch
perl-Class-Trigger-0.14-6.fc17.noarch
perl-Clone-0.31-9.fc17.x86_64
perl-common-sense-3.5-1.fc17.noarch
perl-Compress-Raw-Bzip2-2.052-1.fc17.x86_64
perl-Compress-Raw-Zlib-2.052-1.fc17.x86_64
perl-Config-IniFiles-2.72-1.fc17.noarch
perl-Config-Simple-4.59-11.fc17.noarch
perl-Convert-ASN1-0.22-7.fc17.noarch
perl-Coro-6.07-3.fc17.x86_64
perl-CPAN-1.9600.01-218.fc17.noarch
perl-Crypt-DES-2.05-15.fc17.x86_64
perl-Crypt-SmbHash-0.12-16.fc17.noarch
perl-Curses-1.28-5.fc17.x86_64
perl-Data-OptList-0.107-5.fc17.noarch
perl-DateTime-0.78-1.fc17.x86_64
perl-DateTime-Format-DateParse-0.05-1.fc17.noarch
perl-DateTime-Locale-0.45-2.fc17.noarch
perl-DateTime-TimeZone-1.54-1.fc17.noarch
perl-DBD-MySQL-4.020-2.fc17.x86_64
perl-DBD-SQLite-1.35-2.fc17.x86_64
perl-DBI-1.617-1.fc17.x86_64
perl-devel-5.14.3-218.fc17.x86_64
perl-Digest-1.17-2.fc17.noarch
perl-Digest-HMAC-1.03-2.fc17.noarch
perl-Digest-MD4-1.5-17.fc17.x86_64
perl-Digest-MD5-2.51-218.fc17.x86_64
perl-Digest-SHA1-2.13-4.fc17.x86_64
perl-Digest-SHA-5.61-218.fc17.x86_64
perl-Encode-Locale-1.02-5.fc17.noarch
perl-Error-0.17016-7.fc17.noarch
perl-EV-4.03-8.fc17.x86_64
perl-Event-1.20-1.fc17.x86_64
perl-Event-Lib-1.03-16.fc17.x86_64
perl-ExtUtils-Install-1.56-218.fc17.noarch
perl-ExtUtils-MakeMaker-6.62-2.fc17.noarch
perl-ExtUtils-Manifest-1.60-1.fc17.noarch