1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423 |
This is a big file! Only the last 128KiB is shown. Click here to download the full log.
I: pybuild base:232: python3.8 setup.py clean
running clean
removing '/home/build/core.sr.ht-0.65.6-1-g7d801d2/.pybuild/cpython3_3.8_srht/build' (and everything under it)
'build/bdist.linux-x86_64' does not exist -- can't clean it
'build/scripts-3.8' does not exist -- can't clean it
dh_autoreconf_clean -O--buildsystem=pybuild
dh_clean -O--buildsystem=pybuild
dpkg-source -b .
dpkg-source: info: using options from core.sr.ht-0.65.6-1-g7d801d2/debian/source/options: --extend-diff-ignore=^[^/]*[.]egg-info/
dpkg-source: info: using source format '3.0 (quilt)'
dpkg-source: info: building core.sr.ht using existing ./core.sr.ht_0.65.6-1-g7d801d2.orig.tar.gz
dpkg-source: info: using patch list from debian/patches/series
dpkg-source: info: building core.sr.ht in core.sr.ht_0.65.6-1-g7d801d2-1.debian.tar.xz
dpkg-source: info: building core.sr.ht in core.sr.ht_0.65.6-1-g7d801d2-1.dsc
debian/rules build
dh build --with python3 --buildsystem=pybuild
dh_update_autotools_config -O--buildsystem=pybuild
dh_autoreconf -O--buildsystem=pybuild
dh_auto_configure -O--buildsystem=pybuild
I: pybuild base:232: python3.9 setup.py config
running config
I: pybuild base:232: python3.8 setup.py config
running config
dh_auto_build -O--buildsystem=pybuild
I: pybuild base:232: /usr/bin/python3.9 setup.py build
running build
running build_py
creating /home/build/core.sr.ht-0.65.6-1-g7d801d2/.pybuild/cpython3_3.9_srht/build/srht
copying srht/flask.py -> /home/build/core.sr.ht-0.65.6-1-g7d801d2/.pybuild/cpython3_3.9_srht/build/srht
copying srht/email.py -> /home/build/core.sr.ht-0.65.6-1-g7d801d2/.pybuild/cpython3_3.9_srht/build/srht
copying srht/redis.py -> /home/build/core.sr.ht-0.65.6-1-g7d801d2/.pybuild/cpython3_3.9_srht/build/srht
copying srht/debug.py -> /home/build/core.sr.ht-0.65.6-1-g7d801d2/.pybuild/cpython3_3.9_srht/build/srht
copying srht/crypto.py -> /home/build/core.sr.ht-0.65.6-1-g7d801d2/.pybuild/cpython3_3.9_srht/build/srht
copying srht/api.py -> /home/build/core.sr.ht-0.65.6-1-g7d801d2/.pybuild/cpython3_3.9_srht/build/srht
copying srht/cache.py -> /home/build/core.sr.ht-0.65.6-1-g7d801d2/.pybuild/cpython3_3.9_srht/build/srht
copying srht/flagtype.py -> /home/build/core.sr.ht-0.65.6-1-g7d801d2/.pybuild/cpython3_3.9_srht/build/srht
copying srht/gql_lexer.py -> /home/build/core.sr.ht-0.65.6-1-g7d801d2/.pybuild/cpython3_3.9_srht/build/srht
copying srht/config.py -> /home/build/core.sr.ht-0.65.6-1-g7d801d2/.pybuild/cpython3_3.9_srht/build/srht
copying srht/__init__.py -> /home/build/core.sr.ht-0.65.6-1-g7d801d2/.pybuild/cpython3_3.9_srht/build/srht
copying srht/markdown.py -> /home/build/core.sr.ht-0.65.6-1-g7d801d2/.pybuild/cpython3_3.9_srht/build/srht
copying srht/database.py -> /home/build/core.sr.ht-0.65.6-1-g7d801d2/.pybuild/cpython3_3.9_srht/build/srht
copying srht/urlify.py -> /home/build/core.sr.ht-0.65.6-1-g7d801d2/.pybuild/cpython3_3.9_srht/build/srht
copying srht/validation.py -> /home/build/core.sr.ht-0.65.6-1-g7d801d2/.pybuild/cpython3_3.9_srht/build/srht
copying srht/graphql.py -> /home/build/core.sr.ht-0.65.6-1-g7d801d2/.pybuild/cpython3_3.9_srht/build/srht
copying srht/search.py -> /home/build/core.sr.ht-0.65.6-1-g7d801d2/.pybuild/cpython3_3.9_srht/build/srht
package init file 'srht/alembic/__init__.py' not found (or not a regular file)
creating /home/build/core.sr.ht-0.65.6-1-g7d801d2/.pybuild/cpython3_3.9_srht/build/srht/alembic
copying srht/alembic/env.py -> /home/build/core.sr.ht-0.65.6-1-g7d801d2/.pybuild/cpython3_3.9_srht/build/srht/alembic
package init file 'srht/alembic/versions/__init__.py' not found (or not a regular file)
creating /home/build/core.sr.ht-0.65.6-1-g7d801d2/.pybuild/cpython3_3.9_srht/build/srht/alembic/versions
copying srht/alembic/versions/5a62c0c174fd_remove_nullable_constraint_from_.py -> /home/build/core.sr.ht-0.65.6-1-g7d801d2/.pybuild/cpython3_3.9_srht/build/srht/alembic/versions
copying srht/alembic/versions/af06063a0edd_add_revocation_key_to_user.py -> /home/build/core.sr.ht-0.65.6-1-g7d801d2/.pybuild/cpython3_3.9_srht/build/srht/alembic/versions
copying srht/alembic/versions/4cba8deffa67_allow_external_users_to_have_null_.py -> /home/build/core.sr.ht-0.65.6-1-g7d801d2/.pybuild/cpython3_3.9_srht/build/srht/alembic/versions
copying srht/alembic/versions/fb50c54ea20e_add_suspension_notice_to_user.py -> /home/build/core.sr.ht-0.65.6-1-g7d801d2/.pybuild/cpython3_3.9_srht/build/srht/alembic/versions
copying srht/alembic/versions/0417a58bdaad_add_unique_constraint_to_username.py -> /home/build/core.sr.ht-0.65.6-1-g7d801d2/.pybuild/cpython3_3.9_srht/build/srht/alembic/versions
copying srht/alembic/versions/c19c3956974d_add_index_for_usernames.py -> /home/build/core.sr.ht-0.65.6-1-g7d801d2/.pybuild/cpython3_3.9_srht/build/srht/alembic/versions
creating /home/build/core.sr.ht-0.65.6-1-g7d801d2/.pybuild/cpython3_3.9_srht/build/srht/oauth
copying srht/oauth/token.py -> /home/build/core.sr.ht-0.65.6-1-g7d801d2/.pybuild/cpython3_3.9_srht/build/srht/oauth
copying srht/oauth/user.py -> /home/build/core.sr.ht-0.65.6-1-g7d801d2/.pybuild/cpython3_3.9_srht/build/srht/oauth
copying srht/oauth/decorator.py -> /home/build/core.sr.ht-0.65.6-1-g7d801d2/.pybuild/cpython3_3.9_srht/build/srht/oauth
copying srht/oauth/__init__.py -> /home/build/core.sr.ht-0.65.6-1-g7d801d2/.pybuild/cpython3_3.9_srht/build/srht/oauth
copying srht/oauth/blueprint.py -> /home/build/core.sr.ht-0.65.6-1-g7d801d2/.pybuild/cpython3_3.9_srht/build/srht/oauth
copying srht/oauth/scope.py -> /home/build/core.sr.ht-0.65.6-1-g7d801d2/.pybuild/cpython3_3.9_srht/build/srht/oauth
copying srht/oauth/client.py -> /home/build/core.sr.ht-0.65.6-1-g7d801d2/.pybuild/cpython3_3.9_srht/build/srht/oauth
copying srht/oauth/interface.py -> /home/build/core.sr.ht-0.65.6-1-g7d801d2/.pybuild/cpython3_3.9_srht/build/srht/oauth
creating /home/build/core.sr.ht-0.65.6-1-g7d801d2/.pybuild/cpython3_3.9_srht/build/srht/webhook
copying srht/webhook/celery.py -> /home/build/core.sr.ht-0.65.6-1-g7d801d2/.pybuild/cpython3_3.9_srht/build/srht/webhook
copying srht/webhook/__init__.py -> /home/build/core.sr.ht-0.65.6-1-g7d801d2/.pybuild/cpython3_3.9_srht/build/srht/webhook
copying srht/webhook/webhook.py -> /home/build/core.sr.ht-0.65.6-1-g7d801d2/.pybuild/cpython3_3.9_srht/build/srht/webhook
copying srht/webhook/magic.py -> /home/build/core.sr.ht-0.65.6-1-g7d801d2/.pybuild/cpython3_3.9_srht/build/srht/webhook
copying srht/Makefile -> /home/build/core.sr.ht-0.65.6-1-g7d801d2/.pybuild/cpython3_3.9_srht/build/srht
copying srht/package.json -> /home/build/core.sr.ht-0.65.6-1-g7d801d2/.pybuild/cpython3_3.9_srht/build/srht
creating /home/build/core.sr.ht-0.65.6-1-g7d801d2/.pybuild/cpython3_3.9_srht/build/srht/templates
copying srht/templates/layout.html -> /home/build/core.sr.ht-0.65.6-1-g7d801d2/.pybuild/cpython3_3.9_srht/build/srht/templates
copying srht/templates/suspended.html -> /home/build/core.sr.ht-0.65.6-1-g7d801d2/.pybuild/cpython3_3.9_srht/build/srht/templates
copying srht/templates/pagination.html -> /home/build/core.sr.ht-0.65.6-1-g7d801d2/.pybuild/cpython3_3.9_srht/build/srht/templates
copying srht/templates/read_only.html -> /home/build/core.sr.ht-0.65.6-1-g7d801d2/.pybuild/cpython3_3.9_srht/build/srht/templates
copying srht/templates/layout-full.html -> /home/build/core.sr.ht-0.65.6-1-g7d801d2/.pybuild/cpython3_3.9_srht/build/srht/templates
copying srht/templates/nav.html -> /home/build/core.sr.ht-0.65.6-1-g7d801d2/.pybuild/cpython3_3.9_srht/build/srht/templates
copying srht/templates/not_found.html -> /home/build/core.sr.ht-0.65.6-1-g7d801d2/.pybuild/cpython3_3.9_srht/build/srht/templates
copying srht/templates/graphql.html -> /home/build/core.sr.ht-0.65.6-1-g7d801d2/.pybuild/cpython3_3.9_srht/build/srht/templates
copying srht/templates/internal_error.html -> /home/build/core.sr.ht-0.65.6-1-g7d801d2/.pybuild/cpython3_3.9_srht/build/srht/templates
copying srht/templates/oauth-error.html -> /home/build/core.sr.ht-0.65.6-1-g7d801d2/.pybuild/cpython3_3.9_srht/build/srht/templates
creating /home/build/core.sr.ht-0.65.6-1-g7d801d2/.pybuild/cpython3_3.9_srht/build/srht/scss
copying srht/scss/icons.scss -> /home/build/core.sr.ht-0.65.6-1-g7d801d2/.pybuild/cpython3_3.9_srht/build/srht/scss
copying srht/scss/base.scss -> /home/build/core.sr.ht-0.65.6-1-g7d801d2/.pybuild/cpython3_3.9_srht/build/srht/scss
copying srht/scss/events.scss -> /home/build/core.sr.ht-0.65.6-1-g7d801d2/.pybuild/cpython3_3.9_srht/build/srht/scss
copying srht/scss/contrast.scss -> /home/build/core.sr.ht-0.65.6-1-g7d801d2/.pybuild/cpython3_3.9_srht/build/srht/scss
copying srht/scss/highlight.scss -> /home/build/core.sr.ht-0.65.6-1-g7d801d2/.pybuild/cpython3_3.9_srht/build/srht/scss
copying srht/scss/nav.scss -> /home/build/core.sr.ht-0.65.6-1-g7d801d2/.pybuild/cpython3_3.9_srht/build/srht/scss
copying srht/scss/variables.scss -> /home/build/core.sr.ht-0.65.6-1-g7d801d2/.pybuild/cpython3_3.9_srht/build/srht/scss
copying srht/scss/font-awesome.min.css -> /home/build/core.sr.ht-0.65.6-1-g7d801d2/.pybuild/cpython3_3.9_srht/build/srht/scss
creating /home/build/core.sr.ht-0.65.6-1-g7d801d2/.pybuild/cpython3_3.9_srht/build/srht/static
copying srht/static/codemirror.css -> /home/build/core.sr.ht-0.65.6-1-g7d801d2/.pybuild/cpython3_3.9_srht/build/srht/static
copying srht/static/codemirror.js -> /home/build/core.sr.ht-0.65.6-1-g7d801d2/.pybuild/cpython3_3.9_srht/build/srht/static
copying srht/static/simple.js -> /home/build/core.sr.ht-0.65.6-1-g7d801d2/.pybuild/cpython3_3.9_srht/build/srht/static
creating /home/build/core.sr.ht-0.65.6-1-g7d801d2/.pybuild/cpython3_3.9_srht/build/srht/static/icons
copying srht/static/icons/code-branch.svg -> /home/build/core.sr.ht-0.65.6-1-g7d801d2/.pybuild/cpython3_3.9_srht/build/srht/static/icons
copying srht/static/icons/circle-solid.svg -> /home/build/core.sr.ht-0.65.6-1-g7d801d2/.pybuild/cpython3_3.9_srht/build/srht/static/icons
copying srht/static/icons/plus-square.svg -> /home/build/core.sr.ht-0.65.6-1-g7d801d2/.pybuild/cpython3_3.9_srht/build/srht/static/icons
copying srht/static/icons/minus.svg -> /home/build/core.sr.ht-0.65.6-1-g7d801d2/.pybuild/cpython3_3.9_srht/build/srht/static/icons
copying srht/static/icons/external-link-alt.svg -> /home/build/core.sr.ht-0.65.6-1-g7d801d2/.pybuild/cpython3_3.9_srht/build/srht/static/icons
copying srht/static/icons/comments.svg -> /home/build/core.sr.ht-0.65.6-1-g7d801d2/.pybuild/cpython3_3.9_srht/build/srht/static/icons
copying srht/static/icons/envelope-o.svg -> /home/build/core.sr.ht-0.65.6-1-g7d801d2/.pybuild/cpython3_3.9_srht/build/srht/static/icons
copying srht/static/icons/README -> /home/build/core.sr.ht-0.65.6-1-g7d801d2/.pybuild/cpython3_3.9_srht/build/srht/static/icons
copying srht/static/icons/plus.svg -> /home/build/core.sr.ht-0.65.6-1-g7d801d2/.pybuild/cpython3_3.9_srht/build/srht/static/icons
copying srht/static/icons/arrow-right.svg -> /home/build/core.sr.ht-0.65.6-1-g7d801d2/.pybuild/cpython3_3.9_srht/build/srht/static/icons
copying srht/static/icons/caret-right.svg -> /home/build/core.sr.ht-0.65.6-1-g7d801d2/.pybuild/cpython3_3.9_srht/build/srht/static/icons
copying srht/static/icons/folder.svg -> /home/build/core.sr.ht-0.65.6-1-g7d801d2/.pybuild/cpython3_3.9_srht/build/srht/static/icons
copying srht/static/icons/check.svg -> /home/build/core.sr.ht-0.65.6-1-g7d801d2/.pybuild/cpython3_3.9_srht/build/srht/static/icons
copying srht/static/icons/comments-o.svg -> /home/build/core.sr.ht-0.65.6-1-g7d801d2/.pybuild/cpython3_3.9_srht/build/srht/static/icons
copying srht/static/icons/question-circle.svg -> /home/build/core.sr.ht-0.65.6-1-g7d801d2/.pybuild/cpython3_3.9_srht/build/srht/static/icons
copying srht/static/icons/exclamation-triangle.svg -> /home/build/core.sr.ht-0.65.6-1-g7d801d2/.pybuild/cpython3_3.9_srht/build/srht/static/icons
copying srht/static/icons/file-alt.svg -> /home/build/core.sr.ht-0.65.6-1-g7d801d2/.pybuild/cpython3_3.9_srht/build/srht/static/icons
copying srht/static/icons/file.svg -> /home/build/core.sr.ht-0.65.6-1-g7d801d2/.pybuild/cpython3_3.9_srht/build/srht/static/icons
copying srht/static/icons/times.svg -> /home/build/core.sr.ht-0.65.6-1-g7d801d2/.pybuild/cpython3_3.9_srht/build/srht/static/icons
copying srht/static/icons/user.svg -> /home/build/core.sr.ht-0.65.6-1-g7d801d2/.pybuild/cpython3_3.9_srht/build/srht/static/icons
copying srht/static/icons/clock.svg -> /home/build/core.sr.ht-0.65.6-1-g7d801d2/.pybuild/cpython3_3.9_srht/build/srht/static/icons
copying srht/static/icons/plus-circle.svg -> /home/build/core.sr.ht-0.65.6-1-g7d801d2/.pybuild/cpython3_3.9_srht/build/srht/static/icons
copying srht/static/icons/LICENSE.txt -> /home/build/core.sr.ht-0.65.6-1-g7d801d2/.pybuild/cpython3_3.9_srht/build/srht/static/icons
copying srht/static/icons/caret-left.svg -> /home/build/core.sr.ht-0.65.6-1-g7d801d2/.pybuild/cpython3_3.9_srht/build/srht/static/icons
copying srht/static/icons/rss.svg -> /home/build/core.sr.ht-0.65.6-1-g7d801d2/.pybuild/cpython3_3.9_srht/build/srht/static/icons
copying srht/static/icons/gitlab.svg -> /home/build/core.sr.ht-0.65.6-1-g7d801d2/.pybuild/cpython3_3.9_srht/build/srht/static/icons
copying srht/static/icons/reply.svg -> /home/build/core.sr.ht-0.65.6-1-g7d801d2/.pybuild/cpython3_3.9_srht/build/srht/static/icons
copying srht/static/icons/circle.svg -> /home/build/core.sr.ht-0.65.6-1-g7d801d2/.pybuild/cpython3_3.9_srht/build/srht/static/icons
copying srht/static/icons/circle-notch.svg -> /home/build/core.sr.ht-0.65.6-1-g7d801d2/.pybuild/cpython3_3.9_srht/build/srht/static/icons
copying srht/static/icons/github.svg -> /home/build/core.sr.ht-0.65.6-1-g7d801d2/.pybuild/cpython3_3.9_srht/build/srht/static/icons
running build_scripts
creating build
creating build/scripts-3.9
copying and adjusting srht-update-profiles -> build/scripts-3.9
copying and adjusting srht-migrate -> build/scripts-3.9
copying and adjusting srht-keygen -> build/scripts-3.9
changing mode of build/scripts-3.9/srht-update-profiles from 644 to 755
changing mode of build/scripts-3.9/srht-migrate from 644 to 755
changing mode of build/scripts-3.9/srht-keygen from 644 to 755
I: pybuild base:232: /usr/bin/python3 setup.py build
running build
running build_py
creating /home/build/core.sr.ht-0.65.6-1-g7d801d2/.pybuild/cpython3_3.8_srht/build/srht
copying srht/flask.py -> /home/build/core.sr.ht-0.65.6-1-g7d801d2/.pybuild/cpython3_3.8_srht/build/srht
copying srht/email.py -> /home/build/core.sr.ht-0.65.6-1-g7d801d2/.pybuild/cpython3_3.8_srht/build/srht
copying srht/redis.py -> /home/build/core.sr.ht-0.65.6-1-g7d801d2/.pybuild/cpython3_3.8_srht/build/srht
copying srht/debug.py -> /home/build/core.sr.ht-0.65.6-1-g7d801d2/.pybuild/cpython3_3.8_srht/build/srht
copying srht/crypto.py -> /home/build/core.sr.ht-0.65.6-1-g7d801d2/.pybuild/cpython3_3.8_srht/build/srht
copying srht/api.py -> /home/build/core.sr.ht-0.65.6-1-g7d801d2/.pybuild/cpython3_3.8_srht/build/srht
copying srht/cache.py -> /home/build/core.sr.ht-0.65.6-1-g7d801d2/.pybuild/cpython3_3.8_srht/build/srht
copying srht/flagtype.py -> /home/build/core.sr.ht-0.65.6-1-g7d801d2/.pybuild/cpython3_3.8_srht/build/srht
copying srht/gql_lexer.py -> /home/build/core.sr.ht-0.65.6-1-g7d801d2/.pybuild/cpython3_3.8_srht/build/srht
copying srht/config.py -> /home/build/core.sr.ht-0.65.6-1-g7d801d2/.pybuild/cpython3_3.8_srht/build/srht
copying srht/__init__.py -> /home/build/core.sr.ht-0.65.6-1-g7d801d2/.pybuild/cpython3_3.8_srht/build/srht
copying srht/markdown.py -> /home/build/core.sr.ht-0.65.6-1-g7d801d2/.pybuild/cpython3_3.8_srht/build/srht
copying srht/database.py -> /home/build/core.sr.ht-0.65.6-1-g7d801d2/.pybuild/cpython3_3.8_srht/build/srht
copying srht/urlify.py -> /home/build/core.sr.ht-0.65.6-1-g7d801d2/.pybuild/cpython3_3.8_srht/build/srht
copying srht/validation.py -> /home/build/core.sr.ht-0.65.6-1-g7d801d2/.pybuild/cpython3_3.8_srht/build/srht
copying srht/graphql.py -> /home/build/core.sr.ht-0.65.6-1-g7d801d2/.pybuild/cpython3_3.8_srht/build/srht
copying srht/search.py -> /home/build/core.sr.ht-0.65.6-1-g7d801d2/.pybuild/cpython3_3.8_srht/build/srht
package init file 'srht/alembic/__init__.py' not found (or not a regular file)
creating /home/build/core.sr.ht-0.65.6-1-g7d801d2/.pybuild/cpython3_3.8_srht/build/srht/alembic
copying srht/alembic/env.py -> /home/build/core.sr.ht-0.65.6-1-g7d801d2/.pybuild/cpython3_3.8_srht/build/srht/alembic
package init file 'srht/alembic/versions/__init__.py' not found (or not a regular file)
creating /home/build/core.sr.ht-0.65.6-1-g7d801d2/.pybuild/cpython3_3.8_srht/build/srht/alembic/versions
copying srht/alembic/versions/5a62c0c174fd_remove_nullable_constraint_from_.py -> /home/build/core.sr.ht-0.65.6-1-g7d801d2/.pybuild/cpython3_3.8_srht/build/srht/alembic/versions
copying srht/alembic/versions/af06063a0edd_add_revocation_key_to_user.py -> /home/build/core.sr.ht-0.65.6-1-g7d801d2/.pybuild/cpython3_3.8_srht/build/srht/alembic/versions
copying srht/alembic/versions/4cba8deffa67_allow_external_users_to_have_null_.py -> /home/build/core.sr.ht-0.65.6-1-g7d801d2/.pybuild/cpython3_3.8_srht/build/srht/alembic/versions
copying srht/alembic/versions/fb50c54ea20e_add_suspension_notice_to_user.py -> /home/build/core.sr.ht-0.65.6-1-g7d801d2/.pybuild/cpython3_3.8_srht/build/srht/alembic/versions
copying srht/alembic/versions/0417a58bdaad_add_unique_constraint_to_username.py -> /home/build/core.sr.ht-0.65.6-1-g7d801d2/.pybuild/cpython3_3.8_srht/build/srht/alembic/versions
copying srht/alembic/versions/c19c3956974d_add_index_for_usernames.py -> /home/build/core.sr.ht-0.65.6-1-g7d801d2/.pybuild/cpython3_3.8_srht/build/srht/alembic/versions
creating /home/build/core.sr.ht-0.65.6-1-g7d801d2/.pybuild/cpython3_3.8_srht/build/srht/oauth
copying srht/oauth/token.py -> /home/build/core.sr.ht-0.65.6-1-g7d801d2/.pybuild/cpython3_3.8_srht/build/srht/oauth
copying srht/oauth/user.py -> /home/build/core.sr.ht-0.65.6-1-g7d801d2/.pybuild/cpython3_3.8_srht/build/srht/oauth
copying srht/oauth/decorator.py -> /home/build/core.sr.ht-0.65.6-1-g7d801d2/.pybuild/cpython3_3.8_srht/build/srht/oauth
copying srht/oauth/__init__.py -> /home/build/core.sr.ht-0.65.6-1-g7d801d2/.pybuild/cpython3_3.8_srht/build/srht/oauth
copying srht/oauth/blueprint.py -> /home/build/core.sr.ht-0.65.6-1-g7d801d2/.pybuild/cpython3_3.8_srht/build/srht/oauth
copying srht/oauth/scope.py -> /home/build/core.sr.ht-0.65.6-1-g7d801d2/.pybuild/cpython3_3.8_srht/build/srht/oauth
copying srht/oauth/client.py -> /home/build/core.sr.ht-0.65.6-1-g7d801d2/.pybuild/cpython3_3.8_srht/build/srht/oauth
copying srht/oauth/interface.py -> /home/build/core.sr.ht-0.65.6-1-g7d801d2/.pybuild/cpython3_3.8_srht/build/srht/oauth
creating /home/build/core.sr.ht-0.65.6-1-g7d801d2/.pybuild/cpython3_3.8_srht/build/srht/webhook
copying srht/webhook/celery.py -> /home/build/core.sr.ht-0.65.6-1-g7d801d2/.pybuild/cpython3_3.8_srht/build/srht/webhook
copying srht/webhook/__init__.py -> /home/build/core.sr.ht-0.65.6-1-g7d801d2/.pybuild/cpython3_3.8_srht/build/srht/webhook
copying srht/webhook/webhook.py -> /home/build/core.sr.ht-0.65.6-1-g7d801d2/.pybuild/cpython3_3.8_srht/build/srht/webhook
copying srht/webhook/magic.py -> /home/build/core.sr.ht-0.65.6-1-g7d801d2/.pybuild/cpython3_3.8_srht/build/srht/webhook
copying srht/Makefile -> /home/build/core.sr.ht-0.65.6-1-g7d801d2/.pybuild/cpython3_3.8_srht/build/srht
copying srht/package.json -> /home/build/core.sr.ht-0.65.6-1-g7d801d2/.pybuild/cpython3_3.8_srht/build/srht
creating /home/build/core.sr.ht-0.65.6-1-g7d801d2/.pybuild/cpython3_3.8_srht/build/srht/templates
copying srht/templates/layout.html -> /home/build/core.sr.ht-0.65.6-1-g7d801d2/.pybuild/cpython3_3.8_srht/build/srht/templates
copying srht/templates/suspended.html -> /home/build/core.sr.ht-0.65.6-1-g7d801d2/.pybuild/cpython3_3.8_srht/build/srht/templates
copying srht/templates/pagination.html -> /home/build/core.sr.ht-0.65.6-1-g7d801d2/.pybuild/cpython3_3.8_srht/build/srht/templates
copying srht/templates/read_only.html -> /home/build/core.sr.ht-0.65.6-1-g7d801d2/.pybuild/cpython3_3.8_srht/build/srht/templates
copying srht/templates/layout-full.html -> /home/build/core.sr.ht-0.65.6-1-g7d801d2/.pybuild/cpython3_3.8_srht/build/srht/templates
copying srht/templates/nav.html -> /home/build/core.sr.ht-0.65.6-1-g7d801d2/.pybuild/cpython3_3.8_srht/build/srht/templates
copying srht/templates/not_found.html -> /home/build/core.sr.ht-0.65.6-1-g7d801d2/.pybuild/cpython3_3.8_srht/build/srht/templates
copying srht/templates/graphql.html -> /home/build/core.sr.ht-0.65.6-1-g7d801d2/.pybuild/cpython3_3.8_srht/build/srht/templates
copying srht/templates/internal_error.html -> /home/build/core.sr.ht-0.65.6-1-g7d801d2/.pybuild/cpython3_3.8_srht/build/srht/templates
copying srht/templates/oauth-error.html -> /home/build/core.sr.ht-0.65.6-1-g7d801d2/.pybuild/cpython3_3.8_srht/build/srht/templates
creating /home/build/core.sr.ht-0.65.6-1-g7d801d2/.pybuild/cpython3_3.8_srht/build/srht/scss
copying srht/scss/icons.scss -> /home/build/core.sr.ht-0.65.6-1-g7d801d2/.pybuild/cpython3_3.8_srht/build/srht/scss
copying srht/scss/base.scss -> /home/build/core.sr.ht-0.65.6-1-g7d801d2/.pybuild/cpython3_3.8_srht/build/srht/scss
copying srht/scss/events.scss -> /home/build/core.sr.ht-0.65.6-1-g7d801d2/.pybuild/cpython3_3.8_srht/build/srht/scss
copying srht/scss/contrast.scss -> /home/build/core.sr.ht-0.65.6-1-g7d801d2/.pybuild/cpython3_3.8_srht/build/srht/scss
copying srht/scss/highlight.scss -> /home/build/core.sr.ht-0.65.6-1-g7d801d2/.pybuild/cpython3_3.8_srht/build/srht/scss
copying srht/scss/nav.scss -> /home/build/core.sr.ht-0.65.6-1-g7d801d2/.pybuild/cpython3_3.8_srht/build/srht/scss
copying srht/scss/variables.scss -> /home/build/core.sr.ht-0.65.6-1-g7d801d2/.pybuild/cpython3_3.8_srht/build/srht/scss
copying srht/scss/font-awesome.min.css -> /home/build/core.sr.ht-0.65.6-1-g7d801d2/.pybuild/cpython3_3.8_srht/build/srht/scss
creating /home/build/core.sr.ht-0.65.6-1-g7d801d2/.pybuild/cpython3_3.8_srht/build/srht/static
copying srht/static/codemirror.css -> /home/build/core.sr.ht-0.65.6-1-g7d801d2/.pybuild/cpython3_3.8_srht/build/srht/static
copying srht/static/codemirror.js -> /home/build/core.sr.ht-0.65.6-1-g7d801d2/.pybuild/cpython3_3.8_srht/build/srht/static
copying srht/static/simple.js -> /home/build/core.sr.ht-0.65.6-1-g7d801d2/.pybuild/cpython3_3.8_srht/build/srht/static
creating /home/build/core.sr.ht-0.65.6-1-g7d801d2/.pybuild/cpython3_3.8_srht/build/srht/static/icons
copying srht/static/icons/code-branch.svg -> /home/build/core.sr.ht-0.65.6-1-g7d801d2/.pybuild/cpython3_3.8_srht/build/srht/static/icons
copying srht/static/icons/circle-solid.svg -> /home/build/core.sr.ht-0.65.6-1-g7d801d2/.pybuild/cpython3_3.8_srht/build/srht/static/icons
copying srht/static/icons/plus-square.svg -> /home/build/core.sr.ht-0.65.6-1-g7d801d2/.pybuild/cpython3_3.8_srht/build/srht/static/icons
copying srht/static/icons/minus.svg -> /home/build/core.sr.ht-0.65.6-1-g7d801d2/.pybuild/cpython3_3.8_srht/build/srht/static/icons
copying srht/static/icons/external-link-alt.svg -> /home/build/core.sr.ht-0.65.6-1-g7d801d2/.pybuild/cpython3_3.8_srht/build/srht/static/icons
copying srht/static/icons/comments.svg -> /home/build/core.sr.ht-0.65.6-1-g7d801d2/.pybuild/cpython3_3.8_srht/build/srht/static/icons
copying srht/static/icons/envelope-o.svg -> /home/build/core.sr.ht-0.65.6-1-g7d801d2/.pybuild/cpython3_3.8_srht/build/srht/static/icons
copying srht/static/icons/README -> /home/build/core.sr.ht-0.65.6-1-g7d801d2/.pybuild/cpython3_3.8_srht/build/srht/static/icons
copying srht/static/icons/plus.svg -> /home/build/core.sr.ht-0.65.6-1-g7d801d2/.pybuild/cpython3_3.8_srht/build/srht/static/icons
copying srht/static/icons/arrow-right.svg -> /home/build/core.sr.ht-0.65.6-1-g7d801d2/.pybuild/cpython3_3.8_srht/build/srht/static/icons
copying srht/static/icons/caret-right.svg -> /home/build/core.sr.ht-0.65.6-1-g7d801d2/.pybuild/cpython3_3.8_srht/build/srht/static/icons
copying srht/static/icons/folder.svg -> /home/build/core.sr.ht-0.65.6-1-g7d801d2/.pybuild/cpython3_3.8_srht/build/srht/static/icons
copying srht/static/icons/check.svg -> /home/build/core.sr.ht-0.65.6-1-g7d801d2/.pybuild/cpython3_3.8_srht/build/srht/static/icons
copying srht/static/icons/comments-o.svg -> /home/build/core.sr.ht-0.65.6-1-g7d801d2/.pybuild/cpython3_3.8_srht/build/srht/static/icons
copying srht/static/icons/question-circle.svg -> /home/build/core.sr.ht-0.65.6-1-g7d801d2/.pybuild/cpython3_3.8_srht/build/srht/static/icons
copying srht/static/icons/exclamation-triangle.svg -> /home/build/core.sr.ht-0.65.6-1-g7d801d2/.pybuild/cpython3_3.8_srht/build/srht/static/icons
copying srht/static/icons/file-alt.svg -> /home/build/core.sr.ht-0.65.6-1-g7d801d2/.pybuild/cpython3_3.8_srht/build/srht/static/icons
copying srht/static/icons/file.svg -> /home/build/core.sr.ht-0.65.6-1-g7d801d2/.pybuild/cpython3_3.8_srht/build/srht/static/icons
copying srht/static/icons/times.svg -> /home/build/core.sr.ht-0.65.6-1-g7d801d2/.pybuild/cpython3_3.8_srht/build/srht/static/icons
copying srht/static/icons/user.svg -> /home/build/core.sr.ht-0.65.6-1-g7d801d2/.pybuild/cpython3_3.8_srht/build/srht/static/icons
copying srht/static/icons/clock.svg -> /home/build/core.sr.ht-0.65.6-1-g7d801d2/.pybuild/cpython3_3.8_srht/build/srht/static/icons
copying srht/static/icons/plus-circle.svg -> /home/build/core.sr.ht-0.65.6-1-g7d801d2/.pybuild/cpython3_3.8_srht/build/srht/static/icons
copying srht/static/icons/LICENSE.txt -> /home/build/core.sr.ht-0.65.6-1-g7d801d2/.pybuild/cpython3_3.8_srht/build/srht/static/icons
copying srht/static/icons/caret-left.svg -> /home/build/core.sr.ht-0.65.6-1-g7d801d2/.pybuild/cpython3_3.8_srht/build/srht/static/icons
copying srht/static/icons/rss.svg -> /home/build/core.sr.ht-0.65.6-1-g7d801d2/.pybuild/cpython3_3.8_srht/build/srht/static/icons
copying srht/static/icons/gitlab.svg -> /home/build/core.sr.ht-0.65.6-1-g7d801d2/.pybuild/cpython3_3.8_srht/build/srht/static/icons
copying srht/static/icons/reply.svg -> /home/build/core.sr.ht-0.65.6-1-g7d801d2/.pybuild/cpython3_3.8_srht/build/srht/static/icons
copying srht/static/icons/circle.svg -> /home/build/core.sr.ht-0.65.6-1-g7d801d2/.pybuild/cpython3_3.8_srht/build/srht/static/icons
copying srht/static/icons/circle-notch.svg -> /home/build/core.sr.ht-0.65.6-1-g7d801d2/.pybuild/cpython3_3.8_srht/build/srht/static/icons
copying srht/static/icons/github.svg -> /home/build/core.sr.ht-0.65.6-1-g7d801d2/.pybuild/cpython3_3.8_srht/build/srht/static/icons
running build_scripts
creating build/scripts-3.8
copying and adjusting srht-update-profiles -> build/scripts-3.8
copying and adjusting srht-migrate -> build/scripts-3.8
copying and adjusting srht-keygen -> build/scripts-3.8
changing mode of build/scripts-3.8/srht-update-profiles from 644 to 755
changing mode of build/scripts-3.8/srht-migrate from 644 to 755
changing mode of build/scripts-3.8/srht-keygen from 644 to 755
dh_auto_test -O--buildsystem=pybuild
create-stamp debian/debhelper-build-stamp
fakeroot debian/rules binary
dh binary --with python3 --buildsystem=pybuild
dh_testroot -O--buildsystem=pybuild
dh_prep -O--buildsystem=pybuild
dh_auto_install -O--buildsystem=pybuild
I: pybuild base:232: /usr/bin/python3.9 setup.py install --root /home/build/core.sr.ht-0.65.6-1-g7d801d2/debian/python3-srht
running install
running build
running build_py
package init file 'srht/alembic/__init__.py' not found (or not a regular file)
package init file 'srht/alembic/versions/__init__.py' not found (or not a regular file)
running build_scripts
running install_lib
creating /home/build/core.sr.ht-0.65.6-1-g7d801d2/debian/python3-srht/usr
creating /home/build/core.sr.ht-0.65.6-1-g7d801d2/debian/python3-srht/usr/lib
creating /home/build/core.sr.ht-0.65.6-1-g7d801d2/debian/python3-srht/usr/lib/python3.9
creating /home/build/core.sr.ht-0.65.6-1-g7d801d2/debian/python3-srht/usr/lib/python3.9/dist-packages
creating /home/build/core.sr.ht-0.65.6-1-g7d801d2/debian/python3-srht/usr/lib/python3.9/dist-packages/srht
creating /home/build/core.sr.ht-0.65.6-1-g7d801d2/debian/python3-srht/usr/lib/python3.9/dist-packages/srht/oauth
copying /home/build/core.sr.ht-0.65.6-1-g7d801d2/.pybuild/cpython3_3.9_srht/build/srht/oauth/token.py -> /home/build/core.sr.ht-0.65.6-1-g7d801d2/debian/python3-srht/usr/lib/python3.9/dist-packages/srht/oauth
copying /home/build/core.sr.ht-0.65.6-1-g7d801d2/.pybuild/cpython3_3.9_srht/build/srht/oauth/user.py -> /home/build/core.sr.ht-0.65.6-1-g7d801d2/debian/python3-srht/usr/lib/python3.9/dist-packages/srht/oauth
copying /home/build/core.sr.ht-0.65.6-1-g7d801d2/.pybuild/cpython3_3.9_srht/build/srht/oauth/decorator.py -> /home/build/core.sr.ht-0.65.6-1-g7d801d2/debian/python3-srht/usr/lib/python3.9/dist-packages/srht/oauth
copying /home/build/core.sr.ht-0.65.6-1-g7d801d2/.pybuild/cpython3_3.9_srht/build/srht/oauth/__init__.py -> /home/build/core.sr.ht-0.65.6-1-g7d801d2/debian/python3-srht/usr/lib/python3.9/dist-packages/srht/oauth
copying /home/build/core.sr.ht-0.65.6-1-g7d801d2/.pybuild/cpython3_3.9_srht/build/srht/oauth/blueprint.py -> /home/build/core.sr.ht-0.65.6-1-g7d801d2/debian/python3-srht/usr/lib/python3.9/dist-packages/srht/oauth
copying /home/build/core.sr.ht-0.65.6-1-g7d801d2/.pybuild/cpython3_3.9_srht/build/srht/oauth/scope.py -> /home/build/core.sr.ht-0.65.6-1-g7d801d2/debian/python3-srht/usr/lib/python3.9/dist-packages/srht/oauth
copying /home/build/core.sr.ht-0.65.6-1-g7d801d2/.pybuild/cpython3_3.9_srht/build/srht/oauth/client.py -> /home/build/core.sr.ht-0.65.6-1-g7d801d2/debian/python3-srht/usr/lib/python3.9/dist-packages/srht/oauth
copying /home/build/core.sr.ht-0.65.6-1-g7d801d2/.pybuild/cpython3_3.9_srht/build/srht/oauth/interface.py -> /home/build/core.sr.ht-0.65.6-1-g7d801d2/debian/python3-srht/usr/lib/python3.9/dist-packages/srht/oauth
copying /home/build/core.sr.ht-0.65.6-1-g7d801d2/.pybuild/cpython3_3.9_srht/build/srht/flask.py -> /home/build/core.sr.ht-0.65.6-1-g7d801d2/debian/python3-srht/usr/lib/python3.9/dist-packages/srht
creating /home/build/core.sr.ht-0.65.6-1-g7d801d2/debian/python3-srht/usr/lib/python3.9/dist-packages/srht/templates
copying /home/build/core.sr.ht-0.65.6-1-g7d801d2/.pybuild/cpython3_3.9_srht/build/srht/templates/layout.html -> /home/build/core.sr.ht-0.65.6-1-g7d801d2/debian/python3-srht/usr/lib/python3.9/dist-packages/srht/templates
copying /home/build/core.sr.ht-0.65.6-1-g7d801d2/.pybuild/cpython3_3.9_srht/build/srht/templates/suspended.html -> /home/build/core.sr.ht-0.65.6-1-g7d801d2/debian/python3-srht/usr/lib/python3.9/dist-packages/srht/templates
copying /home/build/core.sr.ht-0.65.6-1-g7d801d2/.pybuild/cpython3_3.9_srht/build/srht/templates/pagination.html -> /home/build/core.sr.ht-0.65.6-1-g7d801d2/debian/python3-srht/usr/lib/python3.9/dist-packages/srht/templates
copying /home/build/core.sr.ht-0.65.6-1-g7d801d2/.pybuild/cpython3_3.9_srht/build/srht/templates/read_only.html -> /home/build/core.sr.ht-0.65.6-1-g7d801d2/debian/python3-srht/usr/lib/python3.9/dist-packages/srht/templates
copying /home/build/core.sr.ht-0.65.6-1-g7d801d2/.pybuild/cpython3_3.9_srht/build/srht/templates/layout-full.html -> /home/build/core.sr.ht-0.65.6-1-g7d801d2/debian/python3-srht/usr/lib/python3.9/dist-packages/srht/templates
copying /home/build/core.sr.ht-0.65.6-1-g7d801d2/.pybuild/cpython3_3.9_srht/build/srht/templates/nav.html -> /home/build/core.sr.ht-0.65.6-1-g7d801d2/debian/python3-srht/usr/lib/python3.9/dist-packages/srht/templates
copying /home/build/core.sr.ht-0.65.6-1-g7d801d2/.pybuild/cpython3_3.9_srht/build/srht/templates/not_found.html -> /home/build/core.sr.ht-0.65.6-1-g7d801d2/debian/python3-srht/usr/lib/python3.9/dist-packages/srht/templates
copying /home/build/core.sr.ht-0.65.6-1-g7d801d2/.pybuild/cpython3_3.9_srht/build/srht/templates/graphql.html -> /home/build/core.sr.ht-0.65.6-1-g7d801d2/debian/python3-srht/usr/lib/python3.9/dist-packages/srht/templates
copying /home/build/core.sr.ht-0.65.6-1-g7d801d2/.pybuild/cpython3_3.9_srht/build/srht/templates/internal_error.html -> /home/build/core.sr.ht-0.65.6-1-g7d801d2/debian/python3-srht/usr/lib/python3.9/dist-packages/srht/templates
copying /home/build/core.sr.ht-0.65.6-1-g7d801d2/.pybuild/cpython3_3.9_srht/build/srht/templates/oauth-error.html -> /home/build/core.sr.ht-0.65.6-1-g7d801d2/debian/python3-srht/usr/lib/python3.9/dist-packages/srht/templates
copying /home/build/core.sr.ht-0.65.6-1-g7d801d2/.pybuild/cpython3_3.9_srht/build/srht/email.py -> /home/build/core.sr.ht-0.65.6-1-g7d801d2/debian/python3-srht/usr/lib/python3.9/dist-packages/srht
copying /home/build/core.sr.ht-0.65.6-1-g7d801d2/.pybuild/cpython3_3.9_srht/build/srht/redis.py -> /home/build/core.sr.ht-0.65.6-1-g7d801d2/debian/python3-srht/usr/lib/python3.9/dist-packages/srht
copying /home/build/core.sr.ht-0.65.6-1-g7d801d2/.pybuild/cpython3_3.9_srht/build/srht/debug.py -> /home/build/core.sr.ht-0.65.6-1-g7d801d2/debian/python3-srht/usr/lib/python3.9/dist-packages/srht
copying /home/build/core.sr.ht-0.65.6-1-g7d801d2/.pybuild/cpython3_3.9_srht/build/srht/crypto.py -> /home/build/core.sr.ht-0.65.6-1-g7d801d2/debian/python3-srht/usr/lib/python3.9/dist-packages/srht
copying /home/build/core.sr.ht-0.65.6-1-g7d801d2/.pybuild/cpython3_3.9_srht/build/srht/Makefile -> /home/build/core.sr.ht-0.65.6-1-g7d801d2/debian/python3-srht/usr/lib/python3.9/dist-packages/srht
copying /home/build/core.sr.ht-0.65.6-1-g7d801d2/.pybuild/cpython3_3.9_srht/build/srht/api.py -> /home/build/core.sr.ht-0.65.6-1-g7d801d2/debian/python3-srht/usr/lib/python3.9/dist-packages/srht
copying /home/build/core.sr.ht-0.65.6-1-g7d801d2/.pybuild/cpython3_3.9_srht/build/srht/cache.py -> /home/build/core.sr.ht-0.65.6-1-g7d801d2/debian/python3-srht/usr/lib/python3.9/dist-packages/srht
copying /home/build/core.sr.ht-0.65.6-1-g7d801d2/.pybuild/cpython3_3.9_srht/build/srht/flagtype.py -> /home/build/core.sr.ht-0.65.6-1-g7d801d2/debian/python3-srht/usr/lib/python3.9/dist-packages/srht
copying /home/build/core.sr.ht-0.65.6-1-g7d801d2/.pybuild/cpython3_3.9_srht/build/srht/gql_lexer.py -> /home/build/core.sr.ht-0.65.6-1-g7d801d2/debian/python3-srht/usr/lib/python3.9/dist-packages/srht
copying /home/build/core.sr.ht-0.65.6-1-g7d801d2/.pybuild/cpython3_3.9_srht/build/srht/config.py -> /home/build/core.sr.ht-0.65.6-1-g7d801d2/debian/python3-srht/usr/lib/python3.9/dist-packages/srht
copying /home/build/core.sr.ht-0.65.6-1-g7d801d2/.pybuild/cpython3_3.9_srht/build/srht/package.json -> /home/build/core.sr.ht-0.65.6-1-g7d801d2/debian/python3-srht/usr/lib/python3.9/dist-packages/srht
creating /home/build/core.sr.ht-0.65.6-1-g7d801d2/debian/python3-srht/usr/lib/python3.9/dist-packages/srht/webhook
copying /home/build/core.sr.ht-0.65.6-1-g7d801d2/.pybuild/cpython3_3.9_srht/build/srht/webhook/celery.py -> /home/build/core.sr.ht-0.65.6-1-g7d801d2/debian/python3-srht/usr/lib/python3.9/dist-packages/srht/webhook
copying /home/build/core.sr.ht-0.65.6-1-g7d801d2/.pybuild/cpython3_3.9_srht/build/srht/webhook/__init__.py -> /home/build/core.sr.ht-0.65.6-1-g7d801d2/debian/python3-srht/usr/lib/python3.9/dist-packages/srht/webhook
copying /home/build/core.sr.ht-0.65.6-1-g7d801d2/.pybuild/cpython3_3.9_srht/build/srht/webhook/webhook.py -> /home/build/core.sr.ht-0.65.6-1-g7d801d2/debian/python3-srht/usr/lib/python3.9/dist-packages/srht/webhook
copying /home/build/core.sr.ht-0.65.6-1-g7d801d2/.pybuild/cpython3_3.9_srht/build/srht/webhook/magic.py -> /home/build/core.sr.ht-0.65.6-1-g7d801d2/debian/python3-srht/usr/lib/python3.9/dist-packages/srht/webhook
copying /home/build/core.sr.ht-0.65.6-1-g7d801d2/.pybuild/cpython3_3.9_srht/build/srht/__init__.py -> /home/build/core.sr.ht-0.65.6-1-g7d801d2/debian/python3-srht/usr/lib/python3.9/dist-packages/srht
copying /home/build/core.sr.ht-0.65.6-1-g7d801d2/.pybuild/cpython3_3.9_srht/build/srht/markdown.py -> /home/build/core.sr.ht-0.65.6-1-g7d801d2/debian/python3-srht/usr/lib/python3.9/dist-packages/srht
creating /home/build/core.sr.ht-0.65.6-1-g7d801d2/debian/python3-srht/usr/lib/python3.9/dist-packages/srht/alembic
copying /home/build/core.sr.ht-0.65.6-1-g7d801d2/.pybuild/cpython3_3.9_srht/build/srht/alembic/env.py -> /home/build/core.sr.ht-0.65.6-1-g7d801d2/debian/python3-srht/usr/lib/python3.9/dist-packages/srht/alembic
creating /home/build/core.sr.ht-0.65.6-1-g7d801d2/debian/python3-srht/usr/lib/python3.9/dist-packages/srht/alembic/versions
copying /home/build/core.sr.ht-0.65.6-1-g7d801d2/.pybuild/cpython3_3.9_srht/build/srht/alembic/versions/5a62c0c174fd_remove_nullable_constraint_from_.py -> /home/build/core.sr.ht-0.65.6-1-g7d801d2/debian/python3-srht/usr/lib/python3.9/dist-packages/srht/alembic/versions
copying /home/build/core.sr.ht-0.65.6-1-g7d801d2/.pybuild/cpython3_3.9_srht/build/srht/alembic/versions/af06063a0edd_add_revocation_key_to_user.py -> /home/build/core.sr.ht-0.65.6-1-g7d801d2/debian/python3-srht/usr/lib/python3.9/dist-packages/srht/alembic/versions
copying /home/build/core.sr.ht-0.65.6-1-g7d801d2/.pybuild/cpython3_3.9_srht/build/srht/alembic/versions/4cba8deffa67_allow_external_users_to_have_null_.py -> /home/build/core.sr.ht-0.65.6-1-g7d801d2/debian/python3-srht/usr/lib/python3.9/dist-packages/srht/alembic/versions
copying /home/build/core.sr.ht-0.65.6-1-g7d801d2/.pybuild/cpython3_3.9_srht/build/srht/alembic/versions/fb50c54ea20e_add_suspension_notice_to_user.py -> /home/build/core.sr.ht-0.65.6-1-g7d801d2/debian/python3-srht/usr/lib/python3.9/dist-packages/srht/alembic/versions
copying /home/build/core.sr.ht-0.65.6-1-g7d801d2/.pybuild/cpython3_3.9_srht/build/srht/alembic/versions/0417a58bdaad_add_unique_constraint_to_username.py -> /home/build/core.sr.ht-0.65.6-1-g7d801d2/debian/python3-srht/usr/lib/python3.9/dist-packages/srht/alembic/versions
copying /home/build/core.sr.ht-0.65.6-1-g7d801d2/.pybuild/cpython3_3.9_srht/build/srht/alembic/versions/c19c3956974d_add_index_for_usernames.py -> /home/build/core.sr.ht-0.65.6-1-g7d801d2/debian/python3-srht/usr/lib/python3.9/dist-packages/srht/alembic/versions
creating /home/build/core.sr.ht-0.65.6-1-g7d801d2/debian/python3-srht/usr/lib/python3.9/dist-packages/srht/static
copying /home/build/core.sr.ht-0.65.6-1-g7d801d2/.pybuild/cpython3_3.9_srht/build/srht/static/codemirror.css -> /home/build/core.sr.ht-0.65.6-1-g7d801d2/debian/python3-srht/usr/lib/python3.9/dist-packages/srht/static
copying /home/build/core.sr.ht-0.65.6-1-g7d801d2/.pybuild/cpython3_3.9_srht/build/srht/static/codemirror.js -> /home/build/core.sr.ht-0.65.6-1-g7d801d2/debian/python3-srht/usr/lib/python3.9/dist-packages/srht/static
creating /home/build/core.sr.ht-0.65.6-1-g7d801d2/debian/python3-srht/usr/lib/python3.9/dist-packages/srht/static/icons
copying /home/build/core.sr.ht-0.65.6-1-g7d801d2/.pybuild/cpython3_3.9_srht/build/srht/static/icons/code-branch.svg -> /home/build/core.sr.ht-0.65.6-1-g7d801d2/debian/python3-srht/usr/lib/python3.9/dist-packages/srht/static/icons
copying /home/build/core.sr.ht-0.65.6-1-g7d801d2/.pybuild/cpython3_3.9_srht/build/srht/static/icons/circle-solid.svg -> /home/build/core.sr.ht-0.65.6-1-g7d801d2/debian/python3-srht/usr/lib/python3.9/dist-packages/srht/static/icons
copying /home/build/core.sr.ht-0.65.6-1-g7d801d2/.pybuild/cpython3_3.9_srht/build/srht/static/icons/plus-square.svg -> /home/build/core.sr.ht-0.65.6-1-g7d801d2/debian/python3-srht/usr/lib/python3.9/dist-packages/srht/static/icons
copying /home/build/core.sr.ht-0.65.6-1-g7d801d2/.pybuild/cpython3_3.9_srht/build/srht/static/icons/minus.svg -> /home/build/core.sr.ht-0.65.6-1-g7d801d2/debian/python3-srht/usr/lib/python3.9/dist-packages/srht/static/icons
copying /home/build/core.sr.ht-0.65.6-1-g7d801d2/.pybuild/cpython3_3.9_srht/build/srht/static/icons/external-link-alt.svg -> /home/build/core.sr.ht-0.65.6-1-g7d801d2/debian/python3-srht/usr/lib/python3.9/dist-packages/srht/static/icons
copying /home/build/core.sr.ht-0.65.6-1-g7d801d2/.pybuild/cpython3_3.9_srht/build/srht/static/icons/comments.svg -> /home/build/core.sr.ht-0.65.6-1-g7d801d2/debian/python3-srht/usr/lib/python3.9/dist-packages/srht/static/icons
copying /home/build/core.sr.ht-0.65.6-1-g7d801d2/.pybuild/cpython3_3.9_srht/build/srht/static/icons/envelope-o.svg -> /home/build/core.sr.ht-0.65.6-1-g7d801d2/debian/python3-srht/usr/lib/python3.9/dist-packages/srht/static/icons
copying /home/build/core.sr.ht-0.65.6-1-g7d801d2/.pybuild/cpython3_3.9_srht/build/srht/static/icons/README -> /home/build/core.sr.ht-0.65.6-1-g7d801d2/debian/python3-srht/usr/lib/python3.9/dist-packages/srht/static/icons
copying /home/build/core.sr.ht-0.65.6-1-g7d801d2/.pybuild/cpython3_3.9_srht/build/srht/static/icons/plus.svg -> /home/build/core.sr.ht-0.65.6-1-g7d801d2/debian/python3-srht/usr/lib/python3.9/dist-packages/srht/static/icons
copying /home/build/core.sr.ht-0.65.6-1-g7d801d2/.pybuild/cpython3_3.9_srht/build/srht/static/icons/arrow-right.svg -> /home/build/core.sr.ht-0.65.6-1-g7d801d2/debian/python3-srht/usr/lib/python3.9/dist-packages/srht/static/icons
copying /home/build/core.sr.ht-0.65.6-1-g7d801d2/.pybuild/cpython3_3.9_srht/build/srht/static/icons/caret-right.svg -> /home/build/core.sr.ht-0.65.6-1-g7d801d2/debian/python3-srht/usr/lib/python3.9/dist-packages/srht/static/icons
copying /home/build/core.sr.ht-0.65.6-1-g7d801d2/.pybuild/cpython3_3.9_srht/build/srht/static/icons/folder.svg -> /home/build/core.sr.ht-0.65.6-1-g7d801d2/debian/python3-srht/usr/lib/python3.9/dist-packages/srht/static/icons
copying /home/build/core.sr.ht-0.65.6-1-g7d801d2/.pybuild/cpython3_3.9_srht/build/srht/static/icons/check.svg -> /home/build/core.sr.ht-0.65.6-1-g7d801d2/debian/python3-srht/usr/lib/python3.9/dist-packages/srht/static/icons
copying /home/build/core.sr.ht-0.65.6-1-g7d801d2/.pybuild/cpython3_3.9_srht/build/srht/static/icons/comments-o.svg -> /home/build/core.sr.ht-0.65.6-1-g7d801d2/debian/python3-srht/usr/lib/python3.9/dist-packages/srht/static/icons
copying /home/build/core.sr.ht-0.65.6-1-g7d801d2/.pybuild/cpython3_3.9_srht/build/srht/static/icons/question-circle.svg -> /home/build/core.sr.ht-0.65.6-1-g7d801d2/debian/python3-srht/usr/lib/python3.9/dist-packages/srht/static/icons
copying /home/build/core.sr.ht-0.65.6-1-g7d801d2/.pybuild/cpython3_3.9_srht/build/srht/static/icons/exclamation-triangle.svg -> /home/build/core.sr.ht-0.65.6-1-g7d801d2/debian/python3-srht/usr/lib/python3.9/dist-packages/srht/static/icons
copying /home/build/core.sr.ht-0.65.6-1-g7d801d2/.pybuild/cpython3_3.9_srht/build/srht/static/icons/file-alt.svg -> /home/build/core.sr.ht-0.65.6-1-g7d801d2/debian/python3-srht/usr/lib/python3.9/dist-packages/srht/static/icons
copying /home/build/core.sr.ht-0.65.6-1-g7d801d2/.pybuild/cpython3_3.9_srht/build/srht/static/icons/file.svg -> /home/build/core.sr.ht-0.65.6-1-g7d801d2/debian/python3-srht/usr/lib/python3.9/dist-packages/srht/static/icons
copying /home/build/core.sr.ht-0.65.6-1-g7d801d2/.pybuild/cpython3_3.9_srht/build/srht/static/icons/times.svg -> /home/build/core.sr.ht-0.65.6-1-g7d801d2/debian/python3-srht/usr/lib/python3.9/dist-packages/srht/static/icons
copying /home/build/core.sr.ht-0.65.6-1-g7d801d2/.pybuild/cpython3_3.9_srht/build/srht/static/icons/user.svg -> /home/build/core.sr.ht-0.65.6-1-g7d801d2/debian/python3-srht/usr/lib/python3.9/dist-packages/srht/static/icons
copying /home/build/core.sr.ht-0.65.6-1-g7d801d2/.pybuild/cpython3_3.9_srht/build/srht/static/icons/clock.svg -> /home/build/core.sr.ht-0.65.6-1-g7d801d2/debian/python3-srht/usr/lib/python3.9/dist-packages/srht/static/icons
copying /home/build/core.sr.ht-0.65.6-1-g7d801d2/.pybuild/cpython3_3.9_srht/build/srht/static/icons/plus-circle.svg -> /home/build/core.sr.ht-0.65.6-1-g7d801d2/debian/python3-srht/usr/lib/python3.9/dist-packages/srht/static/icons
copying /home/build/core.sr.ht-0.65.6-1-g7d801d2/.pybuild/cpython3_3.9_srht/build/srht/static/icons/LICENSE.txt -> /home/build/core.sr.ht-0.65.6-1-g7d801d2/debian/python3-srht/usr/lib/python3.9/dist-packages/srht/static/icons
copying /home/build/core.sr.ht-0.65.6-1-g7d801d2/.pybuild/cpython3_3.9_srht/build/srht/static/icons/caret-left.svg -> /home/build/core.sr.ht-0.65.6-1-g7d801d2/debian/python3-srht/usr/lib/python3.9/dist-packages/srht/static/icons
copying /home/build/core.sr.ht-0.65.6-1-g7d801d2/.pybuild/cpython3_3.9_srht/build/srht/static/icons/rss.svg -> /home/build/core.sr.ht-0.65.6-1-g7d801d2/debian/python3-srht/usr/lib/python3.9/dist-packages/srht/static/icons
copying /home/build/core.sr.ht-0.65.6-1-g7d801d2/.pybuild/cpython3_3.9_srht/build/srht/static/icons/gitlab.svg -> /home/build/core.sr.ht-0.65.6-1-g7d801d2/debian/python3-srht/usr/lib/python3.9/dist-packages/srht/static/icons
copying /home/build/core.sr.ht-0.65.6-1-g7d801d2/.pybuild/cpython3_3.9_srht/build/srht/static/icons/reply.svg -> /home/build/core.sr.ht-0.65.6-1-g7d801d2/debian/python3-srht/usr/lib/python3.9/dist-packages/srht/static/icons
copying /home/build/core.sr.ht-0.65.6-1-g7d801d2/.pybuild/cpython3_3.9_srht/build/srht/static/icons/circle.svg -> /home/build/core.sr.ht-0.65.6-1-g7d801d2/debian/python3-srht/usr/lib/python3.9/dist-packages/srht/static/icons
copying /home/build/core.sr.ht-0.65.6-1-g7d801d2/.pybuild/cpython3_3.9_srht/build/srht/static/icons/circle-notch.svg -> /home/build/core.sr.ht-0.65.6-1-g7d801d2/debian/python3-srht/usr/lib/python3.9/dist-packages/srht/static/icons
copying /home/build/core.sr.ht-0.65.6-1-g7d801d2/.pybuild/cpython3_3.9_srht/build/srht/static/icons/github.svg -> /home/build/core.sr.ht-0.65.6-1-g7d801d2/debian/python3-srht/usr/lib/python3.9/dist-packages/srht/static/icons
copying /home/build/core.sr.ht-0.65.6-1-g7d801d2/.pybuild/cpython3_3.9_srht/build/srht/static/simple.js -> /home/build/core.sr.ht-0.65.6-1-g7d801d2/debian/python3-srht/usr/lib/python3.9/dist-packages/srht/static
copying /home/build/core.sr.ht-0.65.6-1-g7d801d2/.pybuild/cpython3_3.9_srht/build/srht/database.py -> /home/build/core.sr.ht-0.65.6-1-g7d801d2/debian/python3-srht/usr/lib/python3.9/dist-packages/srht
copying /home/build/core.sr.ht-0.65.6-1-g7d801d2/.pybuild/cpython3_3.9_srht/build/srht/urlify.py -> /home/build/core.sr.ht-0.65.6-1-g7d801d2/debian/python3-srht/usr/lib/python3.9/dist-packages/srht
copying /home/build/core.sr.ht-0.65.6-1-g7d801d2/.pybuild/cpython3_3.9_srht/build/srht/validation.py -> /home/build/core.sr.ht-0.65.6-1-g7d801d2/debian/python3-srht/usr/lib/python3.9/dist-packages/srht
copying /home/build/core.sr.ht-0.65.6-1-g7d801d2/.pybuild/cpython3_3.9_srht/build/srht/graphql.py -> /home/build/core.sr.ht-0.65.6-1-g7d801d2/debian/python3-srht/usr/lib/python3.9/dist-packages/srht
copying /home/build/core.sr.ht-0.65.6-1-g7d801d2/.pybuild/cpython3_3.9_srht/build/srht/search.py -> /home/build/core.sr.ht-0.65.6-1-g7d801d2/debian/python3-srht/usr/lib/python3.9/dist-packages/srht
creating /home/build/core.sr.ht-0.65.6-1-g7d801d2/debian/python3-srht/usr/lib/python3.9/dist-packages/srht/scss
copying /home/build/core.sr.ht-0.65.6-1-g7d801d2/.pybuild/cpython3_3.9_srht/build/srht/scss/icons.scss -> /home/build/core.sr.ht-0.65.6-1-g7d801d2/debian/python3-srht/usr/lib/python3.9/dist-packages/srht/scss
copying /home/build/core.sr.ht-0.65.6-1-g7d801d2/.pybuild/cpython3_3.9_srht/build/srht/scss/base.scss -> /home/build/core.sr.ht-0.65.6-1-g7d801d2/debian/python3-srht/usr/lib/python3.9/dist-packages/srht/scss
copying /home/build/core.sr.ht-0.65.6-1-g7d801d2/.pybuild/cpython3_3.9_srht/build/srht/scss/events.scss -> /home/build/core.sr.ht-0.65.6-1-g7d801d2/debian/python3-srht/usr/lib/python3.9/dist-packages/srht/scss
copying /home/build/core.sr.ht-0.65.6-1-g7d801d2/.pybuild/cpython3_3.9_srht/build/srht/scss/font-awesome.min.css -> /home/build/core.sr.ht-0.65.6-1-g7d801d2/debian/python3-srht/usr/lib/python3.9/dist-packages/srht/scss
copying /home/build/core.sr.ht-0.65.6-1-g7d801d2/.pybuild/cpython3_3.9_srht/build/srht/scss/contrast.scss -> /home/build/core.sr.ht-0.65.6-1-g7d801d2/debian/python3-srht/usr/lib/python3.9/dist-packages/srht/scss
copying /home/build/core.sr.ht-0.65.6-1-g7d801d2/.pybuild/cpython3_3.9_srht/build/srht/scss/highlight.scss -> /home/build/core.sr.ht-0.65.6-1-g7d801d2/debian/python3-srht/usr/lib/python3.9/dist-packages/srht/scss
copying /home/build/core.sr.ht-0.65.6-1-g7d801d2/.pybuild/cpython3_3.9_srht/build/srht/scss/nav.scss -> /home/build/core.sr.ht-0.65.6-1-g7d801d2/debian/python3-srht/usr/lib/python3.9/dist-packages/srht/scss
copying /home/build/core.sr.ht-0.65.6-1-g7d801d2/.pybuild/cpython3_3.9_srht/build/srht/scss/variables.scss -> /home/build/core.sr.ht-0.65.6-1-g7d801d2/debian/python3-srht/usr/lib/python3.9/dist-packages/srht/scss
byte-compiling /home/build/core.sr.ht-0.65.6-1-g7d801d2/debian/python3-srht/usr/lib/python3.9/dist-packages/srht/oauth/token.py to token.cpython-39.pyc
byte-compiling /home/build/core.sr.ht-0.65.6-1-g7d801d2/debian/python3-srht/usr/lib/python3.9/dist-packages/srht/oauth/user.py to user.cpython-39.pyc
byte-compiling /home/build/core.sr.ht-0.65.6-1-g7d801d2/debian/python3-srht/usr/lib/python3.9/dist-packages/srht/oauth/decorator.py to decorator.cpython-39.pyc
byte-compiling /home/build/core.sr.ht-0.65.6-1-g7d801d2/debian/python3-srht/usr/lib/python3.9/dist-packages/srht/oauth/__init__.py to __init__.cpython-39.pyc
byte-compiling /home/build/core.sr.ht-0.65.6-1-g7d801d2/debian/python3-srht/usr/lib/python3.9/dist-packages/srht/oauth/blueprint.py to blueprint.cpython-39.pyc
byte-compiling /home/build/core.sr.ht-0.65.6-1-g7d801d2/debian/python3-srht/usr/lib/python3.9/dist-packages/srht/oauth/scope.py to scope.cpython-39.pyc
byte-compiling /home/build/core.sr.ht-0.65.6-1-g7d801d2/debian/python3-srht/usr/lib/python3.9/dist-packages/srht/oauth/client.py to client.cpython-39.pyc
byte-compiling /home/build/core.sr.ht-0.65.6-1-g7d801d2/debian/python3-srht/usr/lib/python3.9/dist-packages/srht/oauth/interface.py to interface.cpython-39.pyc
byte-compiling /home/build/core.sr.ht-0.65.6-1-g7d801d2/debian/python3-srht/usr/lib/python3.9/dist-packages/srht/flask.py to flask.cpython-39.pyc
byte-compiling /home/build/core.sr.ht-0.65.6-1-g7d801d2/debian/python3-srht/usr/lib/python3.9/dist-packages/srht/email.py to email.cpython-39.pyc
byte-compiling /home/build/core.sr.ht-0.65.6-1-g7d801d2/debian/python3-srht/usr/lib/python3.9/dist-packages/srht/redis.py to redis.cpython-39.pyc
byte-compiling /home/build/core.sr.ht-0.65.6-1-g7d801d2/debian/python3-srht/usr/lib/python3.9/dist-packages/srht/debug.py to debug.cpython-39.pyc
byte-compiling /home/build/core.sr.ht-0.65.6-1-g7d801d2/debian/python3-srht/usr/lib/python3.9/dist-packages/srht/crypto.py to crypto.cpython-39.pyc
byte-compiling /home/build/core.sr.ht-0.65.6-1-g7d801d2/debian/python3-srht/usr/lib/python3.9/dist-packages/srht/api.py to api.cpython-39.pyc
byte-compiling /home/build/core.sr.ht-0.65.6-1-g7d801d2/debian/python3-srht/usr/lib/python3.9/dist-packages/srht/cache.py to cache.cpython-39.pyc
byte-compiling /home/build/core.sr.ht-0.65.6-1-g7d801d2/debian/python3-srht/usr/lib/python3.9/dist-packages/srht/flagtype.py to flagtype.cpython-39.pyc
byte-compiling /home/build/core.sr.ht-0.65.6-1-g7d801d2/debian/python3-srht/usr/lib/python3.9/dist-packages/srht/gql_lexer.py to gql_lexer.cpython-39.pyc
byte-compiling /home/build/core.sr.ht-0.65.6-1-g7d801d2/debian/python3-srht/usr/lib/python3.9/dist-packages/srht/config.py to config.cpython-39.pyc
byte-compiling /home/build/core.sr.ht-0.65.6-1-g7d801d2/debian/python3-srht/usr/lib/python3.9/dist-packages/srht/webhook/celery.py to celery.cpython-39.pyc
byte-compiling /home/build/core.sr.ht-0.65.6-1-g7d801d2/debian/python3-srht/usr/lib/python3.9/dist-packages/srht/webhook/__init__.py to __init__.cpython-39.pyc
byte-compiling /home/build/core.sr.ht-0.65.6-1-g7d801d2/debian/python3-srht/usr/lib/python3.9/dist-packages/srht/webhook/webhook.py to webhook.cpython-39.pyc
byte-compiling /home/build/core.sr.ht-0.65.6-1-g7d801d2/debian/python3-srht/usr/lib/python3.9/dist-packages/srht/webhook/magic.py to magic.cpython-39.pyc
byte-compiling /home/build/core.sr.ht-0.65.6-1-g7d801d2/debian/python3-srht/usr/lib/python3.9/dist-packages/srht/__init__.py to __init__.cpython-39.pyc
byte-compiling /home/build/core.sr.ht-0.65.6-1-g7d801d2/debian/python3-srht/usr/lib/python3.9/dist-packages/srht/markdown.py to markdown.cpython-39.pyc
byte-compiling /home/build/core.sr.ht-0.65.6-1-g7d801d2/debian/python3-srht/usr/lib/python3.9/dist-packages/srht/alembic/env.py to env.cpython-39.pyc
byte-compiling /home/build/core.sr.ht-0.65.6-1-g7d801d2/debian/python3-srht/usr/lib/python3.9/dist-packages/srht/alembic/versions/5a62c0c174fd_remove_nullable_constraint_from_.py to 5a62c0c174fd_remove_nullable_constraint_from_.cpython-39.pyc
byte-compiling /home/build/core.sr.ht-0.65.6-1-g7d801d2/debian/python3-srht/usr/lib/python3.9/dist-packages/srht/alembic/versions/af06063a0edd_add_revocation_key_to_user.py to af06063a0edd_add_revocation_key_to_user.cpython-39.pyc
byte-compiling /home/build/core.sr.ht-0.65.6-1-g7d801d2/debian/python3-srht/usr/lib/python3.9/dist-packages/srht/alembic/versions/4cba8deffa67_allow_external_users_to_have_null_.py to 4cba8deffa67_allow_external_users_to_have_null_.cpython-39.pyc
byte-compiling /home/build/core.sr.ht-0.65.6-1-g7d801d2/debian/python3-srht/usr/lib/python3.9/dist-packages/srht/alembic/versions/fb50c54ea20e_add_suspension_notice_to_user.py to fb50c54ea20e_add_suspension_notice_to_user.cpython-39.pyc
byte-compiling /home/build/core.sr.ht-0.65.6-1-g7d801d2/debian/python3-srht/usr/lib/python3.9/dist-packages/srht/alembic/versions/0417a58bdaad_add_unique_constraint_to_username.py to 0417a58bdaad_add_unique_constraint_to_username.cpython-39.pyc
byte-compiling /home/build/core.sr.ht-0.65.6-1-g7d801d2/debian/python3-srht/usr/lib/python3.9/dist-packages/srht/alembic/versions/c19c3956974d_add_index_for_usernames.py to c19c3956974d_add_index_for_usernames.cpython-39.pyc
byte-compiling /home/build/core.sr.ht-0.65.6-1-g7d801d2/debian/python3-srht/usr/lib/python3.9/dist-packages/srht/database.py to database.cpython-39.pyc
byte-compiling /home/build/core.sr.ht-0.65.6-1-g7d801d2/debian/python3-srht/usr/lib/python3.9/dist-packages/srht/urlify.py to urlify.cpython-39.pyc
byte-compiling /home/build/core.sr.ht-0.65.6-1-g7d801d2/debian/python3-srht/usr/lib/python3.9/dist-packages/srht/validation.py to validation.cpython-39.pyc
byte-compiling /home/build/core.sr.ht-0.65.6-1-g7d801d2/debian/python3-srht/usr/lib/python3.9/dist-packages/srht/graphql.py to graphql.cpython-39.pyc
byte-compiling /home/build/core.sr.ht-0.65.6-1-g7d801d2/debian/python3-srht/usr/lib/python3.9/dist-packages/srht/search.py to search.cpython-39.pyc
running install_egg_info
running egg_info
creating srht.egg-info
writing srht.egg-info/PKG-INFO
writing dependency_links to srht.egg-info/dependency_links.txt
writing requirements to srht.egg-info/requires.txt
writing top-level names to srht.egg-info/top_level.txt
writing manifest file 'srht.egg-info/SOURCES.txt'
reading manifest file 'srht.egg-info/SOURCES.txt'
writing manifest file 'srht.egg-info/SOURCES.txt'
Copying srht.egg-info to /home/build/core.sr.ht-0.65.6-1-g7d801d2/debian/python3-srht/usr/lib/python3.9/dist-packages/srht-0.65.6.egg-info
Skipping SOURCES.txt
running install_scripts
creating /home/build/core.sr.ht-0.65.6-1-g7d801d2/debian/python3-srht/usr/bin
copying build/scripts-3.9/srht-keygen -> /home/build/core.sr.ht-0.65.6-1-g7d801d2/debian/python3-srht/usr/bin
copying build/scripts-3.9/srht-migrate -> /home/build/core.sr.ht-0.65.6-1-g7d801d2/debian/python3-srht/usr/bin
copying build/scripts-3.9/srht-update-profiles -> /home/build/core.sr.ht-0.65.6-1-g7d801d2/debian/python3-srht/usr/bin
changing mode of /home/build/core.sr.ht-0.65.6-1-g7d801d2/debian/python3-srht/usr/bin/srht-keygen to 755
changing mode of /home/build/core.sr.ht-0.65.6-1-g7d801d2/debian/python3-srht/usr/bin/srht-migrate to 755
changing mode of /home/build/core.sr.ht-0.65.6-1-g7d801d2/debian/python3-srht/usr/bin/srht-update-profiles to 755
I: pybuild base:232: /usr/bin/python3 setup.py install --root /home/build/core.sr.ht-0.65.6-1-g7d801d2/debian/python3-srht
running install
running build
running build_py
package init file 'srht/alembic/__init__.py' not found (or not a regular file)
package init file 'srht/alembic/versions/__init__.py' not found (or not a regular file)
running build_scripts
running install_lib
creating /home/build/core.sr.ht-0.65.6-1-g7d801d2/debian/python3-srht/usr/lib/python3.8
creating /home/build/core.sr.ht-0.65.6-1-g7d801d2/debian/python3-srht/usr/lib/python3.8/dist-packages
creating /home/build/core.sr.ht-0.65.6-1-g7d801d2/debian/python3-srht/usr/lib/python3.8/dist-packages/srht
creating /home/build/core.sr.ht-0.65.6-1-g7d801d2/debian/python3-srht/usr/lib/python3.8/dist-packages/srht/oauth
copying /home/build/core.sr.ht-0.65.6-1-g7d801d2/.pybuild/cpython3_3.8_srht/build/srht/oauth/token.py -> /home/build/core.sr.ht-0.65.6-1-g7d801d2/debian/python3-srht/usr/lib/python3.8/dist-packages/srht/oauth
copying /home/build/core.sr.ht-0.65.6-1-g7d801d2/.pybuild/cpython3_3.8_srht/build/srht/oauth/user.py -> /home/build/core.sr.ht-0.65.6-1-g7d801d2/debian/python3-srht/usr/lib/python3.8/dist-packages/srht/oauth
copying /home/build/core.sr.ht-0.65.6-1-g7d801d2/.pybuild/cpython3_3.8_srht/build/srht/oauth/decorator.py -> /home/build/core.sr.ht-0.65.6-1-g7d801d2/debian/python3-srht/usr/lib/python3.8/dist-packages/srht/oauth
copying /home/build/core.sr.ht-0.65.6-1-g7d801d2/.pybuild/cpython3_3.8_srht/build/srht/oauth/__init__.py -> /home/build/core.sr.ht-0.65.6-1-g7d801d2/debian/python3-srht/usr/lib/python3.8/dist-packages/srht/oauth
copying /home/build/core.sr.ht-0.65.6-1-g7d801d2/.pybuild/cpython3_3.8_srht/build/srht/oauth/blueprint.py -> /home/build/core.sr.ht-0.65.6-1-g7d801d2/debian/python3-srht/usr/lib/python3.8/dist-packages/srht/oauth
copying /home/build/core.sr.ht-0.65.6-1-g7d801d2/.pybuild/cpython3_3.8_srht/build/srht/oauth/scope.py -> /home/build/core.sr.ht-0.65.6-1-g7d801d2/debian/python3-srht/usr/lib/python3.8/dist-packages/srht/oauth
copying /home/build/core.sr.ht-0.65.6-1-g7d801d2/.pybuild/cpython3_3.8_srht/build/srht/oauth/client.py -> /home/build/core.sr.ht-0.65.6-1-g7d801d2/debian/python3-srht/usr/lib/python3.8/dist-packages/srht/oauth
copying /home/build/core.sr.ht-0.65.6-1-g7d801d2/.pybuild/cpython3_3.8_srht/build/srht/oauth/interface.py -> /home/build/core.sr.ht-0.65.6-1-g7d801d2/debian/python3-srht/usr/lib/python3.8/dist-packages/srht/oauth
copying /home/build/core.sr.ht-0.65.6-1-g7d801d2/.pybuild/cpython3_3.8_srht/build/srht/flask.py -> /home/build/core.sr.ht-0.65.6-1-g7d801d2/debian/python3-srht/usr/lib/python3.8/dist-packages/srht
creating /home/build/core.sr.ht-0.65.6-1-g7d801d2/debian/python3-srht/usr/lib/python3.8/dist-packages/srht/templates
copying /home/build/core.sr.ht-0.65.6-1-g7d801d2/.pybuild/cpython3_3.8_srht/build/srht/templates/layout.html -> /home/build/core.sr.ht-0.65.6-1-g7d801d2/debian/python3-srht/usr/lib/python3.8/dist-packages/srht/templates
copying /home/build/core.sr.ht-0.65.6-1-g7d801d2/.pybuild/cpython3_3.8_srht/build/srht/templates/suspended.html -> /home/build/core.sr.ht-0.65.6-1-g7d801d2/debian/python3-srht/usr/lib/python3.8/dist-packages/srht/templates
copying /home/build/core.sr.ht-0.65.6-1-g7d801d2/.pybuild/cpython3_3.8_srht/build/srht/templates/pagination.html -> /home/build/core.sr.ht-0.65.6-1-g7d801d2/debian/python3-srht/usr/lib/python3.8/dist-packages/srht/templates
copying /home/build/core.sr.ht-0.65.6-1-g7d801d2/.pybuild/cpython3_3.8_srht/build/srht/templates/read_only.html -> /home/build/core.sr.ht-0.65.6-1-g7d801d2/debian/python3-srht/usr/lib/python3.8/dist-packages/srht/templates
copying /home/build/core.sr.ht-0.65.6-1-g7d801d2/.pybuild/cpython3_3.8_srht/build/srht/templates/layout-full.html -> /home/build/core.sr.ht-0.65.6-1-g7d801d2/debian/python3-srht/usr/lib/python3.8/dist-packages/srht/templates
copying /home/build/core.sr.ht-0.65.6-1-g7d801d2/.pybuild/cpython3_3.8_srht/build/srht/templates/nav.html -> /home/build/core.sr.ht-0.65.6-1-g7d801d2/debian/python3-srht/usr/lib/python3.8/dist-packages/srht/templates
copying /home/build/core.sr.ht-0.65.6-1-g7d801d2/.pybuild/cpython3_3.8_srht/build/srht/templates/not_found.html -> /home/build/core.sr.ht-0.65.6-1-g7d801d2/debian/python3-srht/usr/lib/python3.8/dist-packages/srht/templates
copying /home/build/core.sr.ht-0.65.6-1-g7d801d2/.pybuild/cpython3_3.8_srht/build/srht/templates/graphql.html -> /home/build/core.sr.ht-0.65.6-1-g7d801d2/debian/python3-srht/usr/lib/python3.8/dist-packages/srht/templates
copying /home/build/core.sr.ht-0.65.6-1-g7d801d2/.pybuild/cpython3_3.8_srht/build/srht/templates/internal_error.html -> /home/build/core.sr.ht-0.65.6-1-g7d801d2/debian/python3-srht/usr/lib/python3.8/dist-packages/srht/templates
copying /home/build/core.sr.ht-0.65.6-1-g7d801d2/.pybuild/cpython3_3.8_srht/build/srht/templates/oauth-error.html -> /home/build/core.sr.ht-0.65.6-1-g7d801d2/debian/python3-srht/usr/lib/python3.8/dist-packages/srht/templates
copying /home/build/core.sr.ht-0.65.6-1-g7d801d2/.pybuild/cpython3_3.8_srht/build/srht/email.py -> /home/build/core.sr.ht-0.65.6-1-g7d801d2/debian/python3-srht/usr/lib/python3.8/dist-packages/srht
copying /home/build/core.sr.ht-0.65.6-1-g7d801d2/.pybuild/cpython3_3.8_srht/build/srht/redis.py -> /home/build/core.sr.ht-0.65.6-1-g7d801d2/debian/python3-srht/usr/lib/python3.8/dist-packages/srht
copying /home/build/core.sr.ht-0.65.6-1-g7d801d2/.pybuild/cpython3_3.8_srht/build/srht/debug.py -> /home/build/core.sr.ht-0.65.6-1-g7d801d2/debian/python3-srht/usr/lib/python3.8/dist-packages/srht
copying /home/build/core.sr.ht-0.65.6-1-g7d801d2/.pybuild/cpython3_3.8_srht/build/srht/crypto.py -> /home/build/core.sr.ht-0.65.6-1-g7d801d2/debian/python3-srht/usr/lib/python3.8/dist-packages/srht
copying /home/build/core.sr.ht-0.65.6-1-g7d801d2/.pybuild/cpython3_3.8_srht/build/srht/Makefile -> /home/build/core.sr.ht-0.65.6-1-g7d801d2/debian/python3-srht/usr/lib/python3.8/dist-packages/srht
copying /home/build/core.sr.ht-0.65.6-1-g7d801d2/.pybuild/cpython3_3.8_srht/build/srht/api.py -> /home/build/core.sr.ht-0.65.6-1-g7d801d2/debian/python3-srht/usr/lib/python3.8/dist-packages/srht
copying /home/build/core.sr.ht-0.65.6-1-g7d801d2/.pybuild/cpython3_3.8_srht/build/srht/cache.py -> /home/build/core.sr.ht-0.65.6-1-g7d801d2/debian/python3-srht/usr/lib/python3.8/dist-packages/srht
copying /home/build/core.sr.ht-0.65.6-1-g7d801d2/.pybuild/cpython3_3.8_srht/build/srht/flagtype.py -> /home/build/core.sr.ht-0.65.6-1-g7d801d2/debian/python3-srht/usr/lib/python3.8/dist-packages/srht
copying /home/build/core.sr.ht-0.65.6-1-g7d801d2/.pybuild/cpython3_3.8_srht/build/srht/gql_lexer.py -> /home/build/core.sr.ht-0.65.6-1-g7d801d2/debian/python3-srht/usr/lib/python3.8/dist-packages/srht
copying /home/build/core.sr.ht-0.65.6-1-g7d801d2/.pybuild/cpython3_3.8_srht/build/srht/config.py -> /home/build/core.sr.ht-0.65.6-1-g7d801d2/debian/python3-srht/usr/lib/python3.8/dist-packages/srht
copying /home/build/core.sr.ht-0.65.6-1-g7d801d2/.pybuild/cpython3_3.8_srht/build/srht/package.json -> /home/build/core.sr.ht-0.65.6-1-g7d801d2/debian/python3-srht/usr/lib/python3.8/dist-packages/srht
creating /home/build/core.sr.ht-0.65.6-1-g7d801d2/debian/python3-srht/usr/lib/python3.8/dist-packages/srht/webhook
copying /home/build/core.sr.ht-0.65.6-1-g7d801d2/.pybuild/cpython3_3.8_srht/build/srht/webhook/celery.py -> /home/build/core.sr.ht-0.65.6-1-g7d801d2/debian/python3-srht/usr/lib/python3.8/dist-packages/srht/webhook
copying /home/build/core.sr.ht-0.65.6-1-g7d801d2/.pybuild/cpython3_3.8_srht/build/srht/webhook/__init__.py -> /home/build/core.sr.ht-0.65.6-1-g7d801d2/debian/python3-srht/usr/lib/python3.8/dist-packages/srht/webhook
copying /home/build/core.sr.ht-0.65.6-1-g7d801d2/.pybuild/cpython3_3.8_srht/build/srht/webhook/webhook.py -> /home/build/core.sr.ht-0.65.6-1-g7d801d2/debian/python3-srht/usr/lib/python3.8/dist-packages/srht/webhook
copying /home/build/core.sr.ht-0.65.6-1-g7d801d2/.pybuild/cpython3_3.8_srht/build/srht/webhook/magic.py -> /home/build/core.sr.ht-0.65.6-1-g7d801d2/debian/python3-srht/usr/lib/python3.8/dist-packages/srht/webhook
copying /home/build/core.sr.ht-0.65.6-1-g7d801d2/.pybuild/cpython3_3.8_srht/build/srht/__init__.py -> /home/build/core.sr.ht-0.65.6-1-g7d801d2/debian/python3-srht/usr/lib/python3.8/dist-packages/srht
copying /home/build/core.sr.ht-0.65.6-1-g7d801d2/.pybuild/cpython3_3.8_srht/build/srht/markdown.py -> /home/build/core.sr.ht-0.65.6-1-g7d801d2/debian/python3-srht/usr/lib/python3.8/dist-packages/srht
creating /home/build/core.sr.ht-0.65.6-1-g7d801d2/debian/python3-srht/usr/lib/python3.8/dist-packages/srht/alembic
copying /home/build/core.sr.ht-0.65.6-1-g7d801d2/.pybuild/cpython3_3.8_srht/build/srht/alembic/env.py -> /home/build/core.sr.ht-0.65.6-1-g7d801d2/debian/python3-srht/usr/lib/python3.8/dist-packages/srht/alembic
creating /home/build/core.sr.ht-0.65.6-1-g7d801d2/debian/python3-srht/usr/lib/python3.8/dist-packages/srht/alembic/versions
copying /home/build/core.sr.ht-0.65.6-1-g7d801d2/.pybuild/cpython3_3.8_srht/build/srht/alembic/versions/5a62c0c174fd_remove_nullable_constraint_from_.py -> /home/build/core.sr.ht-0.65.6-1-g7d801d2/debian/python3-srht/usr/lib/python3.8/dist-packages/srht/alembic/versions
copying /home/build/core.sr.ht-0.65.6-1-g7d801d2/.pybuild/cpython3_3.8_srht/build/srht/alembic/versions/af06063a0edd_add_revocation_key_to_user.py -> /home/build/core.sr.ht-0.65.6-1-g7d801d2/debian/python3-srht/usr/lib/python3.8/dist-packages/srht/alembic/versions
copying /home/build/core.sr.ht-0.65.6-1-g7d801d2/.pybuild/cpython3_3.8_srht/build/srht/alembic/versions/4cba8deffa67_allow_external_users_to_have_null_.py -> /home/build/core.sr.ht-0.65.6-1-g7d801d2/debian/python3-srht/usr/lib/python3.8/dist-packages/srht/alembic/versions
copying /home/build/core.sr.ht-0.65.6-1-g7d801d2/.pybuild/cpython3_3.8_srht/build/srht/alembic/versions/fb50c54ea20e_add_suspension_notice_to_user.py -> /home/build/core.sr.ht-0.65.6-1-g7d801d2/debian/python3-srht/usr/lib/python3.8/dist-packages/srht/alembic/versions
copying /home/build/core.sr.ht-0.65.6-1-g7d801d2/.pybuild/cpython3_3.8_srht/build/srht/alembic/versions/0417a58bdaad_add_unique_constraint_to_username.py -> /home/build/core.sr.ht-0.65.6-1-g7d801d2/debian/python3-srht/usr/lib/python3.8/dist-packages/srht/alembic/versions
copying /home/build/core.sr.ht-0.65.6-1-g7d801d2/.pybuild/cpython3_3.8_srht/build/srht/alembic/versions/c19c3956974d_add_index_for_usernames.py -> /home/build/core.sr.ht-0.65.6-1-g7d801d2/debian/python3-srht/usr/lib/python3.8/dist-packages/srht/alembic/versions
creating /home/build/core.sr.ht-0.65.6-1-g7d801d2/debian/python3-srht/usr/lib/python3.8/dist-packages/srht/static
copying /home/build/core.sr.ht-0.65.6-1-g7d801d2/.pybuild/cpython3_3.8_srht/build/srht/static/codemirror.css -> /home/build/core.sr.ht-0.65.6-1-g7d801d2/debian/python3-srht/usr/lib/python3.8/dist-packages/srht/static
copying /home/build/core.sr.ht-0.65.6-1-g7d801d2/.pybuild/cpython3_3.8_srht/build/srht/static/codemirror.js -> /home/build/core.sr.ht-0.65.6-1-g7d801d2/debian/python3-srht/usr/lib/python3.8/dist-packages/srht/static
creating /home/build/core.sr.ht-0.65.6-1-g7d801d2/debian/python3-srht/usr/lib/python3.8/dist-packages/srht/static/icons
copying /home/build/core.sr.ht-0.65.6-1-g7d801d2/.pybuild/cpython3_3.8_srht/build/srht/static/icons/code-branch.svg -> /home/build/core.sr.ht-0.65.6-1-g7d801d2/debian/python3-srht/usr/lib/python3.8/dist-packages/srht/static/icons
copying /home/build/core.sr.ht-0.65.6-1-g7d801d2/.pybuild/cpython3_3.8_srht/build/srht/static/icons/circle-solid.svg -> /home/build/core.sr.ht-0.65.6-1-g7d801d2/debian/python3-srht/usr/lib/python3.8/dist-packages/srht/static/icons
copying /home/build/core.sr.ht-0.65.6-1-g7d801d2/.pybuild/cpython3_3.8_srht/build/srht/static/icons/plus-square.svg -> /home/build/core.sr.ht-0.65.6-1-g7d801d2/debian/python3-srht/usr/lib/python3.8/dist-packages/srht/static/icons
copying /home/build/core.sr.ht-0.65.6-1-g7d801d2/.pybuild/cpython3_3.8_srht/build/srht/static/icons/minus.svg -> /home/build/core.sr.ht-0.65.6-1-g7d801d2/debian/python3-srht/usr/lib/python3.8/dist-packages/srht/static/icons
copying /home/build/core.sr.ht-0.65.6-1-g7d801d2/.pybuild/cpython3_3.8_srht/build/srht/static/icons/external-link-alt.svg -> /home/build/core.sr.ht-0.65.6-1-g7d801d2/debian/python3-srht/usr/lib/python3.8/dist-packages/srht/static/icons
copying /home/build/core.sr.ht-0.65.6-1-g7d801d2/.pybuild/cpython3_3.8_srht/build/srht/static/icons/comments.svg -> /home/build/core.sr.ht-0.65.6-1-g7d801d2/debian/python3-srht/usr/lib/python3.8/dist-packages/srht/static/icons
copying /home/build/core.sr.ht-0.65.6-1-g7d801d2/.pybuild/cpython3_3.8_srht/build/srht/static/icons/envelope-o.svg -> /home/build/core.sr.ht-0.65.6-1-g7d801d2/debian/python3-srht/usr/lib/python3.8/dist-packages/srht/static/icons
copying /home/build/core.sr.ht-0.65.6-1-g7d801d2/.pybuild/cpython3_3.8_srht/build/srht/static/icons/README -> /home/build/core.sr.ht-0.65.6-1-g7d801d2/debian/python3-srht/usr/lib/python3.8/dist-packages/srht/static/icons
copying /home/build/core.sr.ht-0.65.6-1-g7d801d2/.pybuild/cpython3_3.8_srht/build/srht/static/icons/plus.svg -> /home/build/core.sr.ht-0.65.6-1-g7d801d2/debian/python3-srht/usr/lib/python3.8/dist-packages/srht/static/icons
copying /home/build/core.sr.ht-0.65.6-1-g7d801d2/.pybuild/cpython3_3.8_srht/build/srht/static/icons/arrow-right.svg -> /home/build/core.sr.ht-0.65.6-1-g7d801d2/debian/python3-srht/usr/lib/python3.8/dist-packages/srht/static/icons
copying /home/build/core.sr.ht-0.65.6-1-g7d801d2/.pybuild/cpython3_3.8_srht/build/srht/static/icons/caret-right.svg -> /home/build/core.sr.ht-0.65.6-1-g7d801d2/debian/python3-srht/usr/lib/python3.8/dist-packages/srht/static/icons
copying /home/build/core.sr.ht-0.65.6-1-g7d801d2/.pybuild/cpython3_3.8_srht/build/srht/static/icons/folder.svg -> /home/build/core.sr.ht-0.65.6-1-g7d801d2/debian/python3-srht/usr/lib/python3.8/dist-packages/srht/static/icons
copying /home/build/core.sr.ht-0.65.6-1-g7d801d2/.pybuild/cpython3_3.8_srht/build/srht/static/icons/check.svg -> /home/build/core.sr.ht-0.65.6-1-g7d801d2/debian/python3-srht/usr/lib/python3.8/dist-packages/srht/static/icons
copying /home/build/core.sr.ht-0.65.6-1-g7d801d2/.pybuild/cpython3_3.8_srht/build/srht/static/icons/comments-o.svg -> /home/build/core.sr.ht-0.65.6-1-g7d801d2/debian/python3-srht/usr/lib/python3.8/dist-packages/srht/static/icons
copying /home/build/core.sr.ht-0.65.6-1-g7d801d2/.pybuild/cpython3_3.8_srht/build/srht/static/icons/question-circle.svg -> /home/build/core.sr.ht-0.65.6-1-g7d801d2/debian/python3-srht/usr/lib/python3.8/dist-packages/srht/static/icons
copying /home/build/core.sr.ht-0.65.6-1-g7d801d2/.pybuild/cpython3_3.8_srht/build/srht/static/icons/exclamation-triangle.svg -> /home/build/core.sr.ht-0.65.6-1-g7d801d2/debian/python3-srht/usr/lib/python3.8/dist-packages/srht/static/icons
copying /home/build/core.sr.ht-0.65.6-1-g7d801d2/.pybuild/cpython3_3.8_srht/build/srht/static/icons/file-alt.svg -> /home/build/core.sr.ht-0.65.6-1-g7d801d2/debian/python3-srht/usr/lib/python3.8/dist-packages/srht/static/icons
copying /home/build/core.sr.ht-0.65.6-1-g7d801d2/.pybuild/cpython3_3.8_srht/build/srht/static/icons/file.svg -> /home/build/core.sr.ht-0.65.6-1-g7d801d2/debian/python3-srht/usr/lib/python3.8/dist-packages/srht/static/icons
copying /home/build/core.sr.ht-0.65.6-1-g7d801d2/.pybuild/cpython3_3.8_srht/build/srht/static/icons/times.svg -> /home/build/core.sr.ht-0.65.6-1-g7d801d2/debian/python3-srht/usr/lib/python3.8/dist-packages/srht/static/icons
copying /home/build/core.sr.ht-0.65.6-1-g7d801d2/.pybuild/cpython3_3.8_srht/build/srht/static/icons/user.svg -> /home/build/core.sr.ht-0.65.6-1-g7d801d2/debian/python3-srht/usr/lib/python3.8/dist-packages/srht/static/icons
copying /home/build/core.sr.ht-0.65.6-1-g7d801d2/.pybuild/cpython3_3.8_srht/build/srht/static/icons/clock.svg -> /home/build/core.sr.ht-0.65.6-1-g7d801d2/debian/python3-srht/usr/lib/python3.8/dist-packages/srht/static/icons
copying /home/build/core.sr.ht-0.65.6-1-g7d801d2/.pybuild/cpython3_3.8_srht/build/srht/static/icons/plus-circle.svg -> /home/build/core.sr.ht-0.65.6-1-g7d801d2/debian/python3-srht/usr/lib/python3.8/dist-packages/srht/static/icons
copying /home/build/core.sr.ht-0.65.6-1-g7d801d2/.pybuild/cpython3_3.8_srht/build/srht/static/icons/LICENSE.txt -> /home/build/core.sr.ht-0.65.6-1-g7d801d2/debian/python3-srht/usr/lib/python3.8/dist-packages/srht/static/icons
copying /home/build/core.sr.ht-0.65.6-1-g7d801d2/.pybuild/cpython3_3.8_srht/build/srht/static/icons/caret-left.svg -> /home/build/core.sr.ht-0.65.6-1-g7d801d2/debian/python3-srht/usr/lib/python3.8/dist-packages/srht/static/icons
copying /home/build/core.sr.ht-0.65.6-1-g7d801d2/.pybuild/cpython3_3.8_srht/build/srht/static/icons/rss.svg -> /home/build/core.sr.ht-0.65.6-1-g7d801d2/debian/python3-srht/usr/lib/python3.8/dist-packages/srht/static/icons
copying /home/build/core.sr.ht-0.65.6-1-g7d801d2/.pybuild/cpython3_3.8_srht/build/srht/static/icons/gitlab.svg -> /home/build/core.sr.ht-0.65.6-1-g7d801d2/debian/python3-srht/usr/lib/python3.8/dist-packages/srht/static/icons
copying /home/build/core.sr.ht-0.65.6-1-g7d801d2/.pybuild/cpython3_3.8_srht/build/srht/static/icons/reply.svg -> /home/build/core.sr.ht-0.65.6-1-g7d801d2/debian/python3-srht/usr/lib/python3.8/dist-packages/srht/static/icons
copying /home/build/core.sr.ht-0.65.6-1-g7d801d2/.pybuild/cpython3_3.8_srht/build/srht/static/icons/circle.svg -> /home/build/core.sr.ht-0.65.6-1-g7d801d2/debian/python3-srht/usr/lib/python3.8/dist-packages/srht/static/icons
copying /home/build/core.sr.ht-0.65.6-1-g7d801d2/.pybuild/cpython3_3.8_srht/build/srht/static/icons/circle-notch.svg -> /home/build/core.sr.ht-0.65.6-1-g7d801d2/debian/python3-srht/usr/lib/python3.8/dist-packages/srht/static/icons
copying /home/build/core.sr.ht-0.65.6-1-g7d801d2/.pybuild/cpython3_3.8_srht/build/srht/static/icons/github.svg -> /home/build/core.sr.ht-0.65.6-1-g7d801d2/debian/python3-srht/usr/lib/python3.8/dist-packages/srht/static/icons
copying /home/build/core.sr.ht-0.65.6-1-g7d801d2/.pybuild/cpython3_3.8_srht/build/srht/static/simple.js -> /home/build/core.sr.ht-0.65.6-1-g7d801d2/debian/python3-srht/usr/lib/python3.8/dist-packages/srht/static
copying /home/build/core.sr.ht-0.65.6-1-g7d801d2/.pybuild/cpython3_3.8_srht/build/srht/database.py -> /home/build/core.sr.ht-0.65.6-1-g7d801d2/debian/python3-srht/usr/lib/python3.8/dist-packages/srht
copying /home/build/core.sr.ht-0.65.6-1-g7d801d2/.pybuild/cpython3_3.8_srht/build/srht/urlify.py -> /home/build/core.sr.ht-0.65.6-1-g7d801d2/debian/python3-srht/usr/lib/python3.8/dist-packages/srht
copying /home/build/core.sr.ht-0.65.6-1-g7d801d2/.pybuild/cpython3_3.8_srht/build/srht/validation.py -> /home/build/core.sr.ht-0.65.6-1-g7d801d2/debian/python3-srht/usr/lib/python3.8/dist-packages/srht
copying /home/build/core.sr.ht-0.65.6-1-g7d801d2/.pybuild/cpython3_3.8_srht/build/srht/graphql.py -> /home/build/core.sr.ht-0.65.6-1-g7d801d2/debian/python3-srht/usr/lib/python3.8/dist-packages/srht
copying /home/build/core.sr.ht-0.65.6-1-g7d801d2/.pybuild/cpython3_3.8_srht/build/srht/search.py -> /home/build/core.sr.ht-0.65.6-1-g7d801d2/debian/python3-srht/usr/lib/python3.8/dist-packages/srht
creating /home/build/core.sr.ht-0.65.6-1-g7d801d2/debian/python3-srht/usr/lib/python3.8/dist-packages/srht/scss
copying /home/build/core.sr.ht-0.65.6-1-g7d801d2/.pybuild/cpython3_3.8_srht/build/srht/scss/icons.scss -> /home/build/core.sr.ht-0.65.6-1-g7d801d2/debian/python3-srht/usr/lib/python3.8/dist-packages/srht/scss
copying /home/build/core.sr.ht-0.65.6-1-g7d801d2/.pybuild/cpython3_3.8_srht/build/srht/scss/base.scss -> /home/build/core.sr.ht-0.65.6-1-g7d801d2/debian/python3-srht/usr/lib/python3.8/dist-packages/srht/scss
copying /home/build/core.sr.ht-0.65.6-1-g7d801d2/.pybuild/cpython3_3.8_srht/build/srht/scss/events.scss -> /home/build/core.sr.ht-0.65.6-1-g7d801d2/debian/python3-srht/usr/lib/python3.8/dist-packages/srht/scss
copying /home/build/core.sr.ht-0.65.6-1-g7d801d2/.pybuild/cpython3_3.8_srht/build/srht/scss/font-awesome.min.css -> /home/build/core.sr.ht-0.65.6-1-g7d801d2/debian/python3-srht/usr/lib/python3.8/dist-packages/srht/scss
copying /home/build/core.sr.ht-0.65.6-1-g7d801d2/.pybuild/cpython3_3.8_srht/build/srht/scss/contrast.scss -> /home/build/core.sr.ht-0.65.6-1-g7d801d2/debian/python3-srht/usr/lib/python3.8/dist-packages/srht/scss
copying /home/build/core.sr.ht-0.65.6-1-g7d801d2/.pybuild/cpython3_3.8_srht/build/srht/scss/highlight.scss -> /home/build/core.sr.ht-0.65.6-1-g7d801d2/debian/python3-srht/usr/lib/python3.8/dist-packages/srht/scss
copying /home/build/core.sr.ht-0.65.6-1-g7d801d2/.pybuild/cpython3_3.8_srht/build/srht/scss/nav.scss -> /home/build/core.sr.ht-0.65.6-1-g7d801d2/debian/python3-srht/usr/lib/python3.8/dist-packages/srht/scss
copying /home/build/core.sr.ht-0.65.6-1-g7d801d2/.pybuild/cpython3_3.8_srht/build/srht/scss/variables.scss -> /home/build/core.sr.ht-0.65.6-1-g7d801d2/debian/python3-srht/usr/lib/python3.8/dist-packages/srht/scss
byte-compiling /home/build/core.sr.ht-0.65.6-1-g7d801d2/debian/python3-srht/usr/lib/python3.8/dist-packages/srht/oauth/token.py to token.cpython-38.pyc
byte-compiling /home/build/core.sr.ht-0.65.6-1-g7d801d2/debian/python3-srht/usr/lib/python3.8/dist-packages/srht/oauth/user.py to user.cpython-38.pyc
byte-compiling /home/build/core.sr.ht-0.65.6-1-g7d801d2/debian/python3-srht/usr/lib/python3.8/dist-packages/srht/oauth/decorator.py to decorator.cpython-38.pyc
byte-compiling /home/build/core.sr.ht-0.65.6-1-g7d801d2/debian/python3-srht/usr/lib/python3.8/dist-packages/srht/oauth/__init__.py to __init__.cpython-38.pyc
byte-compiling /home/build/core.sr.ht-0.65.6-1-g7d801d2/debian/python3-srht/usr/lib/python3.8/dist-packages/srht/oauth/blueprint.py to blueprint.cpython-38.pyc
byte-compiling /home/build/core.sr.ht-0.65.6-1-g7d801d2/debian/python3-srht/usr/lib/python3.8/dist-packages/srht/oauth/scope.py to scope.cpython-38.pyc
byte-compiling /home/build/core.sr.ht-0.65.6-1-g7d801d2/debian/python3-srht/usr/lib/python3.8/dist-packages/srht/oauth/client.py to client.cpython-38.pyc
byte-compiling /home/build/core.sr.ht-0.65.6-1-g7d801d2/debian/python3-srht/usr/lib/python3.8/dist-packages/srht/oauth/interface.py to interface.cpython-38.pyc
byte-compiling /home/build/core.sr.ht-0.65.6-1-g7d801d2/debian/python3-srht/usr/lib/python3.8/dist-packages/srht/flask.py to flask.cpython-38.pyc
byte-compiling /home/build/core.sr.ht-0.65.6-1-g7d801d2/debian/python3-srht/usr/lib/python3.8/dist-packages/srht/email.py to email.cpython-38.pyc
byte-compiling /home/build/core.sr.ht-0.65.6-1-g7d801d2/debian/python3-srht/usr/lib/python3.8/dist-packages/srht/redis.py to redis.cpython-38.pyc
byte-compiling /home/build/core.sr.ht-0.65.6-1-g7d801d2/debian/python3-srht/usr/lib/python3.8/dist-packages/srht/debug.py to debug.cpython-38.pyc
byte-compiling /home/build/core.sr.ht-0.65.6-1-g7d801d2/debian/python3-srht/usr/lib/python3.8/dist-packages/srht/crypto.py to crypto.cpython-38.pyc
byte-compiling /home/build/core.sr.ht-0.65.6-1-g7d801d2/debian/python3-srht/usr/lib/python3.8/dist-packages/srht/api.py to api.cpython-38.pyc
byte-compiling /home/build/core.sr.ht-0.65.6-1-g7d801d2/debian/python3-srht/usr/lib/python3.8/dist-packages/srht/cache.py to cache.cpython-38.pyc
byte-compiling /home/build/core.sr.ht-0.65.6-1-g7d801d2/debian/python3-srht/usr/lib/python3.8/dist-packages/srht/flagtype.py to flagtype.cpython-38.pyc
byte-compiling /home/build/core.sr.ht-0.65.6-1-g7d801d2/debian/python3-srht/usr/lib/python3.8/dist-packages/srht/gql_lexer.py to gql_lexer.cpython-38.pyc
byte-compiling /home/build/core.sr.ht-0.65.6-1-g7d801d2/debian/python3-srht/usr/lib/python3.8/dist-packages/srht/config.py to config.cpython-38.pyc
byte-compiling /home/build/core.sr.ht-0.65.6-1-g7d801d2/debian/python3-srht/usr/lib/python3.8/dist-packages/srht/webhook/celery.py to celery.cpython-38.pyc
byte-compiling /home/build/core.sr.ht-0.65.6-1-g7d801d2/debian/python3-srht/usr/lib/python3.8/dist-packages/srht/webhook/__init__.py to __init__.cpython-38.pyc
byte-compiling /home/build/core.sr.ht-0.65.6-1-g7d801d2/debian/python3-srht/usr/lib/python3.8/dist-packages/srht/webhook/webhook.py to webhook.cpython-38.pyc
byte-compiling /home/build/core.sr.ht-0.65.6-1-g7d801d2/debian/python3-srht/usr/lib/python3.8/dist-packages/srht/webhook/magic.py to magic.cpython-38.pyc
byte-compiling /home/build/core.sr.ht-0.65.6-1-g7d801d2/debian/python3-srht/usr/lib/python3.8/dist-packages/srht/__init__.py to __init__.cpython-38.pyc
byte-compiling /home/build/core.sr.ht-0.65.6-1-g7d801d2/debian/python3-srht/usr/lib/python3.8/dist-packages/srht/markdown.py to markdown.cpython-38.pyc
byte-compiling /home/build/core.sr.ht-0.65.6-1-g7d801d2/debian/python3-srht/usr/lib/python3.8/dist-packages/srht/alembic/env.py to env.cpython-38.pyc
byte-compiling /home/build/core.sr.ht-0.65.6-1-g7d801d2/debian/python3-srht/usr/lib/python3.8/dist-packages/srht/alembic/versions/5a62c0c174fd_remove_nullable_constraint_from_.py to 5a62c0c174fd_remove_nullable_constraint_from_.cpython-38.pyc
byte-compiling /home/build/core.sr.ht-0.65.6-1-g7d801d2/debian/python3-srht/usr/lib/python3.8/dist-packages/srht/alembic/versions/af06063a0edd_add_revocation_key_to_user.py to af06063a0edd_add_revocation_key_to_user.cpython-38.pyc
byte-compiling /home/build/core.sr.ht-0.65.6-1-g7d801d2/debian/python3-srht/usr/lib/python3.8/dist-packages/srht/alembic/versions/4cba8deffa67_allow_external_users_to_have_null_.py to 4cba8deffa67_allow_external_users_to_have_null_.cpython-38.pyc
byte-compiling /home/build/core.sr.ht-0.65.6-1-g7d801d2/debian/python3-srht/usr/lib/python3.8/dist-packages/srht/alembic/versions/fb50c54ea20e_add_suspension_notice_to_user.py to fb50c54ea20e_add_suspension_notice_to_user.cpython-38.pyc
byte-compiling /home/build/core.sr.ht-0.65.6-1-g7d801d2/debian/python3-srht/usr/lib/python3.8/dist-packages/srht/alembic/versions/0417a58bdaad_add_unique_constraint_to_username.py to 0417a58bdaad_add_unique_constraint_to_username.cpython-38.pyc
byte-compiling /home/build/core.sr.ht-0.65.6-1-g7d801d2/debian/python3-srht/usr/lib/python3.8/dist-packages/srht/alembic/versions/c19c3956974d_add_index_for_usernames.py to c19c3956974d_add_index_for_usernames.cpython-38.pyc
byte-compiling /home/build/core.sr.ht-0.65.6-1-g7d801d2/debian/python3-srht/usr/lib/python3.8/dist-packages/srht/database.py to database.cpython-38.pyc
byte-compiling /home/build/core.sr.ht-0.65.6-1-g7d801d2/debian/python3-srht/usr/lib/python3.8/dist-packages/srht/urlify.py to urlify.cpython-38.pyc
byte-compiling /home/build/core.sr.ht-0.65.6-1-g7d801d2/debian/python3-srht/usr/lib/python3.8/dist-packages/srht/validation.py to validation.cpython-38.pyc
byte-compiling /home/build/core.sr.ht-0.65.6-1-g7d801d2/debian/python3-srht/usr/lib/python3.8/dist-packages/srht/graphql.py to graphql.cpython-38.pyc
byte-compiling /home/build/core.sr.ht-0.65.6-1-g7d801d2/debian/python3-srht/usr/lib/python3.8/dist-packages/srht/search.py to search.cpython-38.pyc
running install_egg_info
running egg_info
writing srht.egg-info/PKG-INFO
writing dependency_links to srht.egg-info/dependency_links.txt
writing requirements to srht.egg-info/requires.txt
writing top-level names to srht.egg-info/top_level.txt
reading manifest file 'srht.egg-info/SOURCES.txt'
writing manifest file 'srht.egg-info/SOURCES.txt'
Copying srht.egg-info to /home/build/core.sr.ht-0.65.6-1-g7d801d2/debian/python3-srht/usr/lib/python3.8/dist-packages/srht-0.65.6.egg-info
Skipping SOURCES.txt
running install_scripts
copying build/scripts-3.8/srht-keygen -> /home/build/core.sr.ht-0.65.6-1-g7d801d2/debian/python3-srht/usr/bin
copying build/scripts-3.8/srht-migrate -> /home/build/core.sr.ht-0.65.6-1-g7d801d2/debian/python3-srht/usr/bin
copying build/scripts-3.8/srht-update-profiles -> /home/build/core.sr.ht-0.65.6-1-g7d801d2/debian/python3-srht/usr/bin
changing mode of /home/build/core.sr.ht-0.65.6-1-g7d801d2/debian/python3-srht/usr/bin/srht-keygen to 755
changing mode of /home/build/core.sr.ht-0.65.6-1-g7d801d2/debian/python3-srht/usr/bin/srht-migrate to 755
changing mode of /home/build/core.sr.ht-0.65.6-1-g7d801d2/debian/python3-srht/usr/bin/srht-update-profiles to 755
dh_installdocs -O--buildsystem=pybuild
dh_installchangelogs -O--buildsystem=pybuild
dh_python3 -O--buildsystem=pybuild
dh_installinit -O--buildsystem=pybuild
dh_perl -O--buildsystem=pybuild
dh_link -O--buildsystem=pybuild
dh_strip_nondeterminism -O--buildsystem=pybuild
dh_compress -O--buildsystem=pybuild
dh_fixperms -O--buildsystem=pybuild
dh_missing -O--buildsystem=pybuild
dh_installdeb -O--buildsystem=pybuild
dh_gencontrol -O--buildsystem=pybuild
dh_md5sums -O--buildsystem=pybuild
dh_builddeb -O--buildsystem=pybuild
dpkg-deb: building package 'python3-srht' in '../python3-srht_0.65.6-1-g7d801d2-1_all.deb'.
dpkg-genbuildinfo
dpkg-genchanges -si >../core.sr.ht_0.65.6-1-g7d801d2-1_amd64.changes
dpkg-genchanges: info: including full source code in upload
dpkg-source --after-build .
dpkg-source: info: using options from core.sr.ht-0.65.6-1-g7d801d2/debian/source/options: --extend-diff-ignore=^[^/]*[.]egg-info/
dpkg-source: info: unapplying Add-usr-share-sass-bootstrap-to-sassc-load-path.patch
dpkg-source: info: unapplying Import-bootstrap-only-once.patch
dpkg-source: info: unapplying Rely-on-cleancss-being-installed-on-the-system.patch
dpkg-buildpackage: info: full upload (original source is included)
Reading package lists... 0%
Reading package lists... 100%
Reading package lists... Done
Building dependency tree... 0%
Building dependency tree... 0%
Building dependency tree... 50%
Building dependency tree... 50%
Building dependency tree
Reading state information... 0%
Reading state information... 0%
Reading state information... Done
The following packages will be REMOVED:
core.sr.ht-build-deps* dh-python* equivs* libpython3.9-minimal*
libpython3.9-stdlib* python3-all* python3-distutils* python3-lib2to3*
python3-pkg-resources* python3-setuptools* python3.9* python3.9-minimal*
0 upgraded, 0 newly installed, 12 to remove and 5 not upgraded.
After this operation, 24.2 MB disk space will be freed.
(Reading database ...
(Reading database ... 5%
(Reading database ... 10%
(Reading database ... 15%
(Reading database ... 20%
(Reading database ... 25%
(Reading database ... 30%
(Reading database ... 35%
(Reading database ... 40%
(Reading database ... 45%
(Reading database ... 50%
(Reading database ... 55%
(Reading database ... 60%
(Reading database ... 65%
(Reading database ... 70%
(Reading database ... 75%
(Reading database ... 80%
(Reading database ... 85%
(Reading database ... 90%
(Reading database ... 95%
(Reading database ... 100%
(Reading database ... 28218 files and directories currently installed.)
Removing core.sr.ht-build-deps (0.65.6-1-g7d801d2-1) ...
Removing dh-python (4.20201102) ...
Removing equivs (2.3.1) ...
Removing python3-all (3.8.6-1) ...
Removing python3.9 (3.9.0-5) ...
Removing libpython3.9-stdlib:amd64 (3.9.0-5) ...
Removing python3.9-minimal (3.9.0-5) ...
Unlinking and removing bytecode for runtime python3.9
Removing libpython3.9-minimal:amd64 (3.9.0-5) ...
Removing python3-setuptools (50.3.0-1) ...
Removing python3-distutils (3.8.6-1) ...
Removing python3-lib2to3 (3.8.6-1) ...
Removing python3-pkg-resources (50.3.0-1) ...
Processing triggers for man-db (2.9.3-2) ...
Processing triggers for mime-support (3.64) ...
(Reading database ...
(Reading database ... 5%
(Reading database ... 10%
(Reading database ... 15%
(Reading database ... 20%
(Reading database ... 25%
(Reading database ... 30%
(Reading database ... 35%
(Reading database ... 40%
(Reading database ... 45%
(Reading database ... 50%
(Reading database ... 55%
(Reading database ... 60%
(Reading database ... 65%
(Reading database ... 70%
(Reading database ... 75%
(Reading database ... 80%
(Reading database ... 85%
(Reading database ... 90%
(Reading database ... 95%
(Reading database ... 100%
(Reading database ... 27041 files and directories currently installed.)
Purging configuration files for libpython3.9-minimal:amd64 (3.9.0-5) ...
Purging configuration files for python3.9-minimal (3.9.0-5) ...
python3-srht_0.65.6-1-g7d801d2-1_all.deb
----------------------------------------
new Debian package, version 2.0.
size 145164 bytes: control archive=3812 bytes.
758 bytes, 15 lines control
8913 bytes, 98 lines md5sums
263 bytes, 12 lines * postinst #!/bin/sh
398 bytes, 12 lines * prerm #!/bin/sh
Package: python3-srht
Source: core.sr.ht
Version: 0.65.6-1-g7d801d2-1
Architecture: all
Maintainer: Denis Laxalde <denis@laxalde.org>
Installed-Size: 666
Depends: python3-bleach, python3-bs4, python3-cryptography, python3-flask, python3-humanize, python3-markdown, python3-mistletoe, python3-pgpy, python3-prometheus-client, python3-psycopg2 (>= 2.8.0), python3-pygments, python3-requests, python3-sqlalchemy, python3-sqlalchemy-utils, python3:any (>= 3.7~), python3-alembic, python3-redis
Section: misc
Priority: optional
Homepage: https://sourcehut.org/
Description: shared library for sr.ht (Python 3)
Sourcehut (a.k.a. sr.ht) is a software suite for managing your software
development projects.
.
This package installs the core library for Python 3.
drwxr-xr-x root/root 0 2020-11-04 22:00 ./
drwxr-xr-x root/root 0 2020-11-04 22:00 ./usr/
drwxr-xr-x root/root 0 2020-11-04 22:00 ./usr/bin/
-rwxr-xr-x root/root 1196 2020-11-04 22:00 ./usr/bin/srht-keygen
-rwxr-xr-x root/root 133 2020-11-04 22:00 ./usr/bin/srht-migrate
-rwxr-xr-x root/root 702 2020-11-04 22:00 ./usr/bin/srht-update-profiles
drwxr-xr-x root/root 0 2020-11-04 22:00 ./usr/lib/
drwxr-xr-x root/root 0 2020-11-04 22:00 ./usr/lib/python3/
drwxr-xr-x root/root 0 2020-11-04 22:00 ./usr/lib/python3/dist-packages/
drwxr-xr-x root/root 0 2020-11-04 22:00 ./usr/lib/python3/dist-packages/srht/
-rw-r--r-- root/root 1463 2020-11-04 22:00 ./usr/lib/python3/dist-packages/srht/Makefile
-rw-r--r-- root/root 0 2020-11-04 22:00 ./usr/lib/python3/dist-packages/srht/__init__.py
drwxr-xr-x root/root 0 2020-11-04 22:00 ./usr/lib/python3/dist-packages/srht/alembic/
-rw-r--r-- root/root 110 2020-11-04 22:00 ./usr/lib/python3/dist-packages/srht/alembic/env.py
drwxr-xr-x root/root 0 2020-11-04 22:00 ./usr/lib/python3/dist-packages/srht/alembic/versions/
-rw-r--r-- root/root 447 2020-11-04 22:00 ./usr/lib/python3/dist-packages/srht/alembic/versions/0417a58bdaad_add_unique_constraint_to_username.py
-rw-r--r-- root/root 1089 2020-11-04 22:00 ./usr/lib/python3/dist-packages/srht/alembic/versions/4cba8deffa67_allow_external_users_to_have_null_.py
-rw-r--r-- root/root 468 2020-11-04 22:00 ./usr/lib/python3/dist-packages/srht/alembic/versions/5a62c0c174fd_remove_nullable_constraint_from_.py
-rw-r--r-- root/root 552 2020-11-04 22:00 ./usr/lib/python3/dist-packages/srht/alembic/versions/af06063a0edd_add_revocation_key_to_user.py
-rw-r--r-- root/root 404 2020-11-04 22:00 ./usr/lib/python3/dist-packages/srht/alembic/versions/c19c3956974d_add_index_for_usernames.py
-rw-r--r-- root/root 434 2020-11-04 22:00 ./usr/lib/python3/dist-packages/srht/alembic/versions/fb50c54ea20e_add_suspension_notice_to_user.py
-rw-r--r-- root/root 3838 2020-11-04 22:00 ./usr/lib/python3/dist-packages/srht/api.py
-rw-r--r-- root/root 482 2020-11-04 22:00 ./usr/lib/python3/dist-packages/srht/cache.py
-rw-r--r-- root/root 2430 2020-11-04 22:00 ./usr/lib/python3/dist-packages/srht/config.py
-rw-r--r-- root/root 4179 2020-11-04 22:00 ./usr/lib/python3/dist-packages/srht/crypto.py
-rw-r--r-- root/root 5437 2020-11-04 22:00 ./usr/lib/python3/dist-packages/srht/database.py
-rw-r--r-- root/root 1609 2020-11-04 22:00 ./usr/lib/python3/dist-packages/srht/debug.py
-rw-r--r-- root/root 5979 2020-11-04 22:00 ./usr/lib/python3/dist-packages/srht/email.py
-rw-r--r-- root/root 427 2020-11-04 22:00 ./usr/lib/python3/dist-packages/srht/flagtype.py
-rw-r--r-- root/root 15822 2020-11-04 22:00 ./usr/lib/python3/dist-packages/srht/flask.py
-rw-r--r-- root/root 1068 2020-11-04 22:00 ./usr/lib/python3/dist-packages/srht/gql_lexer.py
-rw-r--r-- root/root 2326 2020-11-04 22:00 ./usr/lib/python3/dist-packages/srht/graphql.py
-rw-r--r-- root/root 7841 2020-11-04 22:00 ./usr/lib/python3/dist-packages/srht/markdown.py
drwxr-xr-x root/root 0 2020-11-04 22:00 ./usr/lib/python3/dist-packages/srht/oauth/
-rw-r--r-- root/root 2011 2020-11-04 22:00 ./usr/lib/python3/dist-packages/srht/oauth/__init__.py
-rw-r--r-- root/root 4446 2020-11-04 22:00 ./usr/lib/python3/dist-packages/srht/oauth/blueprint.py
-rw-r--r-- root/root 574 2020-11-04 22:00 ./usr/lib/python3/dist-packages/srht/oauth/client.py
-rw-r--r-- root/root 5496 2020-11-04 22:00 ./usr/lib/python3/dist-packages/srht/oauth/decorator.py
-rw-r--r-- root/root 10359 2020-11-04 22:00 ./usr/lib/python3/dist-packages/srht/oauth/interface.py
-rw-r--r-- root/root 2409 2020-11-04 22:00 ./usr/lib/python3/dist-packages/srht/oauth/scope.py
-rw-r--r-- root/root 1828 2020-11-04 22:00 ./usr/lib/python3/dist-packages/srht/oauth/token.py
-rw-r--r-- root/root 2104 2020-11-04 22:00 ./usr/lib/python3/dist-packages/srht/oauth/user.py
-rw-r--r-- root/root 244 2020-11-04 22:00 ./usr/lib/python3/dist-packages/srht/package.json
-rw-r--r-- root/root 308 2020-11-04 22:00 ./usr/lib/python3/dist-packages/srht/redis.py
drwxr-xr-x root/root 0 2020-11-04 22:00 ./usr/lib/python3/dist-packages/srht/scss/
-rw-r--r-- root/root 4414 2020-11-04 22:00 ./usr/lib/python3/dist-packages/srht/scss/base.scss
-rw-r--r-- root/root 4241 2020-11-04 22:00 ./usr/lib/python3/dist-packages/srht/scss/contrast.scss
-rw-r--r-- root/root 680 2020-11-04 22:00 ./usr/lib/python3/dist-packages/srht/scss/events.scss
-rw-r--r-- root/root 27460 2020-11-04 22:00 ./usr/lib/python3/dist-packages/srht/scss/font-awesome.min.css
-rw-r--r-- root/root 199 2020-11-04 22:00 ./usr/lib/python3/dist-packages/srht/scss/highlight.scss
-rw-r--r-- root/root 658 2020-11-04 22:00 ./usr/lib/python3/dist-packages/srht/scss/icons.scss
-rw-r--r-- root/root 2362 2020-11-04 22:00 ./usr/lib/python3/dist-packages/srht/scss/nav.scss
-rw-r--r-- root/root 556 2020-11-04 22:00 ./usr/lib/python3/dist-packages/srht/scss/variables.scss
-rw-r--r-- root/root 3938 2020-11-04 22:00 ./usr/lib/python3/dist-packages/srht/search.py
drwxr-xr-x root/root 0 2020-11-04 22:00 ./usr/lib/python3/dist-packages/srht/static/
-rw-r--r-- root/root 8705 2020-11-04 22:00 ./usr/lib/python3/dist-packages/srht/static/codemirror.css
-rw-r--r-- root/root 398722 2020-11-04 22:00 ./usr/lib/python3/dist-packages/srht/static/codemirror.js
drwxr-xr-x root/root 0 2020-11-04 22:00 ./usr/lib/python3/dist-packages/srht/static/icons/
-rw-r--r-- root/root 1548 2020-11-04 22:00 ./usr/lib/python3/dist-packages/srht/static/icons/LICENSE.txt
-rw-r--r-- root/root 308 2020-11-04 22:00 ./usr/lib/python3/dist-packages/srht/static/icons/README
-rw-r--r-- root/root 334 2020-11-04 22:00 ./usr/lib/python3/dist-packages/srht/static/icons/arrow-right.svg
-rw-r--r-- root/root 241 2020-11-04 22:00 ./usr/lib/python3/dist-packages/srht/static/icons/caret-left.svg
-rw-r--r-- root/root 233 2020-11-04 22:00 ./usr/lib/python3/dist-packages/srht/static/icons/caret-right.svg
-rw-r--r-- root/root 355 2020-11-04 22:00 ./usr/lib/python3/dist-packages/srht/static/icons/check.svg
-rw-r--r-- root/root 549 2020-11-04 22:00 ./usr/lib/python3/dist-packages/srht/static/icons/circle-notch.svg
-rw-r--r-- root/root 150 2020-11-04 22:00 ./usr/lib/python3/dist-packages/srht/static/icons/circle-solid.svg
-rw-r--r-- root/root 233 2020-11-04 22:00 ./usr/lib/python3/dist-packages/srht/static/icons/circle.svg
-rw-r--r-- root/root 405 2020-11-04 22:00 ./usr/lib/python3/dist-packages/srht/static/icons/clock.svg
-rw-r--r-- root/root 756 2020-11-04 22:00 ./usr/lib/python3/dist-packages/srht/static/icons/code-branch.svg
-rw-r--r-- root/root 972 2020-11-04 22:00 ./usr/lib/python3/dist-packages/srht/static/icons/comments-o.svg
-rw-r--r-- root/root 580 2020-11-04 22:00 ./usr/lib/python3/dist-packages/srht/static/icons/comments.svg
-rw-r--r-- root/root 575 2020-11-04 22:00 ./usr/lib/python3/dist-packages/srht/static/icons/envelope-o.svg
-rw-r--r-- root/root 708 2020-11-04 22:00 ./usr/lib/python3/dist-packages/srht/static/icons/exclamation-triangle.svg
-rw-r--r-- root/root 605 2020-11-04 22:00 ./usr/lib/python3/dist-packages/srht/static/icons/external-link-alt.svg
-rw-r--r-- root/root 511 2020-11-04 22:00 ./usr/lib/python3/dist-packages/srht/static/icons/file-alt.svg
-rw-r--r-- root/root 268 2020-11-04 22:00 ./usr/lib/python3/dist-packages/srht/static/icons/file.svg
-rw-r--r-- root/root 208 2020-11-04 22:00 ./usr/lib/python3/dist-packages/srht/static/icons/folder.svg
-rw-r--r-- root/root 1385 2020-11-04 22:00 ./usr/lib/python3/dist-packages/srht/static/icons/github.svg
-rw-r--r-- root/root 682 2020-11-04 22:00 ./usr/lib/python3/dist-packages/srht/static/icons/gitlab.svg
-rw-r--r-- root/root 197 2020-11-04 22:00 ./usr/lib/python3/dist-packages/srht/static/icons/minus.svg
-rw-r--r-- root/root 355 2020-11-04 22:00 ./usr/lib/python3/dist-packages/srht/static/icons/plus-circle.svg
-rw-r--r-- root/root 481 2020-11-04 22:00 ./usr/lib/python3/dist-packages/srht/static/icons/plus-square.svg
-rw-r--r-- root/root 320 2020-11-04 22:00 ./usr/lib/python3/dist-packages/srht/static/icons/plus.svg
-rw-r--r-- root/root 830 2020-11-04 22:00 ./usr/lib/python3/dist-packages/srht/static/icons/question-circle.svg
-rw-r--r-- root/root 402 2020-11-04 22:00 ./usr/lib/python3/dist-packages/srht/static/icons/reply.svg
-rw-r--r-- root/root 723 2020-11-04 22:00 ./usr/lib/python3/dist-packages/srht/static/icons/rss.svg
-rw-r--r-- root/root 496 2020-11-04 22:00 ./usr/lib/python3/dist-packages/srht/static/icons/times.svg
-rw-r--r-- root/root 337 2020-11-04 22:00 ./usr/lib/python3/dist-packages/srht/static/icons/user.svg
-rw-r--r-- root/root 8044 2020-11-04 22:00 ./usr/lib/python3/dist-packages/srht/static/simple.js
drwxr-xr-x root/root 0 2020-11-04 22:00 ./usr/lib/python3/dist-packages/srht/templates/
-rw-r--r-- root/root 2208 2020-11-04 22:00 ./usr/lib/python3/dist-packages/srht/templates/graphql.html
-rw-r--r-- root/root 171 2020-11-04 22:00 ./usr/lib/python3/dist-packages/srht/templates/internal_error.html
-rw-r--r-- root/root 144 2020-11-04 22:00 ./usr/lib/python3/dist-packages/srht/templates/layout-full.html
-rw-r--r-- root/root 4968 2020-11-04 22:00 ./usr/lib/python3/dist-packages/srht/templates/layout.html
-rw-r--r-- root/root 1503 2020-11-04 22:00 ./usr/lib/python3/dist-packages/srht/templates/nav.html
-rw-r--r-- root/root 234 2020-11-04 22:00 ./usr/lib/python3/dist-packages/srht/templates/not_found.html
-rw-r--r-- root/root 145 2020-11-04 22:00 ./usr/lib/python3/dist-packages/srht/templates/oauth-error.html
-rw-r--r-- root/root 615 2020-11-04 22:00 ./usr/lib/python3/dist-packages/srht/templates/pagination.html
-rw-r--r-- root/root 933 2020-11-04 22:00 ./usr/lib/python3/dist-packages/srht/templates/read_only.html
-rw-r--r-- root/root 272 2020-11-04 22:00 ./usr/lib/python3/dist-packages/srht/templates/suspended.html
-rw-r--r-- root/root 1893 2020-11-04 22:00 ./usr/lib/python3/dist-packages/srht/urlify.py
-rw-r--r-- root/root 5706 2020-11-04 22:00 ./usr/lib/python3/dist-packages/srht/validation.py
drwxr-xr-x root/root 0 2020-11-04 22:00 ./usr/lib/python3/dist-packages/srht/webhook/
-rw-r--r-- root/root 124 2020-11-04 22:00 ./usr/lib/python3/dist-packages/srht/webhook/__init__.py
-rw-r--r-- root/root 2431 2020-11-04 22:00 ./usr/lib/python3/dist-packages/srht/webhook/celery.py
-rw-r--r-- root/root 6690 2020-11-04 22:00 ./usr/lib/python3/dist-packages/srht/webhook/magic.py
-rw-r--r-- root/root 8240 2020-11-04 22:00 ./usr/lib/python3/dist-packages/srht/webhook/webhook.py
drwxr-xr-x root/root 0 2020-11-04 22:00 ./usr/lib/python3/dist-packages/srht-0.65.6.egg-info/
-rw-r--r-- root/root 231 2020-11-04 22:00 ./usr/lib/python3/dist-packages/srht-0.65.6.egg-info/PKG-INFO
-rw-r--r-- root/root 1 2020-11-04 22:00 ./usr/lib/python3/dist-packages/srht-0.65.6.egg-info/dependency_links.txt
-rw-r--r-- root/root 0 2020-11-04 22:00 ./usr/lib/python3/dist-packages/srht-0.65.6.egg-info/requires.txt
-rw-r--r-- root/root 5 2020-11-04 22:00 ./usr/lib/python3/dist-packages/srht-0.65.6.egg-info/top_level.txt
drwxr-xr-x root/root 0 2020-11-04 22:00 ./usr/share/
drwxr-xr-x root/root 0 2020-11-04 22:00 ./usr/share/doc/
drwxr-xr-x root/root 0 2020-11-04 22:00 ./usr/share/doc/python3-srht/
-rw-r--r-- root/root 634 2020-11-04 22:00 ./usr/share/doc/python3-srht/changelog.Debian.gz
-rw-r--r-- root/root 1779 2020-11-04 22:00 ./usr/share/doc/python3-srht/copyright
./pkgkit: line 36: lintian: command not found
Reading package lists... 0%
Reading package lists... 0%
Reading package lists... Done
Building dependency tree... 0%
Building dependency tree... 0%
Building dependency tree... 0%
Building dependency tree... 50%
Building dependency tree... 50%
Building dependency tree
Reading state information... 0%
Reading state information... 0%
Reading state information... Done
Note, selecting 'python3-srht' instead of '../python3-srht_0.65.6-1-g7d801d2-1_all.deb'
The following additional packages will be installed:
libjs-jquery libpq5 node-jquery python-babel-localedata python3-alembic
python3-anyjson python3-arrow python3-babel python3-bleach python3-bs4
python3-certifi python3-cffi-backend python3-chardet python3-click
python3-colorama python3-cryptography python3-dateutil python3-decorator
python3-distutils python3-editor python3-flask python3-html5lib
python3-humanize python3-idna python3-itsdangerous python3-jinja2
python3-lib2to3 python3-mako python3-markdown python3-markupsafe
python3-mistletoe python3-packaging python3-pgpy python3-pkg-resources
python3-prometheus-client python3-psycopg2 python3-pyasn1 python3-pygments
python3-pyparsing python3-redis python3-requests python3-six
python3-soupsieve python3-sqlalchemy python3-sqlalchemy-utils python3-tz
python3-urllib3 python3-webencodings python3-werkzeug
Suggested packages:
python-arrow-doc python-bleach-doc python-cryptography-doc
python3-cryptography-vectors python-flask-doc python3-genshi python3-lxml
python-jinja2-doc python3-beaker python-mako-doc python-markdown-doc
python3-setuptools python-psycopg2-doc python-pygments-doc
ttf-bitstream-vera python-pyparsing-doc python3-hiredis python3-openssl
python3-socks python-requests-doc python-sqlalchemy-doc python3-fdb
python3-pymssql python3-mysqldb python-sqlalchemy-utils-doc ipython3
python-werkzeug-doc python3-watchdog
Recommended packages:
javascript-common python3-lxml python3-blinker python3-simplejson
python3-yaml python3-pgpy-doc python3-sqlalchemy-ext python3-openssl
python3-pyinotify
The following NEW packages will be installed:
libjs-jquery libpq5 node-jquery python-babel-localedata python3-alembic
python3-anyjson python3-arrow python3-babel python3-bleach python3-bs4
python3-certifi python3-cffi-backend python3-chardet python3-click
python3-colorama python3-cryptography python3-dateutil python3-decorator
python3-distutils python3-editor python3-flask python3-html5lib
python3-humanize python3-idna python3-itsdangerous python3-jinja2
python3-lib2to3 python3-mako python3-markdown python3-markupsafe
python3-mistletoe python3-packaging python3-pgpy python3-pkg-resources
python3-prometheus-client python3-psycopg2 python3-pyasn1 python3-pygments
python3-pyparsing python3-redis python3-requests python3-six
python3-soupsieve python3-sqlalchemy python3-sqlalchemy-utils python3-srht
python3-tz python3-urllib3 python3-webencodings python3-werkzeug
0 upgraded, 50 newly installed, 0 to remove and 5 not upgraded.
Need to get 9765 kB/10.3 MB of archives.
After this operation, 52.9 MB of additional disk space will be used.
4% [Working]
Get:1 /home/build/python3-srht_0.65.6-1-g7d801d2-1_all.deb python3-srht all 0.65.6-1-g7d801d2-1 [145 kB]
6% [Working]
Get:2 http://deb.debian.org/debian sid/main amd64 node-jquery all 3.5.1+dfsg-4 [309 kB]
6% [2 node-jquery 0 B/309 kB 0%]
9% [Working]
Get:3 http://deb.debian.org/debian sid/main amd64 libjs-jquery all 3.5.1+dfsg-4 [3612 B]
9% [3 libjs-jquery 0 B/3612 B 0%]
9% [Working]
Get:4 http://deb.debian.org/debian sid/main amd64 libpq5 amd64 13.0-6 [174 kB]
9% [4 libpq5 0 B/174 kB 0%]
11% [Working]
Get:5 http://deb.debian.org/debian sid/main amd64 python-babel-localedata all 2.8.0+dfsg.1-4 [4996 kB]
11% [5 python-babel-localedata 0 B/4996 kB 0%]
20% [5 python-babel-localedata 1176 kB/4996 kB 24%]
29% [5 python-babel-localedata 2379 kB/4996 kB 48%]
36% [5 python-babel-localedata 3200 kB/4996 kB 64%]
41% [5 python-babel-localedata 3945 kB/4996 kB 79%]
49% [5 python-babel-localedata 4961 kB/4996 kB 99%]
50% [Working]
Get:6 http://deb.debian.org/debian sid/main amd64 python3-six all 1.15.0-1 [16.8 kB]
50% [6 python3-six 0 B/16.8 kB 0%]
51% [Working]
Get:7 http://deb.debian.org/debian sid/main amd64 python3-dateutil all 2.8.1-4 [81.6 kB]
51% [7 python3-dateutil 0 B/81.6 kB 0%]
52% [Working]
Get:8 http://deb.debian.org/debian sid/main amd64 python3-editor all 1.0.3-2 [5012 B]
52% [8 python3-editor 0 B/5012 B 0%]
52% [Working]
Get:9 http://deb.debian.org/debian sid/main amd64 python3-markupsafe amd64 1.1.1-1+b2 [15.3 kB]
52% [9 python3-markupsafe 0 B/15.3 kB 0%]
53% [Working]
Get:10 http://deb.debian.org/debian sid/main amd64 python3-mako all 1.1.3+ds1-1 [80.1 kB]
53% [10 python3-mako 0 B/80.1 kB 0%]
54% [Working]
Get:11 http://deb.debian.org/debian sid/main amd64 python3-sqlalchemy all 1.3.20+ds1-1 [792 kB]
54% [11 python3-sqlalchemy 0 B/792 kB 0%]
59% [11 python3-sqlalchemy 647 kB/792 kB 82%]
60% [Working]
Get:12 http://deb.debian.org/debian sid/main amd64 python3-alembic all 1.4.3-1 [115 kB]
60% [12 python3-alembic 0 B/115 kB 0%]
61% [Working]
Get:13 http://deb.debian.org/debian sid/main amd64 python3-anyjson all 0.3.3-2 [8196 B]
61% [13 python3-anyjson 0 B/8196 B 0%]
62% [Working]
Get:14 http://deb.debian.org/debian sid/main amd64 python3-arrow all 0.15.7-1 [48.2 kB]
62% [14 python3-arrow 0 B/48.2 kB 0%]
63% [Working]
Get:15 http://deb.debian.org/debian sid/main amd64 python3-tz all 2020.1-2 [34.6 kB]
63% [15 python3-tz 0 B/34.6 kB 0%]
63% [Working]
Get:16 http://deb.debian.org/debian sid/main amd64 python3-babel all 2.8.0+dfsg.1-4 [99.9 kB]
63% [16 python3-babel 0 B/99.9 kB 0%]
64% [Working]
Get:17 http://deb.debian.org/debian sid/main amd64 python3-pyparsing all 2.4.7-1 [109 kB]
64% [17 python3-pyparsing 0 B/109 kB 0%]
66% [Working]
Get:18 http://deb.debian.org/debian sid/main amd64 python3-packaging all 20.4-1 [30.4 kB]
66% [18 python3-packaging 0 B/30.4 kB 0%]
66% [Working]
Get:19 http://deb.debian.org/debian sid/main amd64 python3-webencodings all 0.5.1-2 [11.0 kB]
66% [19 python3-webencodings 0 B/11.0 kB 0%]
67% [Working]
Get:20 http://deb.debian.org/debian sid/main amd64 python3-html5lib all 1.1-2 [92.8 kB]
67% [20 python3-html5lib 0 B/92.8 kB 0%]
68% [Working]
Get:21 http://deb.debian.org/debian sid/main amd64 python3-bleach all 3.2.1-1 [35.1 kB]
68% [21 python3-bleach 0 B/35.1 kB 0%]
69% [Working]
Get:22 http://deb.debian.org/debian sid/main amd64 python3-soupsieve all 2.0.1-1 [33.3 kB]
69% [22 python3-soupsieve 0 B/33.3 kB 0%]
69% [Working]
Get:23 http://deb.debian.org/debian sid/main amd64 python3-bs4 all 4.9.3-1 [112 kB]
69% [23 python3-bs4 0 B/112 kB 0%]
71% [Working]
Get:24 http://deb.debian.org/debian sid/main amd64 python3-certifi all 2020.6.20-1 [151 kB]
71% [24 python3-certifi 0 B/151 kB 0%]
72% [Working]
Get:25 http://deb.debian.org/debian sid/main amd64 python3-cffi-backend amd64 1.14.3-2 [104 kB]
72% [25 python3-cffi-backend 0 B/104 kB 0%]
73% [Working]
Get:26 http://deb.debian.org/debian sid/main amd64 python3-chardet all 3.0.4-7 [81.1 kB]
73% [26 python3-chardet 0 B/81.1 kB 0%]
74% [Working]
Get:27 http://deb.debian.org/debian sid/main amd64 python3-colorama all 0.4.3-1 [27.8 kB]
74% [27 python3-colorama 0 B/27.8 kB 0%]
75% [Working]
Get:28 http://deb.debian.org/debian sid/main amd64 python3-click all 7.1.2-1 [75.7 kB]
75% [28 python3-click 0 B/75.7 kB 0%]
76% [Working]
Get:29 http://deb.debian.org/debian sid/main amd64 python3-cryptography amd64 3.2.1-1 [222 kB]
76% [29 python3-cryptography 0 B/222 kB 0%]
78% [Working]
Get:30 http://deb.debian.org/debian sid/main amd64 python3-decorator all 4.4.2-2 [15.8 kB]
78% [30 python3-decorator 0 B/15.8 kB 0%]
79% [Working]
Get:31 http://deb.debian.org/debian sid/main amd64 python3-itsdangerous all 1.1.0-3 [17.0 kB]
79% [31 python3-itsdangerous 0 B/17.0 kB 0%]
79% [Working]
Get:32 http://deb.debian.org/debian sid/main amd64 python3-jinja2 all 2.11.2-1 [113 kB]
79% [32 python3-jinja2 0 B/113 kB 0%]
80% [Working]
Get:33 http://deb.debian.org/debian sid/main amd64 python3-werkzeug all 1.0.1+dfsg1-2 [195 kB]
80% [33 python3-werkzeug 0 B/195 kB 0%]
82% [Working]
Get:34 http://deb.debian.org/debian sid/main amd64 python3-flask all 1.1.2-2 [99.0 kB]
82% [34 python3-flask 0 B/99.0 kB 0%]
83% [Working]
Get:35 http://deb.debian.org/debian sid/main amd64 python3-humanize all 3.1.0-1 [33.5 kB]
83% [35 python3-humanize 0 B/33.5 kB 0%]
84% [Working]
Get:36 http://deb.debian.org/debian sid/main amd64 python3-idna all 2.10-1 [37.4 kB]
84% [36 python3-idna 0 B/37.4 kB 0%]
85% [Working]
Get:37 http://deb.debian.org/debian sid/main amd64 python3-markdown all 3.3.3-1 [70.6 kB]
85% [37 python3-markdown 0 B/70.6 kB 0%]
86% [Working]
Get:38 http://deb.debian.org/debian sid/main amd64 python3-mistletoe all 0.7.2-2 [27.1 kB]
86% [38 python3-mistletoe 0 B/27.1 kB 0%]
86% [Working]
Get:39 http://deb.debian.org/debian sid/main amd64 python3-pyasn1 all 0.4.8-1 [63.8 kB]
86% [39 python3-pyasn1 0 B/63.8 kB 0%]
87% [Working]
Get:40 http://deb.debian.org/debian sid/main amd64 python3-pgpy all 0.5.2-2 [68.7 kB]
87% [40 python3-pgpy 0 B/68.7 kB 0%]
88% [Working]
Get:41 http://deb.debian.org/debian sid/main amd64 python3-prometheus-client all 0.7.1-1.1 [33.3 kB]
88% [41 python3-prometheus-client 0 B/33.3 kB 0%]
89% [Working]
Get:42 http://deb.debian.org/debian sid/main amd64 python3-psycopg2 amd64 2.8.5-1+b1 [154 kB]
89% [42 python3-psycopg2 0 B/154 kB 0%]
90% [Working]
Get:43 http://deb.debian.org/debian sid/main amd64 python3-pygments all 2.7.1+dfsg-1 [656 kB]
90% [43 python3-pygments 0 B/656 kB 0%]
96% [Working]
Get:44 http://deb.debian.org/debian sid/main amd64 python3-redis all 3.3.11-3 [73.5 kB]
96% [44 python3-redis 0 B/73.5 kB 0%] 1665 kB/s 0s
97% [Working] 1665 kB/s 0s
Get:45 http://deb.debian.org/debian sid/main amd64 python3-urllib3 all 1.25.9-1 [105 kB]
97% [45 python3-urllib3 0 B/105 kB 0%] 1665 kB/s 0s
98% [Working] 1665 kB/s 0s
Get:46 http://deb.debian.org/debian sid/main amd64 python3-requests all 2.24.0+dfsg-1 [71.7 kB]
98% [46 python3-requests 0 B/71.7 kB 0%] 1665 kB/s 0s
99% [Working] 1665 kB/s 0s
Get:47 http://deb.debian.org/debian sid/main amd64 python3-sqlalchemy-utils all 0.36.3-2 [64.7 kB]
99% [47 python3-sqlalchemy-utils 0 B/64.7 kB 0%] 1665 kB/s 0s
100% [Working] 1665 kB/s 0s
Fetched 9765 kB in 6s (1551 kB/s)
Extracting templates from packages: 60%
Extracting templates from packages: 100%
Selecting previously unselected package node-jquery.
(Reading database ...
(Reading database ... 5%
(Reading database ... 10%
(Reading database ... 15%
(Reading database ... 20%
(Reading database ... 25%
(Reading database ... 30%
(Reading database ... 35%
(Reading database ... 40%
(Reading database ... 45%
(Reading database ... 50%
(Reading database ... 55%
(Reading database ... 60%
(Reading database ... 65%
(Reading database ... 70%
(Reading database ... 75%
(Reading database ... 80%
(Reading database ... 85%
(Reading database ... 90%
(Reading database ... 95%
(Reading database ... 100%
(Reading database ... 27039 files and directories currently installed.)
Preparing to unpack .../00-node-jquery_3.5.1+dfsg-4_all.deb ...
Unpacking node-jquery (3.5.1+dfsg-4) ...
Selecting previously unselected package libjs-jquery.
Preparing to unpack .../01-libjs-jquery_3.5.1+dfsg-4_all.deb ...
Unpacking libjs-jquery (3.5.1+dfsg-4) ...
Selecting previously unselected package libpq5:amd64.
Preparing to unpack .../02-libpq5_13.0-6_amd64.deb ...
Unpacking libpq5:amd64 (13.0-6) ...
Selecting previously unselected package python-babel-localedata.
Preparing to unpack .../03-python-babel-localedata_2.8.0+dfsg.1-4_all.deb ...
Unpacking python-babel-localedata (2.8.0+dfsg.1-4) ...
Selecting previously unselected package python3-pkg-resources.
Preparing to unpack .../04-python3-pkg-resources_50.3.0-1_all.deb ...
Unpacking python3-pkg-resources (50.3.0-1) ...
Selecting previously unselected package python3-six.
Preparing to unpack .../05-python3-six_1.15.0-1_all.deb ...
Unpacking python3-six (1.15.0-1) ...
Selecting previously unselected package python3-dateutil.
Preparing to unpack .../06-python3-dateutil_2.8.1-4_all.deb ...
Unpacking python3-dateutil (2.8.1-4) ...
Selecting previously unselected package python3-lib2to3.
Preparing to unpack .../07-python3-lib2to3_3.8.6-1_all.deb ...
Unpacking python3-lib2to3 (3.8.6-1) ...
Selecting previously unselected package python3-distutils.
Preparing to unpack .../08-python3-distutils_3.8.6-1_all.deb ...
Unpacking python3-distutils (3.8.6-1) ...
Selecting previously unselected package python3-editor.
Preparing to unpack .../09-python3-editor_1.0.3-2_all.deb ...
Unpacking python3-editor (1.0.3-2) ...
Selecting previously unselected package python3-markupsafe.
Preparing to unpack .../10-python3-markupsafe_1.1.1-1+b2_amd64.deb ...
Unpacking python3-markupsafe (1.1.1-1+b2) ...
Selecting previously unselected package python3-mako.
Preparing to unpack .../11-python3-mako_1.1.3+ds1-1_all.deb ...
Unpacking python3-mako (1.1.3+ds1-1) ...
Selecting previously unselected package python3-sqlalchemy.
Preparing to unpack .../12-python3-sqlalchemy_1.3.20+ds1-1_all.deb ...
Unpacking python3-sqlalchemy (1.3.20+ds1-1) ...
Selecting previously unselected package python3-alembic.
Preparing to unpack .../13-python3-alembic_1.4.3-1_all.deb ...
Unpacking python3-alembic (1.4.3-1) ...
Selecting previously unselected package python3-anyjson.
Preparing to unpack .../14-python3-anyjson_0.3.3-2_all.deb ...
Unpacking python3-anyjson (0.3.3-2) ...
Selecting previously unselected package python3-arrow.
Preparing to unpack .../15-python3-arrow_0.15.7-1_all.deb ...
Unpacking python3-arrow (0.15.7-1) ...
Selecting previously unselected package python3-tz.
Preparing to unpack .../16-python3-tz_2020.1-2_all.deb ...
Unpacking python3-tz (2020.1-2) ...
Selecting previously unselected package python3-babel.
Preparing to unpack .../17-python3-babel_2.8.0+dfsg.1-4_all.deb ...
Unpacking python3-babel (2.8.0+dfsg.1-4) ...
Selecting previously unselected package python3-pyparsing.
Preparing to unpack .../18-python3-pyparsing_2.4.7-1_all.deb ...
Unpacking python3-pyparsing (2.4.7-1) ...
Selecting previously unselected package python3-packaging.
Preparing to unpack .../19-python3-packaging_20.4-1_all.deb ...
Unpacking python3-packaging (20.4-1) ...
Selecting previously unselected package python3-webencodings.
Preparing to unpack .../20-python3-webencodings_0.5.1-2_all.deb ...
Unpacking python3-webencodings (0.5.1-2) ...
Selecting previously unselected package python3-html5lib.
Preparing to unpack .../21-python3-html5lib_1.1-2_all.deb ...
Unpacking python3-html5lib (1.1-2) ...
Selecting previously unselected package python3-bleach.
Preparing to unpack .../22-python3-bleach_3.2.1-1_all.deb ...
Unpacking python3-bleach (3.2.1-1) ...
Selecting previously unselected package python3-soupsieve.
Preparing to unpack .../23-python3-soupsieve_2.0.1-1_all.deb ...
Unpacking python3-soupsieve (2.0.1-1) ...
Selecting previously unselected package python3-bs4.
Preparing to unpack .../24-python3-bs4_4.9.3-1_all.deb ...
Unpacking python3-bs4 (4.9.3-1) ...
Selecting previously unselected package python3-certifi.
Preparing to unpack .../25-python3-certifi_2020.6.20-1_all.deb ...
Unpacking python3-certifi (2020.6.20-1) ...
Selecting previously unselected package python3-cffi-backend.
Preparing to unpack .../26-python3-cffi-backend_1.14.3-2_amd64.deb ...
Unpacking python3-cffi-backend (1.14.3-2) ...
Selecting previously unselected package python3-chardet.
Preparing to unpack .../27-python3-chardet_3.0.4-7_all.deb ...
Unpacking python3-chardet (3.0.4-7) ...
Selecting previously unselected package python3-colorama.
Preparing to unpack .../28-python3-colorama_0.4.3-1_all.deb ...
Unpacking python3-colorama (0.4.3-1) ...
Selecting previously unselected package python3-click.
Preparing to unpack .../29-python3-click_7.1.2-1_all.deb ...
Unpacking python3-click (7.1.2-1) ...
Selecting previously unselected package python3-cryptography.
Preparing to unpack .../30-python3-cryptography_3.2.1-1_amd64.deb ...
Unpacking python3-cryptography (3.2.1-1) ...
Selecting previously unselected package python3-decorator.
Preparing to unpack .../31-python3-decorator_4.4.2-2_all.deb ...
Unpacking python3-decorator (4.4.2-2) ...
Selecting previously unselected package python3-itsdangerous.
Preparing to unpack .../32-python3-itsdangerous_1.1.0-3_all.deb ...
Unpacking python3-itsdangerous (1.1.0-3) ...
Selecting previously unselected package python3-jinja2.
Preparing to unpack .../33-python3-jinja2_2.11.2-1_all.deb ...
Unpacking python3-jinja2 (2.11.2-1) ...
Selecting previously unselected package python3-werkzeug.
Preparing to unpack .../34-python3-werkzeug_1.0.1+dfsg1-2_all.deb ...
Unpacking python3-werkzeug (1.0.1+dfsg1-2) ...
Selecting previously unselected package python3-flask.
Preparing to unpack .../35-python3-flask_1.1.2-2_all.deb ...
Unpacking python3-flask (1.1.2-2) ...
Selecting previously unselected package python3-humanize.
Preparing to unpack .../36-python3-humanize_3.1.0-1_all.deb ...
Unpacking python3-humanize (3.1.0-1) ...
Selecting previously unselected package python3-idna.
Preparing to unpack .../37-python3-idna_2.10-1_all.deb ...
Unpacking python3-idna (2.10-1) ...
Selecting previously unselected package python3-markdown.
Preparing to unpack .../38-python3-markdown_3.3.3-1_all.deb ...
Unpacking python3-markdown (3.3.3-1) ...
Selecting previously unselected package python3-mistletoe.
Preparing to unpack .../39-python3-mistletoe_0.7.2-2_all.deb ...
Unpacking python3-mistletoe (0.7.2-2) ...
Selecting previously unselected package python3-pyasn1.
Preparing to unpack .../40-python3-pyasn1_0.4.8-1_all.deb ...
Unpacking python3-pyasn1 (0.4.8-1) ...
Selecting previously unselected package python3-pgpy.
Preparing to unpack .../41-python3-pgpy_0.5.2-2_all.deb ...
Unpacking python3-pgpy (0.5.2-2) ...
Selecting previously unselected package python3-prometheus-client.
Preparing to unpack .../42-python3-prometheus-client_0.7.1-1.1_all.deb ...
Unpacking python3-prometheus-client (0.7.1-1.1) ...
Selecting previously unselected package python3-psycopg2.
Preparing to unpack .../43-python3-psycopg2_2.8.5-1+b1_amd64.deb ...
Unpacking python3-psycopg2 (2.8.5-1+b1) ...
Selecting previously unselected package python3-pygments.
Preparing to unpack .../44-python3-pygments_2.7.1+dfsg-1_all.deb ...
Unpacking python3-pygments (2.7.1+dfsg-1) ...
Selecting previously unselected package python3-redis.
Preparing to unpack .../45-python3-redis_3.3.11-3_all.deb ...
Unpacking python3-redis (3.3.11-3) ...
Selecting previously unselected package python3-urllib3.
Preparing to unpack .../46-python3-urllib3_1.25.9-1_all.deb ...
Unpacking python3-urllib3 (1.25.9-1) ...
Selecting previously unselected package python3-requests.
Preparing to unpack .../47-python3-requests_2.24.0+dfsg-1_all.deb ...
Unpacking python3-requests (2.24.0+dfsg-1) ...
Selecting previously unselected package python3-sqlalchemy-utils.
Preparing to unpack .../48-python3-sqlalchemy-utils_0.36.3-2_all.deb ...
Unpacking python3-sqlalchemy-utils (0.36.3-2) ...
Selecting previously unselected package python3-srht.
Preparing to unpack .../49-python3-srht_0.65.6-1-g7d801d2-1_all.deb ...
Unpacking python3-srht (0.65.6-1-g7d801d2-1) ...
Setting up python3-pkg-resources (50.3.0-1) ...
Setting up python3-colorama (0.4.3-1) ...
Setting up libpq5:amd64 (13.0-6) ...
Setting up python3-itsdangerous (1.1.0-3) ...
Setting up python3-click (7.1.2-1) ...
Setting up python3-markupsafe (1.1.1-1+b2) ...
Setting up python3-webencodings (0.5.1-2) ...
Setting up python3-tz (2020.1-2) ...
Setting up python-babel-localedata (2.8.0+dfsg.1-4) ...
Setting up python3-sqlalchemy (1.3.20+ds1-1) ...
Setting up python3-six (1.15.0-1) ...
Setting up python3-decorator (4.4.2-2) ...
Setting up python3-jinja2 (2.11.2-1) ...
Setting up python3-pygments (2.7.1+dfsg-1) ...
Setting up python3-chardet (3.0.4-7) ...
Setting up python3-pyparsing (2.4.7-1) ...
Setting up python3-certifi (2020.6.20-1) ...
Setting up python3-idna (2.10-1) ...
Setting up python3-markdown (3.3.3-1) ...
Setting up python3-psycopg2 (2.8.5-1+b1) ...
Setting up python3-redis (3.3.11-3) ...
Setting up python3-html5lib (1.1-2) ...
Setting up python3-urllib3 (1.25.9-1) ...
Setting up python3-mistletoe (0.7.2-2) ...
Setting up python3-pyasn1 (0.4.8-1) ...
Setting up python3-dateutil (2.8.1-4) ...
Setting up python3-anyjson (0.3.3-2) ...
Setting up python3-humanize (3.1.0-1) ...
Setting up python3-lib2to3 (3.8.6-1) ...
Setting up python3-soupsieve (2.0.1-1) ...
Setting up node-jquery (3.5.1+dfsg-4) ...
Setting up python3-cffi-backend (1.14.3-2) ...
Setting up python3-mako (1.1.3+ds1-1) ...
Setting up python3-distutils (3.8.6-1) ...
Setting up python3-arrow (0.15.7-1) ...
Setting up python3-babel (2.8.0+dfsg.1-4) ...
update-alternatives: using /usr/bin/pybabel-python3 to provide /usr/bin/pybabel (pybabel) in auto mode
Setting up python3-bs4 (4.9.3-1) ...
Setting up python3-prometheus-client (0.7.1-1.1) ...
Setting up python3-packaging (20.4-1) ...
Setting up python3-cryptography (3.2.1-1) ...
Setting up python3-requests (2.24.0+dfsg-1) ...
Setting up libjs-jquery (3.5.1+dfsg-4) ...
Setting up python3-editor (1.0.3-2) ...
Setting up python3-pgpy (0.5.2-2) ...
Setting up python3-sqlalchemy-utils (0.36.3-2) ...
Setting up python3-bleach (3.2.1-1) ...
Setting up python3-werkzeug (1.0.1+dfsg1-2) ...
Setting up python3-alembic (1.4.3-1) ...
Setting up python3-flask (1.1.2-2) ...
Setting up python3-srht (0.65.6-1-g7d801d2-1) ...
Processing triggers for man-db (2.9.3-2) ...
Processing triggers for libc-bin (2.31-4) ...
|