-
Notifications
You must be signed in to change notification settings - Fork 2
/
cnchi.log
3837 lines (3836 loc) · 502 KB
/
cnchi.log
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
2018-04-09 20:08:08 [INFO] cnchi.py(287) check_gtk_version(): Using GTK v3.22.29
2018-04-09 20:08:08 [INFO] cnchi.py(299) check_pyalpm_version(): Using pyalpm v0.8 as interface to libalpm v10.0.2
2018-04-09 20:08:08 [DEBUG] cnchi.py(336) check_iso_version(): Not running from ISO
2018-04-09 20:08:09 [INFO] main_window.py(91) __init__(): Cnchi installer version 0.14.410
2018-04-09 20:08:09 [DEBUG] main_window.py(119) __init__(): Cnchi will use '/var/cache/pacman/pkg' as a source for cached xz packages
2018-04-09 20:08:09 [INFO] main_window.py(214) __init__(): Using '/usr/share/cnchi/data/packages.xml' file as package list
2018-04-09 20:08:09 [DEBUG] gtkbasebox.py(61) __init__(): Loading 'welcome' screen
2018-04-09 20:08:09 [INFO] main_window.py(326) header_for_all_callback(): fired!
2018-04-09 20:08:12 [DEBUG] gtkbasebox.py(61) __init__(): Loading 'language' screen
2018-04-09 20:08:12 [DEBUG] gtkbasebox.py(61) __init__(): Loading 'check' screen
2018-04-09 20:08:12 [DEBUG] gtkbasebox.py(61) __init__(): Loading 'location' screen
2018-04-09 20:08:12 [DEBUG] gtkbasebox.py(61) __init__(): Loading 'mirrors' screen
2018-04-09 20:08:12 [DEBUG] mirrors.py(172) load_mirrors(): http://mirror.smith.geek.nz/archlinux/$repo/os/$arch
2018-04-09 20:08:12 [DEBUG] mirrors.py(172) load_mirrors(): http://ftp.heanet.ie/mirrors/ftp.archlinux.org/$repo/os/$arch
2018-04-09 20:08:12 [DEBUG] mirrors.py(172) load_mirrors(): http://archlinux.mirror.iphh.net/$repo/os/$arch
2018-04-09 20:08:12 [DEBUG] mirrors.py(172) load_mirrors(): http://mirrors.niyawe.de/archlinux/$repo/os/$arch
2018-04-09 20:08:12 [DEBUG] mirrors.py(172) load_mirrors(): http://mirrors.xjtu.edu.cn/archlinux/$repo/os/$arch
2018-04-09 20:08:12 [DEBUG] mirrors.py(172) load_mirrors(): http://ftp.u-strasbg.fr/linux/distributions/archlinux/$repo/os/$arch
2018-04-09 20:08:12 [DEBUG] mirrors.py(172) load_mirrors(): http://mirrors.antergos.com/$repo/$arch
2018-04-09 20:08:12 [DEBUG] mirrors.py(172) load_mirrors(): http://sourceforge.net/projects/antergos/files/mirror/$repo/$arch
2018-04-09 20:08:12 [DEBUG] mirrors.py(172) load_mirrors(): http://mirror.host.ag/antergos/$repo/$arch
2018-04-09 20:08:12 [DEBUG] mirrors.py(172) load_mirrors(): http://wynsrv.antergos.info/antergos/$repo/$arch
2018-04-09 20:08:12 [DEBUG] mirrors.py(172) load_mirrors(): http://mirrors.ustc.edu.cn/antergos/$repo/$arch
2018-04-09 20:08:12 [DEBUG] mirrors.py(172) load_mirrors(): http://mirrors.tuna.tsinghua.edu.cn/antergos/$repo/$arch
2018-04-09 20:08:12 [DEBUG] gtkbasebox.py(61) __init__(): Loading 'timezone' screen
2018-04-09 20:08:13 [DEBUG] gtkbasebox.py(61) __init__(): Loading 'keymap' screen
2018-04-09 20:08:13 [DEBUG] gtkbasebox.py(61) __init__(): Loading 'desktop' screen
2018-04-09 20:08:13 [DEBUG] gtkbasebox.py(61) __init__(): Loading 'features' screen
2018-04-09 20:08:13 [DEBUG] gtkbasebox.py(61) __init__(): Loading 'ask' screen
2018-04-09 20:08:13 [DEBUG] timezone.py(315) run(): A working network connection has been detected.
2018-04-09 20:08:13 [DEBUG] timezone.py(325) run(): We have connection. Let's get our timezone
2018-04-09 20:08:13 [DEBUG] ask.py(92) load_zfs(): Can't load ZFS kernel module: modprobe: FATAL: Module zfs not found in directory /lib/modules/4.15.15-1-ARCH
2018-04-09 20:08:13 [DEBUG] gtkbasebox.py(61) __init__(): Loading 'automatic' screen
2018-04-09 20:08:13 [DEBUG] gtkbasebox.py(61) __init__(): Loading 'advanced' screen
2018-04-09 20:08:13 [DEBUG] gtkbasebox.py(61) __init__(): Loading 'zfs' screen
2018-04-09 20:08:13 [DEBUG] gtkbasebox.py(61) __init__(): Loading 'summary' screen
2018-04-09 20:08:13 [DEBUG] gtkbasebox.py(61) __init__(): Loading 'user_info' screen
2018-04-09 20:08:13 [DEBUG] gtkbasebox.py(61) __init__(): Loading 'slides' screen
2018-04-09 20:08:14 [DEBUG] timezone.py(348) run(): Timezone (latitude 43.1355, longitude -77.6508) detected.
2018-04-09 20:08:15 [DEBUG] language.py(201) store_values(): language_name: English
2018-04-09 20:08:15 [DEBUG] language.py(202) store_values(): language_code: en
2018-04-09 20:08:16 [WARNING] extra.py(394) get_prop(): org.freedesktop.DBus.Error.InvalidArgs: No such interface '/org/freedesktop/UPower'
2018-04-09 20:08:16 [WARNING] check.py(174) on_battery(): Cannot read /org/freedesktop/UPower/OnBattery dbus property
2018-04-09 20:08:16 [DEBUG] updater.py(76) __init__(): Cannot not find /usr/share/cnchi/update.info file. Cnchi will not be able to update itself.
2018-04-09 20:08:17 [INFO] check.py(232) store_values(): We have Internet connection.
2018-04-09 20:08:17 [INFO] check.py(233) store_values(): We're connected to a power source.
2018-04-09 20:08:17 [INFO] check.py(234) store_values(): We have enough disk space.
2018-04-09 20:08:17 [DEBUG] logging_utils.py(99) get_and_save_install_id(): Unable to get an Id for this installation. Error: ("Invalid URL 'None': No schema supplied. Perhaps you meant http://None?",)
2018-04-09 20:08:22 [DEBUG] location.py(261) store_values(): Selected location: English (US), United States
2018-04-09 20:08:22 [DEBUG] location.py(279) store_values(): Selected country name: United States
2018-04-09 20:08:22 [DEBUG] location.py(280) store_values(): Selected country code: us
2018-04-09 20:08:22 [INFO] timezone.py(112) on_location_changed(): Location changed to : America/New_York
2018-04-09 20:08:23 [DEBUG] timezone.py(231) log_location(): timezone human zone: New York
2018-04-09 20:08:23 [DEBUG] timezone.py(232) log_location(): timezone country: US
2018-04-09 20:08:23 [DEBUG] timezone.py(233) log_location(): timezone zone: America/New_York
2018-04-09 20:08:23 [DEBUG] timezone.py(234) log_location(): timezone human country: United States
2018-04-09 20:08:23 [DEBUG] timezone.py(237) log_location(): timezone comment: Eastern (most areas)
2018-04-09 20:08:23 [DEBUG] timezone.py(240) log_location(): timezone latitude: 40.4251
2018-04-09 20:08:23 [DEBUG] timezone.py(243) log_location(): timezone longitude: -74.0023
2018-04-09 20:08:23 [DEBUG] timezone.py(278) store_values(): Cnchi will setup network time using systemd-timesyncd
2018-04-09 20:08:24 [DEBUG] keymap.py(307) set_keymap(): Set keyboard to 'English (US)' (us)
2018-04-09 20:08:25 [DEBUG] keymap.py(307) set_keymap(): Set keyboard to 'English (US)' (us)
2018-04-09 20:08:33 [INFO] desktop.py(231) store_values(): Cnchi will install Antergos with the 'pantheon' desktop
2018-04-09 20:08:33 [DEBUG] features.py(183) fill_listbox(): Removing proprietary graphic drivers feature.
2018-04-09 20:09:04 [DEBUG] features.py(376) store_switches(): Feature 'aur' has been selected
2018-04-09 20:09:04 [DEBUG] features.py(376) store_switches(): Feature 'nautilus' has been selected
2018-04-09 20:09:04 [DEBUG] features.py(376) store_switches(): Feature 'cups' has been selected
2018-04-09 20:09:04 [DEBUG] features.py(376) store_switches(): Feature 'flash' has been selected
2018-04-09 20:09:04 [DEBUG] features.py(376) store_switches(): Feature 'bluetooth' has been selected
2018-04-09 20:09:04 [DEBUG] features.py(376) store_switches(): Feature 'firewall' has been selected
2018-04-09 20:09:04 [DEBUG] features.py(376) store_switches(): Feature 'lts' has been selected
2018-04-09 20:09:10 [DEBUG] mirrors.py(351) start_rank_mirrors(): Cnchi is ranking your mirrors lists...
2018-04-09 20:09:11 [DEBUG] rank_mirrors.py(317) run(): Updating both mirrorlists (Arch and Antergos)...
2018-04-09 20:09:12 [DEBUG] ask.py(515) wait(): Waiting for all external processes to finish...
2018-04-09 20:10:11 [DEBUG] rank_mirrors.py(320) run(): Filtering and sorting Arch mirrors...
2018-04-09 20:10:11 [DEBUG] connectionpool.py(208) _new_conn(): Starting new HTTP connection (1): www.archlinux.org
2018-04-09 20:10:11 [DEBUG] connectionpool.py(396) _make_request(): http://www.archlinux.org:80 "GET /mirrors/status/json/ HTTP/1.1" 301 185
2018-04-09 20:10:11 [DEBUG] connectionpool.py(824) _new_conn(): Starting new HTTPS connection (1): www.archlinux.org
2018-04-09 20:10:12 [DEBUG] connectionpool.py(396) _make_request(): https://www.archlinux.org:443 "GET /mirrors/status/json/ HTTP/1.1" 200 None
2018-04-09 20:10:12 [DEBUG] rank_mirrors.py(155) sort_mirrors_by_speed(): cryptsetup version is: 2.0.2-1
2018-04-09 20:10:12 [DEBUG] rank_mirrors.py(203) sort_mirrors_by_speed(): Rating mirror 'http://mirrors.rit.edu/archlinux/'
2018-04-09 20:10:12 [DEBUG] rank_mirrors.py(203) sort_mirrors_by_speed(): Rating mirror 'http://ftp.nluug.nl/os/Linux/distr/archlinux/'
2018-04-09 20:10:12 [DEBUG] rank_mirrors.py(203) sort_mirrors_by_speed(): Rating mirror 'http://archlinux.mirrors.uk2.net/'
2018-04-09 20:10:12 [DEBUG] rank_mirrors.py(203) sort_mirrors_by_speed(): Rating mirror 'http://mirror.csclub.uwaterloo.ca/archlinux/'
2018-04-09 20:10:12 [DEBUG] rank_mirrors.py(203) sort_mirrors_by_speed(): Rating mirror 'http://mirror.umd.edu/archlinux/'
2018-04-09 20:10:12 [DEBUG] rank_mirrors.py(203) sort_mirrors_by_speed(): Rating mirror 'http://mirror.archlinux.no/'
2018-04-09 20:10:12 [DEBUG] rank_mirrors.py(203) sort_mirrors_by_speed(): Rating mirror 'http://mirror.internode.on.net/pub/archlinux/'
2018-04-09 20:10:12 [DEBUG] rank_mirrors.py(203) sort_mirrors_by_speed(): Rating mirror 'http://mirror.selfnet.de/archlinux/'
2018-04-09 20:10:12 [DEBUG] rank_mirrors.py(203) sort_mirrors_by_speed(): Rating mirror 'http://mirrors.lug.mtu.edu/archlinux/'
2018-04-09 20:10:12 [DEBUG] rank_mirrors.py(203) sort_mirrors_by_speed(): Rating mirror 'http://ftp.tku.edu.tw/Linux/ArchLinux/'
2018-04-09 20:10:12 [DEBUG] rank_mirrors.py(203) sort_mirrors_by_speed(): Rating mirror 'http://archlinux.mirror.kangaroot.net/'
2018-04-09 20:10:12 [DEBUG] rank_mirrors.py(203) sort_mirrors_by_speed(): Rating mirror 'http://ftp.rnl.tecnico.ulisboa.pt/pub/archlinux/'
2018-04-09 20:10:12 [DEBUG] rank_mirrors.py(203) sort_mirrors_by_speed(): Rating mirror 'http://mirrors.dotsrc.org/archlinux/'
2018-04-09 20:10:12 [DEBUG] rank_mirrors.py(203) sort_mirrors_by_speed(): Rating mirror 'http://mirror.datacenter.by/pub/archlinux/'
2018-04-09 20:10:12 [DEBUG] rank_mirrors.py(203) sort_mirrors_by_speed(): Rating mirror 'http://mirror.vpsfree.cz/archlinux/'
2018-04-09 20:10:12 [DEBUG] rank_mirrors.py(203) sort_mirrors_by_speed(): Rating mirror 'http://shadow.ind.ntou.edu.tw/archlinux/'
2018-04-09 20:10:12 [DEBUG] rank_mirrors.py(203) sort_mirrors_by_speed(): Rating mirror 'http://ftp.byfly.by/pub/archlinux/'
2018-04-09 20:10:12 [DEBUG] rank_mirrors.py(203) sort_mirrors_by_speed(): Rating mirror 'http://archlinux.polymorf.fr/'
2018-04-09 20:10:12 [DEBUG] rank_mirrors.py(203) sort_mirrors_by_speed(): Rating mirror 'http://mirrors.ustc.edu.cn/archlinux/'
2018-04-09 20:10:12 [DEBUG] rank_mirrors.py(203) sort_mirrors_by_speed(): Rating mirror 'http://ftp.lysator.liu.se/pub/archlinux/'
2018-04-09 20:10:12 [DEBUG] rank_mirrors.py(203) sort_mirrors_by_speed(): Rating mirror 'http://mirror.ams1.nl.leaseweb.net/archlinux/'
2018-04-09 20:10:12 [DEBUG] rank_mirrors.py(203) sort_mirrors_by_speed(): Rating mirror 'http://mirror.dal10.us.leaseweb.net/archlinux/'
2018-04-09 20:10:12 [DEBUG] rank_mirrors.py(203) sort_mirrors_by_speed(): Rating mirror 'http://mirror.fra10.de.leaseweb.net/archlinux/'
2018-04-09 20:10:12 [DEBUG] rank_mirrors.py(203) sort_mirrors_by_speed(): Rating mirror 'http://mirror.sfo12.us.leaseweb.net/archlinux/'
2018-04-09 20:10:12 [DEBUG] rank_mirrors.py(203) sort_mirrors_by_speed(): Rating mirror 'http://mirror.wdc1.us.leaseweb.net/archlinux/'
2018-04-09 20:10:12 [DEBUG] rank_mirrors.py(203) sort_mirrors_by_speed(): Rating mirror 'http://mirrors.n-ix.net/archlinux/'
2018-04-09 20:10:12 [DEBUG] rank_mirrors.py(203) sort_mirrors_by_speed(): Rating mirror 'http://mirror.dkm.cz/archlinux/'
2018-04-09 20:10:12 [DEBUG] rank_mirrors.py(203) sort_mirrors_by_speed(): Rating mirror 'http://foss.aueb.gr/mirrors/linux/archlinux/'
2018-04-09 20:10:12 [DEBUG] rank_mirrors.py(203) sort_mirrors_by_speed(): Rating mirror 'http://ftp.tsukuba.wide.ad.jp/Linux/archlinux/'
2018-04-09 20:10:12 [DEBUG] rank_mirrors.py(203) sort_mirrors_by_speed(): Rating mirror 'http://archlinux.surlyjake.com/archlinux/'
2018-04-09 20:10:12 [DEBUG] rank_mirrors.py(203) sort_mirrors_by_speed(): Rating mirror 'http://ftp.wa.co.za/pub/archlinux/'
2018-04-09 20:10:12 [DEBUG] rank_mirrors.py(203) sort_mirrors_by_speed(): Rating mirror 'http://ftp.swin.edu.au/archlinux/'
2018-04-09 20:10:12 [DEBUG] rank_mirrors.py(203) sort_mirrors_by_speed(): Rating mirror 'http://ftp.snt.utwente.nl/pub/os/linux/archlinux/'
2018-04-09 20:10:12 [DEBUG] rank_mirrors.py(203) sort_mirrors_by_speed(): Rating mirror 'http://mirror.united-gameserver.de/archlinux/'
2018-04-09 20:10:12 [DEBUG] rank_mirrors.py(203) sort_mirrors_by_speed(): Rating mirror 'http://mirror.system.is/arch/'
2018-04-09 20:10:12 [DEBUG] rank_mirrors.py(203) sort_mirrors_by_speed(): Rating mirror 'http://arch.mirror.constant.com/'
2018-04-09 20:10:12 [DEBUG] rank_mirrors.py(203) sort_mirrors_by_speed(): Rating mirror 'http://mirror.hactar.xyz/'
2018-04-09 20:10:12 [DEBUG] rank_mirrors.py(203) sort_mirrors_by_speed(): Rating mirror 'http://arch.tamcore.eu/'
2018-04-09 20:10:12 [DEBUG] rank_mirrors.py(203) sort_mirrors_by_speed(): Rating mirror 'http://mirrors.manchester.m247.com/arch-linux/'
2018-04-09 20:10:12 [DEBUG] rank_mirrors.py(203) sort_mirrors_by_speed(): Rating mirror 'http://mirrors.acm.wpi.edu/archlinux/'
2018-04-09 20:10:12 [DEBUG] rank_mirrors.py(203) sort_mirrors_by_speed(): Rating mirror 'http://mirror.neuf.no/archlinux/'
2018-04-09 20:10:12 [DEBUG] rank_mirrors.py(203) sort_mirrors_by_speed(): Rating mirror 'http://mirror.gnomus.de/'
2018-04-09 20:10:12 [DEBUG] rank_mirrors.py(203) sort_mirrors_by_speed(): Rating mirror 'http://archlinux.iskon.hr/'
2018-04-09 20:10:12 [DEBUG] rank_mirrors.py(203) sort_mirrors_by_speed(): Rating mirror 'http://mirror.one.com/archlinux/'
2018-04-09 20:10:12 [DEBUG] rank_mirrors.py(203) sort_mirrors_by_speed(): Rating mirror 'http://mirror.es.its.nyu.edu/archlinux/'
2018-04-09 20:10:12 [DEBUG] rank_mirrors.py(203) sort_mirrors_by_speed(): Rating mirror 'http://mirror.23media.de/archlinux/'
2018-04-09 20:10:12 [DEBUG] rank_mirrors.py(203) sort_mirrors_by_speed(): Rating mirror 'http://mirror.cs.pitt.edu/archlinux/'
2018-04-09 20:10:12 [DEBUG] rank_mirrors.py(203) sort_mirrors_by_speed(): Rating mirror 'http://ftp.yzu.edu.tw/Linux/archlinux/'
2018-04-09 20:10:12 [DEBUG] rank_mirrors.py(203) sort_mirrors_by_speed(): Rating mirror 'http://mirrors.niyawe.de/archlinux/'
2018-04-09 20:10:12 [DEBUG] rank_mirrors.py(203) sort_mirrors_by_speed(): Rating mirror 'http://archlinux.mirror.pkern.at/'
2018-04-09 20:10:12 [DEBUG] rank_mirrors.py(203) sort_mirrors_by_speed(): Rating mirror 'http://mirrors.atviras.lt/archlinux/'
2018-04-09 20:10:12 [DEBUG] rank_mirrors.py(203) sort_mirrors_by_speed(): Rating mirror 'http://arch.midov.pl/arch/'
2018-04-09 20:10:12 [DEBUG] rank_mirrors.py(203) sort_mirrors_by_speed(): Rating mirror 'http://mirror.lastmikoi.net/archlinux/'
2018-04-09 20:10:12 [DEBUG] rank_mirrors.py(203) sort_mirrors_by_speed(): Rating mirror 'http://mirrors.zju.edu.cn/archlinux/'
2018-04-09 20:10:12 [DEBUG] rank_mirrors.py(203) sort_mirrors_by_speed(): Rating mirror 'http://ftp.myrveln.se/pub/linux/archlinux/'
2018-04-09 20:10:12 [DEBUG] rank_mirrors.py(203) sort_mirrors_by_speed(): Rating mirror 'http://archlinux.mailtunnel.eu/'
2018-04-09 20:10:12 [DEBUG] rank_mirrors.py(203) sort_mirrors_by_speed(): Rating mirror 'http://fooo.biz/archlinux/'
2018-04-09 20:10:12 [DEBUG] rank_mirrors.py(203) sort_mirrors_by_speed(): Rating mirror 'http://archlinux.honkgong.info/'
2018-04-09 20:10:12 [DEBUG] rank_mirrors.py(203) sort_mirrors_by_speed(): Rating mirror 'http://mirror.f4st.host/archlinux/'
2018-04-09 20:10:12 [DEBUG] rank_mirrors.py(203) sort_mirrors_by_speed(): Rating mirror 'http://linorg.usp.br/archlinux/'
2018-04-09 20:10:12 [DEBUG] rank_mirrors.py(203) sort_mirrors_by_speed(): Rating mirror 'http://ftp.acc.umu.se/mirror/archlinux/'
2018-04-09 20:10:12 [DEBUG] rank_mirrors.py(203) sort_mirrors_by_speed(): Rating mirror 'http://mirror.hackingand.coffee/arch/'
2018-04-09 20:10:12 [DEBUG] rank_mirrors.py(203) sort_mirrors_by_speed(): Rating mirror 'http://archlinux.dynamict.se/'
2018-04-09 20:10:12 [DEBUG] rank_mirrors.py(203) sort_mirrors_by_speed(): Rating mirror 'http://mirrors.uni-plovdiv.net/archlinux/'
2018-04-09 20:10:12 [DEBUG] rank_mirrors.py(203) sort_mirrors_by_speed(): Rating mirror 'http://mirror.pseudoform.org/'
2018-04-09 20:10:12 [DEBUG] rank_mirrors.py(203) sort_mirrors_by_speed(): Rating mirror 'http://mirror.lty.me/archlinux/'
2018-04-09 20:10:12 [DEBUG] rank_mirrors.py(203) sort_mirrors_by_speed(): Rating mirror 'http://arch.jensgutermuth.de/'
2018-04-09 20:10:12 [DEBUG] rank_mirrors.py(203) sort_mirrors_by_speed(): Rating mirror 'http://pkg.adfinis-sygroup.ch/archlinux/'
2018-04-09 20:10:12 [DEBUG] rank_mirrors.py(203) sort_mirrors_by_speed(): Rating mirror 'http://ftp.sh.cvut.cz/arch/'
2018-04-09 20:10:12 [DEBUG] rank_mirrors.py(203) sort_mirrors_by_speed(): Rating mirror 'http://burek.archlinux.ba/'
2018-04-09 20:10:12 [DEBUG] rank_mirrors.py(203) sort_mirrors_by_speed(): Rating mirror 'http://mirror.kaminski.io/archlinux/'
2018-04-09 20:10:12 [DEBUG] rank_mirrors.py(203) sort_mirrors_by_speed(): Rating mirror 'http://arch.mirror.far.fi/'
2018-04-09 20:10:12 [DEBUG] rank_mirrors.py(203) sort_mirrors_by_speed(): Rating mirror 'http://mirror.ubrco.de/archlinux/'
2018-04-09 20:10:12 [DEBUG] rank_mirrors.py(203) sort_mirrors_by_speed(): Rating mirror 'http://archlinux.ip-connect.vn.ua/'
2018-04-09 20:10:12 [DEBUG] rank_mirrors.py(203) sort_mirrors_by_speed(): Rating mirror 'http://mirror.sergal.org/archlinux/'
2018-04-09 20:10:12 [DEBUG] rank_mirrors.py(203) sort_mirrors_by_speed(): Rating mirror 'http://arlm.tyzoid.com/'
2018-04-09 20:10:12 [DEBUG] rank_mirrors.py(203) sort_mirrors_by_speed(): Rating mirror 'http://mirror.aur.rocks/'
2018-04-09 20:10:12 [DEBUG] rank_mirrors.py(203) sort_mirrors_by_speed(): Rating mirror 'http://archlinux.thaller.ws/'
2018-04-09 20:10:12 [DEBUG] rank_mirrors.py(203) sort_mirrors_by_speed(): Rating mirror 'http://archlinux.mirror.ba/'
2018-04-09 20:10:12 [DEBUG] rank_mirrors.py(203) sort_mirrors_by_speed(): Rating mirror 'http://mirror.epiphyte.network/archlinux/'
2018-04-09 20:10:12 [DEBUG] rank_mirrors.py(203) sort_mirrors_by_speed(): Rating mirror 'http://archlinux.mirrors.benatherton.com/'
2018-04-09 20:10:12 [DEBUG] rank_mirrors.py(203) sort_mirrors_by_speed(): Rating mirror 'http://mirrors.celianvdb.fr/archlinux/'
2018-04-09 20:10:12 [DEBUG] rank_mirrors.py(203) sort_mirrors_by_speed(): Rating mirror 'http://arch.mirror.square-r00t.net/'
2018-04-09 20:10:12 [DEBUG] rank_mirrors.py(203) sort_mirrors_by_speed(): Rating mirror 'http://mirror.xtom.com.hk/archlinux/'
2018-04-09 20:10:12 [DEBUG] rank_mirrors.py(203) sort_mirrors_by_speed(): Rating mirror 'http://arch.mthq.org/mirror/'
2018-04-09 20:10:12 [DEBUG] rank_mirrors.py(203) sort_mirrors_by_speed(): Rating mirror 'http://mirrors.kurnode.com/archlinux/'
2018-04-09 20:10:12 [DEBUG] rank_mirrors.py(203) sort_mirrors_by_speed(): Rating mirror 'http://mirror.ufam.edu.br/archlinux/'
2018-04-09 20:10:12 [DEBUG] rank_mirrors.py(203) sort_mirrors_by_speed(): Rating mirror 'http://mirror.thomaskilian.net/archlinux/'
2018-04-09 20:10:12 [DEBUG] rank_mirrors.py(203) sort_mirrors_by_speed(): Rating mirror 'http://archlinux.asia-east.mirror.zoidplex.net/'
2018-04-09 20:10:12 [DEBUG] rank_mirrors.py(203) sort_mirrors_by_speed(): Rating mirror 'http://archlinux.eu.mirror.zoidplex.net/'
2018-04-09 20:10:12 [DEBUG] rank_mirrors.py(203) sort_mirrors_by_speed(): Rating mirror 'http://archlinux.us-central.mirror.zoidplex.net/'
2018-04-09 20:10:12 [DEBUG] rank_mirrors.py(203) sort_mirrors_by_speed(): Rating mirror 'http://archlinux.us-east.mirror.zoidplex.net/'
2018-04-09 20:10:12 [DEBUG] rank_mirrors.py(203) sort_mirrors_by_speed(): Rating mirror 'http://archlinux.us-west.mirror.zoidplex.net/'
2018-04-09 20:11:48 [DEBUG] rank_mirrors.py(214) sort_mirrors_by_speed(): Server Rate Time
2018-04-09 20:11:48 [DEBUG] rank_mirrors.py(223) sort_mirrors_by_speed(): http://mirrors.rit.edu/archlinux/ 183.83 KiB/s 1.90 s
2018-04-09 20:11:48 [DEBUG] rank_mirrors.py(223) sort_mirrors_by_speed(): http://mirror.csclub.uwaterloo.ca/archlinux/ 86.95 KiB/s 4.01 s
2018-04-09 20:11:48 [DEBUG] rank_mirrors.py(223) sort_mirrors_by_speed(): http://mirror.umd.edu/archlinux/ 82.44 KiB/s 4.23 s
2018-04-09 20:11:48 [DEBUG] rank_mirrors.py(223) sort_mirrors_by_speed(): http://ftp.nluug.nl/os/Linux/distr/archlinux/ 54.42 KiB/s 6.40 s
2018-04-09 20:11:48 [DEBUG] rank_mirrors.py(223) sort_mirrors_by_speed(): http://mirror.archlinux.no/ 59.47 KiB/s 5.86 s
2018-04-09 20:11:48 [DEBUG] rank_mirrors.py(223) sort_mirrors_by_speed(): http://mirror.selfnet.de/archlinux/ 83.80 KiB/s 4.16 s
2018-04-09 20:11:48 [DEBUG] rank_mirrors.py(223) sort_mirrors_by_speed(): http://archlinux.mirrors.uk2.net/ 40.25 KiB/s 8.66 s
2018-04-09 20:11:48 [DEBUG] rank_mirrors.py(223) sort_mirrors_by_speed(): http://mirrors.lug.mtu.edu/archlinux/ 145.09 KiB/s 2.40 s
2018-04-09 20:11:48 [DEBUG] rank_mirrors.py(223) sort_mirrors_by_speed(): http://ftp.tku.edu.tw/Linux/ArchLinux/ 109.91 KiB/s 3.17 s
2018-04-09 20:11:48 [DEBUG] rank_mirrors.py(223) sort_mirrors_by_speed(): http://mirrors.dotsrc.org/archlinux/ 85.60 KiB/s 4.07 s
2018-04-09 20:11:48 [DEBUG] rank_mirrors.py(223) sort_mirrors_by_speed(): http://mirror.datacenter.by/pub/archlinux/ 138.67 KiB/s 2.51 s
2018-04-09 20:11:48 [DEBUG] rank_mirrors.py(223) sort_mirrors_by_speed(): http://archlinux.mirror.kangaroot.net/ 59.54 KiB/s 5.85 s
2018-04-09 20:11:48 [DEBUG] rank_mirrors.py(223) sort_mirrors_by_speed(): http://shadow.ind.ntou.edu.tw/archlinux/ 126.93 KiB/s 2.75 s
2018-04-09 20:11:48 [DEBUG] rank_mirrors.py(223) sort_mirrors_by_speed(): http://ftp.byfly.by/pub/archlinux/ 88.77 KiB/s 3.93 s
2018-04-09 20:11:48 [DEBUG] rank_mirrors.py(223) sort_mirrors_by_speed(): http://ftp.rnl.tecnico.ulisboa.pt/pub/archlinux/ 34.03 KiB/s 10.24 s
2018-04-09 20:11:48 [DEBUG] rank_mirrors.py(223) sort_mirrors_by_speed(): http://mirror.vpsfree.cz/archlinux/ 55.81 KiB/s 6.24 s
2018-04-09 20:11:48 [DEBUG] rank_mirrors.py(223) sort_mirrors_by_speed(): http://archlinux.polymorf.fr/ 113.48 KiB/s 3.07 s
2018-04-09 20:11:48 [DEBUG] rank_mirrors.py(223) sort_mirrors_by_speed(): http://mirror.internode.on.net/pub/archlinux/ 20.72 KiB/s 16.82 s
2018-04-09 20:11:48 [DEBUG] rank_mirrors.py(223) sort_mirrors_by_speed(): http://mirror.ams1.nl.leaseweb.net/archlinux/ 89.37 KiB/s 3.90 s
2018-04-09 20:11:48 [DEBUG] rank_mirrors.py(223) sort_mirrors_by_speed(): http://mirror.dal10.us.leaseweb.net/archlinux/ 90.80 KiB/s 3.84 s
2018-04-09 20:11:48 [DEBUG] rank_mirrors.py(223) sort_mirrors_by_speed(): http://mirrors.ustc.edu.cn/archlinux/ 57.24 KiB/s 6.09 s
2018-04-09 20:11:48 [DEBUG] rank_mirrors.py(223) sort_mirrors_by_speed(): http://mirror.wdc1.us.leaseweb.net/archlinux/ 163.78 KiB/s 2.13 s
2018-04-09 20:11:48 [DEBUG] rank_mirrors.py(223) sort_mirrors_by_speed(): http://mirror.fra10.de.leaseweb.net/archlinux/ 51.13 KiB/s 6.82 s
2018-04-09 20:11:48 [DEBUG] rank_mirrors.py(223) sort_mirrors_by_speed(): http://mirrors.n-ix.net/archlinux/ 86.84 KiB/s 4.01 s
2018-04-09 20:11:48 [DEBUG] rank_mirrors.py(223) sort_mirrors_by_speed(): http://mirror.dkm.cz/archlinux/ 102.03 KiB/s 3.42 s
2018-04-09 20:11:48 [DEBUG] rank_mirrors.py(223) sort_mirrors_by_speed(): http://mirror.sfo12.us.leaseweb.net/archlinux/ 61.01 KiB/s 5.71 s
2018-04-09 20:11:48 [DEBUG] rank_mirrors.py(223) sort_mirrors_by_speed(): http://ftp.lysator.liu.se/pub/archlinux/ 33.15 KiB/s 10.51 s
2018-04-09 20:11:48 [DEBUG] rank_mirrors.py(223) sort_mirrors_by_speed(): http://foss.aueb.gr/mirrors/linux/archlinux/ 116.43 KiB/s 2.99 s
2018-04-09 20:11:48 [DEBUG] rank_mirrors.py(223) sort_mirrors_by_speed(): http://archlinux.surlyjake.com/archlinux/ 121.46 KiB/s 2.87 s
2018-04-09 20:11:48 [DEBUG] rank_mirrors.py(223) sort_mirrors_by_speed(): http://ftp.swin.edu.au/archlinux/ 85.15 KiB/s 4.09 s
2018-04-09 20:11:48 [DEBUG] rank_mirrors.py(223) sort_mirrors_by_speed(): http://mirror.united-gameserver.de/archlinux/ 148.29 KiB/s 2.35 s
2018-04-09 20:11:48 [DEBUG] rank_mirrors.py(223) sort_mirrors_by_speed(): http://arch.mirror.constant.com/ 271.34 KiB/s 1.28 s
2018-04-09 20:11:48 [DEBUG] rank_mirrors.py(223) sort_mirrors_by_speed(): http://mirror.hactar.xyz/ 180.34 KiB/s 1.93 s
2018-04-09 20:11:48 [DEBUG] rank_mirrors.py(223) sort_mirrors_by_speed(): http://ftp.tsukuba.wide.ad.jp/Linux/archlinux/ 36.63 KiB/s 9.51 s
2018-04-09 20:11:48 [DEBUG] rank_mirrors.py(223) sort_mirrors_by_speed(): http://arch.tamcore.eu/ 183.62 KiB/s 1.90 s
2018-04-09 20:11:48 [DEBUG] rank_mirrors.py(223) sort_mirrors_by_speed(): http://mirrors.acm.wpi.edu/archlinux/ 213.94 KiB/s 1.63 s
2018-04-09 20:11:48 [DEBUG] rank_mirrors.py(223) sort_mirrors_by_speed(): http://ftp.wa.co.za/pub/archlinux/ 28.67 KiB/s 12.15 s
2018-04-09 20:11:48 [DEBUG] rank_mirrors.py(223) sort_mirrors_by_speed(): http://mirror.system.is/arch/ 37.84 KiB/s 9.21 s
2018-04-09 20:11:48 [DEBUG] rank_mirrors.py(223) sort_mirrors_by_speed(): http://mirrors.manchester.m247.com/arch-linux/ 69.99 KiB/s 4.98 s
2018-04-09 20:11:48 [DEBUG] rank_mirrors.py(223) sort_mirrors_by_speed(): http://mirror.gnomus.de/ 166.91 KiB/s 2.09 s
2018-04-09 20:11:48 [DEBUG] rank_mirrors.py(223) sort_mirrors_by_speed(): http://ftp.snt.utwente.nl/pub/os/linux/archlinux/ 0.00 KiB/s nan s
2018-04-09 20:11:48 [DEBUG] rank_mirrors.py(223) sort_mirrors_by_speed(): http://mirror.one.com/archlinux/ 133.73 KiB/s 2.61 s
2018-04-09 20:11:48 [DEBUG] rank_mirrors.py(223) sort_mirrors_by_speed(): http://mirror.neuf.no/archlinux/ 52.71 KiB/s 6.61 s
2018-04-09 20:11:48 [DEBUG] rank_mirrors.py(223) sort_mirrors_by_speed(): http://mirror.cs.pitt.edu/archlinux/ 179.05 KiB/s 1.95 s
2018-04-09 20:11:48 [DEBUG] rank_mirrors.py(223) sort_mirrors_by_speed(): http://archlinux.iskon.hr/ 72.20 KiB/s 4.83 s
2018-04-09 20:11:48 [DEBUG] rank_mirrors.py(223) sort_mirrors_by_speed(): http://mirror.23media.de/archlinux/ 69.64 KiB/s 5.00 s
2018-04-09 20:11:48 [DEBUG] rank_mirrors.py(223) sort_mirrors_by_speed(): http://mirror.es.its.nyu.edu/archlinux/ 53.06 KiB/s 6.57 s
2018-04-09 20:11:48 [DEBUG] rank_mirrors.py(223) sort_mirrors_by_speed(): http://mirrors.niyawe.de/archlinux/ 120.87 KiB/s 2.88 s
2018-04-09 20:11:48 [DEBUG] rank_mirrors.py(223) sort_mirrors_by_speed(): http://mirror.lastmikoi.net/archlinux/ 109.98 KiB/s 3.17 s
2018-04-09 20:11:48 [DEBUG] rank_mirrors.py(223) sort_mirrors_by_speed(): http://arch.midov.pl/arch/ 77.73 KiB/s 4.48 s
2018-04-09 20:11:48 [DEBUG] rank_mirrors.py(223) sort_mirrors_by_speed(): http://mirrors.atviras.lt/archlinux/ 71.96 KiB/s 4.84 s
2018-04-09 20:11:48 [DEBUG] rank_mirrors.py(223) sort_mirrors_by_speed(): http://ftp.yzu.edu.tw/Linux/archlinux/ 50.52 KiB/s 6.90 s
2018-04-09 20:11:48 [DEBUG] rank_mirrors.py(223) sort_mirrors_by_speed(): http://ftp.myrveln.se/pub/linux/archlinux/ 115.56 KiB/s 3.02 s
2018-04-09 20:11:48 [DEBUG] rank_mirrors.py(223) sort_mirrors_by_speed(): http://mirrors.zju.edu.cn/archlinux/ 78.03 KiB/s 4.47 s
2018-04-09 20:11:48 [DEBUG] rank_mirrors.py(223) sort_mirrors_by_speed(): http://archlinux.mirror.pkern.at/ 33.63 KiB/s 10.36 s
2018-04-09 20:11:48 [DEBUG] rank_mirrors.py(223) sort_mirrors_by_speed(): http://archlinux.honkgong.info/ 114.91 KiB/s 3.03 s
2018-04-09 20:11:48 [DEBUG] rank_mirrors.py(223) sort_mirrors_by_speed(): http://mirror.f4st.host/archlinux/ 117.01 KiB/s 2.98 s
2018-04-09 20:11:48 [DEBUG] rank_mirrors.py(223) sort_mirrors_by_speed(): http://archlinux.mailtunnel.eu/ 49.93 KiB/s 6.98 s
2018-04-09 20:11:48 [DEBUG] rank_mirrors.py(223) sort_mirrors_by_speed(): http://fooo.biz/archlinux/ 40.61 KiB/s 8.58 s
2018-04-09 20:11:48 [DEBUG] rank_mirrors.py(223) sort_mirrors_by_speed(): http://ftp.acc.umu.se/mirror/archlinux/ 88.21 KiB/s 3.95 s
2018-04-09 20:11:48 [DEBUG] rank_mirrors.py(223) sort_mirrors_by_speed(): http://mirror.hackingand.coffee/arch/ 100.93 KiB/s 3.45 s
2018-04-09 20:11:48 [DEBUG] rank_mirrors.py(223) sort_mirrors_by_speed(): http://archlinux.dynamict.se/ 75.28 KiB/s 4.63 s
2018-04-09 20:11:48 [DEBUG] rank_mirrors.py(223) sort_mirrors_by_speed(): http://mirror.pseudoform.org/ 114.75 KiB/s 3.04 s
2018-04-09 20:11:48 [DEBUG] rank_mirrors.py(223) sort_mirrors_by_speed(): http://linorg.usp.br/archlinux/ 37.57 KiB/s 9.28 s
2018-04-09 20:11:48 [DEBUG] rank_mirrors.py(223) sort_mirrors_by_speed(): http://mirror.lty.me/archlinux/ 97.06 KiB/s 3.59 s
2018-04-09 20:11:48 [DEBUG] rank_mirrors.py(223) sort_mirrors_by_speed(): http://burek.archlinux.ba/ 150.57 KiB/s 2.31 s
2018-04-09 20:11:48 [DEBUG] rank_mirrors.py(223) sort_mirrors_by_speed(): http://pkg.adfinis-sygroup.ch/archlinux/ 110.66 KiB/s 3.15 s
2018-04-09 20:11:48 [DEBUG] rank_mirrors.py(223) sort_mirrors_by_speed(): http://mirrors.uni-plovdiv.net/archlinux/ 40.06 KiB/s 8.70 s
2018-04-09 20:11:48 [DEBUG] rank_mirrors.py(223) sort_mirrors_by_speed(): http://mirror.kaminski.io/archlinux/ 258.78 KiB/s 1.35 s
2018-04-09 20:11:48 [DEBUG] rank_mirrors.py(223) sort_mirrors_by_speed(): http://arch.jensgutermuth.de/ 59.78 KiB/s 5.83 s
2018-04-09 20:11:48 [DEBUG] rank_mirrors.py(223) sort_mirrors_by_speed(): http://mirror.sergal.org/archlinux/ 132.57 KiB/s 2.63 s
2018-04-09 20:11:48 [DEBUG] rank_mirrors.py(223) sort_mirrors_by_speed(): http://archlinux.ip-connect.vn.ua/ 77.12 KiB/s 4.52 s
2018-04-09 20:11:48 [DEBUG] rank_mirrors.py(223) sort_mirrors_by_speed(): http://arlm.tyzoid.com/ 176.02 KiB/s 1.98 s
2018-04-09 20:11:48 [DEBUG] rank_mirrors.py(223) sort_mirrors_by_speed(): http://mirror.ubrco.de/archlinux/ 50.93 KiB/s 6.84 s
2018-04-09 20:11:48 [DEBUG] rank_mirrors.py(223) sort_mirrors_by_speed(): http://ftp.sh.cvut.cz/arch/ 31.39 KiB/s 11.10 s
2018-04-09 20:11:48 [DEBUG] rank_mirrors.py(223) sort_mirrors_by_speed(): http://arch.mirror.far.fi/ 41.29 KiB/s 8.44 s
2018-04-09 20:11:48 [DEBUG] rank_mirrors.py(223) sort_mirrors_by_speed(): http://mirror.aur.rocks/ 98.75 KiB/s 3.53 s
2018-04-09 20:11:48 [DEBUG] rank_mirrors.py(223) sort_mirrors_by_speed(): http://mirror.epiphyte.network/archlinux/ 120.16 KiB/s 2.90 s
2018-04-09 20:11:48 [DEBUG] rank_mirrors.py(223) sort_mirrors_by_speed(): http://archlinux.thaller.ws/ 59.36 KiB/s 5.87 s
2018-04-09 20:11:48 [DEBUG] rank_mirrors.py(223) sort_mirrors_by_speed(): http://archlinux.mirrors.benatherton.com/ 94.21 KiB/s 3.70 s
2018-04-09 20:11:48 [DEBUG] rank_mirrors.py(223) sort_mirrors_by_speed(): http://arch.mirror.square-r00t.net/ 167.99 KiB/s 2.07 s
2018-04-09 20:11:48 [DEBUG] rank_mirrors.py(223) sort_mirrors_by_speed(): http://archlinux.mirror.ba/ 58.21 KiB/s 5.99 s
2018-04-09 20:11:48 [DEBUG] rank_mirrors.py(223) sort_mirrors_by_speed(): http://mirror.xtom.com.hk/archlinux/ 94.18 KiB/s 3.70 s
2018-04-09 20:11:48 [DEBUG] rank_mirrors.py(223) sort_mirrors_by_speed(): http://mirrors.celianvdb.fr/archlinux/ 44.06 KiB/s 7.91 s
2018-04-09 20:11:48 [DEBUG] rank_mirrors.py(223) sort_mirrors_by_speed(): http://arch.mthq.org/mirror/ 65.71 KiB/s 5.30 s
2018-04-09 20:11:48 [DEBUG] rank_mirrors.py(223) sort_mirrors_by_speed(): http://mirror.thomaskilian.net/archlinux/ 114.49 KiB/s 3.04 s
2018-04-09 20:11:48 [DEBUG] rank_mirrors.py(223) sort_mirrors_by_speed(): http://archlinux.us-central.mirror.zoidplex.net/ 183.49 KiB/s 1.90 s
2018-04-09 20:11:48 [DEBUG] rank_mirrors.py(223) sort_mirrors_by_speed(): http://archlinux.us-east.mirror.zoidplex.net/ 208.70 KiB/s 1.67 s
2018-04-09 20:11:48 [DEBUG] rank_mirrors.py(223) sort_mirrors_by_speed(): http://mirrors.kurnode.com/archlinux/ 37.87 KiB/s 9.20 s
2018-04-09 20:11:48 [DEBUG] rank_mirrors.py(223) sort_mirrors_by_speed(): http://archlinux.asia-east.mirror.zoidplex.net/ 57.09 KiB/s 6.10 s
2018-04-09 20:11:48 [DEBUG] rank_mirrors.py(223) sort_mirrors_by_speed(): http://archlinux.us-west.mirror.zoidplex.net/ 242.06 KiB/s 1.44 s
2018-04-09 20:11:48 [DEBUG] rank_mirrors.py(223) sort_mirrors_by_speed(): http://mirror.ufam.edu.br/archlinux/ 36.42 KiB/s 9.57 s
2018-04-09 20:11:48 [DEBUG] rank_mirrors.py(223) sort_mirrors_by_speed(): http://archlinux.eu.mirror.zoidplex.net/ 45.69 KiB/s 7.63 s
2018-04-09 20:11:48 [DEBUG] rank_mirrors.py(324) run(): Running rankmirrors command to sort Antergos mirrors...
2018-04-09 20:12:27 [DEBUG] rank_mirrors.py(330) run(): Auto mirror selection has been run successfully.
2018-04-09 20:12:27 [DEBUG] ask.py(529) wait(): All external processes are finished. Installation can go on
2018-04-09 20:12:27 [DEBUG] automatic.py(160) populate_devices(): ATA VBOX HARDDISK [32 GB] (/dev/sda)
2018-04-09 20:18:27 [INFO] automatic.py(347) set_bootloader(): Antergos will install the bootloader 'grub2' in device '/dev/sda'
2018-04-09 20:18:27 [DEBUG] auto_partition.py(388) get_devices(): /dev/sda
2018-04-09 20:18:27 [DEBUG] auto_partition.py(388) get_devices(): /dev/sda
2018-04-09 20:18:27 [DEBUG] auto_partition.py(471) get_mount_devices(): /dev/sda1 assigned to be mounted in /boot
2018-04-09 20:18:27 [DEBUG] auto_partition.py(471) get_mount_devices(): /dev/sda2 assigned to be mounted in /
2018-04-09 20:18:27 [DEBUG] auto_partition.py(471) get_mount_devices(): /dev/sda5 assigned to be mounted in swap
2018-04-09 20:18:27 [DEBUG] auto_partition.py(388) get_devices(): /dev/sda
2018-04-09 20:18:27 [DEBUG] auto_partition.py(512) get_fs_devices(): Device /dev/sda1 will have a ext4 filesystem
2018-04-09 20:18:27 [DEBUG] auto_partition.py(512) get_fs_devices(): Device /dev/sda5 will have a swap filesystem
2018-04-09 20:18:27 [DEBUG] auto_partition.py(512) get_fs_devices(): Device /dev/sda2 will have a ext4 filesystem
2018-04-09 20:18:31 [DEBUG] select_packages.py(105) create_package_list(): Refreshing pacman databases...
2018-04-09 20:18:31 [DEBUG] pac.py(122) initialize_alpm(): ALPM initialised with root dir / and db path /var/lib/pacman
2018-04-09 20:18:31 [DEBUG] pac.py(98) __init__(): ALPM repository database order is: ['core', 'extra', 'community', 'multilib', 'Reborn-OS', 'antergos', 'aur-archlinux', 'pantheon']
2018-04-09 20:18:32 [INFO] slides.py(257) manage_events_from_cb_queue(): Updating core database
2018-04-09 20:18:32 [INFO] slides.py(257) manage_events_from_cb_queue(): Updating extra database
2018-04-09 20:18:37 [INFO] slides.py(257) manage_events_from_cb_queue(): Updating community database
2018-04-09 20:18:48 [INFO] slides.py(257) manage_events_from_cb_queue(): Updating multilib database
2018-04-09 20:18:50 [INFO] slides.py(257) manage_events_from_cb_queue(): Updating Reborn-OS database
2018-04-09 20:18:50 [INFO] slides.py(257) manage_events_from_cb_queue(): Updating antergos database
2018-04-09 20:18:51 [INFO] slides.py(257) manage_events_from_cb_queue(): Updating aur-archlinux database
2018-04-09 20:18:52 [DEBUG] select_packages.py(107) create_package_list(): Pacman ready
2018-04-09 20:18:52 [DEBUG] select_packages.py(109) create_package_list(): Selecting packages...
2018-04-09 20:18:52 [DEBUG] select_packages.py(223) select_packages(): Loading /usr/share/cnchi/data/packages.xml
2018-04-09 20:18:52 [DEBUG] select_packages.py(243) select_packages(): Adding pantheon desktop packages
2018-04-09 20:18:52 [ERROR] select_packages.py(291) select_packages(): Error in hardware module. An exception of type FileNotFoundError occured. Arguments:
(2, 'No such file or directory')
2018-04-09 20:18:52 [DEBUG] select_packages.py(304) select_packages(): Adding filesystem packages
2018-04-09 20:18:52 [DEBUG] select_packages.py(332) select_packages(): Adding 'grub2' bootloader packages
2018-04-09 20:18:52 [DEBUG] select_packages.py(342) select_packages(): Check for user desired features and add them to our installation
2018-04-09 20:18:52 [DEBUG] select_packages.py(388) add_features_packages(): Adding packages for 'aur' feature.
2018-04-09 20:18:52 [DEBUG] select_packages.py(394) add_features_packages(): Selecting package yaourt for feature aur
2018-04-09 20:18:52 [DEBUG] select_packages.py(394) add_features_packages(): Selecting package cmake for feature aur
2018-04-09 20:18:52 [DEBUG] select_packages.py(394) add_features_packages(): Selecting package git for feature aur
2018-04-09 20:18:52 [DEBUG] select_packages.py(394) add_features_packages(): Selecting package bzr for feature aur
2018-04-09 20:18:52 [DEBUG] select_packages.py(388) add_features_packages(): Adding packages for 'bluetooth' feature.
2018-04-09 20:18:52 [DEBUG] select_packages.py(394) add_features_packages(): Selecting package bluez for feature bluetooth
2018-04-09 20:18:52 [DEBUG] select_packages.py(394) add_features_packages(): Selecting package bluez-utils for feature bluetooth
2018-04-09 20:18:52 [DEBUG] select_packages.py(394) add_features_packages(): Selecting package pulseaudio-bluetooth for feature bluetooth
2018-04-09 20:18:52 [DEBUG] select_packages.py(388) add_features_packages(): Adding packages for 'cups' feature.
2018-04-09 20:18:52 [DEBUG] select_packages.py(394) add_features_packages(): Selecting package cups for feature cups
2018-04-09 20:18:52 [DEBUG] select_packages.py(394) add_features_packages(): Selecting package cups-pk-helper for feature cups
2018-04-09 20:18:52 [DEBUG] select_packages.py(394) add_features_packages(): Selecting package gsfonts for feature cups
2018-04-09 20:18:52 [DEBUG] select_packages.py(394) add_features_packages(): Selecting package hplip for feature cups
2018-04-09 20:18:52 [DEBUG] select_packages.py(394) add_features_packages(): Selecting package system-config-printer for feature cups
2018-04-09 20:18:52 [DEBUG] select_packages.py(394) add_features_packages(): Selecting package python2-gnomekeyring for feature cups
2018-04-09 20:18:52 [DEBUG] select_packages.py(394) add_features_packages(): Selecting package splix for feature cups
2018-04-09 20:18:52 [DEBUG] select_packages.py(394) add_features_packages(): Selecting package python-pyqt5 for feature cups
2018-04-09 20:18:52 [DEBUG] select_packages.py(394) add_features_packages(): Selecting package python-gobject for feature cups
2018-04-09 20:18:52 [DEBUG] select_packages.py(388) add_features_packages(): Adding packages for 'firewall' feature.
2018-04-09 20:18:52 [DEBUG] select_packages.py(394) add_features_packages(): Selecting package gufw for feature firewall
2018-04-09 20:18:52 [DEBUG] select_packages.py(394) add_features_packages(): Selecting package ufw for feature firewall
2018-04-09 20:18:52 [DEBUG] select_packages.py(388) add_features_packages(): Adding packages for 'flash' feature.
2018-04-09 20:18:52 [DEBUG] select_packages.py(394) add_features_packages(): Selecting package pepper-flash for feature flash
2018-04-09 20:18:52 [DEBUG] select_packages.py(394) add_features_packages(): Selecting package flashplugin for feature flash
2018-04-09 20:18:52 [DEBUG] select_packages.py(388) add_features_packages(): Adding packages for 'lts' feature.
2018-04-09 20:18:52 [DEBUG] select_packages.py(394) add_features_packages(): Selecting package linux-lts for feature lts
2018-04-09 20:18:52 [DEBUG] select_packages.py(388) add_features_packages(): Adding packages for 'nautilus' feature.
2018-04-09 20:18:52 [DEBUG] select_packages.py(394) add_features_packages(): Selecting package nautilus for feature nautilus
2018-04-09 20:18:52 [DEBUG] select_packages.py(394) add_features_packages(): Selecting package nautilus-root for feature nautilus
2018-04-09 20:18:52 [DEBUG] select_packages.py(344) select_packages(): All features needed packages have been added
2018-04-09 20:18:52 [DEBUG] select_packages.py(361) select_packages(): Packages list: hunspell-en,grub2-theme-vimix-git,python2-gnomekeyring,aurarchlinux-keyring,python-pyqt5,pepper-flash,linux-firmware,cups-pk-helper,grub2-theme-antergos,qt5-styleplugins,flashplugin,nautilus,f2fs-tools,sddm-config-editor-git,os-prober,nilfs-utils,reiserfsprogs,e2fsprogs,cifs-utils,cups,ntfs-3g,network-manager-applet,sddm-theme-gracilis-git,dosfstools,bluez-utils,xorg-fonts,common-cosmic-reborn,gsfonts,efibootmgr,xorg-apps,bluez,graphic-cosmic-reborn,dconf-editor,splix,pulseaudio-bluetooth,grub,cmake,rebornos-keyring,elementary-cosmic-reborn,python-gobject,exfat-utils,linux-headers,xfsprogs,ufw,yaourt,nautilus-root,system-config-printer,gufw,bzr,hplip,dmraid,btrfs-progs,nfs-utils,linux-lts,git,linux,jfsutils,base,base-devel
2018-04-09 20:18:52 [DEBUG] select_packages.py(111) create_package_list(): Packages selected
2018-04-09 20:18:52 [DEBUG] pac.py(122) initialize_alpm(): ALPM initialised with root dir / and db path /var/lib/pacman
2018-04-09 20:18:52 [DEBUG] pac.py(98) __init__(): ALPM repository database order is: ['core', 'extra', 'community', 'multilib', 'Reborn-OS', 'antergos', 'aur-archlinux', 'pantheon']
2018-04-09 20:18:53 [INFO] slides.py(257) manage_events_from_cb_queue(): Updating pantheon database
2018-04-09 20:18:53 [INFO] slides.py(257) manage_events_from_cb_queue(): Creating the list of packages to download...
2018-04-09 20:19:05 [DEBUG] automatic.py(310) run_format(): Creating partitions and their filesystems in /dev/sda
2018-04-09 20:19:05 [DEBUG] run_cmd.py(104) call(): MemTotal: 2333876 kB
2018-04-09 20:19:05 [DEBUG] auto_partition.py(581) log_part_sizes(): Total disk size: 31087MiB
2018-04-09 20:19:05 [DEBUG] auto_partition.py(585) log_part_sizes(): Boot partition size: 256MiB
2018-04-09 20:19:05 [DEBUG] auto_partition.py(591) log_part_sizes(): Swap partition size: 2280MiB
2018-04-09 20:19:05 [DEBUG] auto_partition.py(592) log_part_sizes(): Root partition size: 28550MiB
2018-04-09 20:19:05 [DEBUG] run_cmd.py(104) call(): proc on /proc type proc (rw,nosuid,nodev,noexec,relatime)
sys on /sys type sysfs (rw,nosuid,nodev,noexec,relatime)
dev on /dev type devtmpfs (rw,nosuid,relatime,size=1152864k,nr_inodes=288216,mode=755)
run on /run type tmpfs (rw,nosuid,nodev,relatime,mode=755)
/dev/sr0 on /run/archiso/bootmnt type iso9660 (ro,relatime,nojoliet,check=s,map=n,blocksize=2048)
cowspace on /run/archiso/cowspace type tmpfs (rw,relatime,size=10485760k,mode=755)
/dev/loop0 on /run/archiso/sfs/airootfs type squashfs (ro,relatime)
airootfs on / type overlay (rw,relatime,lowerdir=/run/archiso/sfs/airootfs,upperdir=/run/archiso/cowspace/persistent_Reborn-OS_201804/x86_64/upperdir,workdir=/run/archiso/cowspace/persistent_Reborn-OS_201804/x86_64/workdir,index=off)
securityfs on /sys/kernel/security type securityfs (rw,nosuid,nodev,noexec,relatime)
tmpfs on /dev/shm type tmpfs (rw,nosuid,nodev)
devpts on /dev/pts type devpts (rw,nosuid,noexec,relatime,gid=5,mode=620,ptmxmode=000)
tmpfs on /sys/fs/cgroup type tmpfs (ro,nosuid,nodev,noexec,mode=755)
cgroup2 on /sys/fs/cgroup/unified type cgroup2 (rw,nosuid,nodev,noexec,relatime,nsdelegate)
cgroup on /sys/fs/cgroup/systemd type cgroup (rw,nosuid,nodev,noexec,relatime,xattr,name=systemd)
pstore on /sys/fs/pstore type pstore (rw,nosuid,nodev,noexec,relatime)
bpf on /sys/fs/bpf type bpf (rw,nosuid,nodev,noexec,relatime,mode=700)
cgroup on /sys/fs/cgroup/net_cls,net_prio type cgroup (rw,nosuid,nodev,noexec,relatime,net_cls,net_prio)
cgroup on /sys/fs/cgroup/devices type cgroup (rw,nosuid,nodev,noexec,relatime,devices)
cgroup on /sys/fs/cgroup/freezer type cgroup (rw,nosuid,nodev,noexec,relatime,freezer)
cgroup on /sys/fs/cgroup/blkio type cgroup (rw,nosuid,nodev,noexec,relatime,blkio)
cgroup on /sys/fs/cgroup/cpu,cpuacct type cgroup (rw,nosuid,nodev,noexec,relatime,cpu,cpuacct)
cgroup on /sys/fs/cgroup/pids type cgroup (rw,nosuid,nodev,noexec,relatime,pids)
cgroup on /sys/fs/cgroup/cpuset type cgroup (rw,nosuid,nodev,noexec,relatime,cpuset)
cgroup on /sys/fs/cgroup/perf_event type cgroup (rw,nosuid,nodev,noexec,relatime,perf_event)
cgroup on /sys/fs/cgroup/memory type cgroup (rw,nosuid,nodev,noexec,relatime,memory)
cgroup on /sys/fs/cgroup/hugetlb type cgroup (rw,nosuid,nodev,noexec,relatime,hugetlb)
cgroup on /sys/fs/cgroup/rdma type cgroup (rw,nosuid,nodev,noexec,relatime,rdma)
mqueue on /dev/mqueue type mqueue (rw,relatime)
debugfs on /sys/kernel/debug type debugfs (rw,relatime)
tmpfs on /tmp type tmpfs (rw,nosuid,nodev)
systemd-1 on /proc/sys/fs/binfmt_misc type autofs (rw,relatime,fd=41,pgrp=1,timeout=0,minproto=5,maxproto=5,direct,pipe_ino=13406)
hugetlbfs on /dev/hugepages type hugetlbfs (rw,relatime,pagesize=2M)
configfs on /sys/kernel/config type configfs (rw,relatime)
tmpfs on /etc/pacman.d/gnupg type tmpfs (rw,relatime,mode=755)
tmpfs on /run/user/1000 type tmpfs (rw,nosuid,nodev,relatime,size=233384k,mode=700,uid=1000,gid=985)
gvfsd-fuse on /run/user/1000/gvfs type fuse.gvfsd-fuse (rw,nosuid,nodev,relatime,user_id=1000,group_id=985)
2018-04-09 20:19:05 [DEBUG] auto_partition.py(73) unmount(): Unmounting /install
2018-04-09 20:19:05 [DEBUG] run_cmd.py(114) call(): Error running ['umount', '-l', '/install']: umount: /install: no mount point specified.
2018-04-09 20:19:05 [DEBUG] run_cmd.py(104) call(): proc on /proc type proc (rw,nosuid,nodev,noexec,relatime)
sys on /sys type sysfs (rw,nosuid,nodev,noexec,relatime)
dev on /dev type devtmpfs (rw,nosuid,relatime,size=1152864k,nr_inodes=288216,mode=755)
run on /run type tmpfs (rw,nosuid,nodev,relatime,mode=755)
/dev/sr0 on /run/archiso/bootmnt type iso9660 (ro,relatime,nojoliet,check=s,map=n,blocksize=2048)
cowspace on /run/archiso/cowspace type tmpfs (rw,relatime,size=10485760k,mode=755)
/dev/loop0 on /run/archiso/sfs/airootfs type squashfs (ro,relatime)
airootfs on / type overlay (rw,relatime,lowerdir=/run/archiso/sfs/airootfs,upperdir=/run/archiso/cowspace/persistent_Reborn-OS_201804/x86_64/upperdir,workdir=/run/archiso/cowspace/persistent_Reborn-OS_201804/x86_64/workdir,index=off)
securityfs on /sys/kernel/security type securityfs (rw,nosuid,nodev,noexec,relatime)
tmpfs on /dev/shm type tmpfs (rw,nosuid,nodev)
devpts on /dev/pts type devpts (rw,nosuid,noexec,relatime,gid=5,mode=620,ptmxmode=000)
tmpfs on /sys/fs/cgroup type tmpfs (ro,nosuid,nodev,noexec,mode=755)
cgroup2 on /sys/fs/cgroup/unified type cgroup2 (rw,nosuid,nodev,noexec,relatime,nsdelegate)
cgroup on /sys/fs/cgroup/systemd type cgroup (rw,nosuid,nodev,noexec,relatime,xattr,name=systemd)
pstore on /sys/fs/pstore type pstore (rw,nosuid,nodev,noexec,relatime)
bpf on /sys/fs/bpf type bpf (rw,nosuid,nodev,noexec,relatime,mode=700)
cgroup on /sys/fs/cgroup/net_cls,net_prio type cgroup (rw,nosuid,nodev,noexec,relatime,net_cls,net_prio)
cgroup on /sys/fs/cgroup/devices type cgroup (rw,nosuid,nodev,noexec,relatime,devices)
cgroup on /sys/fs/cgroup/freezer type cgroup (rw,nosuid,nodev,noexec,relatime,freezer)
cgroup on /sys/fs/cgroup/blkio type cgroup (rw,nosuid,nodev,noexec,relatime,blkio)
cgroup on /sys/fs/cgroup/cpu,cpuacct type cgroup (rw,nosuid,nodev,noexec,relatime,cpu,cpuacct)
cgroup on /sys/fs/cgroup/pids type cgroup (rw,nosuid,nodev,noexec,relatime,pids)
cgroup on /sys/fs/cgroup/cpuset type cgroup (rw,nosuid,nodev,noexec,relatime,cpuset)
cgroup on /sys/fs/cgroup/perf_event type cgroup (rw,nosuid,nodev,noexec,relatime,perf_event)
cgroup on /sys/fs/cgroup/memory type cgroup (rw,nosuid,nodev,noexec,relatime,memory)
cgroup on /sys/fs/cgroup/hugetlb type cgroup (rw,nosuid,nodev,noexec,relatime,hugetlb)
cgroup on /sys/fs/cgroup/rdma type cgroup (rw,nosuid,nodev,noexec,relatime,rdma)
mqueue on /dev/mqueue type mqueue (rw,relatime)
debugfs on /sys/kernel/debug type debugfs (rw,relatime)
tmpfs on /tmp type tmpfs (rw,nosuid,nodev)
systemd-1 on /proc/sys/fs/binfmt_misc type autofs (rw,relatime,fd=41,pgrp=1,timeout=0,minproto=5,maxproto=5,direct,pipe_ino=13406)
hugetlbfs on /dev/hugepages type hugetlbfs (rw,relatime,pagesize=2M)
configfs on /sys/kernel/config type configfs (rw,relatime)
tmpfs on /etc/pacman.d/gnupg type tmpfs (rw,relatime,mode=755)
tmpfs on /run/user/1000 type tmpfs (rw,nosuid,nodev,relatime,size=233384k,mode=700,uid=1000,gid=985)
gvfsd-fuse on /run/user/1000/gvfs type fuse.gvfsd-fuse (rw,nosuid,nodev,relatime,user_id=1000,group_id=985)
2018-04-09 20:19:06 [INFO] slides.py(257) manage_events_from_cb_queue():
2018-04-09 20:19:06 [INFO] slides.py(257) manage_events_from_cb_queue(): Getting your disk(s) ready for Antergos...
2018-04-09 20:19:07 [DEBUG] auto_partition.py(388) get_devices(): /dev/sda
2018-04-09 20:19:07 [DEBUG] auto_partition.py(764) run(): Boot: /dev/sda1
2018-04-09 20:19:07 [DEBUG] auto_partition.py(765) run(): Root: /dev/sda2
2018-04-09 20:19:07 [DEBUG] auto_partition.py(770) run(): Swap: /dev/sda5
2018-04-09 20:19:07 [DEBUG] auto_partition.py(388) get_devices(): /dev/sda
2018-04-09 20:19:07 [DEBUG] auto_partition.py(512) get_fs_devices(): Device /dev/sda1 will have a ext4 filesystem
2018-04-09 20:19:07 [DEBUG] auto_partition.py(512) get_fs_devices(): Device /dev/sda5 will have a swap filesystem
2018-04-09 20:19:07 [DEBUG] auto_partition.py(512) get_fs_devices(): Device /dev/sda2 will have a ext4 filesystem
2018-04-09 20:19:07 [DEBUG] auto_partition.py(302) mkfs(): Will format device /dev/sda2 as ext4
2018-04-09 20:19:14 [DEBUG] auto_partition.py(367) mkfs(): Device details: /dev/sda2 UUID=f0466a25-d393-4fc8-9b42-200e84a6c144 LABEL=AntergosRoot
2018-04-09 20:19:14 [DEBUG] auto_partition.py(302) mkfs(): Will format device /dev/sda5 as swap
2018-04-09 20:19:14 [DEBUG] run_cmd.py(104) call(): mkswap: /dev/sda5: warning: wiping old swap signature.
Setting up swapspace version 1, size = 2.2 GiB (2391191552 bytes)
LABEL=AntergosSwap, UUID=84b822ff-18d9-4c36-b749-b6520cbcf460
2018-04-09 20:19:15 [DEBUG] auto_partition.py(367) mkfs(): Device details: /dev/sda5 UUID=84b822ff-18d9-4c36-b749-b6520cbcf460 LABEL=AntergosSwap
2018-04-09 20:19:15 [DEBUG] auto_partition.py(302) mkfs(): Will format device /dev/sda1 as ext4
2018-04-09 20:19:15 [DEBUG] auto_partition.py(367) mkfs(): Device details: /dev/sda1 UUID=9338c044-dcc8-4bcb-95cd-0decd8a99a50 LABEL=AntergosBoot
2018-04-09 20:19:15 [DEBUG] auto_partition.py(388) get_devices(): /dev/sda
2018-04-09 20:19:15 [DEBUG] auto_partition.py(471) get_mount_devices(): /dev/sda1 assigned to be mounted in /boot
2018-04-09 20:19:15 [DEBUG] auto_partition.py(471) get_mount_devices(): /dev/sda2 assigned to be mounted in /
2018-04-09 20:19:15 [DEBUG] auto_partition.py(471) get_mount_devices(): /dev/sda5 assigned to be mounted in swap
2018-04-09 20:19:15 [DEBUG] auto_partition.py(388) get_devices(): /dev/sda
2018-04-09 20:19:15 [DEBUG] auto_partition.py(512) get_fs_devices(): Device /dev/sda1 will have a ext4 filesystem
2018-04-09 20:19:15 [DEBUG] auto_partition.py(512) get_fs_devices(): Device /dev/sda5 will have a swap filesystem
2018-04-09 20:19:15 [DEBUG] auto_partition.py(512) get_fs_devices(): Device /dev/sda2 will have a ext4 filesystem
2018-04-09 20:19:15 [INFO] automatic.py(352) run_install(): Cnchi will install Antergos on device /dev/sda
2018-04-09 20:19:15 [DEBUG] install.py(305) start(): Preparing pacman...
2018-04-09 20:19:15 [DEBUG] install.py(408) create_pacman_conf_file(): Creating a temporary pacman.conf for x86_64 architecture
2018-04-09 20:19:16 [INFO] slides.py(257) manage_events_from_cb_queue(): Installation will start now!
2018-04-09 20:19:16 [INFO] slides.py(257) manage_events_from_cb_queue(): Installing using the 'automatic' method
2018-04-09 20:19:16 [INFO] slides.py(257) manage_events_from_cb_queue(): Updating package manager security. Please wait...
2018-04-09 20:19:17 [DEBUG] run_cmd.py(104) call(): gpg: /install/etc/pacman.d/gnupg/trustdb.gpg: trustdb created
gpg: no ultimately trusted keys found
gpg: starting migration from earlier GnuPG versions
gpg: porting secret keys from '/install/etc/pacman.d/gnupg/secring.gpg' to gpg-agent
gpg: migration succeeded
gpg: Generating pacman keyring master key...
gpg: key 6F126FF7DCA0415D marked as ultimately trusted
gpg: directory '/install/etc/pacman.d/gnupg/openpgp-revocs.d' created
gpg: revocation certificate stored as '/install/etc/pacman.d/gnupg/openpgp-revocs.d/56A4F2B83CBA17264CFB29F76F126FF7DCA0415D.rev'
gpg: Done
==> Updating trust database...
gpg: marginals needed: 3 completes needed: 1 trust model: pgp
gpg: depth: 0 valid: 1 signed: 0 trust: 0-, 0q, 0n, 0m, 0f, 1u
2018-04-09 20:19:22 [DEBUG] run_cmd.py(104) call(): ==> Appending keys from archlinux.gpg...
==> Appending keys from antergos.gpg...
==> Locally signing trusted keys in keyring...
-> Locally signing key DDB867B92AA789C165EEFA799B729B06A680C281...
-> Locally signing key 684148BB25B49E986A4944C55184252D824B18E8...
-> Locally signing key 24B445614FAC071891EDCE49CDBD406AA1AA7A1D...
-> Locally signing key D95436A2E18DA94A72B1A5E2AEA529BF122902E5...
-> Locally signing key 91FFE0700E80619CEB73235CA88E23E377514E00...
-> Locally signing key AB19265E5D7D20687D303246BA1DFB64FFF979E7...
-> Locally signing key 0E8B644079F599DFC1DDC3973348882F6AC6A4C2...
-> Locally signing key EC3B5CE8FE98DFDF51B705536D6DDA3D2A45C7B4...
==> Importing owner trust values...
gpg: setting ownertrust to 4
gpg: setting ownertrust to 4
gpg: setting ownertrust to 4
gpg: setting ownertrust to 4
gpg: setting ownertrust to 4
gpg: inserting ownertrust of 4
gpg: setting ownertrust to 4
gpg: setting ownertrust to 4
==> Disabling revoked keys in keyring...
-> Disabling key 7FA647CD89891DEDC060287BB9113D1ED21E1A55...
-> Disabling key D4DE5ABDE2A7287644EAC7E36D1A9E70E19DAA50...
-> Disabling key 40440DC037C05620984379A6761FAD69BA06C6A9...
-> Disabling key B1F2C889CB2CCB2ADA36D963097D629E437520BD...
-> Disabling key BC1FBE4D2826A0B51E47ED62E2539214C6C11350...
-> Disabling key 63F395DE2D6398BBE458F281F2DBB4931985A992...
-> Disabling key 8F76BEEA0289F9E1D3E229C05F946DED983D4366...
-> Disabling key 4FCF887689C41B09506BE8D5F3E1D5C5D30DB0AD...
-> Disabling key 81D7F8241DB38BC759C80FCE3A726C6170E80477...
-> Disabling key 5E7585ADFF106BFFBBA319DC654B877A0864983E...
-> Disabling key E7210A59715F6940CF9A4E36A001876699AD6E84...
-> Disabling key F5A361A3A13554B85E57DDDAAF7EF7873CFD4BB6...
-> Disabling key 8CF934E339CAD8ABF342E822E711306E3C4F88BC...
-> Disabling key 5696C003B0854206450C8E5BE613C09CB4440678...
-> Disabling key 9515D8A8EAB88E49BB65EDBCE6B456CAF15447D5...
-> Disabling key 4A8B17E20B88ACA61860009B5CED81B7C2E5C0D2...
-> Disabling key 0B20CA1931F5DA3A70D0F8D2EA6836E1AB441196...
-> Disabling key 34C5D94FE7E7913E86DC427E7FB1A3800C84C0A5...
-> Disabling key 39F880E50E49A4D11341E8F939E4F17F295AFBF4...
-> Disabling key 66BD74A036D522F51DD70A3C7F2A16726521E06D...
-> Disabling key DBE7D3DD8C81D58D0A13D0E76BC26A17B9B7018A...
-> Disabling key 07DFD3A0BC213FA12EDC217559B3122E2FA915EC...
-> Disabling key 44D4A033AC140143927397D47EFD567D4C7EA887...
-> Disabling key 27FFC4769E19F096D41D9265A04F9397CDFD6BB0...
-> Disabling key 8840BD07FC24CB7CE394A07CCF7037A4F27FB7DA...
==> Updating trust database...
gpg: marginals needed: 3 completes needed: 1 trust model: pgp
gpg: depth: 0 valid: 1 signed: 8 trust: 0-, 0q, 0n, 0m, 0f, 1u
gpg: depth: 1 valid: 8 signed: 72 trust: 0-, 0q, 0n, 8m, 0f, 0u
gpg: depth: 2 valid: 72 signed: 8 trust: 72-, 0q, 0n, 0m, 0f, 0u
gpg: next trustdb check due at 2018-06-25
2018-04-09 20:19:22 [DEBUG] run_cmd.py(104) call(): dirmngr[2053]: error opening '/home/reborn/.gnupg/dirmngr_ldapservers.conf': No such file or directory
dirmngr[2053.0]: permanently loaded certificates: 136
dirmngr[2053.0]: runtime cached certificates: 0
dirmngr[2053.0]: trusted certificates: 136 (135,0,0,1)
dirmngr[2053.0]: failed to open cache dir file '/home/reborn/.gnupg/crls.d/DIR.txt': No such file or directory
dirmngr[2053.0]: creating directory '/home/reborn/.gnupg'
dirmngr[2053.0]: creating directory '/home/reborn/.gnupg/crls.d'
dirmngr[2053.0]: new cache dir file '/home/reborn/.gnupg/crls.d/DIR.txt' created
# Home: /home/reborn/.gnupg
# Config: [none]
OK Dirmngr 2.2.5 at your service
2018-04-09 20:19:22 [DEBUG] pac.py(122) initialize_alpm(): ALPM initialised with root dir /install and db path /install/var/lib/pacman/
2018-04-09 20:19:22 [DEBUG] pac.py(98) __init__(): ALPM repository database order is: ['core', 'extra', 'community', 'multilib', 'antergos', 'Reborn-OS', 'aur-archlinux', 'pantheon']
2018-04-09 20:19:23 [INFO] slides.py(257) manage_events_from_cb_queue(): Updating core database
2018-04-09 20:19:23 [INFO] slides.py(257) manage_events_from_cb_queue(): Updating extra database
2018-04-09 20:19:28 [INFO] slides.py(257) manage_events_from_cb_queue(): Updating community database
2018-04-09 20:19:39 [INFO] slides.py(257) manage_events_from_cb_queue(): Updating multilib database
2018-04-09 20:19:40 [INFO] slides.py(257) manage_events_from_cb_queue(): Updating antergos database
2018-04-09 20:19:41 [INFO] slides.py(257) manage_events_from_cb_queue(): Updating Reborn-OS database
2018-04-09 20:19:41 [INFO] slides.py(257) manage_events_from_cb_queue(): Updating aur-archlinux database
2018-04-09 20:19:42 [DEBUG] install.py(307) start(): Pacman ready
2018-04-09 20:19:42 [DEBUG] install.py(312) start(): Running hardware drivers pre-install jobs...
2018-04-09 20:19:42 [ERROR] install.py(320) start(): Error in hardware module. An exception of type FileNotFoundError occured. Arguments:
(2, 'No such file or directory')
2018-04-09 20:19:42 [DEBUG] install.py(322) start(): Downloading packages...
2018-04-09 20:19:42 [DEBUG] download_requests.py(134) start(): Downloading packages to pacman cache dir '/install/var/cache/pacman/pkg'
2018-04-09 20:19:42 [DEBUG] download_requests.py(229) download_package(): Looking for jfsutils-1.1.15-4 in 15 mirrors...
2018-04-09 20:19:42 [DEBUG] connectionpool.py(208) _new_conn(): Starting new HTTP connection (1): mirror.hactar.xyz
2018-04-09 20:19:42 [DEBUG] connectionpool.py(396) _make_request(): http://mirror.hactar.xyz:80 "GET /core/os/x86_64/jfsutils-1.1.15-4-x86_64.pkg.tar.xz HTTP/1.1" 200 171520
2018-04-09 20:19:43 [INFO] slides.py(257) manage_events_from_cb_queue(): Updating pantheon database
2018-04-09 20:19:43 [INFO] slides.py(257) manage_events_from_cb_queue(): Fetching jfsutils 1.1.15-4 (1/790)...
2018-04-09 20:19:43 [DEBUG] download_requests.py(229) download_package(): Looking for linux-4.15.15-1 in 15 mirrors...
2018-04-09 20:19:43 [DEBUG] connectionpool.py(208) _new_conn(): Starting new HTTP connection (1): archlinux.us-east.mirror.zoidplex.net
2018-04-09 20:19:44 [DEBUG] connectionpool.py(396) _make_request(): http://archlinux.us-east.mirror.zoidplex.net:80 "GET /core/os/x86_64/linux-4.15.15-1-x86_64.pkg.tar.xz HTTP/1.1" 200 72052852
2018-04-09 20:19:44 [INFO] slides.py(257) manage_events_from_cb_queue(): Fetching linux 4.15.15-1 (2/790)...
2018-04-09 20:22:47 [DEBUG] download_requests.py(229) download_package(): Looking for linux-lts-4.14.32-1 in 15 mirrors...
2018-04-09 20:22:47 [DEBUG] connectionpool.py(208) _new_conn(): Starting new HTTP connection (1): arlm.tyzoid.com
2018-04-09 20:22:47 [DEBUG] connectionpool.py(396) _make_request(): http://arlm.tyzoid.com:80 "GET /core/os/x86_64/linux-lts-4.14.32-1-x86_64.pkg.tar.xz HTTP/1.1" 200 63353580
2018-04-09 20:22:48 [INFO] slides.py(257) manage_events_from_cb_queue(): Fetching linux-lts 4.14.32-1 (3/790)...
2018-04-09 20:25:30 [DEBUG] download_requests.py(229) download_package(): Looking for ding-libs-0.6.1-1 in 15 mirrors...
2018-04-09 20:25:30 [DEBUG] connectionpool.py(208) _new_conn(): Starting new HTTP connection (1): arch.mirror.constant.com
2018-04-09 20:25:30 [DEBUG] connectionpool.py(396) _make_request(): http://arch.mirror.constant.com:80 "GET /core/os/x86_64/ding-libs-0.6.1-1-x86_64.pkg.tar.xz HTTP/1.1" 200 122648
2018-04-09 20:25:30 [DEBUG] download_requests.py(229) download_package(): Looking for libevent-2.1.8-1 in 15 mirrors...
2018-04-09 20:25:30 [DEBUG] connectionpool.py(208) _new_conn(): Starting new HTTP connection (1): archlinux.us-central.mirror.zoidplex.net
2018-04-09 20:25:30 [DEBUG] connectionpool.py(396) _make_request(): http://archlinux.us-central.mirror.zoidplex.net:80 "GET /core/os/x86_64/libevent-2.1.8-1-x86_64.pkg.tar.xz HTTP/1.1" 200 256196
2018-04-09 20:25:30 [INFO] slides.py(257) manage_events_from_cb_queue(): Fetching ding-libs 0.6.1-1 (4/790)...
2018-04-09 20:25:30 [INFO] slides.py(257) manage_events_from_cb_queue(): Fetching libevent 2.1.8-1 (5/790)...
2018-04-09 20:25:31 [DEBUG] download_requests.py(229) download_package(): Looking for gssproxy-0.8.0-1 in 15 mirrors...
2018-04-09 20:25:31 [DEBUG] connectionpool.py(208) _new_conn(): Starting new HTTP connection (1): mirror.kaminski.io
2018-04-09 20:25:31 [DEBUG] connectionpool.py(396) _make_request(): http://mirror.kaminski.io:80 "GET /archlinux/core/os/x86_64/gssproxy-0.8.0-1-x86_64.pkg.tar.xz HTTP/1.1" 200 86664
2018-04-09 20:25:31 [DEBUG] download_requests.py(229) download_package(): Looking for nfsidmap-2.3.1-1 in 15 mirrors...
2018-04-09 20:25:31 [DEBUG] connectionpool.py(208) _new_conn(): Starting new HTTP connection (1): burek.archlinux.ba
2018-04-09 20:25:31 [INFO] slides.py(257) manage_events_from_cb_queue(): Fetching gssproxy 0.8.0-1 (6/790)...
2018-04-09 20:25:31 [INFO] slides.py(257) manage_events_from_cb_queue(): Fetching nfsidmap 2.3.1-1 (7/790)...
2018-04-09 20:25:32 [DEBUG] connectionpool.py(396) _make_request(): http://burek.archlinux.ba:80 "GET /core/os/x86_64/nfsidmap-2.3.1-1-x86_64.pkg.tar.xz HTTP/1.1" 200 41152
2018-04-09 20:25:32 [DEBUG] download_requests.py(229) download_package(): Looking for rpcbind-0.2.4-4 in 15 mirrors...
2018-04-09 20:25:32 [DEBUG] connectionpool.py(208) _new_conn(): Starting new HTTP connection (1): mirrors.rit.edu
2018-04-09 20:25:32 [DEBUG] connectionpool.py(396) _make_request(): http://mirrors.rit.edu:80 "GET /archlinux/core/os/x86_64/rpcbind-0.2.4-4-x86_64.pkg.tar.xz HTTP/1.1" 200 37120
2018-04-09 20:25:32 [DEBUG] download_requests.py(229) download_package(): Looking for nfs-utils-2.3.1-1 in 15 mirrors...
2018-04-09 20:25:32 [DEBUG] connectionpool.py(208) _new_conn(): Starting new HTTP connection (1): mirrors.acm.wpi.edu
2018-04-09 20:25:32 [INFO] slides.py(257) manage_events_from_cb_queue(): Fetching rpcbind 0.2.4-4 (8/790)...
2018-04-09 20:25:32 [INFO] slides.py(257) manage_events_from_cb_queue(): Fetching nfs-utils 2.3.1-1 (9/790)...
2018-04-09 20:25:32 [DEBUG] connectionpool.py(396) _make_request(): http://mirrors.acm.wpi.edu:80 "GET /archlinux/core/os/x86_64/nfs-utils-2.3.1-1-x86_64.pkg.tar.xz HTTP/1.1" 200 287904
2018-04-09 20:25:33 [DEBUG] download_requests.py(229) download_package(): Looking for perl-xml-sax-base-1.09-2 in 15 mirrors...
2018-04-09 20:25:33 [DEBUG] connectionpool.py(208) _new_conn(): Starting new HTTP connection (1): arlm.tyzoid.com
2018-04-09 20:25:33 [DEBUG] connectionpool.py(396) _make_request(): http://arlm.tyzoid.com:80 "GET /extra/os/x86_64/perl-xml-sax-base-1.09-2-any.pkg.tar.xz HTTP/1.1" 200 23784
2018-04-09 20:25:33 [DEBUG] download_requests.py(229) download_package(): Looking for perl-xml-namespacesupport-1.12-2 in 15 mirrors...
2018-04-09 20:25:33 [DEBUG] connectionpool.py(208) _new_conn(): Starting new HTTP connection (1): archlinux.us-central.mirror.zoidplex.net
2018-04-09 20:25:33 [INFO] slides.py(257) manage_events_from_cb_queue(): Fetching perl-xml-sax-base 1.09-2 (10/790)...
2018-04-09 20:25:33 [INFO] slides.py(257) manage_events_from_cb_queue(): Fetching perl-xml-namespacesupport 1.12-2 (11/790)...
2018-04-09 20:25:34 [DEBUG] connectionpool.py(396) _make_request(): http://archlinux.us-central.mirror.zoidplex.net:80 "GET /extra/os/x86_64/perl-xml-namespacesupport-1.12-2-any.pkg.tar.xz HTTP/1.1" 200 11592
2018-04-09 20:25:34 [DEBUG] download_requests.py(229) download_package(): Looking for perl-xml-sax-1.00-1 in 15 mirrors...
2018-04-09 20:25:34 [DEBUG] connectionpool.py(208) _new_conn(): Starting new HTTP connection (1): archlinux.us-east.mirror.zoidplex.net
2018-04-09 20:25:34 [DEBUG] connectionpool.py(396) _make_request(): http://archlinux.us-east.mirror.zoidplex.net:80 "GET /extra/os/x86_64/perl-xml-sax-1.00-1-any.pkg.tar.xz HTTP/1.1" 200 41152
2018-04-09 20:25:34 [DEBUG] download_requests.py(229) download_package(): Looking for perl-dbi-1.641-1 in 15 mirrors...
2018-04-09 20:25:34 [DEBUG] connectionpool.py(208) _new_conn(): Starting new HTTP connection (1): archlinux.us-east.mirror.zoidplex.net
2018-04-09 20:25:34 [DEBUG] connectionpool.py(396) _make_request(): http://archlinux.us-east.mirror.zoidplex.net:80 "GET /extra/os/x86_64/perl-dbi-1.641-1-x86_64.pkg.tar.xz HTTP/1.1" 200 707164
2018-04-09 20:25:34 [INFO] slides.py(257) manage_events_from_cb_queue(): Fetching perl-xml-sax 1.00-1 (12/790)...
2018-04-09 20:25:34 [INFO] slides.py(257) manage_events_from_cb_queue(): Fetching perl-dbi 1.641-1 (13/790)...
2018-04-09 20:25:36 [DEBUG] download_requests.py(229) download_package(): Looking for perl-clone-0.39-4 in 15 mirrors...
2018-04-09 20:25:36 [DEBUG] connectionpool.py(208) _new_conn(): Starting new HTTP connection (1): arlm.tyzoid.com
2018-04-09 20:25:36 [DEBUG] connectionpool.py(396) _make_request(): http://arlm.tyzoid.com:80 "GET /extra/os/x86_64/perl-clone-0.39-4-x86_64.pkg.tar.xz HTTP/1.1" 200 9564
2018-04-09 20:25:36 [DEBUG] download_requests.py(229) download_package(): Looking for perl-xml-libxml-2.0132-1 in 15 mirrors...
2018-04-09 20:25:36 [DEBUG] connectionpool.py(208) _new_conn(): Starting new HTTP connection (1): arch.mirror.constant.com
2018-04-09 20:25:36 [DEBUG] connectionpool.py(396) _make_request(): http://arch.mirror.constant.com:80 "GET /extra/os/x86_64/perl-xml-libxml-2.0132-1-x86_64.pkg.tar.xz HTTP/1.1" 200 271032
2018-04-09 20:25:36 [INFO] slides.py(257) manage_events_from_cb_queue(): Fetching perl-clone 0.39-4 (14/790)...
2018-04-09 20:25:36 [INFO] slides.py(257) manage_events_from_cb_queue(): Fetching perl-xml-libxml 2.0132-1 (15/790)...
2018-04-09 20:25:37 [DEBUG] download_requests.py(229) download_package(): Looking for foomatic-db-engine-4:4.0.13-1 in 15 mirrors...
2018-04-09 20:25:37 [DEBUG] connectionpool.py(208) _new_conn(): Starting new HTTP connection (1): mirror.kaminski.io
2018-04-09 20:25:37 [DEBUG] connectionpool.py(396) _make_request(): http://mirror.kaminski.io:80 "GET /archlinux/extra/os/x86_64/foomatic-db-engine-4:4.0.13-1-x86_64.pkg.tar.xz HTTP/1.1" 200 205612
2018-04-09 20:25:37 [INFO] slides.py(257) manage_events_from_cb_queue(): Fetching foomatic-db-engine 4:4.0.13-1 (16/790)...
2018-04-09 20:25:37 [DEBUG] download_requests.py(229) download_package(): Looking for net-snmp-5.7.3-7 in 15 mirrors...
2018-04-09 20:25:37 [DEBUG] connectionpool.py(208) _new_conn(): Starting new HTTP connection (1): archlinux.us-east.mirror.zoidplex.net
2018-04-09 20:25:38 [DEBUG] connectionpool.py(396) _make_request(): http://archlinux.us-east.mirror.zoidplex.net:80 "GET /extra/os/x86_64/net-snmp-5.7.3-7-x86_64.pkg.tar.xz HTTP/1.1" 200 1685464
2018-04-09 20:25:38 [INFO] slides.py(257) manage_events_from_cb_queue(): Fetching net-snmp 5.7.3-7 (17/790)...
2018-04-09 20:25:42 [DEBUG] download_requests.py(229) download_package(): Looking for hplip-3.18.3-2 in 15 mirrors...
2018-04-09 20:25:42 [DEBUG] connectionpool.py(208) _new_conn(): Starting new HTTP connection (1): mirror.united-gameserver.de
2018-04-09 20:25:42 [DEBUG] connectionpool.py(396) _make_request(): http://mirror.united-gameserver.de:80 "GET /archlinux/extra/os/x86_64/hplip-3.18.3-2-x86_64.pkg.tar.xz HTTP/1.1" 200 17273520
2018-04-09 20:25:42 [INFO] slides.py(257) manage_events_from_cb_queue(): Fetching hplip 3.18.3-2 (18/790)...
2018-04-09 20:26:27 [DEBUG] download_requests.py(229) download_package(): Looking for gufw-18.04.0-1 in 15 mirrors...
2018-04-09 20:26:27 [DEBUG] connectionpool.py(208) _new_conn(): Starting new HTTP connection (1): mirrors.rit.edu
2018-04-09 20:26:27 [DEBUG] connectionpool.py(396) _make_request(): http://mirrors.rit.edu:80 "GET /archlinux/community/os/x86_64/gufw-18.04.0-1-any.pkg.tar.xz HTTP/1.1" 200 936752
2018-04-09 20:26:28 [INFO] slides.py(257) manage_events_from_cb_queue(): Fetching gufw 18.04.0-1 (19/790)...
2018-04-09 20:26:30 [DEBUG] download_requests.py(229) download_package(): Looking for python-pycurl-7.43.0.1-1 in 15 mirrors...
2018-04-09 20:26:30 [DEBUG] connectionpool.py(208) _new_conn(): Starting new HTTP connection (1): archlinux.us-east.mirror.zoidplex.net
2018-04-09 20:26:30 [DEBUG] connectionpool.py(396) _make_request(): http://archlinux.us-east.mirror.zoidplex.net:80 "GET /extra/os/x86_64/python-pycurl-7.43.0.1-1-x86_64.pkg.tar.xz HTTP/1.1" 200 84664
2018-04-09 20:26:30 [DEBUG] download_requests.py(229) download_package(): Looking for python-pycups-1.9.73-3 in 15 mirrors...
2018-04-09 20:26:30 [DEBUG] connectionpool.py(208) _new_conn(): Starting new HTTP connection (1): arch.mirror.constant.com
2018-04-09 20:26:30 [DEBUG] connectionpool.py(396) _make_request(): http://arch.mirror.constant.com:80 "GET /extra/os/x86_64/python-pycups-1.9.73-3-x86_64.pkg.tar.xz HTTP/1.1" 200 56648
2018-04-09 20:26:30 [DEBUG] download_requests.py(229) download_package(): Looking for system-config-printer-1.5.11-2 in 15 mirrors...
2018-04-09 20:26:30 [DEBUG] connectionpool.py(208) _new_conn(): Starting new HTTP connection (1): arch.mirror.constant.com
2018-04-09 20:26:30 [DEBUG] connectionpool.py(396) _make_request(): http://arch.mirror.constant.com:80 "GET /extra/os/x86_64/system-config-printer-1.5.11-2-x86_64.pkg.tar.xz HTTP/1.1" 200 947364
2018-04-09 20:26:31 [INFO] slides.py(257) manage_events_from_cb_queue(): Fetching python-pycurl 7.43.0.1-1 (20/790)...
2018-04-09 20:26:31 [INFO] slides.py(257) manage_events_from_cb_queue(): Fetching python-pycups 1.9.73-3 (21/790)...
2018-04-09 20:26:31 [INFO] slides.py(257) manage_events_from_cb_queue(): Fetching system-config-printer 1.5.11-2 (22/790)...
2018-04-09 20:26:33 [DEBUG] download_requests.py(229) download_package(): Looking for nautilus-root-1.1-1.1 in 2 mirrors...
2018-04-09 20:26:33 [DEBUG] connectionpool.py(824) _new_conn(): Starting new HTTPS connection (1): github.com
2018-04-09 20:26:33 [DEBUG] connectionpool.py(396) _make_request(): https://github.com:443 "GET /keeganmilsten/Reborn-Packages/releases/download/1.0/nautilus-root-1.1-1.1-any.pkg.tar.xz HTTP/1.1" 302 None
2018-04-09 20:26:33 [DEBUG] connectionpool.py(824) _new_conn(): Starting new HTTPS connection (1): github-production-release-asset-2e65be.s3.amazonaws.com
2018-04-09 20:26:33 [DEBUG] connectionpool.py(396) _make_request(): https://github-production-release-asset-2e65be.s3.amazonaws.com:443 "GET /108692918/d0555c48-2dff-11e8-8ae8-b11fe4fd143e?X-Amz-Algorithm=AWS4-HMAC-SHA256&X-Amz-Credential=AKIAIWNJYAX4CSVEH53A%2F20180409%2Fus-east-1%2Fs3%2Faws4_request&X-Amz-Date=20180409T202633Z&X-Amz-Expires=300&X-Amz-Signature=04f4d38f9cc302ee98621e853de73f4819c4673f99c4c9ce2099c1815a4e6a14&X-Amz-SignedHeaders=host&actor_id=0&response-content-disposition=attachment%3B%20filename%3Dnautilus-root-1.1-1.1-any.pkg.tar.xz&response-content-type=application%2Foctet-stream HTTP/1.1" 200 13688
2018-04-09 20:26:33 [DEBUG] download_requests.py(229) download_package(): Looking for yajl-2.1.0-1 in 15 mirrors...
2018-04-09 20:26:33 [DEBUG] connectionpool.py(208) _new_conn(): Starting new HTTP connection (1): mirror.kaminski.io
2018-04-09 20:26:34 [INFO] slides.py(257) manage_events_from_cb_queue(): Fetching nautilus-root 1.1-1.1 (23/790)...
2018-04-09 20:26:34 [INFO] slides.py(257) manage_events_from_cb_queue(): Fetching yajl 2.1.0-1 (24/790)...
2018-04-09 20:26:34 [DEBUG] connectionpool.py(396) _make_request(): http://mirror.kaminski.io:80 "GET /archlinux/extra/os/x86_64/yajl-2.1.0-1-x86_64.pkg.tar.xz HTTP/1.1" 200 31988
2018-04-09 20:26:34 [DEBUG] download_requests.py(229) download_package(): Looking for package-query-1.9.r380-2 in 15 mirrors...
2018-04-09 20:26:34 [DEBUG] connectionpool.py(208) _new_conn(): Starting new HTTP connection (1): mirrors.acm.wpi.edu
2018-04-09 20:26:34 [DEBUG] connectionpool.py(396) _make_request(): http://mirrors.acm.wpi.edu:80 "GET /antergos/antergos/x86_64/package-query-1.9.r380-2-x86_64.pkg.tar.xz HTTP/1.1" 200 27244
2018-04-09 20:26:34 [DEBUG] download_requests.py(229) download_package(): Looking for yaourt-1.9-1 in 15 mirrors...
2018-04-09 20:26:34 [DEBUG] connectionpool.py(208) _new_conn(): Starting new HTTP connection (1): ftp.acc.umu.se
2018-04-09 20:26:34 [DEBUG] connectionpool.py(396) _make_request(): http://ftp.acc.umu.se:80 "GET /mirror/antergos.com/antergos/x86_64/yaourt-1.9-1-any.pkg.tar.xz HTTP/1.1" 200 113748
2018-04-09 20:26:35 [INFO] slides.py(257) manage_events_from_cb_queue(): Fetching package-query 1.9.r380-2 (25/790)...
2018-04-09 20:26:35 [INFO] slides.py(257) manage_events_from_cb_queue(): Fetching yaourt 1.9-1 (26/790)...
2018-04-09 20:26:35 [DEBUG] download_requests.py(229) download_package(): Looking for ufw-0.35-3 in 15 mirrors...
2018-04-09 20:26:35 [DEBUG] connectionpool.py(208) _new_conn(): Starting new HTTP connection (1): archlinux.us-west.mirror.zoidplex.net
2018-04-09 20:26:36 [INFO] slides.py(257) manage_events_from_cb_queue(): Fetching ufw 0.35-3 (27/790)...
2018-04-09 20:26:36 [DEBUG] connectionpool.py(396) _make_request(): http://archlinux.us-west.mirror.zoidplex.net:80 "GET /community/os/x86_64/ufw-0.35-3-any.pkg.tar.xz HTTP/1.1" 200 168756
2018-04-09 20:26:36 [DEBUG] download_requests.py(229) download_package(): Looking for linux-headers-4.15.15-1 in 15 mirrors...
2018-04-09 20:26:36 [DEBUG] connectionpool.py(208) _new_conn(): Starting new HTTP connection (1): mirror.kaminski.io
2018-04-09 20:26:36 [DEBUG] connectionpool.py(396) _make_request(): http://mirror.kaminski.io:80 "GET /archlinux/core/os/x86_64/linux-headers-4.15.15-1-x86_64.pkg.tar.xz HTTP/1.1" 200 8416988
2018-04-09 20:26:37 [INFO] slides.py(257) manage_events_from_cb_queue(): Fetching linux-headers 4.15.15-1 (28/790)...
2018-04-09 20:26:58 [DEBUG] download_requests.py(229) download_package(): Looking for exfat-utils-1.2.8-1 in 15 mirrors...
2018-04-09 20:26:58 [DEBUG] connectionpool.py(208) _new_conn(): Starting new HTTP connection (1): arch.mirror.constant.com
2018-04-09 20:26:58 [DEBUG] connectionpool.py(396) _make_request(): http://arch.mirror.constant.com:80 "GET /community/os/x86_64/exfat-utils-1.2.8-1-x86_64.pkg.tar.xz HTTP/1.1" 200 45108
2018-04-09 20:26:58 [DEBUG] download_requests.py(229) download_package(): Looking for lua52-lpeg-1.0.1-1 in 15 mirrors...
2018-04-09 20:26:58 [DEBUG] connectionpool.py(208) _new_conn(): Starting new HTTP connection (1): archlinux.us-west.mirror.zoidplex.net
2018-04-09 20:26:59 [INFO] slides.py(257) manage_events_from_cb_queue(): Fetching exfat-utils 1.2.8-1 (29/790)...
2018-04-09 20:26:59 [INFO] slides.py(257) manage_events_from_cb_queue(): Fetching lua52-lpeg 1.0.1-1 (30/790)...
2018-04-09 20:26:59 [DEBUG] connectionpool.py(396) _make_request(): http://archlinux.us-west.mirror.zoidplex.net:80 "GET /extra/os/x86_64/lua52-lpeg-1.0.1-1-x86_64.pkg.tar.xz HTTP/1.1" 200 22372
2018-04-09 20:26:59 [DEBUG] download_requests.py(229) download_package(): Looking for lua52-luajson-1.3.4-1 in 15 mirrors...
2018-04-09 20:26:59 [DEBUG] connectionpool.py(208) _new_conn(): Starting new HTTP connection (1): mirror.cs.pitt.edu
2018-04-09 20:26:59 [DEBUG] connectionpool.py(396) _make_request(): http://mirror.cs.pitt.edu:80 "GET /archlinux/extra/os/x86_64/lua52-luajson-1.3.4-1-any.pkg.tar.xz HTTP/1.1" 200 16272
2018-04-09 20:26:59 [DEBUG] download_requests.py(229) download_package(): Looking for lua52-expat-1.3.0-3 in 15 mirrors...
2018-04-09 20:26:59 [DEBUG] connectionpool.py(208) _new_conn(): Starting new HTTP connection (1): mirror.hactar.xyz
2018-04-09 20:26:59 [DEBUG] connectionpool.py(396) _make_request(): http://mirror.hactar.xyz:80 "GET /community/os/x86_64/lua52-expat-1.3.0-3-x86_64.pkg.tar.xz HTTP/1.1" 200 9876
2018-04-09 20:26:59 [DEBUG] download_requests.py(229) download_package(): Looking for lua52-bitop-1.0.2-8 in 15 mirrors...
2018-04-09 20:26:59 [DEBUG] connectionpool.py(208) _new_conn(): Starting new HTTP connection (1): arch.tamcore.eu
2018-04-09 20:27:00 [INFO] slides.py(257) manage_events_from_cb_queue(): Fetching lua52-luajson 1.3.4-1 (31/790)...
2018-04-09 20:27:00 [INFO] slides.py(257) manage_events_from_cb_queue(): Fetching lua52-expat 1.3.0-3 (32/790)...
2018-04-09 20:27:00 [INFO] slides.py(257) manage_events_from_cb_queue(): Fetching lua52-bitop 1.0.2-8 (33/790)...
2018-04-09 20:27:00 [DEBUG] connectionpool.py(396) _make_request(): http://arch.tamcore.eu:80 "GET /community/os/x86_64/lua52-bitop-1.0.2-8-x86_64.pkg.tar.xz HTTP/1.1" 200 4556
2018-04-09 20:27:00 [DEBUG] download_requests.py(229) download_package(): Looking for lua52-socket-20160311-1 in 15 mirrors...
2018-04-09 20:27:00 [DEBUG] connectionpool.py(208) _new_conn(): Starting new HTTP connection (1): mirror.kaminski.io
2018-04-09 20:27:00 [DEBUG] connectionpool.py(396) _make_request(): http://mirror.kaminski.io:80 "GET /archlinux/community/os/x86_64/lua52-socket-20160311-1-x86_64.pkg.tar.xz HTTP/1.1" 200 45212
2018-04-09 20:27:00 [DEBUG] download_requests.py(229) download_package(): Looking for gts-0.7.6-3 in 15 mirrors...
2018-04-09 20:27:00 [DEBUG] connectionpool.py(208) _new_conn(): Starting new HTTP connection (1): mirror.kaminski.io
2018-04-09 20:27:00 [DEBUG] connectionpool.py(396) _make_request(): http://mirror.kaminski.io:80 "GET /archlinux/extra/os/x86_64/gts-0.7.6-3-x86_64.pkg.tar.xz HTTP/1.1" 200 181364
2018-04-09 20:27:00 [DEBUG] download_requests.py(229) download_package(): Looking for boost-libs-1.66.0-2 in 15 mirrors...
2018-04-09 20:27:00 [DEBUG] connectionpool.py(208) _new_conn(): Starting new HTTP connection (1): arch.mirror.constant.com
2018-04-09 20:27:01 [INFO] slides.py(257) manage_events_from_cb_queue(): Fetching lua52-socket 20160311-1 (34/790)...
2018-04-09 20:27:01 [DEBUG] connectionpool.py(396) _make_request(): http://arch.mirror.constant.com:80 "GET /extra/os/x86_64/boost-libs-1.66.0-2-x86_64.pkg.tar.xz HTTP/1.1" 200 2433188
2018-04-09 20:27:01 [INFO] slides.py(257) manage_events_from_cb_queue(): Fetching gts 0.7.6-3 (35/790)...
2018-04-09 20:27:01 [INFO] slides.py(257) manage_events_from_cb_queue(): Fetching boost-libs 1.66.0-2 (36/790)...
2018-04-09 20:27:07 [DEBUG] download_requests.py(229) download_package(): Looking for sed-4.5-1 in 15 mirrors...
2018-04-09 20:27:07 [DEBUG] connectionpool.py(208) _new_conn(): Starting new HTTP connection (1): mirrors.acm.wpi.edu
2018-04-09 20:27:07 [DEBUG] connectionpool.py(396) _make_request(): http://mirrors.acm.wpi.edu:80 "GET /archlinux/core/os/x86_64/sed-4.5-1-x86_64.pkg.tar.xz HTTP/1.1" 200 185024
2018-04-09 20:27:07 [DEBUG] download_requests.py(229) download_package(): Looking for diffutils-3.6-1 in 15 mirrors...
2018-04-09 20:27:07 [DEBUG] connectionpool.py(208) _new_conn(): Starting new HTTP connection (1): mirrors.rit.edu
2018-04-09 20:27:07 [DEBUG] connectionpool.py(396) _make_request(): http://mirrors.rit.edu:80 "GET /archlinux/core/os/x86_64/diffutils-3.6-1-x86_64.pkg.tar.xz HTTP/1.1" 200 289596
2018-04-09 20:27:08 [INFO] slides.py(257) manage_events_from_cb_queue(): Fetching sed 4.5-1 (37/790)...
2018-04-09 20:27:08 [INFO] slides.py(257) manage_events_from_cb_queue(): Fetching diffutils 3.6-1 (38/790)...
2018-04-09 20:27:08 [DEBUG] download_requests.py(229) download_package(): Looking for m4-1.4.18-1 in 15 mirrors...
2018-04-09 20:27:08 [DEBUG] connectionpool.py(208) _new_conn(): Starting new HTTP connection (1): archlinux.us-west.mirror.zoidplex.net
2018-04-09 20:27:08 [DEBUG] connectionpool.py(396) _make_request(): http://archlinux.us-west.mirror.zoidplex.net:80 "GET /core/os/x86_64/m4-1.4.18-1-x86_64.pkg.tar.xz HTTP/1.1" 200 170104
2018-04-09 20:27:09 [INFO] slides.py(257) manage_events_from_cb_queue(): Fetching m4 1.4.18-1 (39/790)...
2018-04-09 20:27:09 [DEBUG] download_requests.py(229) download_package(): Looking for lua52-5.2.4-2 in 15 mirrors...
2018-04-09 20:27:09 [DEBUG] connectionpool.py(208) _new_conn(): Starting new HTTP connection (1): archlinux.us-east.mirror.zoidplex.net
2018-04-09 20:27:09 [DEBUG] connectionpool.py(396) _make_request(): http://archlinux.us-east.mirror.zoidplex.net:80 "GET /extra/os/x86_64/lua52-5.2.4-2-x86_64.pkg.tar.xz HTTP/1.1" 200 204200
2018-04-09 20:27:10 [DEBUG] download_requests.py(229) download_package(): Looking for libquvi-scripts-0.9.20131130-3 in 15 mirrors...
2018-04-09 20:27:10 [DEBUG] connectionpool.py(208) _new_conn(): Starting new HTTP connection (1): mirror.kaminski.io
2018-04-09 20:27:10 [INFO] slides.py(257) manage_events_from_cb_queue(): Fetching lua52 5.2.4-2 (40/790)...
2018-04-09 20:27:10 [INFO] slides.py(257) manage_events_from_cb_queue(): Fetching libquvi-scripts 0.9.20131130-3 (41/790)...
2018-04-09 20:27:10 [DEBUG] connectionpool.py(396) _make_request(): http://mirror.kaminski.io:80 "GET /archlinux/extra/os/x86_64/libquvi-scripts-0.9.20131130-3-any.pkg.tar.xz HTTP/1.1" 200 35844
2018-04-09 20:27:10 [DEBUG] download_requests.py(229) download_package(): Looking for python-psutil-5.4.3-1 in 15 mirrors...
2018-04-09 20:27:10 [DEBUG] connectionpool.py(208) _new_conn(): Starting new HTTP connection (1): mirror.hactar.xyz
2018-04-09 20:27:10 [DEBUG] connectionpool.py(396) _make_request(): http://mirror.hactar.xyz:80 "GET /community/os/x86_64/python-psutil-5.4.3-1-x86_64.pkg.tar.xz HTTP/1.1" 200 297660
2018-04-09 20:27:11 [INFO] slides.py(257) manage_events_from_cb_queue(): Fetching python-psutil 5.4.3-1 (42/790)...
2018-04-09 20:27:12 [DEBUG] download_requests.py(229) download_package(): Looking for libxres-1.2.0-1 in 15 mirrors...
2018-04-09 20:27:12 [DEBUG] connectionpool.py(208) _new_conn(): Starting new HTTP connection (1): mirror.kaminski.io
2018-04-09 20:27:12 [INFO] slides.py(257) manage_events_from_cb_queue(): Fetching libxres 1.2.0-1 (43/790)...
2018-04-09 20:27:12 [DEBUG] connectionpool.py(396) _make_request(): http://mirror.kaminski.io:80 "GET /archlinux/extra/os/x86_64/libxres-1.2.0-1-x86_64.pkg.tar.xz HTTP/1.1" 200 10556
2018-04-09 20:27:12 [DEBUG] download_requests.py(229) download_package(): Looking for xapian-core-1:1.4.5-1 in 15 mirrors...
2018-04-09 20:27:12 [DEBUG] connectionpool.py(208) _new_conn(): Starting new HTTP connection (1): archlinux.us-east.mirror.zoidplex.net
2018-04-09 20:27:12 [DEBUG] connectionpool.py(396) _make_request(): http://archlinux.us-east.mirror.zoidplex.net:80 "GET /extra/os/x86_64/xapian-core-1:1.4.5-1-x86_64.pkg.tar.xz HTTP/1.1" 200 1757776
2018-04-09 20:27:13 [INFO] slides.py(257) manage_events_from_cb_queue(): Fetching xapian-core 1:1.4.5-1 (44/790)...
2018-04-09 20:27:16 [DEBUG] download_requests.py(229) download_package(): Looking for sg3_utils-1.42-1 in 15 mirrors...
2018-04-09 20:27:16 [DEBUG] connectionpool.py(208) _new_conn(): Starting new HTTP connection (1): archlinux.us-west.mirror.zoidplex.net
2018-04-09 20:27:16 [DEBUG] connectionpool.py(396) _make_request(): http://archlinux.us-west.mirror.zoidplex.net:80 "GET /extra/os/x86_64/sg3_utils-1.42-1-x86_64.pkg.tar.xz HTTP/1.1" 200 666688
2018-04-09 20:27:17 [INFO] slides.py(257) manage_events_from_cb_queue(): Fetching sg3_utils 1.42-1 (45/790)...
2018-04-09 20:27:18 [DEBUG] download_requests.py(229) download_package(): Looking for mutagen-1.40.0-1 in 15 mirrors...
2018-04-09 20:27:18 [DEBUG] connectionpool.py(208) _new_conn(): Starting new HTTP connection (1): mirror.hactar.xyz
2018-04-09 20:27:18 [DEBUG] connectionpool.py(396) _make_request(): http://mirror.hactar.xyz:80 "GET /extra/os/x86_64/mutagen-1.40.0-1-any.pkg.tar.xz HTTP/1.1" 200 271560
2018-04-09 20:27:19 [INFO] slides.py(257) manage_events_from_cb_queue(): Fetching mutagen 1.40.0-1 (46/790)...
2018-04-09 20:27:19 [DEBUG] download_requests.py(229) download_package(): Looking for goocanvas-2.0.4-1 in 15 mirrors...
2018-04-09 20:27:19 [DEBUG] connectionpool.py(208) _new_conn(): Starting new HTTP connection (1): mirrors.rit.edu
2018-04-09 20:27:19 [DEBUG] connectionpool.py(396) _make_request(): http://mirrors.rit.edu:80 "GET /archlinux/community/os/x86_64/goocanvas-2.0.4-1-x86_64.pkg.tar.xz HTTP/1.1" 200 256056
2018-04-09 20:27:20 [INFO] slides.py(257) manage_events_from_cb_queue(): Fetching goocanvas 2.0.4-1 (47/790)...
2018-04-09 20:27:20 [DEBUG] download_requests.py(229) download_package(): Looking for graphviz-2.40.1-10 in 15 mirrors...
2018-04-09 20:27:20 [DEBUG] connectionpool.py(208) _new_conn(): Starting new HTTP connection (1): mirror.pseudoform.org
2018-04-09 20:27:21 [INFO] slides.py(257) manage_events_from_cb_queue(): Fetching graphviz 2.40.1-10 (48/790)...
2018-04-09 20:27:21 [DEBUG] connectionpool.py(396) _make_request(): http://mirror.pseudoform.org:80 "GET /extra/os/x86_64/graphviz-2.40.1-10-x86_64.pkg.tar.xz HTTP/1.1" 200 5598868
2018-04-09 20:27:36 [DEBUG] download_requests.py(229) download_package(): Looking for pkcs11-helper-1.22-2 in 15 mirrors...
2018-04-09 20:27:36 [DEBUG] connectionpool.py(208) _new_conn(): Starting new HTTP connection (1): mirror.kaminski.io
2018-04-09 20:27:36 [DEBUG] connectionpool.py(396) _make_request(): http://mirror.kaminski.io:80 "GET /archlinux/core/os/x86_64/pkcs11-helper-1.22-2-x86_64.pkg.tar.xz HTTP/1.1" 200 66380
2018-04-09 20:27:37 [DEBUG] download_requests.py(229) download_package(): Looking for cogl-1.22.2+10+g3baa2d7a-1 in 15 mirrors...
2018-04-09 20:27:37 [DEBUG] connectionpool.py(208) _new_conn(): Starting new HTTP connection (1): arch.mirror.square-r00t.net
2018-04-09 20:27:37 [INFO] slides.py(257) manage_events_from_cb_queue(): Fetching pkcs11-helper 1.22-2 (49/790)...
2018-04-09 20:27:37 [INFO] slides.py(257) manage_events_from_cb_queue(): Fetching cogl 1.22.2+10+g3baa2d7a-1 (50/790)...
2018-04-09 20:27:37 [DEBUG] connectionpool.py(396) _make_request(): http://arch.mirror.square-r00t.net:80 "GET /extra/os/x86_64/cogl-1.22.2+10+g3baa2d7a-1-x86_64.pkg.tar.xz HTTP/1.1" 200 768632
2018-04-09 20:27:39 [DEBUG] download_requests.py(229) download_package(): Looking for vte-common-0.52.0-1 in 15 mirrors...
2018-04-09 20:27:39 [DEBUG] connectionpool.py(208) _new_conn(): Starting new HTTP connection (1): archlinux.us-west.mirror.zoidplex.net
2018-04-09 20:27:39 [DEBUG] connectionpool.py(396) _make_request(): http://archlinux.us-west.mirror.zoidplex.net:80 "GET /extra/os/x86_64/vte-common-0.52.0-1-x86_64.pkg.tar.xz HTTP/1.1" 200 4480
2018-04-09 20:27:39 [DEBUG] download_requests.py(229) download_package(): Looking for python-anytree-2.4.3-1 in 15 mirrors...
2018-04-09 20:27:39 [DEBUG] connectionpool.py(208) _new_conn(): Starting new HTTP connection (1): archlinux.us-east.mirror.zoidplex.net
2018-04-09 20:27:39 [DEBUG] connectionpool.py(396) _make_request(): http://archlinux.us-east.mirror.zoidplex.net:80 "GET /extra/os/x86_64/python-anytree-2.4.3-1-any.pkg.tar.xz HTTP/1.1" 200 36436
2018-04-09 20:27:39 [DEBUG] download_requests.py(229) download_package(): Looking for python-pygments-2.2.0-1 in 15 mirrors...
2018-04-09 20:27:39 [DEBUG] connectionpool.py(208) _new_conn(): Starting new HTTP connection (1): shadow.ind.ntou.edu.tw
2018-04-09 20:27:40 [INFO] slides.py(257) manage_events_from_cb_queue(): Fetching vte-common 0.52.0-1 (51/790)...
2018-04-09 20:27:40 [INFO] slides.py(257) manage_events_from_cb_queue(): Fetching python-anytree 2.4.3-1 (52/790)...
2018-04-09 20:27:40 [INFO] slides.py(257) manage_events_from_cb_queue(): Fetching python-pygments 2.2.0-1 (53/790)...
2018-04-09 20:27:40 [DEBUG] connectionpool.py(396) _make_request(): http://shadow.ind.ntou.edu.tw:80 "GET /archlinux/community/os/x86_64/python-pygments-2.2.0-1-any.pkg.tar.xz HTTP/1.1" 200 1161280
2018-04-09 20:27:45 [DEBUG] download_requests.py(229) download_package(): Looking for python-lxml-4.2.1-1 in 15 mirrors...
2018-04-09 20:27:45 [DEBUG] connectionpool.py(208) _new_conn(): Starting new HTTP connection (1): mirror.united-gameserver.de
2018-04-09 20:27:45 [INFO] slides.py(257) manage_events_from_cb_queue(): Fetching python-lxml 4.2.1-1 (54/790)...
2018-04-09 20:27:45 [DEBUG] connectionpool.py(396) _make_request(): http://mirror.united-gameserver.de:80 "GET /archlinux/extra/os/x86_64/python-lxml-4.2.1-1-x86_64.pkg.tar.xz HTTP/1.1" 200 1148840
2018-04-09 20:27:48 [DEBUG] download_requests.py(229) download_package(): Looking for glib2-docs-2.56.0+16+gecabc6e21-1 in 15 mirrors...
2018-04-09 20:27:48 [DEBUG] connectionpool.py(208) _new_conn(): Starting new HTTP connection (1): mirror.kaminski.io
2018-04-09 20:27:48 [DEBUG] connectionpool.py(396) _make_request(): http://mirror.kaminski.io:80 "GET /archlinux/core/os/x86_64/glib2-docs-2.56.0+16+gecabc6e21-1-x86_64.pkg.tar.xz HTTP/1.1" 200 1394772
2018-04-09 20:27:49 [INFO] slides.py(257) manage_events_from_cb_queue(): Fetching glib2-docs 2.56.0+16+gecabc6e21-1 (55/790)...
2018-04-09 20:27:52 [DEBUG] download_requests.py(229) download_package(): Looking for source-highlight-3.1.8-14 in 15 mirrors...
2018-04-09 20:27:52 [DEBUG] connectionpool.py(208) _new_conn(): Starting new HTTP connection (1): mirror.hactar.xyz
2018-04-09 20:27:52 [INFO] slides.py(257) manage_events_from_cb_queue(): Fetching source-highlight 3.1.8-14 (56/790)...
2018-04-09 20:27:52 [DEBUG] connectionpool.py(396) _make_request(): http://mirror.hactar.xyz:80 "GET /extra/os/x86_64/source-highlight-3.1.8-14-x86_64.pkg.tar.xz HTTP/1.1" 200 625056
2018-04-09 20:27:54 [DEBUG] download_requests.py(229) download_package(): Looking for docbook-xml-4.5-6 in 15 mirrors...
2018-04-09 20:27:54 [DEBUG] connectionpool.py(208) _new_conn(): Starting new HTTP connection (1): mirrors.acm.wpi.edu
2018-04-09 20:27:54 [INFO] slides.py(257) manage_events_from_cb_queue(): Fetching docbook-xml 4.5-6 (57/790)...
2018-04-09 20:27:54 [DEBUG] connectionpool.py(396) _make_request(): http://mirrors.acm.wpi.edu:80 "GET /archlinux/extra/os/x86_64/docbook-xml-4.5-6-any.pkg.tar.xz HTTP/1.1" 200 86232
2018-04-09 20:27:54 [DEBUG] download_requests.py(229) download_package(): Looking for docbook-xsl-1.79.2-4 in 15 mirrors...
2018-04-09 20:27:54 [DEBUG] connectionpool.py(208) _new_conn(): Starting new HTTP connection (1): mirrors.rit.edu
2018-04-09 20:27:54 [DEBUG] connectionpool.py(396) _make_request(): http://mirrors.rit.edu:80 "GET /archlinux/extra/os/x86_64/docbook-xsl-1.79.2-4-any.pkg.tar.xz HTTP/1.1" 200 742528
2018-04-09 20:27:55 [INFO] slides.py(257) manage_events_from_cb_queue(): Fetching docbook-xsl 1.79.2-4 (58/790)...
2018-04-09 20:27:56 [DEBUG] download_requests.py(229) download_package(): Looking for itstool-1:2.0.2+5+g676f3f7-1 in 15 mirrors...
2018-04-09 20:27:56 [DEBUG] connectionpool.py(208) _new_conn(): Starting new HTTP connection (1): mirrors.acm.wpi.edu
2018-04-09 20:27:56 [DEBUG] connectionpool.py(396) _make_request(): http://mirrors.acm.wpi.edu:80 "GET /archlinux/extra/os/x86_64/itstool-1:2.0.2+5+g676f3f7-1-any.pkg.tar.xz HTTP/1.1" 200 18700
2018-04-09 20:27:56 [DEBUG] download_requests.py(229) download_package(): Looking for yelp-xsl-3.28.0-1 in 15 mirrors...
2018-04-09 20:27:56 [DEBUG] connectionpool.py(208) _new_conn(): Starting new HTTP connection (1): arch.tamcore.eu
2018-04-09 20:27:56 [DEBUG] connectionpool.py(396) _make_request(): http://arch.tamcore.eu:80 "GET /extra/os/x86_64/yelp-xsl-3.28.0-1-any.pkg.tar.xz HTTP/1.1" 200 166052
2018-04-09 20:27:57 [INFO] slides.py(257) manage_events_from_cb_queue(): Fetching itstool 1:2.0.2+5+g676f3f7-1 (59/790)...
2018-04-09 20:27:57 [INFO] slides.py(257) manage_events_from_cb_queue(): Fetching yelp-xsl 3.28.0-1 (60/790)...
2018-04-09 20:27:57 [DEBUG] download_requests.py(229) download_package(): Looking for perl-xml-parser-2.44-6 in 15 mirrors...
2018-04-09 20:27:57 [DEBUG] connectionpool.py(208) _new_conn(): Starting new HTTP connection (1): arch.mirror.constant.com
2018-04-09 20:27:58 [DEBUG] connectionpool.py(396) _make_request(): http://arch.mirror.constant.com:80 "GET /extra/os/x86_64/perl-xml-parser-2.44-6-x86_64.pkg.tar.xz HTTP/1.1" 200 144752
2018-04-09 20:27:58 [INFO] slides.py(257) manage_events_from_cb_queue(): Fetching perl-xml-parser 2.44-6 (61/790)...
2018-04-09 20:27:58 [DEBUG] download_requests.py(229) download_package(): Looking for autoconf-2.69-4 in 15 mirrors...
2018-04-09 20:27:58 [DEBUG] connectionpool.py(208) _new_conn(): Starting new HTTP connection (1): mirrors.acm.wpi.edu
2018-04-09 20:27:58 [DEBUG] connectionpool.py(396) _make_request(): http://mirrors.acm.wpi.edu:80 "GET /archlinux/core/os/x86_64/autoconf-2.69-4-any.pkg.tar.xz HTTP/1.1" 200 597548
2018-04-09 20:27:59 [INFO] slides.py(257) manage_events_from_cb_queue(): Fetching autoconf 2.69-4 (62/790)...
2018-04-09 20:28:00 [DEBUG] download_requests.py(229) download_package(): Looking for libao-1.2.2-2 in 15 mirrors...
2018-04-09 20:28:00 [DEBUG] connectionpool.py(208) _new_conn(): Starting new HTTP connection (1): arch.mirror.constant.com
2018-04-09 20:28:00 [DEBUG] connectionpool.py(396) _make_request(): http://arch.mirror.constant.com:80 "GET /extra/os/x86_64/libao-1.2.2-2-x86_64.pkg.tar.xz HTTP/1.1" 200 53080
2018-04-09 20:28:00 [DEBUG] download_requests.py(229) download_package(): Looking for libmad-0.15.1b-7 in 15 mirrors...
2018-04-09 20:28:00 [DEBUG] connectionpool.py(208) _new_conn(): Starting new HTTP connection (1): mirror.wdc1.us.leaseweb.net
2018-04-09 20:28:00 [DEBUG] connectionpool.py(396) _make_request(): http://mirror.wdc1.us.leaseweb.net:80 "GET /archlinux/extra/os/x86_64/libmad-0.15.1b-7-x86_64.pkg.tar.xz HTTP/1.1" 200 59044
2018-04-09 20:28:00 [DEBUG] download_requests.py(229) download_package(): Looking for libquvi-0.9.4-4 in 15 mirrors...
2018-04-09 20:28:00 [DEBUG] connectionpool.py(208) _new_conn(): Starting new HTTP connection (1): mirrors.acm.wpi.edu
2018-04-09 20:28:00 [DEBUG] connectionpool.py(396) _make_request(): http://mirrors.acm.wpi.edu:80 "GET /archlinux/extra/os/x86_64/libquvi-0.9.4-4-x86_64.pkg.tar.xz HTTP/1.1" 200 41472
2018-04-09 20:28:00 [DEBUG] download_requests.py(229) download_package(): Looking for gmime3-3.2.0-1 in 15 mirrors...
2018-04-09 20:28:00 [DEBUG] connectionpool.py(208) _new_conn(): Starting new HTTP connection (1): archlinux.us-central.mirror.zoidplex.net
2018-04-09 20:28:01 [DEBUG] connectionpool.py(396) _make_request(): http://archlinux.us-central.mirror.zoidplex.net:80 "GET /extra/os/x86_64/gmime3-3.2.0-1-x86_64.pkg.tar.xz HTTP/1.1" 200 358092
2018-04-09 20:28:01 [INFO] slides.py(257) manage_events_from_cb_queue(): Fetching libao 1.2.2-2 (63/790)...
2018-04-09 20:28:01 [INFO] slides.py(257) manage_events_from_cb_queue(): Fetching libmad 0.15.1b-7 (64/790)...
2018-04-09 20:28:01 [INFO] slides.py(257) manage_events_from_cb_queue(): Fetching libquvi 0.9.4-4 (65/790)...
2018-04-09 20:28:01 [INFO] slides.py(257) manage_events_from_cb_queue(): Fetching gmime3 3.2.0-1 (66/790)...
2018-04-09 20:28:02 [DEBUG] download_requests.py(229) download_package(): Looking for python-xapp-1.0.1-2 in 15 mirrors...
2018-04-09 20:28:02 [DEBUG] connectionpool.py(208) _new_conn(): Starting new HTTP connection (1): archlinux.us-west.mirror.zoidplex.net
2018-04-09 20:28:02 [INFO] slides.py(257) manage_events_from_cb_queue(): Fetching python-xapp 1.0.1-2 (67/790)...
2018-04-09 20:28:02 [DEBUG] connectionpool.py(396) _make_request(): http://archlinux.us-west.mirror.zoidplex.net:80 "GET /community/os/x86_64/python-xapp-1.0.1-2-any.pkg.tar.xz HTTP/1.1" 200 5308
2018-04-09 20:28:02 [DEBUG] download_requests.py(229) download_package(): Looking for python-setproctitle-1.1.10-2 in 15 mirrors...
2018-04-09 20:28:02 [DEBUG] connectionpool.py(208) _new_conn(): Starting new HTTP connection (1): mirror.kaminski.io
2018-04-09 20:28:02 [DEBUG] connectionpool.py(396) _make_request(): http://mirror.kaminski.io:80 "GET /archlinux/community/os/x86_64/python-setproctitle-1.1.10-2-x86_64.pkg.tar.xz HTTP/1.1" 200 11112
2018-04-09 20:28:02 [DEBUG] download_requests.py(229) download_package(): Looking for python-cairo-1.16.3-1 in 15 mirrors...
2018-04-09 20:28:02 [DEBUG] connectionpool.py(208) _new_conn(): Starting new HTTP connection (1): arch.mirror.constant.com
2018-04-09 20:28:02 [DEBUG] connectionpool.py(396) _make_request(): http://arch.mirror.constant.com:80 "GET /extra/os/x86_64/python-cairo-1.16.3-1-x86_64.pkg.tar.xz HTTP/1.1" 200 53296
2018-04-09 20:28:02 [DEBUG] download_requests.py(229) download_package(): Looking for python2-ptyprocess-0.5.2-1 in 15 mirrors...
2018-04-09 20:28:02 [DEBUG] connectionpool.py(208) _new_conn(): Starting new HTTP connection (1): mirror.gnomus.de
2018-04-09 20:28:03 [DEBUG] connectionpool.py(396) _make_request(): http://mirror.gnomus.de:80 "GET /community/os/x86_64/python2-ptyprocess-0.5.2-1-any.pkg.tar.xz HTTP/1.1" 200 20624
2018-04-09 20:28:03 [INFO] slides.py(257) manage_events_from_cb_queue(): Fetching python-setproctitle 1.1.10-2 (68/790)...
2018-04-09 20:28:03 [INFO] slides.py(257) manage_events_from_cb_queue(): Fetching python-cairo 1.16.3-1 (69/790)...
2018-04-09 20:28:03 [INFO] slides.py(257) manage_events_from_cb_queue(): Fetching python2-ptyprocess 0.5.2-1 (70/790)...
2018-04-09 20:28:03 [DEBUG] download_requests.py(229) download_package(): Looking for js38-38.8.0-5 in 15 mirrors...
2018-04-09 20:28:03 [DEBUG] connectionpool.py(208) _new_conn(): Starting new HTTP connection (1): archlinux.us-west.mirror.zoidplex.net
2018-04-09 20:28:03 [DEBUG] connectionpool.py(396) _make_request(): http://archlinux.us-west.mirror.zoidplex.net:80 "GET /extra/os/x86_64/js38-38.8.0-5-x86_64.pkg.tar.xz HTTP/1.1" 200 4448524
2018-04-09 20:28:04 [INFO] slides.py(257) manage_events_from_cb_queue(): Fetching js38 38.8.0-5 (71/790)...
2018-04-09 20:28:14 [DEBUG] download_requests.py(229) download_package(): Looking for libxklavier-5.4-2 in 15 mirrors...
2018-04-09 20:28:14 [DEBUG] connectionpool.py(208) _new_conn(): Starting new HTTP connection (1): arch.mirror.constant.com
2018-04-09 20:28:14 [DEBUG] connectionpool.py(396) _make_request(): http://arch.mirror.constant.com:80 "GET /extra/os/x86_64/libxklavier-5.4-2-x86_64.pkg.tar.xz HTTP/1.1" 200 65736
2018-04-09 20:28:15 [DEBUG] download_requests.py(229) download_package(): Looking for python-atspi-2.26.0-1 in 15 mirrors...
2018-04-09 20:28:15 [DEBUG] connectionpool.py(208) _new_conn(): Starting new HTTP connection (1): shadow.ind.ntou.edu.tw
2018-04-09 20:28:15 [INFO] slides.py(257) manage_events_from_cb_queue(): Fetching libxklavier 5.4-2 (72/790)...
2018-04-09 20:28:15 [INFO] slides.py(257) manage_events_from_cb_queue(): Fetching python-atspi 2.26.0-1 (73/790)...
2018-04-09 20:28:15 [DEBUG] connectionpool.py(396) _make_request(): http://shadow.ind.ntou.edu.tw:80 "GET /archlinux/extra/os/x86_64/python-atspi-2.26.0-1-any.pkg.tar.xz HTTP/1.1" 200 56004
2018-04-09 20:28:16 [DEBUG] download_requests.py(229) download_package(): Looking for libwnck3-3.24.1-1 in 15 mirrors...
2018-04-09 20:28:16 [DEBUG] connectionpool.py(208) _new_conn(): Starting new HTTP connection (1): mirror.united-gameserver.de
2018-04-09 20:28:16 [INFO] slides.py(257) manage_events_from_cb_queue(): Fetching libwnck3 3.24.1-1 (74/790)...
2018-04-09 20:28:16 [DEBUG] connectionpool.py(396) _make_request(): http://mirror.united-gameserver.de:80 "GET /archlinux/extra/os/x86_64/libwnck3-3.24.1-1-x86_64.pkg.tar.xz HTTP/1.1" 200 383192
2018-04-09 20:28:17 [DEBUG] download_requests.py(229) download_package(): Looking for bamf-0.5.3-2 in 15 mirrors...
2018-04-09 20:28:17 [DEBUG] connectionpool.py(208) _new_conn(): Starting new HTTP connection (1): mirrors.acm.wpi.edu
2018-04-09 20:28:17 [DEBUG] connectionpool.py(396) _make_request(): http://mirrors.acm.wpi.edu:80 "GET /archlinux/community/os/x86_64/bamf-0.5.3-2-x86_64.pkg.tar.xz HTTP/1.1" 200 157156
2018-04-09 20:28:17 [DEBUG] download_requests.py(229) download_package(): Looking for zeitgeist-1.0+1+g1bcc8585-1 in 15 mirrors...
2018-04-09 20:28:17 [DEBUG] connectionpool.py(208) _new_conn(): Starting new HTTP connection (1): mirrors.rit.edu
2018-04-09 20:28:18 [DEBUG] connectionpool.py(396) _make_request(): http://mirrors.rit.edu:80 "GET /archlinux/extra/os/x86_64/zeitgeist-1.0+1+g1bcc8585-1-x86_64.pkg.tar.xz HTTP/1.1" 200 353608
2018-04-09 20:28:18 [INFO] slides.py(257) manage_events_from_cb_queue(): Fetching bamf 0.5.3-2 (75/790)...
2018-04-09 20:28:18 [INFO] slides.py(257) manage_events_from_cb_queue(): Fetching zeitgeist 1.0+1+g1bcc8585-1 (76/790)...
2018-04-09 20:28:18 [DEBUG] download_requests.py(229) download_package(): Looking for libgsignon-glib-2.4.1-1 in 15 mirrors...
2018-04-09 20:28:18 [DEBUG] connectionpool.py(208) _new_conn(): Starting new HTTP connection (1): mirror.gnomus.de
2018-04-09 20:28:19 [INFO] slides.py(257) manage_events_from_cb_queue(): Fetching libgsignon-glib 2.4.1-1 (77/790)...
2018-04-09 20:28:19 [DEBUG] connectionpool.py(396) _make_request(): http://mirror.gnomus.de:80 "GET /community/os/x86_64/libgsignon-glib-2.4.1-1-x86_64.pkg.tar.xz HTTP/1.1" 200 62080
2018-04-09 20:28:19 [DEBUG] download_requests.py(229) download_package(): Looking for libgpod-0.8.3-5 in 15 mirrors...
2018-04-09 20:28:19 [DEBUG] connectionpool.py(208) _new_conn(): Starting new HTTP connection (1): arch.mirror.constant.com
2018-04-09 20:28:20 [DEBUG] connectionpool.py(396) _make_request(): http://arch.mirror.constant.com:80 "GET /extra/os/x86_64/libgpod-0.8.3-5-x86_64.pkg.tar.xz HTTP/1.1" 200 421664
2018-04-09 20:28:20 [INFO] slides.py(257) manage_events_from_cb_queue(): Fetching libgpod 0.8.3-5 (78/790)...
2018-04-09 20:28:21 [DEBUG] download_requests.py(229) download_package(): Looking for libgda-5.2.4+39+g3f70d4fce-2 in 15 mirrors...
2018-04-09 20:28:21 [DEBUG] connectionpool.py(208) _new_conn(): Starting new HTTP connection (1): mirrors.rit.edu
2018-04-09 20:28:21 [INFO] slides.py(257) manage_events_from_cb_queue(): Fetching libgda 5.2.4+39+g3f70d4fce-2 (79/790)...
2018-04-09 20:28:21 [DEBUG] connectionpool.py(396) _make_request(): http://mirrors.rit.edu:80 "GET /archlinux/extra/os/x86_64/libgda-5.2.4+39+g3f70d4fce-2-x86_64.pkg.tar.xz HTTP/1.1" 200 9172152
2018-04-09 20:28:44 [DEBUG] download_requests.py(229) download_package(): Looking for libaccounts-glib-1.23-2 in 15 mirrors...
2018-04-09 20:28:45 [DEBUG] connectionpool.py(208) _new_conn(): Starting new HTTP connection (1): arch.mirror.constant.com
2018-04-09 20:28:45 [INFO] slides.py(257) manage_events_from_cb_queue(): Fetching libaccounts-glib 1.23-2 (80/790)...
2018-04-09 20:28:45 [DEBUG] connectionpool.py(396) _make_request(): http://arch.mirror.constant.com:80 "GET /extra/os/x86_64/libaccounts-glib-1.23-2-x86_64.pkg.tar.xz HTTP/1.1" 200 61068
2018-04-09 20:28:45 [DEBUG] download_requests.py(229) download_package(): Looking for gtkspell3-3.0.9-3 in 15 mirrors...
2018-04-09 20:28:45 [DEBUG] connectionpool.py(208) _new_conn(): Starting new HTTP connection (1): archlinux.us-east.mirror.zoidplex.net
2018-04-09 20:28:45 [DEBUG] connectionpool.py(396) _make_request(): http://archlinux.us-east.mirror.zoidplex.net:80 "GET /community/os/x86_64/gtkspell3-3.0.9-3-x86_64.pkg.tar.xz HTTP/1.1" 200 49752
2018-04-09 20:28:45 [DEBUG] download_requests.py(229) download_package(): Looking for gtk-engines-2.21.0-3 in 15 mirrors...
2018-04-09 20:28:45 [DEBUG] connectionpool.py(208) _new_conn(): Starting new HTTP connection (1): arch.mirror.constant.com
2018-04-09 20:28:46 [DEBUG] connectionpool.py(396) _make_request(): http://arch.mirror.constant.com:80 "GET /extra/os/x86_64/gtk-engines-2.21.0-3-x86_64.pkg.tar.xz HTTP/1.1" 200 243520
2018-04-09 20:28:46 [INFO] slides.py(257) manage_events_from_cb_queue(): Fetching gtkspell3 3.0.9-3 (81/790)...
2018-04-09 20:28:46 [INFO] slides.py(257) manage_events_from_cb_queue(): Fetching gtk-engines 2.21.0-3 (82/790)...
2018-04-09 20:28:46 [DEBUG] download_requests.py(229) download_package(): Looking for qt5-svg-5.10.1-1 in 15 mirrors...
2018-04-09 20:28:46 [DEBUG] connectionpool.py(208) _new_conn(): Starting new HTTP connection (1): archlinux.us-east.mirror.zoidplex.net
2018-04-09 20:28:46 [DEBUG] connectionpool.py(396) _make_request(): http://archlinux.us-east.mirror.zoidplex.net:80 "GET /extra/os/x86_64/qt5-svg-5.10.1-1-x86_64.pkg.tar.xz HTTP/1.1" 200 137956
2018-04-09 20:28:47 [DEBUG] download_requests.py(229) download_package(): Looking for archlinux-appstream-data-20180318-1 in 15 mirrors...
2018-04-09 20:28:47 [DEBUG] connectionpool.py(208) _new_conn(): Starting new HTTP connection (1): mirrors.rit.edu
2018-04-09 20:28:47 [DEBUG] connectionpool.py(396) _make_request(): http://mirrors.rit.edu:80 "GET /archlinux/extra/os/x86_64/archlinux-appstream-data-20180318-1-any.pkg.tar.xz HTTP/1.1" 200 17468912
2018-04-09 20:28:47 [INFO] slides.py(257) manage_events_from_cb_queue(): Fetching qt5-svg 5.10.1-1 (83/790)...
2018-04-09 20:28:47 [INFO] slides.py(257) manage_events_from_cb_queue(): Fetching archlinux-appstream-data 20180318-1 (84/790)...
2018-04-09 20:29:32 [DEBUG] download_requests.py(229) download_package(): Looking for pptpclient-1.10.0-1 in 15 mirrors...
2018-04-09 20:29:32 [DEBUG] connectionpool.py(208) _new_conn(): Starting new HTTP connection (1): archlinux.us-west.mirror.zoidplex.net
2018-04-09 20:29:32 [INFO] slides.py(257) manage_events_from_cb_queue(): Fetching pptpclient 1.10.0-1 (85/790)...
2018-04-09 20:29:32 [DEBUG] connectionpool.py(396) _make_request(): http://archlinux.us-west.mirror.zoidplex.net:80 "GET /core/os/x86_64/pptpclient-1.10.0-1-x86_64.pkg.tar.xz HTTP/1.1" 200 40684
2018-04-09 20:29:32 [DEBUG] download_requests.py(229) download_package(): Looking for openvpn-2.4.5-1 in 15 mirrors...
2018-04-09 20:29:32 [DEBUG] connectionpool.py(208) _new_conn(): Starting new HTTP connection (1): mirror.kaminski.io
2018-04-09 20:29:32 [DEBUG] connectionpool.py(396) _make_request(): http://mirror.kaminski.io:80 "GET /archlinux/core/os/x86_64/openvpn-2.4.5-1-x86_64.pkg.tar.xz HTTP/1.1" 200 421228
2018-04-09 20:29:33 [INFO] slides.py(257) manage_events_from_cb_queue(): Fetching openvpn 2.4.5-1 (86/790)...
2018-04-09 20:29:33 [DEBUG] download_requests.py(229) download_package(): Looking for zenity-3.28.0-1 in 15 mirrors...
2018-04-09 20:29:33 [DEBUG] connectionpool.py(208) _new_conn(): Starting new HTTP connection (1): mirrors.acm.wpi.edu
2018-04-09 20:29:34 [DEBUG] connectionpool.py(396) _make_request(): http://mirrors.acm.wpi.edu:80 "GET /archlinux/extra/os/x86_64/zenity-3.28.0-1-x86_64.pkg.tar.xz HTTP/1.1" 200 3983412
2018-04-09 20:29:34 [INFO] slides.py(257) manage_events_from_cb_queue(): Fetching zenity 3.28.0-1 (87/790)...
2018-04-09 20:29:44 [DEBUG] download_requests.py(229) download_package(): Looking for cinnamon-desktop-3.6.2-1 in 15 mirrors...
2018-04-09 20:29:44 [DEBUG] connectionpool.py(208) _new_conn(): Starting new HTTP connection (1): mirrors.rit.edu
2018-04-09 20:29:44 [DEBUG] connectionpool.py(396) _make_request(): http://mirrors.rit.edu:80 "GET /archlinux/community/os/x86_64/cinnamon-desktop-3.6.2-1-x86_64.pkg.tar.xz HTTP/1.1" 200 235256
2018-04-09 20:29:44 [INFO] slides.py(257) manage_events_from_cb_queue(): Fetching cinnamon-desktop 3.6.2-1 (88/790)...
2018-04-09 20:29:44 [DEBUG] download_requests.py(229) download_package(): Looking for clutter-gst-3.0.26-1 in 15 mirrors...
2018-04-09 20:29:44 [DEBUG] connectionpool.py(208) _new_conn(): Starting new HTTP connection (1): mirror.f4st.host
2018-04-09 20:29:45 [INFO] slides.py(257) manage_events_from_cb_queue(): Fetching clutter-gst 3.0.26-1 (89/790)...
2018-04-09 20:29:45 [DEBUG] connectionpool.py(396) _make_request(): http://mirror.f4st.host:80 "GET /archlinux/extra/os/x86_64/clutter-gst-3.0.26-1-x86_64.pkg.tar.xz HTTP/1.1" 302 160
2018-04-09 20:29:45 [DEBUG] connectionpool.py(208) _new_conn(): Starting new HTTP connection (1): mirror2.f4st.host
2018-04-09 20:29:45 [DEBUG] connectionpool.py(396) _make_request(): http://mirror2.f4st.host:80 "GET /archlinux/extra/os/x86_64/clutter-gst-3.0.26-1-x86_64.pkg.tar.xz HTTP/1.1" 200 104172
2018-04-09 20:29:46 [DEBUG] download_requests.py(229) download_package(): Looking for clutter-1.26.2-1 in 15 mirrors...
2018-04-09 20:29:46 [DEBUG] connectionpool.py(208) _new_conn(): Starting new HTTP connection (1): archlinux.us-west.mirror.zoidplex.net
2018-04-09 20:29:46 [DEBUG] connectionpool.py(396) _make_request(): http://archlinux.us-west.mirror.zoidplex.net:80 "GET /extra/os/x86_64/clutter-1.26.2-1-x86_64.pkg.tar.xz HTTP/1.1" 200 1794740
2018-04-09 20:29:47 [INFO] slides.py(257) manage_events_from_cb_queue(): Fetching clutter 1.26.2-1 (90/790)...
2018-04-09 20:29:51 [DEBUG] download_requests.py(229) download_package(): Looking for vte3-0.52.0-1 in 15 mirrors...
2018-04-09 20:29:51 [DEBUG] connectionpool.py(208) _new_conn(): Starting new HTTP connection (1): arch.mirror.constant.com
2018-04-09 20:29:51 [INFO] slides.py(257) manage_events_from_cb_queue(): Fetching vte3 0.52.0-1 (91/790)...
2018-04-09 20:29:51 [DEBUG] connectionpool.py(396) _make_request(): http://arch.mirror.constant.com:80 "GET /extra/os/x86_64/vte3-0.52.0-1-x86_64.pkg.tar.xz HTTP/1.1" 200 268712
2018-04-09 20:29:52 [DEBUG] download_requests.py(229) download_package(): Looking for granite-0.5-1 in 15 mirrors...
2018-04-09 20:29:52 [DEBUG] connectionpool.py(208) _new_conn(): Starting new HTTP connection (1): mirror.hactar.xyz
2018-04-09 20:29:52 [INFO] slides.py(257) manage_events_from_cb_queue(): Fetching granite 0.5-1 (92/790)...
2018-04-09 20:29:52 [DEBUG] connectionpool.py(396) _make_request(): http://mirror.hactar.xyz:80 "GET /community/os/x86_64/granite-0.5-1-x86_64.pkg.tar.xz HTTP/1.1" 200 296584
2018-04-09 20:29:53 [DEBUG] download_requests.py(229) download_package(): Looking for libraw-0.18.8-2 in 15 mirrors...
2018-04-09 20:29:53 [DEBUG] connectionpool.py(208) _new_conn(): Starting new HTTP connection (1): mirror.united-gameserver.de
2018-04-09 20:29:53 [DEBUG] connectionpool.py(396) _make_request(): http://mirror.united-gameserver.de:80 "GET /archlinux/extra/os/x86_64/libraw-0.18.8-2-x86_64.pkg.tar.xz HTTP/1.1" 200 284344
2018-04-09 20:29:54 [INFO] slides.py(257) manage_events_from_cb_queue(): Fetching libraw 0.18.8-2 (93/790)...
2018-04-09 20:29:54 [DEBUG] download_requests.py(229) download_package(): Looking for libgee-0.20.1-1 in 15 mirrors...
2018-04-09 20:29:54 [DEBUG] connectionpool.py(208) _new_conn(): Starting new HTTP connection (1): arch.tamcore.eu
2018-04-09 20:29:54 [DEBUG] connectionpool.py(396) _make_request(): http://arch.tamcore.eu:80 "GET /extra/os/x86_64/libgee-0.20.1-1-x86_64.pkg.tar.xz HTTP/1.1" 200 249168
2018-04-09 20:29:55 [INFO] slides.py(257) manage_events_from_cb_queue(): Fetching libgee 0.20.1-1 (94/790)...
2018-04-09 20:29:55 [DEBUG] download_requests.py(229) download_package(): Looking for geocode-glib-3.25.4.1-1 in 15 mirrors...
2018-04-09 20:29:55 [DEBUG] connectionpool.py(208) _new_conn(): Starting new HTTP connection (1): archlinux.us-west.mirror.zoidplex.net
2018-04-09 20:29:55 [DEBUG] connectionpool.py(396) _make_request(): http://archlinux.us-west.mirror.zoidplex.net:80 "GET /extra/os/x86_64/geocode-glib-3.25.4.1-1-x86_64.pkg.tar.xz HTTP/1.1" 200 87396
2018-04-09 20:29:56 [DEBUG] download_requests.py(229) download_package(): Looking for libpwquality-1.4.0-1 in 15 mirrors...
2018-04-09 20:29:56 [DEBUG] connectionpool.py(208) _new_conn(): Starting new HTTP connection (1): archlinux.us-east.mirror.zoidplex.net
2018-04-09 20:29:56 [DEBUG] connectionpool.py(396) _make_request(): http://archlinux.us-east.mirror.zoidplex.net:80 "GET /extra/os/x86_64/libpwquality-1.4.0-1-x86_64.pkg.tar.xz HTTP/1.1" 200 79064
2018-04-09 20:29:56 [INFO] slides.py(257) manage_events_from_cb_queue(): Fetching geocode-glib 3.25.4.1-1 (95/790)...
2018-04-09 20:29:56 [INFO] slides.py(257) manage_events_from_cb_queue(): Fetching libpwquality 1.4.0-1 (96/790)...
2018-04-09 20:29:56 [DEBUG] download_requests.py(229) download_package(): Looking for gtk-doc-1.28-1 in 15 mirrors...
2018-04-09 20:29:56 [DEBUG] connectionpool.py(208) _new_conn(): Starting new HTTP connection (1): arch.mirror.constant.com
2018-04-09 20:29:56 [DEBUG] connectionpool.py(396) _make_request(): http://arch.mirror.constant.com:80 "GET /extra/os/x86_64/gtk-doc-1.28-1-any.pkg.tar.xz HTTP/1.1" 200 284080
2018-04-09 20:29:57 [DEBUG] download_requests.py(229) download_package(): Looking for yelp-tools-3.28.0-1 in 15 mirrors...
2018-04-09 20:29:57 [DEBUG] connectionpool.py(208) _new_conn(): Starting new HTTP connection (1): mirrors.acm.wpi.edu
2018-04-09 20:29:57 [INFO] slides.py(257) manage_events_from_cb_queue(): Fetching gtk-doc 1.28-1 (97/790)...
2018-04-09 20:29:57 [INFO] slides.py(257) manage_events_from_cb_queue(): Fetching yelp-tools 3.28.0-1 (98/790)...
2018-04-09 20:29:57 [DEBUG] connectionpool.py(396) _make_request(): http://mirrors.acm.wpi.edu:80 "GET /archlinux/extra/os/x86_64/yelp-tools-3.28.0-1-any.pkg.tar.xz HTTP/1.1" 200 20452
2018-04-09 20:29:57 [DEBUG] download_requests.py(229) download_package(): Looking for intltool-0.51.0-3 in 15 mirrors...
2018-04-09 20:29:57 [DEBUG] connectionpool.py(208) _new_conn(): Starting new HTTP connection (1): mirror.hactar.xyz
2018-04-09 20:29:57 [DEBUG] connectionpool.py(396) _make_request(): http://mirror.hactar.xyz:80 "GET /extra/os/x86_64/intltool-0.51.0-3-any.pkg.tar.xz HTTP/1.1" 200 41528
2018-04-09 20:29:57 [DEBUG] download_requests.py(229) download_package(): Looking for autoconf-archive-1:2018.03.13-1 in 15 mirrors...
2018-04-09 20:29:57 [DEBUG] connectionpool.py(208) _new_conn(): Starting new HTTP connection (1): arch.tamcore.eu
2018-04-09 20:29:58 [DEBUG] connectionpool.py(396) _make_request(): http://arch.tamcore.eu:80 "GET /community/os/x86_64/autoconf-archive-1:2018.03.13-1-any.pkg.tar.xz HTTP/1.1" 200 546420
2018-04-09 20:29:58 [INFO] slides.py(257) manage_events_from_cb_queue(): Fetching intltool 0.51.0-3 (99/790)...
2018-04-09 20:29:58 [INFO] slides.py(257) manage_events_from_cb_queue(): Fetching autoconf-archive 1:2018.03.13-1 (100/790)...
2018-04-09 20:29:59 [DEBUG] download_requests.py(229) download_package(): Looking for libmpc-1.1.0-1 in 15 mirrors...
2018-04-09 20:29:59 [DEBUG] connectionpool.py(208) _new_conn(): Starting new HTTP connection (1): mirrors.rit.edu
2018-04-09 20:29:59 [DEBUG] connectionpool.py(396) _make_request(): http://mirrors.rit.edu:80 "GET /archlinux/core/os/x86_64/libmpc-1.1.0-1-x86_64.pkg.tar.xz HTTP/1.1" 200 66232
2018-04-09 20:30:00 [DEBUG] download_requests.py(229) download_package(): Looking for gspell-1.8.0-1 in 15 mirrors...
2018-04-09 20:30:00 [DEBUG] connectionpool.py(208) _new_conn(): Starting new HTTP connection (1): mirror.cs.pitt.edu
2018-04-09 20:30:00 [DEBUG] connectionpool.py(396) _make_request(): http://mirror.cs.pitt.edu:80 "GET /archlinux/extra/os/x86_64/gspell-1.8.0-1-x86_64.pkg.tar.xz HTTP/1.1" 200 110728
2018-04-09 20:30:00 [INFO] slides.py(257) manage_events_from_cb_queue(): Fetching libmpc 1.1.0-1 (101/790)...
2018-04-09 20:30:00 [INFO] slides.py(257) manage_events_from_cb_queue(): Fetching gspell 1.8.0-1 (102/790)...
2018-04-09 20:30:00 [DEBUG] download_requests.py(229) download_package(): Looking for gtksourceview3-3.24.7-1 in 15 mirrors...
2018-04-09 20:30:00 [DEBUG] connectionpool.py(208) _new_conn(): Starting new HTTP connection (1): archlinux.us-east.mirror.zoidplex.net
2018-04-09 20:30:00 [DEBUG] connectionpool.py(396) _make_request(): http://archlinux.us-east.mirror.zoidplex.net:80 "GET /extra/os/x86_64/gtksourceview3-3.24.7-1-x86_64.pkg.tar.xz HTTP/1.1" 200 992516
2018-04-09 20:30:01 [INFO] slides.py(257) manage_events_from_cb_queue(): Fetching gtksourceview3 3.24.7-1 (103/790)...
2018-04-09 20:30:03 [DEBUG] download_requests.py(229) download_package(): Looking for zip-3.0-7 in 15 mirrors...
2018-04-09 20:30:03 [DEBUG] connectionpool.py(208) _new_conn(): Starting new HTTP connection (1): mirror.kaminski.io
2018-04-09 20:30:03 [INFO] slides.py(257) manage_events_from_cb_queue(): Fetching zip 3.0-7 (104/790)...
2018-04-09 20:30:03 [DEBUG] connectionpool.py(396) _make_request(): http://mirror.kaminski.io:80 "GET /archlinux/extra/os/x86_64/zip-3.0-7-x86_64.pkg.tar.xz HTTP/1.1" 200 159900
2018-04-09 20:30:03 [DEBUG] download_requests.py(229) download_package(): Looking for file-5.32-1 in 15 mirrors...
2018-04-09 20:30:03 [DEBUG] connectionpool.py(208) _new_conn(): Starting new HTTP connection (1): archlinux.us-central.mirror.zoidplex.net
2018-04-09 20:30:04 [DEBUG] connectionpool.py(396) _make_request(): http://archlinux.us-central.mirror.zoidplex.net:80 "GET /core/os/x86_64/file-5.32-1-x86_64.pkg.tar.xz HTTP/1.1" 200 266312
2018-04-09 20:30:04 [INFO] slides.py(257) manage_events_from_cb_queue(): Fetching file 5.32-1 (105/790)...
2018-04-09 20:30:04 [DEBUG] download_requests.py(229) download_package(): Looking for t1lib-5.1.2-6 in 15 mirrors...
2018-04-09 20:30:04 [DEBUG] connectionpool.py(208) _new_conn(): Starting new HTTP connection (1): mirror.gnomus.de
2018-04-09 20:30:04 [DEBUG] connectionpool.py(396) _make_request(): http://mirror.gnomus.de:80 "GET /extra/os/x86_64/t1lib-5.1.2-6-x86_64.pkg.tar.xz HTTP/1.1" 200 665600
2018-04-09 20:30:05 [INFO] slides.py(257) manage_events_from_cb_queue(): Fetching t1lib 5.1.2-6 (106/790)...
2018-04-09 20:30:07 [DEBUG] download_requests.py(229) download_package(): Looking for djvulibre-3.5.27-3 in 15 mirrors...
2018-04-09 20:30:07 [DEBUG] connectionpool.py(208) _new_conn(): Starting new HTTP connection (1): mirror.kaminski.io
2018-04-09 20:30:07 [DEBUG] connectionpool.py(396) _make_request(): http://mirror.kaminski.io:80 "GET /archlinux/extra/os/x86_64/djvulibre-3.5.27-3-x86_64.pkg.tar.xz HTTP/1.1" 200 930804
2018-04-09 20:30:08 [INFO] slides.py(257) manage_events_from_cb_queue(): Fetching djvulibre 3.5.27-3 (107/790)...
2018-04-09 20:30:09 [DEBUG] download_requests.py(229) download_package(): Looking for poppler-glib-0.63.0-1 in 15 mirrors...
2018-04-09 20:30:09 [DEBUG] connectionpool.py(208) _new_conn(): Starting new HTTP connection (1): mirror.gnomus.de
2018-04-09 20:30:10 [DEBUG] connectionpool.py(396) _make_request(): http://mirror.gnomus.de:80 "GET /extra/os/x86_64/poppler-glib-0.63.0-1-x86_64.pkg.tar.xz HTTP/1.1" 200 218108
2018-04-09 20:30:10 [INFO] slides.py(257) manage_events_from_cb_queue(): Fetching poppler-glib 0.63.0-1 (108/790)...
2018-04-09 20:30:11 [DEBUG] download_requests.py(229) download_package(): Looking for libspectre-0.2.8-1 in 15 mirrors...
2018-04-09 20:30:11 [DEBUG] connectionpool.py(208) _new_conn(): Starting new HTTP connection (1): mirror.kaminski.io
2018-04-09 20:30:11 [DEBUG] connectionpool.py(396) _make_request(): http://mirror.kaminski.io:80 "GET /archlinux/extra/os/x86_64/libspectre-0.2.8-1-x86_64.pkg.tar.xz HTTP/1.1" 200 30804
2018-04-09 20:30:11 [DEBUG] download_requests.py(229) download_package(): Looking for libgxps-0.3.0-1 in 15 mirrors...
2018-04-09 20:30:11 [DEBUG] connectionpool.py(208) _new_conn(): Starting new HTTP connection (1): mirrors.acm.wpi.edu
2018-04-09 20:30:11 [DEBUG] connectionpool.py(396) _make_request(): http://mirrors.acm.wpi.edu:80 "GET /archlinux/extra/os/x86_64/libgxps-0.3.0-1-x86_64.pkg.tar.xz HTTP/1.1" 200 101256
2018-04-09 20:30:11 [INFO] slides.py(257) manage_events_from_cb_queue(): Fetching libspectre 0.2.8-1 (109/790)...
2018-04-09 20:30:11 [INFO] slides.py(257) manage_events_from_cb_queue(): Fetching libgxps 0.3.0-1 (110/790)...
2018-04-09 20:30:11 [DEBUG] download_requests.py(229) download_package(): Looking for libpeas-1.22.0-1 in 15 mirrors...
2018-04-09 20:30:11 [DEBUG] connectionpool.py(208) _new_conn(): Starting new HTTP connection (1): mirror.kaminski.io
2018-04-09 20:30:11 [DEBUG] connectionpool.py(396) _make_request(): http://mirror.kaminski.io:80 "GET /archlinux/extra/os/x86_64/libpeas-1.22.0-1-x86_64.pkg.tar.xz HTTP/1.1" 200 181824
2018-04-09 20:30:12 [DEBUG] download_requests.py(229) download_package(): Looking for exempi-2.4.5-1 in 15 mirrors...
2018-04-09 20:30:12 [DEBUG] connectionpool.py(208) _new_conn(): Starting new HTTP connection (1): mirror.kaminski.io
2018-04-09 20:30:12 [DEBUG] connectionpool.py(396) _make_request(): http://mirror.kaminski.io:80 "GET /archlinux/extra/os/x86_64/exempi-2.4.5-1-x86_64.pkg.tar.xz HTTP/1.1" 200 552248
2018-04-09 20:30:12 [INFO] slides.py(257) manage_events_from_cb_queue(): Fetching libpeas 1.22.0-1 (111/790)...
2018-04-09 20:30:12 [INFO] slides.py(257) manage_events_from_cb_queue(): Fetching exempi 2.4.5-1 (112/790)...
2018-04-09 20:30:13 [DEBUG] download_requests.py(229) download_package(): Looking for dvd+rw-tools-7.1-7 in 15 mirrors...
2018-04-09 20:30:13 [DEBUG] connectionpool.py(208) _new_conn(): Starting new HTTP connection (1): arch.mirror.constant.com
2018-04-09 20:30:13 [DEBUG] connectionpool.py(396) _make_request(): http://arch.mirror.constant.com:80 "GET /extra/os/x86_64/dvd+rw-tools-7.1-7-x86_64.pkg.tar.xz HTTP/1.1" 200 77932
2018-04-09 20:30:14 [DEBUG] download_requests.py(229) download_package(): Looking for cdrdao-1.2.3-10 in 15 mirrors...
2018-04-09 20:30:14 [DEBUG] connectionpool.py(208) _new_conn(): Starting new HTTP connection (1): mirror.cs.pitt.edu