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 |
This is a big file! Only the last 128KiB is shown. Click here to download the full log.
copying /home/build/lists.sr.ht-0.45.17-1-g0ae69c9/.pybuild/cpython3_3.9_listssrht/build/listssrht/templates/settings.html -> /home/build/lists.sr.ht-0.45.17-1-g0ae69c9/debian/python3-listssrht/usr/lib/python3.9/dist-packages/listssrht/templates
copying /home/build/lists.sr.ht-0.45.17-1-g0ae69c9/.pybuild/cpython3_3.9_listssrht/build/listssrht/templates/create.html -> /home/build/lists.sr.ht-0.45.17-1-g0ae69c9/debian/python3-listssrht/usr/lib/python3.9/dist-packages/listssrht/templates
copying /home/build/lists.sr.ht-0.45.17-1-g0ae69c9/.pybuild/cpython3_3.9_listssrht/build/listssrht/templates/create-mirror.html -> /home/build/lists.sr.ht-0.45.17-1-g0ae69c9/debian/python3-listssrht/usr/lib/python3.9/dist-packages/listssrht/templates
copying /home/build/lists.sr.ht-0.45.17-1-g0ae69c9/.pybuild/cpython3_3.9_listssrht/build/listssrht/templates/dashboard.html -> /home/build/lists.sr.ht-0.45.17-1-g0ae69c9/debian/python3-listssrht/usr/lib/python3.9/dist-packages/listssrht/templates
copying /home/build/lists.sr.ht-0.45.17-1-g0ae69c9/.pybuild/cpython3_3.9_listssrht/build/listssrht/templates/settings-delete.html -> /home/build/lists.sr.ht-0.45.17-1-g0ae69c9/debian/python3-listssrht/usr/lib/python3.9/dist-packages/listssrht/templates
copying /home/build/lists.sr.ht-0.45.17-1-g0ae69c9/.pybuild/cpython3_3.9_listssrht/build/listssrht/templates/user-lists.html -> /home/build/lists.sr.ht-0.45.17-1-g0ae69c9/debian/python3-listssrht/usr/lib/python3.9/dist-packages/listssrht/templates
copying /home/build/lists.sr.ht-0.45.17-1-g0ae69c9/.pybuild/cpython3_3.9_listssrht/build/listssrht/templates/settings-import-export.html -> /home/build/lists.sr.ht-0.45.17-1-g0ae69c9/debian/python3-listssrht/usr/lib/python3.9/dist-packages/listssrht/templates
copying /home/build/lists.sr.ht-0.45.17-1-g0ae69c9/.pybuild/cpython3_3.9_listssrht/build/listssrht/templates/list-full.html -> /home/build/lists.sr.ht-0.45.17-1-g0ae69c9/debian/python3-listssrht/usr/lib/python3.9/dist-packages/listssrht/templates
copying /home/build/lists.sr.ht-0.45.17-1-g0ae69c9/.pybuild/cpython3_3.9_listssrht/build/listssrht/templates/settings-info.html -> /home/build/lists.sr.ht-0.45.17-1-g0ae69c9/debian/python3-listssrht/usr/lib/python3.9/dist-packages/listssrht/templates
copying /home/build/lists.sr.ht-0.45.17-1-g0ae69c9/.pybuild/cpython3_3.9_listssrht/build/listssrht/templates/user.html -> /home/build/lists.sr.ht-0.45.17-1-g0ae69c9/debian/python3-listssrht/usr/lib/python3.9/dist-packages/listssrht/templates
copying /home/build/lists.sr.ht-0.45.17-1-g0ae69c9/.pybuild/cpython3_3.9_listssrht/build/listssrht/templates/index.html -> /home/build/lists.sr.ht-0.45.17-1-g0ae69c9/debian/python3-listssrht/usr/lib/python3.9/dist-packages/listssrht/templates
copying /home/build/lists.sr.ht-0.45.17-1-g0ae69c9/.pybuild/cpython3_3.9_listssrht/build/listssrht/templates/list.html -> /home/build/lists.sr.ht-0.45.17-1-g0ae69c9/debian/python3-listssrht/usr/lib/python3.9/dist-packages/listssrht/templates
copying /home/build/lists.sr.ht-0.45.17-1-g0ae69c9/.pybuild/cpython3_3.9_listssrht/build/listssrht/app.py -> /home/build/lists.sr.ht-0.45.17-1-g0ae69c9/debian/python3-listssrht/usr/lib/python3.9/dist-packages/listssrht
copying /home/build/lists.sr.ht-0.45.17-1-g0ae69c9/.pybuild/cpython3_3.9_listssrht/build/listssrht/filters.py -> /home/build/lists.sr.ht-0.45.17-1-g0ae69c9/debian/python3-listssrht/usr/lib/python3.9/dist-packages/listssrht
creating /home/build/lists.sr.ht-0.45.17-1-g0ae69c9/debian/python3-listssrht/usr/lib/python3.9/dist-packages/listssrht/blueprints
copying /home/build/lists.sr.ht-0.45.17-1-g0ae69c9/.pybuild/cpython3_3.9_listssrht/build/listssrht/blueprints/user.py -> /home/build/lists.sr.ht-0.45.17-1-g0ae69c9/debian/python3-listssrht/usr/lib/python3.9/dist-packages/listssrht/blueprints
copying /home/build/lists.sr.ht-0.45.17-1-g0ae69c9/.pybuild/cpython3_3.9_listssrht/build/listssrht/blueprints/settings.py -> /home/build/lists.sr.ht-0.45.17-1-g0ae69c9/debian/python3-listssrht/usr/lib/python3.9/dist-packages/listssrht/blueprints
copying /home/build/lists.sr.ht-0.45.17-1-g0ae69c9/.pybuild/cpython3_3.9_listssrht/build/listssrht/blueprints/archives.py -> /home/build/lists.sr.ht-0.45.17-1-g0ae69c9/debian/python3-listssrht/usr/lib/python3.9/dist-packages/listssrht/blueprints
copying /home/build/lists.sr.ht-0.45.17-1-g0ae69c9/.pybuild/cpython3_3.9_listssrht/build/listssrht/blueprints/patches.py -> /home/build/lists.sr.ht-0.45.17-1-g0ae69c9/debian/python3-listssrht/usr/lib/python3.9/dist-packages/listssrht/blueprints
creating /home/build/lists.sr.ht-0.45.17-1-g0ae69c9/debian/python3-listssrht/usr/lib/python3.9/dist-packages/listssrht/blueprints/api
copying /home/build/lists.sr.ht-0.45.17-1-g0ae69c9/.pybuild/cpython3_3.9_listssrht/build/listssrht/blueprints/api/subscriptions.py -> /home/build/lists.sr.ht-0.45.17-1-g0ae69c9/debian/python3-listssrht/usr/lib/python3.9/dist-packages/listssrht/blueprints/api
copying /home/build/lists.sr.ht-0.45.17-1-g0ae69c9/.pybuild/cpython3_3.9_listssrht/build/listssrht/blueprints/api/lists.py -> /home/build/lists.sr.ht-0.45.17-1-g0ae69c9/debian/python3-listssrht/usr/lib/python3.9/dist-packages/listssrht/blueprints/api
copying /home/build/lists.sr.ht-0.45.17-1-g0ae69c9/.pybuild/cpython3_3.9_listssrht/build/listssrht/blueprints/api/__init__.py -> /home/build/lists.sr.ht-0.45.17-1-g0ae69c9/debian/python3-listssrht/usr/lib/python3.9/dist-packages/listssrht/blueprints/api
copying /home/build/lists.sr.ht-0.45.17-1-g0ae69c9/.pybuild/cpython3_3.9_listssrht/build/listssrht/blueprints/api/emails.py -> /home/build/lists.sr.ht-0.45.17-1-g0ae69c9/debian/python3-listssrht/usr/lib/python3.9/dist-packages/listssrht/blueprints/api
copying /home/build/lists.sr.ht-0.45.17-1-g0ae69c9/.pybuild/cpython3_3.9_listssrht/build/listssrht/blueprints/api/patches.py -> /home/build/lists.sr.ht-0.45.17-1-g0ae69c9/debian/python3-listssrht/usr/lib/python3.9/dist-packages/listssrht/blueprints/api
copying /home/build/lists.sr.ht-0.45.17-1-g0ae69c9/.pybuild/cpython3_3.9_listssrht/build/listssrht/process.py -> /home/build/lists.sr.ht-0.45.17-1-g0ae69c9/debian/python3-listssrht/usr/lib/python3.9/dist-packages/listssrht
creating /home/build/lists.sr.ht-0.45.17-1-g0ae69c9/debian/python3-listssrht/usr/lib/python3.9/dist-packages/listssrht/types
copying /home/build/lists.sr.ht-0.45.17-1-g0ae69c9/.pybuild/cpython3_3.9_listssrht/build/listssrht/types/user.py -> /home/build/lists.sr.ht-0.45.17-1-g0ae69c9/debian/python3-listssrht/usr/lib/python3.9/dist-packages/listssrht/types
copying /home/build/lists.sr.ht-0.45.17-1-g0ae69c9/.pybuild/cpython3_3.9_listssrht/build/listssrht/types/email.py -> /home/build/lists.sr.ht-0.45.17-1-g0ae69c9/debian/python3-listssrht/usr/lib/python3.9/dist-packages/listssrht/types
copying /home/build/lists.sr.ht-0.45.17-1-g0ae69c9/.pybuild/cpython3_3.9_listssrht/build/listssrht/types/repo.py -> /home/build/lists.sr.ht-0.45.17-1-g0ae69c9/debian/python3-listssrht/usr/lib/python3.9/dist-packages/listssrht/types
copying /home/build/lists.sr.ht-0.45.17-1-g0ae69c9/.pybuild/cpython3_3.9_listssrht/build/listssrht/types/subscription.py -> /home/build/lists.sr.ht-0.45.17-1-g0ae69c9/debian/python3-listssrht/usr/lib/python3.9/dist-packages/listssrht/types
copying /home/build/lists.sr.ht-0.45.17-1-g0ae69c9/.pybuild/cpython3_3.9_listssrht/build/listssrht/types/listaccess.py -> /home/build/lists.sr.ht-0.45.17-1-g0ae69c9/debian/python3-listssrht/usr/lib/python3.9/dist-packages/listssrht/types
copying /home/build/lists.sr.ht-0.45.17-1-g0ae69c9/.pybuild/cpython3_3.9_listssrht/build/listssrht/types/mirror.py -> /home/build/lists.sr.ht-0.45.17-1-g0ae69c9/debian/python3-listssrht/usr/lib/python3.9/dist-packages/listssrht/types
copying /home/build/lists.sr.ht-0.45.17-1-g0ae69c9/.pybuild/cpython3_3.9_listssrht/build/listssrht/types/list.py -> /home/build/lists.sr.ht-0.45.17-1-g0ae69c9/debian/python3-listssrht/usr/lib/python3.9/dist-packages/listssrht/types
copying /home/build/lists.sr.ht-0.45.17-1-g0ae69c9/.pybuild/cpython3_3.9_listssrht/build/listssrht/types/__init__.py -> /home/build/lists.sr.ht-0.45.17-1-g0ae69c9/debian/python3-listssrht/usr/lib/python3.9/dist-packages/listssrht/types
copying /home/build/lists.sr.ht-0.45.17-1-g0ae69c9/.pybuild/cpython3_3.9_listssrht/build/listssrht/types/access.py -> /home/build/lists.sr.ht-0.45.17-1-g0ae69c9/debian/python3-listssrht/usr/lib/python3.9/dist-packages/listssrht/types
copying /home/build/lists.sr.ht-0.45.17-1-g0ae69c9/.pybuild/cpython3_3.9_listssrht/build/listssrht/types/patchset.py -> /home/build/lists.sr.ht-0.45.17-1-g0ae69c9/debian/python3-listssrht/usr/lib/python3.9/dist-packages/listssrht/types
copying /home/build/lists.sr.ht-0.45.17-1-g0ae69c9/.pybuild/cpython3_3.9_listssrht/build/listssrht/webhooks.py -> /home/build/lists.sr.ht-0.45.17-1-g0ae69c9/debian/python3-listssrht/usr/lib/python3.9/dist-packages/listssrht
creating /home/build/lists.sr.ht-0.45.17-1-g0ae69c9/debian/python3-listssrht/usr/lib/python3.9/dist-packages/listssrht/alembic
copying /home/build/lists.sr.ht-0.45.17-1-g0ae69c9/.pybuild/cpython3_3.9_listssrht/build/listssrht/alembic/env.py -> /home/build/lists.sr.ht-0.45.17-1-g0ae69c9/debian/python3-listssrht/usr/lib/python3.9/dist-packages/listssrht/alembic
creating /home/build/lists.sr.ht-0.45.17-1-g0ae69c9/debian/python3-listssrht/usr/lib/python3.9/dist-packages/listssrht/alembic/versions
copying /home/build/lists.sr.ht-0.45.17-1-g0ae69c9/.pybuild/cpython3_3.9_listssrht/build/listssrht/alembic/versions/84d51b97a028_add_oauthtoken_table.py -> /home/build/lists.sr.ht-0.45.17-1-g0ae69c9/debian/python3-listssrht/usr/lib/python3.9/dist-packages/listssrht/alembic/versions
copying /home/build/lists.sr.ht-0.45.17-1-g0ae69c9/.pybuild/cpython3_3.9_listssrht/build/listssrht/alembic/versions/fbbc6b346aee_add_fine_grained_access_control_columns.py -> /home/build/lists.sr.ht-0.45.17-1-g0ae69c9/debian/python3-listssrht/usr/lib/python3.9/dist-packages/listssrht/alembic/versions
copying /home/build/lists.sr.ht-0.45.17-1-g0ae69c9/.pybuild/cpython3_3.9_listssrht/build/listssrht/alembic/versions/41c629d9fb0f_add_reply_to_to_patchset.py -> /home/build/lists.sr.ht-0.45.17-1-g0ae69c9/debian/python3-listssrht/usr/lib/python3.9/dist-packages/listssrht/alembic/versions
copying /home/build/lists.sr.ht-0.45.17-1-g0ae69c9/.pybuild/cpython3_3.9_listssrht/build/listssrht/alembic/versions/e5ae6528a8d5_add_unique_constraint_on_message_id_.py -> /home/build/lists.sr.ht-0.45.17-1-g0ae69c9/debian/python3-listssrht/usr/lib/python3.9/dist-packages/listssrht/alembic/versions
copying /home/build/lists.sr.ht-0.45.17-1-g0ae69c9/.pybuild/cpython3_3.9_listssrht/build/listssrht/alembic/versions/79140e9fc031_add_cascades_for_list_deletion.py -> /home/build/lists.sr.ht-0.45.17-1-g0ae69c9/debian/python3-listssrht/usr/lib/python3.9/dist-packages/listssrht/alembic/versions
copying /home/build/lists.sr.ht-0.45.17-1-g0ae69c9/.pybuild/cpython3_3.9_listssrht/build/listssrht/alembic/versions/c3c2bea8d735_add_webhook_tables.py -> /home/build/lists.sr.ht-0.45.17-1-g0ae69c9/debian/python3-listssrht/usr/lib/python3.9/dist-packages/listssrht/alembic/versions
copying /home/build/lists.sr.ht-0.45.17-1-g0ae69c9/.pybuild/cpython3_3.9_listssrht/build/listssrht/alembic/versions/4c0b015574ef_add_user_type_to_user.py -> /home/build/lists.sr.ht-0.45.17-1-g0ae69c9/debian/python3-listssrht/usr/lib/python3.9/dist-packages/listssrht/alembic/versions
copying /home/build/lists.sr.ht-0.45.17-1-g0ae69c9/.pybuild/cpython3_3.9_listssrht/build/listssrht/alembic/versions/223cd3247273_add_more_patch_fields_to_email_table.py -> /home/build/lists.sr.ht-0.45.17-1-g0ae69c9/debian/python3-listssrht/usr/lib/python3.9/dist-packages/listssrht/alembic/versions
copying /home/build/lists.sr.ht-0.45.17-1-g0ae69c9/.pybuild/cpython3_3.9_listssrht/build/listssrht/alembic/versions/803817bfd568_expand_size_of_subject_header_columns.py -> /home/build/lists.sr.ht-0.45.17-1-g0ae69c9/debian/python3-listssrht/usr/lib/python3.9/dist-packages/listssrht/alembic/versions
copying /home/build/lists.sr.ht-0.45.17-1-g0ae69c9/.pybuild/cpython3_3.9_listssrht/build/listssrht/alembic/versions/9d264a430403_drop_confirmed_column_from_subscription.py -> /home/build/lists.sr.ht-0.45.17-1-g0ae69c9/debian/python3-listssrht/usr/lib/python3.9/dist-packages/listssrht/alembic/versions
copying /home/build/lists.sr.ht-0.45.17-1-g0ae69c9/.pybuild/cpython3_3.9_listssrht/build/listssrht/alembic/versions/617471810f6f_add_mirror_table.py -> /home/build/lists.sr.ht-0.45.17-1-g0ae69c9/debian/python3-listssrht/usr/lib/python3.9/dist-packages/listssrht/alembic/versions
copying /home/build/lists.sr.ht-0.45.17-1-g0ae69c9/.pybuild/cpython3_3.9_listssrht/build/listssrht/alembic/versions/1db0bbd80c48_add_message_date_column.py -> /home/build/lists.sr.ht-0.45.17-1-g0ae69c9/debian/python3-listssrht/usr/lib/python3.9/dist-packages/listssrht/alembic/versions
copying /home/build/lists.sr.ht-0.45.17-1-g0ae69c9/.pybuild/cpython3_3.9_listssrht/build/listssrht/alembic/versions/98bb95b72e3a_add_patchset_tool_table.py -> /home/build/lists.sr.ht-0.45.17-1-g0ae69c9/debian/python3-listssrht/usr/lib/python3.9/dist-packages/listssrht/alembic/versions
copying /home/build/lists.sr.ht-0.45.17-1-g0ae69c9/.pybuild/cpython3_3.9_listssrht/build/listssrht/alembic/versions/a03b9606f3c6_convert_headers_to_json.py -> /home/build/lists.sr.ht-0.45.17-1-g0ae69c9/debian/python3-listssrht/usr/lib/python3.9/dist-packages/listssrht/alembic/versions
copying /home/build/lists.sr.ht-0.45.17-1-g0ae69c9/.pybuild/cpython3_3.9_listssrht/build/listssrht/alembic/versions/3b2f53e11ac6_add_import_in_progress_to_lists.py -> /home/build/lists.sr.ht-0.45.17-1-g0ae69c9/debian/python3-listssrht/usr/lib/python3.9/dist-packages/listssrht/alembic/versions
copying /home/build/lists.sr.ht-0.45.17-1-g0ae69c9/.pybuild/cpython3_3.9_listssrht/build/listssrht/alembic/versions/f5ec39205a69_add_in_reply_to_header_to_database.py -> /home/build/lists.sr.ht-0.45.17-1-g0ae69c9/debian/python3-listssrht/usr/lib/python3.9/dist-packages/listssrht/alembic/versions
copying /home/build/lists.sr.ht-0.45.17-1-g0ae69c9/.pybuild/cpython3_3.9_listssrht/build/listssrht/alembic/versions/07257ddd8bb7_add_user_mixin_properties.py -> /home/build/lists.sr.ht-0.45.17-1-g0ae69c9/debian/python3-listssrht/usr/lib/python3.9/dist-packages/listssrht/alembic/versions
copying /home/build/lists.sr.ht-0.45.17-1-g0ae69c9/.pybuild/cpython3_3.9_listssrht/build/listssrht/alembic/versions/abd4678bea1b_decode_quoted_printable_message_bodies.py -> /home/build/lists.sr.ht-0.45.17-1-g0ae69c9/debian/python3-listssrht/usr/lib/python3.9/dist-packages/listssrht/alembic/versions
copying /home/build/lists.sr.ht-0.45.17-1-g0ae69c9/.pybuild/cpython3_3.9_listssrht/build/listssrht/alembic/versions/2b20dca45cbb_add_submitter_to_patchset.py -> /home/build/lists.sr.ht-0.45.17-1-g0ae69c9/debian/python3-listssrht/usr/lib/python3.9/dist-packages/listssrht/alembic/versions
copying /home/build/lists.sr.ht-0.45.17-1-g0ae69c9/.pybuild/cpython3_3.9_listssrht/build/listssrht/alembic/versions/056c313b267f_add_permit_reject_mimetypes.py -> /home/build/lists.sr.ht-0.45.17-1-g0ae69c9/debian/python3-listssrht/usr/lib/python3.9/dist-packages/listssrht/alembic/versions
copying /home/build/lists.sr.ht-0.45.17-1-g0ae69c9/.pybuild/cpython3_3.9_listssrht/build/listssrht/alembic/versions/ed291e59b2a0_add_constraints_to_subscriptions.py -> /home/build/lists.sr.ht-0.45.17-1-g0ae69c9/debian/python3-listssrht/usr/lib/python3.9/dist-packages/listssrht/alembic/versions
copying /home/build/lists.sr.ht-0.45.17-1-g0ae69c9/.pybuild/cpython3_3.9_listssrht/build/listssrht/alembic/versions/4a6c771785ff_add_subscribed_user_permissions.py -> /home/build/lists.sr.ht-0.45.17-1-g0ae69c9/debian/python3-listssrht/usr/lib/python3.9/dist-packages/listssrht/alembic/versions
copying /home/build/lists.sr.ht-0.45.17-1-g0ae69c9/.pybuild/cpython3_3.9_listssrht/build/listssrht/alembic/versions/86fbf902f15b_add_access_table.py -> /home/build/lists.sr.ht-0.45.17-1-g0ae69c9/debian/python3-listssrht/usr/lib/python3.9/dist-packages/listssrht/alembic/versions
creating /home/build/lists.sr.ht-0.45.17-1-g0ae69c9/debian/python3-listssrht/usr/lib/python3.9/dist-packages/listssrht/static
copying /home/build/lists.sr.ht-0.45.17-1-g0ae69c9/.pybuild/cpython3_3.9_listssrht/build/listssrht/static/codemirror.css -> /home/build/lists.sr.ht-0.45.17-1-g0ae69c9/debian/python3-listssrht/usr/lib/python3.9/dist-packages/listssrht/static
copying /home/build/lists.sr.ht-0.45.17-1-g0ae69c9/.pybuild/cpython3_3.9_listssrht/build/listssrht/static/codemirror.js -> /home/build/lists.sr.ht-0.45.17-1-g0ae69c9/debian/python3-listssrht/usr/lib/python3.9/dist-packages/listssrht/static
copying /home/build/lists.sr.ht-0.45.17-1-g0ae69c9/.pybuild/cpython3_3.9_listssrht/build/listssrht/static/main.css -> /home/build/lists.sr.ht-0.45.17-1-g0ae69c9/debian/python3-listssrht/usr/lib/python3.9/dist-packages/listssrht/static
creating /home/build/lists.sr.ht-0.45.17-1-g0ae69c9/debian/python3-listssrht/usr/lib/python3.9/dist-packages/listssrht/static/icons
copying /home/build/lists.sr.ht-0.45.17-1-g0ae69c9/.pybuild/cpython3_3.9_listssrht/build/listssrht/static/icons/code-branch.svg -> /home/build/lists.sr.ht-0.45.17-1-g0ae69c9/debian/python3-listssrht/usr/lib/python3.9/dist-packages/listssrht/static/icons
copying /home/build/lists.sr.ht-0.45.17-1-g0ae69c9/.pybuild/cpython3_3.9_listssrht/build/listssrht/static/icons/circle-solid.svg -> /home/build/lists.sr.ht-0.45.17-1-g0ae69c9/debian/python3-listssrht/usr/lib/python3.9/dist-packages/listssrht/static/icons
copying /home/build/lists.sr.ht-0.45.17-1-g0ae69c9/.pybuild/cpython3_3.9_listssrht/build/listssrht/static/icons/plus-square.svg -> /home/build/lists.sr.ht-0.45.17-1-g0ae69c9/debian/python3-listssrht/usr/lib/python3.9/dist-packages/listssrht/static/icons
copying /home/build/lists.sr.ht-0.45.17-1-g0ae69c9/.pybuild/cpython3_3.9_listssrht/build/listssrht/static/icons/minus.svg -> /home/build/lists.sr.ht-0.45.17-1-g0ae69c9/debian/python3-listssrht/usr/lib/python3.9/dist-packages/listssrht/static/icons
copying /home/build/lists.sr.ht-0.45.17-1-g0ae69c9/.pybuild/cpython3_3.9_listssrht/build/listssrht/static/icons/external-link-alt.svg -> /home/build/lists.sr.ht-0.45.17-1-g0ae69c9/debian/python3-listssrht/usr/lib/python3.9/dist-packages/listssrht/static/icons
copying /home/build/lists.sr.ht-0.45.17-1-g0ae69c9/.pybuild/cpython3_3.9_listssrht/build/listssrht/static/icons/comments.svg -> /home/build/lists.sr.ht-0.45.17-1-g0ae69c9/debian/python3-listssrht/usr/lib/python3.9/dist-packages/listssrht/static/icons
copying /home/build/lists.sr.ht-0.45.17-1-g0ae69c9/.pybuild/cpython3_3.9_listssrht/build/listssrht/static/icons/envelope-o.svg -> /home/build/lists.sr.ht-0.45.17-1-g0ae69c9/debian/python3-listssrht/usr/lib/python3.9/dist-packages/listssrht/static/icons
copying /home/build/lists.sr.ht-0.45.17-1-g0ae69c9/.pybuild/cpython3_3.9_listssrht/build/listssrht/static/icons/README -> /home/build/lists.sr.ht-0.45.17-1-g0ae69c9/debian/python3-listssrht/usr/lib/python3.9/dist-packages/listssrht/static/icons
copying /home/build/lists.sr.ht-0.45.17-1-g0ae69c9/.pybuild/cpython3_3.9_listssrht/build/listssrht/static/icons/plus.svg -> /home/build/lists.sr.ht-0.45.17-1-g0ae69c9/debian/python3-listssrht/usr/lib/python3.9/dist-packages/listssrht/static/icons
copying /home/build/lists.sr.ht-0.45.17-1-g0ae69c9/.pybuild/cpython3_3.9_listssrht/build/listssrht/static/icons/arrow-right.svg -> /home/build/lists.sr.ht-0.45.17-1-g0ae69c9/debian/python3-listssrht/usr/lib/python3.9/dist-packages/listssrht/static/icons
copying /home/build/lists.sr.ht-0.45.17-1-g0ae69c9/.pybuild/cpython3_3.9_listssrht/build/listssrht/static/icons/caret-right.svg -> /home/build/lists.sr.ht-0.45.17-1-g0ae69c9/debian/python3-listssrht/usr/lib/python3.9/dist-packages/listssrht/static/icons
copying /home/build/lists.sr.ht-0.45.17-1-g0ae69c9/.pybuild/cpython3_3.9_listssrht/build/listssrht/static/icons/folder.svg -> /home/build/lists.sr.ht-0.45.17-1-g0ae69c9/debian/python3-listssrht/usr/lib/python3.9/dist-packages/listssrht/static/icons
copying /home/build/lists.sr.ht-0.45.17-1-g0ae69c9/.pybuild/cpython3_3.9_listssrht/build/listssrht/static/icons/check.svg -> /home/build/lists.sr.ht-0.45.17-1-g0ae69c9/debian/python3-listssrht/usr/lib/python3.9/dist-packages/listssrht/static/icons
copying /home/build/lists.sr.ht-0.45.17-1-g0ae69c9/.pybuild/cpython3_3.9_listssrht/build/listssrht/static/icons/comments-o.svg -> /home/build/lists.sr.ht-0.45.17-1-g0ae69c9/debian/python3-listssrht/usr/lib/python3.9/dist-packages/listssrht/static/icons
copying /home/build/lists.sr.ht-0.45.17-1-g0ae69c9/.pybuild/cpython3_3.9_listssrht/build/listssrht/static/icons/question-circle.svg -> /home/build/lists.sr.ht-0.45.17-1-g0ae69c9/debian/python3-listssrht/usr/lib/python3.9/dist-packages/listssrht/static/icons
copying /home/build/lists.sr.ht-0.45.17-1-g0ae69c9/.pybuild/cpython3_3.9_listssrht/build/listssrht/static/icons/exclamation-triangle.svg -> /home/build/lists.sr.ht-0.45.17-1-g0ae69c9/debian/python3-listssrht/usr/lib/python3.9/dist-packages/listssrht/static/icons
copying /home/build/lists.sr.ht-0.45.17-1-g0ae69c9/.pybuild/cpython3_3.9_listssrht/build/listssrht/static/icons/file-alt.svg -> /home/build/lists.sr.ht-0.45.17-1-g0ae69c9/debian/python3-listssrht/usr/lib/python3.9/dist-packages/listssrht/static/icons
copying /home/build/lists.sr.ht-0.45.17-1-g0ae69c9/.pybuild/cpython3_3.9_listssrht/build/listssrht/static/icons/file.svg -> /home/build/lists.sr.ht-0.45.17-1-g0ae69c9/debian/python3-listssrht/usr/lib/python3.9/dist-packages/listssrht/static/icons
copying /home/build/lists.sr.ht-0.45.17-1-g0ae69c9/.pybuild/cpython3_3.9_listssrht/build/listssrht/static/icons/times.svg -> /home/build/lists.sr.ht-0.45.17-1-g0ae69c9/debian/python3-listssrht/usr/lib/python3.9/dist-packages/listssrht/static/icons
copying /home/build/lists.sr.ht-0.45.17-1-g0ae69c9/.pybuild/cpython3_3.9_listssrht/build/listssrht/static/icons/user.svg -> /home/build/lists.sr.ht-0.45.17-1-g0ae69c9/debian/python3-listssrht/usr/lib/python3.9/dist-packages/listssrht/static/icons
copying /home/build/lists.sr.ht-0.45.17-1-g0ae69c9/.pybuild/cpython3_3.9_listssrht/build/listssrht/static/icons/clock.svg -> /home/build/lists.sr.ht-0.45.17-1-g0ae69c9/debian/python3-listssrht/usr/lib/python3.9/dist-packages/listssrht/static/icons
copying /home/build/lists.sr.ht-0.45.17-1-g0ae69c9/.pybuild/cpython3_3.9_listssrht/build/listssrht/static/icons/plus-circle.svg -> /home/build/lists.sr.ht-0.45.17-1-g0ae69c9/debian/python3-listssrht/usr/lib/python3.9/dist-packages/listssrht/static/icons
copying /home/build/lists.sr.ht-0.45.17-1-g0ae69c9/.pybuild/cpython3_3.9_listssrht/build/listssrht/static/icons/LICENSE.txt -> /home/build/lists.sr.ht-0.45.17-1-g0ae69c9/debian/python3-listssrht/usr/lib/python3.9/dist-packages/listssrht/static/icons
copying /home/build/lists.sr.ht-0.45.17-1-g0ae69c9/.pybuild/cpython3_3.9_listssrht/build/listssrht/static/icons/caret-left.svg -> /home/build/lists.sr.ht-0.45.17-1-g0ae69c9/debian/python3-listssrht/usr/lib/python3.9/dist-packages/listssrht/static/icons
copying /home/build/lists.sr.ht-0.45.17-1-g0ae69c9/.pybuild/cpython3_3.9_listssrht/build/listssrht/static/icons/rss.svg -> /home/build/lists.sr.ht-0.45.17-1-g0ae69c9/debian/python3-listssrht/usr/lib/python3.9/dist-packages/listssrht/static/icons
copying /home/build/lists.sr.ht-0.45.17-1-g0ae69c9/.pybuild/cpython3_3.9_listssrht/build/listssrht/static/icons/gitlab.svg -> /home/build/lists.sr.ht-0.45.17-1-g0ae69c9/debian/python3-listssrht/usr/lib/python3.9/dist-packages/listssrht/static/icons
copying /home/build/lists.sr.ht-0.45.17-1-g0ae69c9/.pybuild/cpython3_3.9_listssrht/build/listssrht/static/icons/reply.svg -> /home/build/lists.sr.ht-0.45.17-1-g0ae69c9/debian/python3-listssrht/usr/lib/python3.9/dist-packages/listssrht/static/icons
copying /home/build/lists.sr.ht-0.45.17-1-g0ae69c9/.pybuild/cpython3_3.9_listssrht/build/listssrht/static/icons/circle.svg -> /home/build/lists.sr.ht-0.45.17-1-g0ae69c9/debian/python3-listssrht/usr/lib/python3.9/dist-packages/listssrht/static/icons
copying /home/build/lists.sr.ht-0.45.17-1-g0ae69c9/.pybuild/cpython3_3.9_listssrht/build/listssrht/static/icons/circle-notch.svg -> /home/build/lists.sr.ht-0.45.17-1-g0ae69c9/debian/python3-listssrht/usr/lib/python3.9/dist-packages/listssrht/static/icons
copying /home/build/lists.sr.ht-0.45.17-1-g0ae69c9/.pybuild/cpython3_3.9_listssrht/build/listssrht/static/icons/github.svg -> /home/build/lists.sr.ht-0.45.17-1-g0ae69c9/debian/python3-listssrht/usr/lib/python3.9/dist-packages/listssrht/static/icons
copying /home/build/lists.sr.ht-0.45.17-1-g0ae69c9/.pybuild/cpython3_3.9_listssrht/build/listssrht/static/main.min.34128fd3.css -> /home/build/lists.sr.ht-0.45.17-1-g0ae69c9/debian/python3-listssrht/usr/lib/python3.9/dist-packages/listssrht/static
copying /home/build/lists.sr.ht-0.45.17-1-g0ae69c9/.pybuild/cpython3_3.9_listssrht/build/listssrht/static/main.min.css -> /home/build/lists.sr.ht-0.45.17-1-g0ae69c9/debian/python3-listssrht/usr/lib/python3.9/dist-packages/listssrht/static
copying /home/build/lists.sr.ht-0.45.17-1-g0ae69c9/.pybuild/cpython3_3.9_listssrht/build/listssrht/static/simple.js -> /home/build/lists.sr.ht-0.45.17-1-g0ae69c9/debian/python3-listssrht/usr/lib/python3.9/dist-packages/listssrht/static
byte-compiling /home/build/lists.sr.ht-0.45.17-1-g0ae69c9/debian/python3-listssrht/usr/lib/python3.9/dist-packages/listssrht/oauth.py to oauth.cpython-39.pyc
byte-compiling /home/build/lists.sr.ht-0.45.17-1-g0ae69c9/debian/python3-listssrht/usr/lib/python3.9/dist-packages/listssrht/app.py to app.cpython-39.pyc
byte-compiling /home/build/lists.sr.ht-0.45.17-1-g0ae69c9/debian/python3-listssrht/usr/lib/python3.9/dist-packages/listssrht/filters.py to filters.cpython-39.pyc
byte-compiling /home/build/lists.sr.ht-0.45.17-1-g0ae69c9/debian/python3-listssrht/usr/lib/python3.9/dist-packages/listssrht/blueprints/user.py to user.cpython-39.pyc
byte-compiling /home/build/lists.sr.ht-0.45.17-1-g0ae69c9/debian/python3-listssrht/usr/lib/python3.9/dist-packages/listssrht/blueprints/settings.py to settings.cpython-39.pyc
byte-compiling /home/build/lists.sr.ht-0.45.17-1-g0ae69c9/debian/python3-listssrht/usr/lib/python3.9/dist-packages/listssrht/blueprints/archives.py to archives.cpython-39.pyc
byte-compiling /home/build/lists.sr.ht-0.45.17-1-g0ae69c9/debian/python3-listssrht/usr/lib/python3.9/dist-packages/listssrht/blueprints/patches.py to patches.cpython-39.pyc
byte-compiling /home/build/lists.sr.ht-0.45.17-1-g0ae69c9/debian/python3-listssrht/usr/lib/python3.9/dist-packages/listssrht/blueprints/api/subscriptions.py to subscriptions.cpython-39.pyc
byte-compiling /home/build/lists.sr.ht-0.45.17-1-g0ae69c9/debian/python3-listssrht/usr/lib/python3.9/dist-packages/listssrht/blueprints/api/lists.py to lists.cpython-39.pyc
byte-compiling /home/build/lists.sr.ht-0.45.17-1-g0ae69c9/debian/python3-listssrht/usr/lib/python3.9/dist-packages/listssrht/blueprints/api/__init__.py to __init__.cpython-39.pyc
byte-compiling /home/build/lists.sr.ht-0.45.17-1-g0ae69c9/debian/python3-listssrht/usr/lib/python3.9/dist-packages/listssrht/blueprints/api/emails.py to emails.cpython-39.pyc
byte-compiling /home/build/lists.sr.ht-0.45.17-1-g0ae69c9/debian/python3-listssrht/usr/lib/python3.9/dist-packages/listssrht/blueprints/api/patches.py to patches.cpython-39.pyc
byte-compiling /home/build/lists.sr.ht-0.45.17-1-g0ae69c9/debian/python3-listssrht/usr/lib/python3.9/dist-packages/listssrht/process.py to process.cpython-39.pyc
byte-compiling /home/build/lists.sr.ht-0.45.17-1-g0ae69c9/debian/python3-listssrht/usr/lib/python3.9/dist-packages/listssrht/types/user.py to user.cpython-39.pyc
byte-compiling /home/build/lists.sr.ht-0.45.17-1-g0ae69c9/debian/python3-listssrht/usr/lib/python3.9/dist-packages/listssrht/types/email.py to email.cpython-39.pyc
byte-compiling /home/build/lists.sr.ht-0.45.17-1-g0ae69c9/debian/python3-listssrht/usr/lib/python3.9/dist-packages/listssrht/types/repo.py to repo.cpython-39.pyc
byte-compiling /home/build/lists.sr.ht-0.45.17-1-g0ae69c9/debian/python3-listssrht/usr/lib/python3.9/dist-packages/listssrht/types/subscription.py to subscription.cpython-39.pyc
byte-compiling /home/build/lists.sr.ht-0.45.17-1-g0ae69c9/debian/python3-listssrht/usr/lib/python3.9/dist-packages/listssrht/types/listaccess.py to listaccess.cpython-39.pyc
byte-compiling /home/build/lists.sr.ht-0.45.17-1-g0ae69c9/debian/python3-listssrht/usr/lib/python3.9/dist-packages/listssrht/types/mirror.py to mirror.cpython-39.pyc
byte-compiling /home/build/lists.sr.ht-0.45.17-1-g0ae69c9/debian/python3-listssrht/usr/lib/python3.9/dist-packages/listssrht/types/list.py to list.cpython-39.pyc
byte-compiling /home/build/lists.sr.ht-0.45.17-1-g0ae69c9/debian/python3-listssrht/usr/lib/python3.9/dist-packages/listssrht/types/__init__.py to __init__.cpython-39.pyc
byte-compiling /home/build/lists.sr.ht-0.45.17-1-g0ae69c9/debian/python3-listssrht/usr/lib/python3.9/dist-packages/listssrht/types/access.py to access.cpython-39.pyc
byte-compiling /home/build/lists.sr.ht-0.45.17-1-g0ae69c9/debian/python3-listssrht/usr/lib/python3.9/dist-packages/listssrht/types/patchset.py to patchset.cpython-39.pyc
byte-compiling /home/build/lists.sr.ht-0.45.17-1-g0ae69c9/debian/python3-listssrht/usr/lib/python3.9/dist-packages/listssrht/webhooks.py to webhooks.cpython-39.pyc
byte-compiling /home/build/lists.sr.ht-0.45.17-1-g0ae69c9/debian/python3-listssrht/usr/lib/python3.9/dist-packages/listssrht/alembic/env.py to env.cpython-39.pyc
byte-compiling /home/build/lists.sr.ht-0.45.17-1-g0ae69c9/debian/python3-listssrht/usr/lib/python3.9/dist-packages/listssrht/alembic/versions/84d51b97a028_add_oauthtoken_table.py to 84d51b97a028_add_oauthtoken_table.cpython-39.pyc
byte-compiling /home/build/lists.sr.ht-0.45.17-1-g0ae69c9/debian/python3-listssrht/usr/lib/python3.9/dist-packages/listssrht/alembic/versions/fbbc6b346aee_add_fine_grained_access_control_columns.py to fbbc6b346aee_add_fine_grained_access_control_columns.cpython-39.pyc
byte-compiling /home/build/lists.sr.ht-0.45.17-1-g0ae69c9/debian/python3-listssrht/usr/lib/python3.9/dist-packages/listssrht/alembic/versions/41c629d9fb0f_add_reply_to_to_patchset.py to 41c629d9fb0f_add_reply_to_to_patchset.cpython-39.pyc
byte-compiling /home/build/lists.sr.ht-0.45.17-1-g0ae69c9/debian/python3-listssrht/usr/lib/python3.9/dist-packages/listssrht/alembic/versions/e5ae6528a8d5_add_unique_constraint_on_message_id_.py to e5ae6528a8d5_add_unique_constraint_on_message_id_.cpython-39.pyc
byte-compiling /home/build/lists.sr.ht-0.45.17-1-g0ae69c9/debian/python3-listssrht/usr/lib/python3.9/dist-packages/listssrht/alembic/versions/79140e9fc031_add_cascades_for_list_deletion.py to 79140e9fc031_add_cascades_for_list_deletion.cpython-39.pyc
byte-compiling /home/build/lists.sr.ht-0.45.17-1-g0ae69c9/debian/python3-listssrht/usr/lib/python3.9/dist-packages/listssrht/alembic/versions/c3c2bea8d735_add_webhook_tables.py to c3c2bea8d735_add_webhook_tables.cpython-39.pyc
byte-compiling /home/build/lists.sr.ht-0.45.17-1-g0ae69c9/debian/python3-listssrht/usr/lib/python3.9/dist-packages/listssrht/alembic/versions/4c0b015574ef_add_user_type_to_user.py to 4c0b015574ef_add_user_type_to_user.cpython-39.pyc
byte-compiling /home/build/lists.sr.ht-0.45.17-1-g0ae69c9/debian/python3-listssrht/usr/lib/python3.9/dist-packages/listssrht/alembic/versions/223cd3247273_add_more_patch_fields_to_email_table.py to 223cd3247273_add_more_patch_fields_to_email_table.cpython-39.pyc
byte-compiling /home/build/lists.sr.ht-0.45.17-1-g0ae69c9/debian/python3-listssrht/usr/lib/python3.9/dist-packages/listssrht/alembic/versions/803817bfd568_expand_size_of_subject_header_columns.py to 803817bfd568_expand_size_of_subject_header_columns.cpython-39.pyc
byte-compiling /home/build/lists.sr.ht-0.45.17-1-g0ae69c9/debian/python3-listssrht/usr/lib/python3.9/dist-packages/listssrht/alembic/versions/9d264a430403_drop_confirmed_column_from_subscription.py to 9d264a430403_drop_confirmed_column_from_subscription.cpython-39.pyc
byte-compiling /home/build/lists.sr.ht-0.45.17-1-g0ae69c9/debian/python3-listssrht/usr/lib/python3.9/dist-packages/listssrht/alembic/versions/617471810f6f_add_mirror_table.py to 617471810f6f_add_mirror_table.cpython-39.pyc
byte-compiling /home/build/lists.sr.ht-0.45.17-1-g0ae69c9/debian/python3-listssrht/usr/lib/python3.9/dist-packages/listssrht/alembic/versions/1db0bbd80c48_add_message_date_column.py to 1db0bbd80c48_add_message_date_column.cpython-39.pyc
byte-compiling /home/build/lists.sr.ht-0.45.17-1-g0ae69c9/debian/python3-listssrht/usr/lib/python3.9/dist-packages/listssrht/alembic/versions/98bb95b72e3a_add_patchset_tool_table.py to 98bb95b72e3a_add_patchset_tool_table.cpython-39.pyc
byte-compiling /home/build/lists.sr.ht-0.45.17-1-g0ae69c9/debian/python3-listssrht/usr/lib/python3.9/dist-packages/listssrht/alembic/versions/a03b9606f3c6_convert_headers_to_json.py to a03b9606f3c6_convert_headers_to_json.cpython-39.pyc
byte-compiling /home/build/lists.sr.ht-0.45.17-1-g0ae69c9/debian/python3-listssrht/usr/lib/python3.9/dist-packages/listssrht/alembic/versions/3b2f53e11ac6_add_import_in_progress_to_lists.py to 3b2f53e11ac6_add_import_in_progress_to_lists.cpython-39.pyc
byte-compiling /home/build/lists.sr.ht-0.45.17-1-g0ae69c9/debian/python3-listssrht/usr/lib/python3.9/dist-packages/listssrht/alembic/versions/f5ec39205a69_add_in_reply_to_header_to_database.py to f5ec39205a69_add_in_reply_to_header_to_database.cpython-39.pyc
byte-compiling /home/build/lists.sr.ht-0.45.17-1-g0ae69c9/debian/python3-listssrht/usr/lib/python3.9/dist-packages/listssrht/alembic/versions/07257ddd8bb7_add_user_mixin_properties.py to 07257ddd8bb7_add_user_mixin_properties.cpython-39.pyc
byte-compiling /home/build/lists.sr.ht-0.45.17-1-g0ae69c9/debian/python3-listssrht/usr/lib/python3.9/dist-packages/listssrht/alembic/versions/abd4678bea1b_decode_quoted_printable_message_bodies.py to abd4678bea1b_decode_quoted_printable_message_bodies.cpython-39.pyc
byte-compiling /home/build/lists.sr.ht-0.45.17-1-g0ae69c9/debian/python3-listssrht/usr/lib/python3.9/dist-packages/listssrht/alembic/versions/2b20dca45cbb_add_submitter_to_patchset.py to 2b20dca45cbb_add_submitter_to_patchset.cpython-39.pyc
byte-compiling /home/build/lists.sr.ht-0.45.17-1-g0ae69c9/debian/python3-listssrht/usr/lib/python3.9/dist-packages/listssrht/alembic/versions/056c313b267f_add_permit_reject_mimetypes.py to 056c313b267f_add_permit_reject_mimetypes.cpython-39.pyc
byte-compiling /home/build/lists.sr.ht-0.45.17-1-g0ae69c9/debian/python3-listssrht/usr/lib/python3.9/dist-packages/listssrht/alembic/versions/ed291e59b2a0_add_constraints_to_subscriptions.py to ed291e59b2a0_add_constraints_to_subscriptions.cpython-39.pyc
byte-compiling /home/build/lists.sr.ht-0.45.17-1-g0ae69c9/debian/python3-listssrht/usr/lib/python3.9/dist-packages/listssrht/alembic/versions/4a6c771785ff_add_subscribed_user_permissions.py to 4a6c771785ff_add_subscribed_user_permissions.cpython-39.pyc
byte-compiling /home/build/lists.sr.ht-0.45.17-1-g0ae69c9/debian/python3-listssrht/usr/lib/python3.9/dist-packages/listssrht/alembic/versions/86fbf902f15b_add_access_table.py to 86fbf902f15b_add_access_table.cpython-39.pyc
running install_egg_info
running egg_info
creating listssrht.egg-info
writing listssrht.egg-info/PKG-INFO
writing dependency_links to listssrht.egg-info/dependency_links.txt
writing requirements to listssrht.egg-info/requires.txt
writing top-level names to listssrht.egg-info/top_level.txt
writing manifest file 'listssrht.egg-info/SOURCES.txt'
reading manifest file 'listssrht.egg-info/SOURCES.txt'
writing manifest file 'listssrht.egg-info/SOURCES.txt'
Copying listssrht.egg-info to /home/build/lists.sr.ht-0.45.17-1-g0ae69c9/debian/python3-listssrht/usr/lib/python3.9/dist-packages/listssrht-0.45.17.egg-info
Skipping SOURCES.txt
running install_scripts
creating /home/build/lists.sr.ht-0.45.17-1-g0ae69c9/debian/python3-listssrht/usr/bin
copying build/scripts-3.9/listssrht-initdb -> /home/build/lists.sr.ht-0.45.17-1-g0ae69c9/debian/python3-listssrht/usr/bin
copying build/scripts-3.9/listssrht-lmtp -> /home/build/lists.sr.ht-0.45.17-1-g0ae69c9/debian/python3-listssrht/usr/bin
copying build/scripts-3.9/listssrht-migrate -> /home/build/lists.sr.ht-0.45.17-1-g0ae69c9/debian/python3-listssrht/usr/bin
changing mode of /home/build/lists.sr.ht-0.45.17-1-g0ae69c9/debian/python3-listssrht/usr/bin/listssrht-initdb to 755
changing mode of /home/build/lists.sr.ht-0.45.17-1-g0ae69c9/debian/python3-listssrht/usr/bin/listssrht-lmtp to 755
changing mode of /home/build/lists.sr.ht-0.45.17-1-g0ae69c9/debian/python3-listssrht/usr/bin/listssrht-migrate to 755
I: pybuild base:232: /usr/bin/python3 setup.py install --root /home/build/lists.sr.ht-0.45.17-1-g0ae69c9/debian/python3-listssrht
running install
running build
running build_py
package init file 'listssrht/__init__.py' not found (or not a regular file)
package init file 'listssrht/blueprints/__init__.py' not found (or not a regular file)
package init file 'listssrht/alembic/__init__.py' not found (or not a regular file)
package init file 'listssrht/alembic/versions/__init__.py' not found (or not a regular file)
running build_scripts
running install_lib
creating /home/build/lists.sr.ht-0.45.17-1-g0ae69c9/debian/python3-listssrht/usr/lib/python3.8
creating /home/build/lists.sr.ht-0.45.17-1-g0ae69c9/debian/python3-listssrht/usr/lib/python3.8/dist-packages
creating /home/build/lists.sr.ht-0.45.17-1-g0ae69c9/debian/python3-listssrht/usr/lib/python3.8/dist-packages/listssrht
copying /home/build/lists.sr.ht-0.45.17-1-g0ae69c9/.pybuild/cpython3_3.8_listssrht/build/listssrht/oauth.py -> /home/build/lists.sr.ht-0.45.17-1-g0ae69c9/debian/python3-listssrht/usr/lib/python3.8/dist-packages/listssrht
creating /home/build/lists.sr.ht-0.45.17-1-g0ae69c9/debian/python3-listssrht/usr/lib/python3.8/dist-packages/listssrht/templates
copying /home/build/lists.sr.ht-0.45.17-1-g0ae69c9/.pybuild/cpython3_3.8_listssrht/build/listssrht/templates/settings-content.html -> /home/build/lists.sr.ht-0.45.17-1-g0ae69c9/debian/python3-listssrht/usr/lib/python3.8/dist-packages/listssrht/templates
copying /home/build/lists.sr.ht-0.45.17-1-g0ae69c9/.pybuild/cpython3_3.8_listssrht/build/listssrht/templates/archive.html -> /home/build/lists.sr.ht-0.45.17-1-g0ae69c9/debian/python3-listssrht/usr/lib/python3.8/dist-packages/listssrht/templates
copying /home/build/lists.sr.ht-0.45.17-1-g0ae69c9/.pybuild/cpython3_3.8_listssrht/build/listssrht/templates/thread.html -> /home/build/lists.sr.ht-0.45.17-1-g0ae69c9/debian/python3-listssrht/usr/lib/python3.8/dist-packages/listssrht/templates
copying /home/build/lists.sr.ht-0.45.17-1-g0ae69c9/.pybuild/cpython3_3.8_listssrht/build/listssrht/templates/settings-access.html -> /home/build/lists.sr.ht-0.45.17-1-g0ae69c9/debian/python3-listssrht/usr/lib/python3.8/dist-packages/listssrht/templates
copying /home/build/lists.sr.ht-0.45.17-1-g0ae69c9/.pybuild/cpython3_3.8_listssrht/build/listssrht/templates/patchset.html -> /home/build/lists.sr.ht-0.45.17-1-g0ae69c9/debian/python3-listssrht/usr/lib/python3.8/dist-packages/listssrht/templates
copying /home/build/lists.sr.ht-0.45.17-1-g0ae69c9/.pybuild/cpython3_3.8_listssrht/build/listssrht/templates/settings.html -> /home/build/lists.sr.ht-0.45.17-1-g0ae69c9/debian/python3-listssrht/usr/lib/python3.8/dist-packages/listssrht/templates
copying /home/build/lists.sr.ht-0.45.17-1-g0ae69c9/.pybuild/cpython3_3.8_listssrht/build/listssrht/templates/create.html -> /home/build/lists.sr.ht-0.45.17-1-g0ae69c9/debian/python3-listssrht/usr/lib/python3.8/dist-packages/listssrht/templates
copying /home/build/lists.sr.ht-0.45.17-1-g0ae69c9/.pybuild/cpython3_3.8_listssrht/build/listssrht/templates/create-mirror.html -> /home/build/lists.sr.ht-0.45.17-1-g0ae69c9/debian/python3-listssrht/usr/lib/python3.8/dist-packages/listssrht/templates
copying /home/build/lists.sr.ht-0.45.17-1-g0ae69c9/.pybuild/cpython3_3.8_listssrht/build/listssrht/templates/dashboard.html -> /home/build/lists.sr.ht-0.45.17-1-g0ae69c9/debian/python3-listssrht/usr/lib/python3.8/dist-packages/listssrht/templates
copying /home/build/lists.sr.ht-0.45.17-1-g0ae69c9/.pybuild/cpython3_3.8_listssrht/build/listssrht/templates/settings-delete.html -> /home/build/lists.sr.ht-0.45.17-1-g0ae69c9/debian/python3-listssrht/usr/lib/python3.8/dist-packages/listssrht/templates
copying /home/build/lists.sr.ht-0.45.17-1-g0ae69c9/.pybuild/cpython3_3.8_listssrht/build/listssrht/templates/user-lists.html -> /home/build/lists.sr.ht-0.45.17-1-g0ae69c9/debian/python3-listssrht/usr/lib/python3.8/dist-packages/listssrht/templates
copying /home/build/lists.sr.ht-0.45.17-1-g0ae69c9/.pybuild/cpython3_3.8_listssrht/build/listssrht/templates/settings-import-export.html -> /home/build/lists.sr.ht-0.45.17-1-g0ae69c9/debian/python3-listssrht/usr/lib/python3.8/dist-packages/listssrht/templates
copying /home/build/lists.sr.ht-0.45.17-1-g0ae69c9/.pybuild/cpython3_3.8_listssrht/build/listssrht/templates/list-full.html -> /home/build/lists.sr.ht-0.45.17-1-g0ae69c9/debian/python3-listssrht/usr/lib/python3.8/dist-packages/listssrht/templates
copying /home/build/lists.sr.ht-0.45.17-1-g0ae69c9/.pybuild/cpython3_3.8_listssrht/build/listssrht/templates/settings-info.html -> /home/build/lists.sr.ht-0.45.17-1-g0ae69c9/debian/python3-listssrht/usr/lib/python3.8/dist-packages/listssrht/templates
copying /home/build/lists.sr.ht-0.45.17-1-g0ae69c9/.pybuild/cpython3_3.8_listssrht/build/listssrht/templates/user.html -> /home/build/lists.sr.ht-0.45.17-1-g0ae69c9/debian/python3-listssrht/usr/lib/python3.8/dist-packages/listssrht/templates
copying /home/build/lists.sr.ht-0.45.17-1-g0ae69c9/.pybuild/cpython3_3.8_listssrht/build/listssrht/templates/index.html -> /home/build/lists.sr.ht-0.45.17-1-g0ae69c9/debian/python3-listssrht/usr/lib/python3.8/dist-packages/listssrht/templates
copying /home/build/lists.sr.ht-0.45.17-1-g0ae69c9/.pybuild/cpython3_3.8_listssrht/build/listssrht/templates/list.html -> /home/build/lists.sr.ht-0.45.17-1-g0ae69c9/debian/python3-listssrht/usr/lib/python3.8/dist-packages/listssrht/templates
copying /home/build/lists.sr.ht-0.45.17-1-g0ae69c9/.pybuild/cpython3_3.8_listssrht/build/listssrht/app.py -> /home/build/lists.sr.ht-0.45.17-1-g0ae69c9/debian/python3-listssrht/usr/lib/python3.8/dist-packages/listssrht
copying /home/build/lists.sr.ht-0.45.17-1-g0ae69c9/.pybuild/cpython3_3.8_listssrht/build/listssrht/filters.py -> /home/build/lists.sr.ht-0.45.17-1-g0ae69c9/debian/python3-listssrht/usr/lib/python3.8/dist-packages/listssrht
creating /home/build/lists.sr.ht-0.45.17-1-g0ae69c9/debian/python3-listssrht/usr/lib/python3.8/dist-packages/listssrht/blueprints
copying /home/build/lists.sr.ht-0.45.17-1-g0ae69c9/.pybuild/cpython3_3.8_listssrht/build/listssrht/blueprints/user.py -> /home/build/lists.sr.ht-0.45.17-1-g0ae69c9/debian/python3-listssrht/usr/lib/python3.8/dist-packages/listssrht/blueprints
copying /home/build/lists.sr.ht-0.45.17-1-g0ae69c9/.pybuild/cpython3_3.8_listssrht/build/listssrht/blueprints/settings.py -> /home/build/lists.sr.ht-0.45.17-1-g0ae69c9/debian/python3-listssrht/usr/lib/python3.8/dist-packages/listssrht/blueprints
copying /home/build/lists.sr.ht-0.45.17-1-g0ae69c9/.pybuild/cpython3_3.8_listssrht/build/listssrht/blueprints/archives.py -> /home/build/lists.sr.ht-0.45.17-1-g0ae69c9/debian/python3-listssrht/usr/lib/python3.8/dist-packages/listssrht/blueprints
copying /home/build/lists.sr.ht-0.45.17-1-g0ae69c9/.pybuild/cpython3_3.8_listssrht/build/listssrht/blueprints/patches.py -> /home/build/lists.sr.ht-0.45.17-1-g0ae69c9/debian/python3-listssrht/usr/lib/python3.8/dist-packages/listssrht/blueprints
creating /home/build/lists.sr.ht-0.45.17-1-g0ae69c9/debian/python3-listssrht/usr/lib/python3.8/dist-packages/listssrht/blueprints/api
copying /home/build/lists.sr.ht-0.45.17-1-g0ae69c9/.pybuild/cpython3_3.8_listssrht/build/listssrht/blueprints/api/subscriptions.py -> /home/build/lists.sr.ht-0.45.17-1-g0ae69c9/debian/python3-listssrht/usr/lib/python3.8/dist-packages/listssrht/blueprints/api
copying /home/build/lists.sr.ht-0.45.17-1-g0ae69c9/.pybuild/cpython3_3.8_listssrht/build/listssrht/blueprints/api/lists.py -> /home/build/lists.sr.ht-0.45.17-1-g0ae69c9/debian/python3-listssrht/usr/lib/python3.8/dist-packages/listssrht/blueprints/api
copying /home/build/lists.sr.ht-0.45.17-1-g0ae69c9/.pybuild/cpython3_3.8_listssrht/build/listssrht/blueprints/api/__init__.py -> /home/build/lists.sr.ht-0.45.17-1-g0ae69c9/debian/python3-listssrht/usr/lib/python3.8/dist-packages/listssrht/blueprints/api
copying /home/build/lists.sr.ht-0.45.17-1-g0ae69c9/.pybuild/cpython3_3.8_listssrht/build/listssrht/blueprints/api/emails.py -> /home/build/lists.sr.ht-0.45.17-1-g0ae69c9/debian/python3-listssrht/usr/lib/python3.8/dist-packages/listssrht/blueprints/api
copying /home/build/lists.sr.ht-0.45.17-1-g0ae69c9/.pybuild/cpython3_3.8_listssrht/build/listssrht/blueprints/api/patches.py -> /home/build/lists.sr.ht-0.45.17-1-g0ae69c9/debian/python3-listssrht/usr/lib/python3.8/dist-packages/listssrht/blueprints/api
copying /home/build/lists.sr.ht-0.45.17-1-g0ae69c9/.pybuild/cpython3_3.8_listssrht/build/listssrht/process.py -> /home/build/lists.sr.ht-0.45.17-1-g0ae69c9/debian/python3-listssrht/usr/lib/python3.8/dist-packages/listssrht
creating /home/build/lists.sr.ht-0.45.17-1-g0ae69c9/debian/python3-listssrht/usr/lib/python3.8/dist-packages/listssrht/types
copying /home/build/lists.sr.ht-0.45.17-1-g0ae69c9/.pybuild/cpython3_3.8_listssrht/build/listssrht/types/user.py -> /home/build/lists.sr.ht-0.45.17-1-g0ae69c9/debian/python3-listssrht/usr/lib/python3.8/dist-packages/listssrht/types
copying /home/build/lists.sr.ht-0.45.17-1-g0ae69c9/.pybuild/cpython3_3.8_listssrht/build/listssrht/types/email.py -> /home/build/lists.sr.ht-0.45.17-1-g0ae69c9/debian/python3-listssrht/usr/lib/python3.8/dist-packages/listssrht/types
copying /home/build/lists.sr.ht-0.45.17-1-g0ae69c9/.pybuild/cpython3_3.8_listssrht/build/listssrht/types/repo.py -> /home/build/lists.sr.ht-0.45.17-1-g0ae69c9/debian/python3-listssrht/usr/lib/python3.8/dist-packages/listssrht/types
copying /home/build/lists.sr.ht-0.45.17-1-g0ae69c9/.pybuild/cpython3_3.8_listssrht/build/listssrht/types/subscription.py -> /home/build/lists.sr.ht-0.45.17-1-g0ae69c9/debian/python3-listssrht/usr/lib/python3.8/dist-packages/listssrht/types
copying /home/build/lists.sr.ht-0.45.17-1-g0ae69c9/.pybuild/cpython3_3.8_listssrht/build/listssrht/types/listaccess.py -> /home/build/lists.sr.ht-0.45.17-1-g0ae69c9/debian/python3-listssrht/usr/lib/python3.8/dist-packages/listssrht/types
copying /home/build/lists.sr.ht-0.45.17-1-g0ae69c9/.pybuild/cpython3_3.8_listssrht/build/listssrht/types/mirror.py -> /home/build/lists.sr.ht-0.45.17-1-g0ae69c9/debian/python3-listssrht/usr/lib/python3.8/dist-packages/listssrht/types
copying /home/build/lists.sr.ht-0.45.17-1-g0ae69c9/.pybuild/cpython3_3.8_listssrht/build/listssrht/types/list.py -> /home/build/lists.sr.ht-0.45.17-1-g0ae69c9/debian/python3-listssrht/usr/lib/python3.8/dist-packages/listssrht/types
copying /home/build/lists.sr.ht-0.45.17-1-g0ae69c9/.pybuild/cpython3_3.8_listssrht/build/listssrht/types/__init__.py -> /home/build/lists.sr.ht-0.45.17-1-g0ae69c9/debian/python3-listssrht/usr/lib/python3.8/dist-packages/listssrht/types
copying /home/build/lists.sr.ht-0.45.17-1-g0ae69c9/.pybuild/cpython3_3.8_listssrht/build/listssrht/types/access.py -> /home/build/lists.sr.ht-0.45.17-1-g0ae69c9/debian/python3-listssrht/usr/lib/python3.8/dist-packages/listssrht/types
copying /home/build/lists.sr.ht-0.45.17-1-g0ae69c9/.pybuild/cpython3_3.8_listssrht/build/listssrht/types/patchset.py -> /home/build/lists.sr.ht-0.45.17-1-g0ae69c9/debian/python3-listssrht/usr/lib/python3.8/dist-packages/listssrht/types
copying /home/build/lists.sr.ht-0.45.17-1-g0ae69c9/.pybuild/cpython3_3.8_listssrht/build/listssrht/webhooks.py -> /home/build/lists.sr.ht-0.45.17-1-g0ae69c9/debian/python3-listssrht/usr/lib/python3.8/dist-packages/listssrht
creating /home/build/lists.sr.ht-0.45.17-1-g0ae69c9/debian/python3-listssrht/usr/lib/python3.8/dist-packages/listssrht/alembic
copying /home/build/lists.sr.ht-0.45.17-1-g0ae69c9/.pybuild/cpython3_3.8_listssrht/build/listssrht/alembic/env.py -> /home/build/lists.sr.ht-0.45.17-1-g0ae69c9/debian/python3-listssrht/usr/lib/python3.8/dist-packages/listssrht/alembic
creating /home/build/lists.sr.ht-0.45.17-1-g0ae69c9/debian/python3-listssrht/usr/lib/python3.8/dist-packages/listssrht/alembic/versions
copying /home/build/lists.sr.ht-0.45.17-1-g0ae69c9/.pybuild/cpython3_3.8_listssrht/build/listssrht/alembic/versions/84d51b97a028_add_oauthtoken_table.py -> /home/build/lists.sr.ht-0.45.17-1-g0ae69c9/debian/python3-listssrht/usr/lib/python3.8/dist-packages/listssrht/alembic/versions
copying /home/build/lists.sr.ht-0.45.17-1-g0ae69c9/.pybuild/cpython3_3.8_listssrht/build/listssrht/alembic/versions/fbbc6b346aee_add_fine_grained_access_control_columns.py -> /home/build/lists.sr.ht-0.45.17-1-g0ae69c9/debian/python3-listssrht/usr/lib/python3.8/dist-packages/listssrht/alembic/versions
copying /home/build/lists.sr.ht-0.45.17-1-g0ae69c9/.pybuild/cpython3_3.8_listssrht/build/listssrht/alembic/versions/41c629d9fb0f_add_reply_to_to_patchset.py -> /home/build/lists.sr.ht-0.45.17-1-g0ae69c9/debian/python3-listssrht/usr/lib/python3.8/dist-packages/listssrht/alembic/versions
copying /home/build/lists.sr.ht-0.45.17-1-g0ae69c9/.pybuild/cpython3_3.8_listssrht/build/listssrht/alembic/versions/e5ae6528a8d5_add_unique_constraint_on_message_id_.py -> /home/build/lists.sr.ht-0.45.17-1-g0ae69c9/debian/python3-listssrht/usr/lib/python3.8/dist-packages/listssrht/alembic/versions
copying /home/build/lists.sr.ht-0.45.17-1-g0ae69c9/.pybuild/cpython3_3.8_listssrht/build/listssrht/alembic/versions/79140e9fc031_add_cascades_for_list_deletion.py -> /home/build/lists.sr.ht-0.45.17-1-g0ae69c9/debian/python3-listssrht/usr/lib/python3.8/dist-packages/listssrht/alembic/versions
copying /home/build/lists.sr.ht-0.45.17-1-g0ae69c9/.pybuild/cpython3_3.8_listssrht/build/listssrht/alembic/versions/c3c2bea8d735_add_webhook_tables.py -> /home/build/lists.sr.ht-0.45.17-1-g0ae69c9/debian/python3-listssrht/usr/lib/python3.8/dist-packages/listssrht/alembic/versions
copying /home/build/lists.sr.ht-0.45.17-1-g0ae69c9/.pybuild/cpython3_3.8_listssrht/build/listssrht/alembic/versions/4c0b015574ef_add_user_type_to_user.py -> /home/build/lists.sr.ht-0.45.17-1-g0ae69c9/debian/python3-listssrht/usr/lib/python3.8/dist-packages/listssrht/alembic/versions
copying /home/build/lists.sr.ht-0.45.17-1-g0ae69c9/.pybuild/cpython3_3.8_listssrht/build/listssrht/alembic/versions/223cd3247273_add_more_patch_fields_to_email_table.py -> /home/build/lists.sr.ht-0.45.17-1-g0ae69c9/debian/python3-listssrht/usr/lib/python3.8/dist-packages/listssrht/alembic/versions
copying /home/build/lists.sr.ht-0.45.17-1-g0ae69c9/.pybuild/cpython3_3.8_listssrht/build/listssrht/alembic/versions/803817bfd568_expand_size_of_subject_header_columns.py -> /home/build/lists.sr.ht-0.45.17-1-g0ae69c9/debian/python3-listssrht/usr/lib/python3.8/dist-packages/listssrht/alembic/versions
copying /home/build/lists.sr.ht-0.45.17-1-g0ae69c9/.pybuild/cpython3_3.8_listssrht/build/listssrht/alembic/versions/9d264a430403_drop_confirmed_column_from_subscription.py -> /home/build/lists.sr.ht-0.45.17-1-g0ae69c9/debian/python3-listssrht/usr/lib/python3.8/dist-packages/listssrht/alembic/versions
copying /home/build/lists.sr.ht-0.45.17-1-g0ae69c9/.pybuild/cpython3_3.8_listssrht/build/listssrht/alembic/versions/617471810f6f_add_mirror_table.py -> /home/build/lists.sr.ht-0.45.17-1-g0ae69c9/debian/python3-listssrht/usr/lib/python3.8/dist-packages/listssrht/alembic/versions
copying /home/build/lists.sr.ht-0.45.17-1-g0ae69c9/.pybuild/cpython3_3.8_listssrht/build/listssrht/alembic/versions/1db0bbd80c48_add_message_date_column.py -> /home/build/lists.sr.ht-0.45.17-1-g0ae69c9/debian/python3-listssrht/usr/lib/python3.8/dist-packages/listssrht/alembic/versions
copying /home/build/lists.sr.ht-0.45.17-1-g0ae69c9/.pybuild/cpython3_3.8_listssrht/build/listssrht/alembic/versions/98bb95b72e3a_add_patchset_tool_table.py -> /home/build/lists.sr.ht-0.45.17-1-g0ae69c9/debian/python3-listssrht/usr/lib/python3.8/dist-packages/listssrht/alembic/versions
copying /home/build/lists.sr.ht-0.45.17-1-g0ae69c9/.pybuild/cpython3_3.8_listssrht/build/listssrht/alembic/versions/a03b9606f3c6_convert_headers_to_json.py -> /home/build/lists.sr.ht-0.45.17-1-g0ae69c9/debian/python3-listssrht/usr/lib/python3.8/dist-packages/listssrht/alembic/versions
copying /home/build/lists.sr.ht-0.45.17-1-g0ae69c9/.pybuild/cpython3_3.8_listssrht/build/listssrht/alembic/versions/3b2f53e11ac6_add_import_in_progress_to_lists.py -> /home/build/lists.sr.ht-0.45.17-1-g0ae69c9/debian/python3-listssrht/usr/lib/python3.8/dist-packages/listssrht/alembic/versions
copying /home/build/lists.sr.ht-0.45.17-1-g0ae69c9/.pybuild/cpython3_3.8_listssrht/build/listssrht/alembic/versions/f5ec39205a69_add_in_reply_to_header_to_database.py -> /home/build/lists.sr.ht-0.45.17-1-g0ae69c9/debian/python3-listssrht/usr/lib/python3.8/dist-packages/listssrht/alembic/versions
copying /home/build/lists.sr.ht-0.45.17-1-g0ae69c9/.pybuild/cpython3_3.8_listssrht/build/listssrht/alembic/versions/07257ddd8bb7_add_user_mixin_properties.py -> /home/build/lists.sr.ht-0.45.17-1-g0ae69c9/debian/python3-listssrht/usr/lib/python3.8/dist-packages/listssrht/alembic/versions
copying /home/build/lists.sr.ht-0.45.17-1-g0ae69c9/.pybuild/cpython3_3.8_listssrht/build/listssrht/alembic/versions/abd4678bea1b_decode_quoted_printable_message_bodies.py -> /home/build/lists.sr.ht-0.45.17-1-g0ae69c9/debian/python3-listssrht/usr/lib/python3.8/dist-packages/listssrht/alembic/versions
copying /home/build/lists.sr.ht-0.45.17-1-g0ae69c9/.pybuild/cpython3_3.8_listssrht/build/listssrht/alembic/versions/2b20dca45cbb_add_submitter_to_patchset.py -> /home/build/lists.sr.ht-0.45.17-1-g0ae69c9/debian/python3-listssrht/usr/lib/python3.8/dist-packages/listssrht/alembic/versions
copying /home/build/lists.sr.ht-0.45.17-1-g0ae69c9/.pybuild/cpython3_3.8_listssrht/build/listssrht/alembic/versions/056c313b267f_add_permit_reject_mimetypes.py -> /home/build/lists.sr.ht-0.45.17-1-g0ae69c9/debian/python3-listssrht/usr/lib/python3.8/dist-packages/listssrht/alembic/versions
copying /home/build/lists.sr.ht-0.45.17-1-g0ae69c9/.pybuild/cpython3_3.8_listssrht/build/listssrht/alembic/versions/ed291e59b2a0_add_constraints_to_subscriptions.py -> /home/build/lists.sr.ht-0.45.17-1-g0ae69c9/debian/python3-listssrht/usr/lib/python3.8/dist-packages/listssrht/alembic/versions
copying /home/build/lists.sr.ht-0.45.17-1-g0ae69c9/.pybuild/cpython3_3.8_listssrht/build/listssrht/alembic/versions/4a6c771785ff_add_subscribed_user_permissions.py -> /home/build/lists.sr.ht-0.45.17-1-g0ae69c9/debian/python3-listssrht/usr/lib/python3.8/dist-packages/listssrht/alembic/versions
copying /home/build/lists.sr.ht-0.45.17-1-g0ae69c9/.pybuild/cpython3_3.8_listssrht/build/listssrht/alembic/versions/86fbf902f15b_add_access_table.py -> /home/build/lists.sr.ht-0.45.17-1-g0ae69c9/debian/python3-listssrht/usr/lib/python3.8/dist-packages/listssrht/alembic/versions
creating /home/build/lists.sr.ht-0.45.17-1-g0ae69c9/debian/python3-listssrht/usr/lib/python3.8/dist-packages/listssrht/static
copying /home/build/lists.sr.ht-0.45.17-1-g0ae69c9/.pybuild/cpython3_3.8_listssrht/build/listssrht/static/codemirror.css -> /home/build/lists.sr.ht-0.45.17-1-g0ae69c9/debian/python3-listssrht/usr/lib/python3.8/dist-packages/listssrht/static
copying /home/build/lists.sr.ht-0.45.17-1-g0ae69c9/.pybuild/cpython3_3.8_listssrht/build/listssrht/static/codemirror.js -> /home/build/lists.sr.ht-0.45.17-1-g0ae69c9/debian/python3-listssrht/usr/lib/python3.8/dist-packages/listssrht/static
copying /home/build/lists.sr.ht-0.45.17-1-g0ae69c9/.pybuild/cpython3_3.8_listssrht/build/listssrht/static/main.css -> /home/build/lists.sr.ht-0.45.17-1-g0ae69c9/debian/python3-listssrht/usr/lib/python3.8/dist-packages/listssrht/static
creating /home/build/lists.sr.ht-0.45.17-1-g0ae69c9/debian/python3-listssrht/usr/lib/python3.8/dist-packages/listssrht/static/icons
copying /home/build/lists.sr.ht-0.45.17-1-g0ae69c9/.pybuild/cpython3_3.8_listssrht/build/listssrht/static/icons/code-branch.svg -> /home/build/lists.sr.ht-0.45.17-1-g0ae69c9/debian/python3-listssrht/usr/lib/python3.8/dist-packages/listssrht/static/icons
copying /home/build/lists.sr.ht-0.45.17-1-g0ae69c9/.pybuild/cpython3_3.8_listssrht/build/listssrht/static/icons/circle-solid.svg -> /home/build/lists.sr.ht-0.45.17-1-g0ae69c9/debian/python3-listssrht/usr/lib/python3.8/dist-packages/listssrht/static/icons
copying /home/build/lists.sr.ht-0.45.17-1-g0ae69c9/.pybuild/cpython3_3.8_listssrht/build/listssrht/static/icons/plus-square.svg -> /home/build/lists.sr.ht-0.45.17-1-g0ae69c9/debian/python3-listssrht/usr/lib/python3.8/dist-packages/listssrht/static/icons
copying /home/build/lists.sr.ht-0.45.17-1-g0ae69c9/.pybuild/cpython3_3.8_listssrht/build/listssrht/static/icons/minus.svg -> /home/build/lists.sr.ht-0.45.17-1-g0ae69c9/debian/python3-listssrht/usr/lib/python3.8/dist-packages/listssrht/static/icons
copying /home/build/lists.sr.ht-0.45.17-1-g0ae69c9/.pybuild/cpython3_3.8_listssrht/build/listssrht/static/icons/external-link-alt.svg -> /home/build/lists.sr.ht-0.45.17-1-g0ae69c9/debian/python3-listssrht/usr/lib/python3.8/dist-packages/listssrht/static/icons
copying /home/build/lists.sr.ht-0.45.17-1-g0ae69c9/.pybuild/cpython3_3.8_listssrht/build/listssrht/static/icons/comments.svg -> /home/build/lists.sr.ht-0.45.17-1-g0ae69c9/debian/python3-listssrht/usr/lib/python3.8/dist-packages/listssrht/static/icons
copying /home/build/lists.sr.ht-0.45.17-1-g0ae69c9/.pybuild/cpython3_3.8_listssrht/build/listssrht/static/icons/envelope-o.svg -> /home/build/lists.sr.ht-0.45.17-1-g0ae69c9/debian/python3-listssrht/usr/lib/python3.8/dist-packages/listssrht/static/icons
copying /home/build/lists.sr.ht-0.45.17-1-g0ae69c9/.pybuild/cpython3_3.8_listssrht/build/listssrht/static/icons/README -> /home/build/lists.sr.ht-0.45.17-1-g0ae69c9/debian/python3-listssrht/usr/lib/python3.8/dist-packages/listssrht/static/icons
copying /home/build/lists.sr.ht-0.45.17-1-g0ae69c9/.pybuild/cpython3_3.8_listssrht/build/listssrht/static/icons/plus.svg -> /home/build/lists.sr.ht-0.45.17-1-g0ae69c9/debian/python3-listssrht/usr/lib/python3.8/dist-packages/listssrht/static/icons
copying /home/build/lists.sr.ht-0.45.17-1-g0ae69c9/.pybuild/cpython3_3.8_listssrht/build/listssrht/static/icons/arrow-right.svg -> /home/build/lists.sr.ht-0.45.17-1-g0ae69c9/debian/python3-listssrht/usr/lib/python3.8/dist-packages/listssrht/static/icons
copying /home/build/lists.sr.ht-0.45.17-1-g0ae69c9/.pybuild/cpython3_3.8_listssrht/build/listssrht/static/icons/caret-right.svg -> /home/build/lists.sr.ht-0.45.17-1-g0ae69c9/debian/python3-listssrht/usr/lib/python3.8/dist-packages/listssrht/static/icons
copying /home/build/lists.sr.ht-0.45.17-1-g0ae69c9/.pybuild/cpython3_3.8_listssrht/build/listssrht/static/icons/folder.svg -> /home/build/lists.sr.ht-0.45.17-1-g0ae69c9/debian/python3-listssrht/usr/lib/python3.8/dist-packages/listssrht/static/icons
copying /home/build/lists.sr.ht-0.45.17-1-g0ae69c9/.pybuild/cpython3_3.8_listssrht/build/listssrht/static/icons/check.svg -> /home/build/lists.sr.ht-0.45.17-1-g0ae69c9/debian/python3-listssrht/usr/lib/python3.8/dist-packages/listssrht/static/icons
copying /home/build/lists.sr.ht-0.45.17-1-g0ae69c9/.pybuild/cpython3_3.8_listssrht/build/listssrht/static/icons/comments-o.svg -> /home/build/lists.sr.ht-0.45.17-1-g0ae69c9/debian/python3-listssrht/usr/lib/python3.8/dist-packages/listssrht/static/icons
copying /home/build/lists.sr.ht-0.45.17-1-g0ae69c9/.pybuild/cpython3_3.8_listssrht/build/listssrht/static/icons/question-circle.svg -> /home/build/lists.sr.ht-0.45.17-1-g0ae69c9/debian/python3-listssrht/usr/lib/python3.8/dist-packages/listssrht/static/icons
copying /home/build/lists.sr.ht-0.45.17-1-g0ae69c9/.pybuild/cpython3_3.8_listssrht/build/listssrht/static/icons/exclamation-triangle.svg -> /home/build/lists.sr.ht-0.45.17-1-g0ae69c9/debian/python3-listssrht/usr/lib/python3.8/dist-packages/listssrht/static/icons
copying /home/build/lists.sr.ht-0.45.17-1-g0ae69c9/.pybuild/cpython3_3.8_listssrht/build/listssrht/static/icons/file-alt.svg -> /home/build/lists.sr.ht-0.45.17-1-g0ae69c9/debian/python3-listssrht/usr/lib/python3.8/dist-packages/listssrht/static/icons
copying /home/build/lists.sr.ht-0.45.17-1-g0ae69c9/.pybuild/cpython3_3.8_listssrht/build/listssrht/static/icons/file.svg -> /home/build/lists.sr.ht-0.45.17-1-g0ae69c9/debian/python3-listssrht/usr/lib/python3.8/dist-packages/listssrht/static/icons
copying /home/build/lists.sr.ht-0.45.17-1-g0ae69c9/.pybuild/cpython3_3.8_listssrht/build/listssrht/static/icons/times.svg -> /home/build/lists.sr.ht-0.45.17-1-g0ae69c9/debian/python3-listssrht/usr/lib/python3.8/dist-packages/listssrht/static/icons
copying /home/build/lists.sr.ht-0.45.17-1-g0ae69c9/.pybuild/cpython3_3.8_listssrht/build/listssrht/static/icons/user.svg -> /home/build/lists.sr.ht-0.45.17-1-g0ae69c9/debian/python3-listssrht/usr/lib/python3.8/dist-packages/listssrht/static/icons
copying /home/build/lists.sr.ht-0.45.17-1-g0ae69c9/.pybuild/cpython3_3.8_listssrht/build/listssrht/static/icons/clock.svg -> /home/build/lists.sr.ht-0.45.17-1-g0ae69c9/debian/python3-listssrht/usr/lib/python3.8/dist-packages/listssrht/static/icons
copying /home/build/lists.sr.ht-0.45.17-1-g0ae69c9/.pybuild/cpython3_3.8_listssrht/build/listssrht/static/icons/plus-circle.svg -> /home/build/lists.sr.ht-0.45.17-1-g0ae69c9/debian/python3-listssrht/usr/lib/python3.8/dist-packages/listssrht/static/icons
copying /home/build/lists.sr.ht-0.45.17-1-g0ae69c9/.pybuild/cpython3_3.8_listssrht/build/listssrht/static/icons/LICENSE.txt -> /home/build/lists.sr.ht-0.45.17-1-g0ae69c9/debian/python3-listssrht/usr/lib/python3.8/dist-packages/listssrht/static/icons
copying /home/build/lists.sr.ht-0.45.17-1-g0ae69c9/.pybuild/cpython3_3.8_listssrht/build/listssrht/static/icons/caret-left.svg -> /home/build/lists.sr.ht-0.45.17-1-g0ae69c9/debian/python3-listssrht/usr/lib/python3.8/dist-packages/listssrht/static/icons
copying /home/build/lists.sr.ht-0.45.17-1-g0ae69c9/.pybuild/cpython3_3.8_listssrht/build/listssrht/static/icons/rss.svg -> /home/build/lists.sr.ht-0.45.17-1-g0ae69c9/debian/python3-listssrht/usr/lib/python3.8/dist-packages/listssrht/static/icons
copying /home/build/lists.sr.ht-0.45.17-1-g0ae69c9/.pybuild/cpython3_3.8_listssrht/build/listssrht/static/icons/gitlab.svg -> /home/build/lists.sr.ht-0.45.17-1-g0ae69c9/debian/python3-listssrht/usr/lib/python3.8/dist-packages/listssrht/static/icons
copying /home/build/lists.sr.ht-0.45.17-1-g0ae69c9/.pybuild/cpython3_3.8_listssrht/build/listssrht/static/icons/reply.svg -> /home/build/lists.sr.ht-0.45.17-1-g0ae69c9/debian/python3-listssrht/usr/lib/python3.8/dist-packages/listssrht/static/icons
copying /home/build/lists.sr.ht-0.45.17-1-g0ae69c9/.pybuild/cpython3_3.8_listssrht/build/listssrht/static/icons/circle.svg -> /home/build/lists.sr.ht-0.45.17-1-g0ae69c9/debian/python3-listssrht/usr/lib/python3.8/dist-packages/listssrht/static/icons
copying /home/build/lists.sr.ht-0.45.17-1-g0ae69c9/.pybuild/cpython3_3.8_listssrht/build/listssrht/static/icons/circle-notch.svg -> /home/build/lists.sr.ht-0.45.17-1-g0ae69c9/debian/python3-listssrht/usr/lib/python3.8/dist-packages/listssrht/static/icons
copying /home/build/lists.sr.ht-0.45.17-1-g0ae69c9/.pybuild/cpython3_3.8_listssrht/build/listssrht/static/icons/github.svg -> /home/build/lists.sr.ht-0.45.17-1-g0ae69c9/debian/python3-listssrht/usr/lib/python3.8/dist-packages/listssrht/static/icons
copying /home/build/lists.sr.ht-0.45.17-1-g0ae69c9/.pybuild/cpython3_3.8_listssrht/build/listssrht/static/main.min.34128fd3.css -> /home/build/lists.sr.ht-0.45.17-1-g0ae69c9/debian/python3-listssrht/usr/lib/python3.8/dist-packages/listssrht/static
copying /home/build/lists.sr.ht-0.45.17-1-g0ae69c9/.pybuild/cpython3_3.8_listssrht/build/listssrht/static/main.min.css -> /home/build/lists.sr.ht-0.45.17-1-g0ae69c9/debian/python3-listssrht/usr/lib/python3.8/dist-packages/listssrht/static
copying /home/build/lists.sr.ht-0.45.17-1-g0ae69c9/.pybuild/cpython3_3.8_listssrht/build/listssrht/static/simple.js -> /home/build/lists.sr.ht-0.45.17-1-g0ae69c9/debian/python3-listssrht/usr/lib/python3.8/dist-packages/listssrht/static
byte-compiling /home/build/lists.sr.ht-0.45.17-1-g0ae69c9/debian/python3-listssrht/usr/lib/python3.8/dist-packages/listssrht/oauth.py to oauth.cpython-38.pyc
byte-compiling /home/build/lists.sr.ht-0.45.17-1-g0ae69c9/debian/python3-listssrht/usr/lib/python3.8/dist-packages/listssrht/app.py to app.cpython-38.pyc
byte-compiling /home/build/lists.sr.ht-0.45.17-1-g0ae69c9/debian/python3-listssrht/usr/lib/python3.8/dist-packages/listssrht/filters.py to filters.cpython-38.pyc
byte-compiling /home/build/lists.sr.ht-0.45.17-1-g0ae69c9/debian/python3-listssrht/usr/lib/python3.8/dist-packages/listssrht/blueprints/user.py to user.cpython-38.pyc
byte-compiling /home/build/lists.sr.ht-0.45.17-1-g0ae69c9/debian/python3-listssrht/usr/lib/python3.8/dist-packages/listssrht/blueprints/settings.py to settings.cpython-38.pyc
byte-compiling /home/build/lists.sr.ht-0.45.17-1-g0ae69c9/debian/python3-listssrht/usr/lib/python3.8/dist-packages/listssrht/blueprints/archives.py to archives.cpython-38.pyc
byte-compiling /home/build/lists.sr.ht-0.45.17-1-g0ae69c9/debian/python3-listssrht/usr/lib/python3.8/dist-packages/listssrht/blueprints/patches.py to patches.cpython-38.pyc
byte-compiling /home/build/lists.sr.ht-0.45.17-1-g0ae69c9/debian/python3-listssrht/usr/lib/python3.8/dist-packages/listssrht/blueprints/api/subscriptions.py to subscriptions.cpython-38.pyc
byte-compiling /home/build/lists.sr.ht-0.45.17-1-g0ae69c9/debian/python3-listssrht/usr/lib/python3.8/dist-packages/listssrht/blueprints/api/lists.py to lists.cpython-38.pyc
byte-compiling /home/build/lists.sr.ht-0.45.17-1-g0ae69c9/debian/python3-listssrht/usr/lib/python3.8/dist-packages/listssrht/blueprints/api/__init__.py to __init__.cpython-38.pyc
byte-compiling /home/build/lists.sr.ht-0.45.17-1-g0ae69c9/debian/python3-listssrht/usr/lib/python3.8/dist-packages/listssrht/blueprints/api/emails.py to emails.cpython-38.pyc
byte-compiling /home/build/lists.sr.ht-0.45.17-1-g0ae69c9/debian/python3-listssrht/usr/lib/python3.8/dist-packages/listssrht/blueprints/api/patches.py to patches.cpython-38.pyc
byte-compiling /home/build/lists.sr.ht-0.45.17-1-g0ae69c9/debian/python3-listssrht/usr/lib/python3.8/dist-packages/listssrht/process.py to process.cpython-38.pyc
byte-compiling /home/build/lists.sr.ht-0.45.17-1-g0ae69c9/debian/python3-listssrht/usr/lib/python3.8/dist-packages/listssrht/types/user.py to user.cpython-38.pyc
byte-compiling /home/build/lists.sr.ht-0.45.17-1-g0ae69c9/debian/python3-listssrht/usr/lib/python3.8/dist-packages/listssrht/types/email.py to email.cpython-38.pyc
byte-compiling /home/build/lists.sr.ht-0.45.17-1-g0ae69c9/debian/python3-listssrht/usr/lib/python3.8/dist-packages/listssrht/types/repo.py to repo.cpython-38.pyc
byte-compiling /home/build/lists.sr.ht-0.45.17-1-g0ae69c9/debian/python3-listssrht/usr/lib/python3.8/dist-packages/listssrht/types/subscription.py to subscription.cpython-38.pyc
byte-compiling /home/build/lists.sr.ht-0.45.17-1-g0ae69c9/debian/python3-listssrht/usr/lib/python3.8/dist-packages/listssrht/types/listaccess.py to listaccess.cpython-38.pyc
byte-compiling /home/build/lists.sr.ht-0.45.17-1-g0ae69c9/debian/python3-listssrht/usr/lib/python3.8/dist-packages/listssrht/types/mirror.py to mirror.cpython-38.pyc
byte-compiling /home/build/lists.sr.ht-0.45.17-1-g0ae69c9/debian/python3-listssrht/usr/lib/python3.8/dist-packages/listssrht/types/list.py to list.cpython-38.pyc
byte-compiling /home/build/lists.sr.ht-0.45.17-1-g0ae69c9/debian/python3-listssrht/usr/lib/python3.8/dist-packages/listssrht/types/__init__.py to __init__.cpython-38.pyc
byte-compiling /home/build/lists.sr.ht-0.45.17-1-g0ae69c9/debian/python3-listssrht/usr/lib/python3.8/dist-packages/listssrht/types/access.py to access.cpython-38.pyc
byte-compiling /home/build/lists.sr.ht-0.45.17-1-g0ae69c9/debian/python3-listssrht/usr/lib/python3.8/dist-packages/listssrht/types/patchset.py to patchset.cpython-38.pyc
byte-compiling /home/build/lists.sr.ht-0.45.17-1-g0ae69c9/debian/python3-listssrht/usr/lib/python3.8/dist-packages/listssrht/webhooks.py to webhooks.cpython-38.pyc
byte-compiling /home/build/lists.sr.ht-0.45.17-1-g0ae69c9/debian/python3-listssrht/usr/lib/python3.8/dist-packages/listssrht/alembic/env.py to env.cpython-38.pyc
byte-compiling /home/build/lists.sr.ht-0.45.17-1-g0ae69c9/debian/python3-listssrht/usr/lib/python3.8/dist-packages/listssrht/alembic/versions/84d51b97a028_add_oauthtoken_table.py to 84d51b97a028_add_oauthtoken_table.cpython-38.pyc
byte-compiling /home/build/lists.sr.ht-0.45.17-1-g0ae69c9/debian/python3-listssrht/usr/lib/python3.8/dist-packages/listssrht/alembic/versions/fbbc6b346aee_add_fine_grained_access_control_columns.py to fbbc6b346aee_add_fine_grained_access_control_columns.cpython-38.pyc
byte-compiling /home/build/lists.sr.ht-0.45.17-1-g0ae69c9/debian/python3-listssrht/usr/lib/python3.8/dist-packages/listssrht/alembic/versions/41c629d9fb0f_add_reply_to_to_patchset.py to 41c629d9fb0f_add_reply_to_to_patchset.cpython-38.pyc
byte-compiling /home/build/lists.sr.ht-0.45.17-1-g0ae69c9/debian/python3-listssrht/usr/lib/python3.8/dist-packages/listssrht/alembic/versions/e5ae6528a8d5_add_unique_constraint_on_message_id_.py to e5ae6528a8d5_add_unique_constraint_on_message_id_.cpython-38.pyc
byte-compiling /home/build/lists.sr.ht-0.45.17-1-g0ae69c9/debian/python3-listssrht/usr/lib/python3.8/dist-packages/listssrht/alembic/versions/79140e9fc031_add_cascades_for_list_deletion.py to 79140e9fc031_add_cascades_for_list_deletion.cpython-38.pyc
byte-compiling /home/build/lists.sr.ht-0.45.17-1-g0ae69c9/debian/python3-listssrht/usr/lib/python3.8/dist-packages/listssrht/alembic/versions/c3c2bea8d735_add_webhook_tables.py to c3c2bea8d735_add_webhook_tables.cpython-38.pyc
byte-compiling /home/build/lists.sr.ht-0.45.17-1-g0ae69c9/debian/python3-listssrht/usr/lib/python3.8/dist-packages/listssrht/alembic/versions/4c0b015574ef_add_user_type_to_user.py to 4c0b015574ef_add_user_type_to_user.cpython-38.pyc
byte-compiling /home/build/lists.sr.ht-0.45.17-1-g0ae69c9/debian/python3-listssrht/usr/lib/python3.8/dist-packages/listssrht/alembic/versions/223cd3247273_add_more_patch_fields_to_email_table.py to 223cd3247273_add_more_patch_fields_to_email_table.cpython-38.pyc
byte-compiling /home/build/lists.sr.ht-0.45.17-1-g0ae69c9/debian/python3-listssrht/usr/lib/python3.8/dist-packages/listssrht/alembic/versions/803817bfd568_expand_size_of_subject_header_columns.py to 803817bfd568_expand_size_of_subject_header_columns.cpython-38.pyc
byte-compiling /home/build/lists.sr.ht-0.45.17-1-g0ae69c9/debian/python3-listssrht/usr/lib/python3.8/dist-packages/listssrht/alembic/versions/9d264a430403_drop_confirmed_column_from_subscription.py to 9d264a430403_drop_confirmed_column_from_subscription.cpython-38.pyc
byte-compiling /home/build/lists.sr.ht-0.45.17-1-g0ae69c9/debian/python3-listssrht/usr/lib/python3.8/dist-packages/listssrht/alembic/versions/617471810f6f_add_mirror_table.py to 617471810f6f_add_mirror_table.cpython-38.pyc
byte-compiling /home/build/lists.sr.ht-0.45.17-1-g0ae69c9/debian/python3-listssrht/usr/lib/python3.8/dist-packages/listssrht/alembic/versions/1db0bbd80c48_add_message_date_column.py to 1db0bbd80c48_add_message_date_column.cpython-38.pyc
byte-compiling /home/build/lists.sr.ht-0.45.17-1-g0ae69c9/debian/python3-listssrht/usr/lib/python3.8/dist-packages/listssrht/alembic/versions/98bb95b72e3a_add_patchset_tool_table.py to 98bb95b72e3a_add_patchset_tool_table.cpython-38.pyc
byte-compiling /home/build/lists.sr.ht-0.45.17-1-g0ae69c9/debian/python3-listssrht/usr/lib/python3.8/dist-packages/listssrht/alembic/versions/a03b9606f3c6_convert_headers_to_json.py to a03b9606f3c6_convert_headers_to_json.cpython-38.pyc
byte-compiling /home/build/lists.sr.ht-0.45.17-1-g0ae69c9/debian/python3-listssrht/usr/lib/python3.8/dist-packages/listssrht/alembic/versions/3b2f53e11ac6_add_import_in_progress_to_lists.py to 3b2f53e11ac6_add_import_in_progress_to_lists.cpython-38.pyc
byte-compiling /home/build/lists.sr.ht-0.45.17-1-g0ae69c9/debian/python3-listssrht/usr/lib/python3.8/dist-packages/listssrht/alembic/versions/f5ec39205a69_add_in_reply_to_header_to_database.py to f5ec39205a69_add_in_reply_to_header_to_database.cpython-38.pyc
byte-compiling /home/build/lists.sr.ht-0.45.17-1-g0ae69c9/debian/python3-listssrht/usr/lib/python3.8/dist-packages/listssrht/alembic/versions/07257ddd8bb7_add_user_mixin_properties.py to 07257ddd8bb7_add_user_mixin_properties.cpython-38.pyc
byte-compiling /home/build/lists.sr.ht-0.45.17-1-g0ae69c9/debian/python3-listssrht/usr/lib/python3.8/dist-packages/listssrht/alembic/versions/abd4678bea1b_decode_quoted_printable_message_bodies.py to abd4678bea1b_decode_quoted_printable_message_bodies.cpython-38.pyc
byte-compiling /home/build/lists.sr.ht-0.45.17-1-g0ae69c9/debian/python3-listssrht/usr/lib/python3.8/dist-packages/listssrht/alembic/versions/2b20dca45cbb_add_submitter_to_patchset.py to 2b20dca45cbb_add_submitter_to_patchset.cpython-38.pyc
byte-compiling /home/build/lists.sr.ht-0.45.17-1-g0ae69c9/debian/python3-listssrht/usr/lib/python3.8/dist-packages/listssrht/alembic/versions/056c313b267f_add_permit_reject_mimetypes.py to 056c313b267f_add_permit_reject_mimetypes.cpython-38.pyc
byte-compiling /home/build/lists.sr.ht-0.45.17-1-g0ae69c9/debian/python3-listssrht/usr/lib/python3.8/dist-packages/listssrht/alembic/versions/ed291e59b2a0_add_constraints_to_subscriptions.py to ed291e59b2a0_add_constraints_to_subscriptions.cpython-38.pyc
byte-compiling /home/build/lists.sr.ht-0.45.17-1-g0ae69c9/debian/python3-listssrht/usr/lib/python3.8/dist-packages/listssrht/alembic/versions/4a6c771785ff_add_subscribed_user_permissions.py to 4a6c771785ff_add_subscribed_user_permissions.cpython-38.pyc
byte-compiling /home/build/lists.sr.ht-0.45.17-1-g0ae69c9/debian/python3-listssrht/usr/lib/python3.8/dist-packages/listssrht/alembic/versions/86fbf902f15b_add_access_table.py to 86fbf902f15b_add_access_table.cpython-38.pyc
running install_egg_info
running egg_info
writing listssrht.egg-info/PKG-INFO
writing dependency_links to listssrht.egg-info/dependency_links.txt
writing requirements to listssrht.egg-info/requires.txt
writing top-level names to listssrht.egg-info/top_level.txt
reading manifest file 'listssrht.egg-info/SOURCES.txt'
writing manifest file 'listssrht.egg-info/SOURCES.txt'
Copying listssrht.egg-info to /home/build/lists.sr.ht-0.45.17-1-g0ae69c9/debian/python3-listssrht/usr/lib/python3.8/dist-packages/listssrht-0.45.17.egg-info
Skipping SOURCES.txt
running install_scripts
copying build/scripts-3.8/listssrht-initdb -> /home/build/lists.sr.ht-0.45.17-1-g0ae69c9/debian/python3-listssrht/usr/bin
copying build/scripts-3.8/listssrht-lmtp -> /home/build/lists.sr.ht-0.45.17-1-g0ae69c9/debian/python3-listssrht/usr/bin
copying build/scripts-3.8/listssrht-migrate -> /home/build/lists.sr.ht-0.45.17-1-g0ae69c9/debian/python3-listssrht/usr/bin
changing mode of /home/build/lists.sr.ht-0.45.17-1-g0ae69c9/debian/python3-listssrht/usr/bin/listssrht-initdb to 755
changing mode of /home/build/lists.sr.ht-0.45.17-1-g0ae69c9/debian/python3-listssrht/usr/bin/listssrht-lmtp to 755
changing mode of /home/build/lists.sr.ht-0.45.17-1-g0ae69c9/debian/python3-listssrht/usr/bin/listssrht-migrate to 755
dh_sysuser -O--buildsystem=pybuild
dh_installdocs -O--buildsystem=pybuild
dh_installchangelogs -O--buildsystem=pybuild
dh_installexamples -O--buildsystem=pybuild
dh_python3 -O--buildsystem=pybuild
dh_installinit -O--buildsystem=pybuild
debian/rules override_dh_installsystemd
make[1]: Entering directory '/home/build/lists.sr.ht-0.45.17-1-g0ae69c9'
dh_installsystemd
dh_installsystemd --name srht-lists-lmtp
dh_installsystemd --name srht-lists-process
dh_installsystemd --name srht-lists-webhooks
make[1]: Leaving directory '/home/build/lists.sr.ht-0.45.17-1-g0ae69c9'
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 'srht-lists' in '../srht-lists_0.45.17-1-g0ae69c9-1_all.deb'.
dpkg-deb: building package 'python3-listssrht' in '../python3-listssrht_0.45.17-1-g0ae69c9-1_all.deb'.
dpkg-genbuildinfo
dpkg-genchanges -si >../lists.sr.ht_0.45.17-1-g0ae69c9-1_amd64.changes
dpkg-genchanges: info: including full source code in upload
dpkg-source --after-build .
dpkg-source: info: using options from lists.sr.ht-0.45.17-1-g0ae69c9/debian/source/options: --extend-diff-ignore=(^[^/]*[.]egg-info/|static/)
dpkg-source: info: unapplying 0002-Use-setuptools-instead-of-distutils.patch
dpkg-source: info: unapplying 0001-Do-not-run-core-s-make.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:
cleancss* dh-python* dh-sysuser* equivs* javascript-common* libc-ares2*
libjs-bootstrap4* libjs-inherits* libjs-jquery* libjs-popper.js*
libjs-source-map* libnode72* libperl5.30* libpq5* libpython3.9-minimal*
libpython3.9-stdlib* libsass1* lists.sr.ht-build-deps* node-balanced-match*
node-brace-expansion* node-clean-css* node-commander* node-fs.realpath*
node-glob* node-inflight* node-inherits* node-jquery* node-minimatch*
node-once* node-path-is-absolute* node-source-map* node-wrappy* nodejs*
perl-modules-5.30* python-babel-localedata* python3-alembic* python3-all*
python3-anyjson* python3-arrow* python3-atomicwrites* python3-attr*
python3-babel* python3-bleach* python3-bs4* python3-click* python3-colorama*
python3-dateutil* python3-decorator* python3-editor* python3-flask*
python3-html5lib* python3-humanize* python3-importlib-metadata*
python3-itsdangerous* python3-jinja2* python3-mako* python3-markdown*
python3-markupsafe* python3-mistletoe* python3-more-itertools*
python3-packaging* python3-pgpy* python3-pluggy* python3-prometheus-client*
python3-psycopg2* python3-py* python3-pyasn1* python3-pyparsing*
python3-pytest* python3-redis* python3-soupsieve* python3-sqlalchemy*
python3-sqlalchemy-utils* python3-srht* python3-tz* python3-wcwidth*
python3-webencodings* python3-werkzeug* python3-zipp* python3.9*
python3.9-minimal* sassc*
0 upgraded, 0 newly installed, 82 to remove and 47 not upgraded.
After this operation, 160 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 ... 34035 files and directories currently installed.)
Removing lists.sr.ht-build-deps (0.45.17-1-g0ae69c9-1) ...
Removing cleancss (4.2.3+~4.3.0-1) ...
Removing dh-python (4.20201102) ...
Removing dh-sysuser (1.3.5) ...
Removing equivs (2.3.1) ...
Removing libjs-bootstrap4 (4.5.2+dfsg1-1) ...
Removing libjs-popper.js (1.16.1+ds-2) ...
Removing javascript-common (11) ...
Removing node-glob (7.1.6+~7.1.3-1) ...
Removing node-inflight (1.0.6-1) ...
Removing node-once (1.4.0-3) ...
Removing node-wrappy (1.0.2-1) ...
Removing node-clean-css (4.2.3+~4.3.0-1) ...
Removing node-source-map (0.7.0++dfsg2+really.0.6.1-4) ...
Removing node-inherits (2.0.4-1) ...
Removing libjs-inherits (2.0.4-1) ...
Removing python3-srht (0.65.7-1) ...
Removing python3-flask (1.1.2-2) ...
Removing python3-werkzeug (1.0.1+dfsg1-2) ...
Removing libjs-jquery (3.5.1+dfsg+~3.5.4-1) ...
Removing libjs-source-map (0.7.0++dfsg2+really.0.6.1-4) ...
Removing libperl5.30:amd64 (5.30.3-4) ...
Removing python3-psycopg2 (2.8.5-1+b1) ...
Removing libpq5:amd64 (13.1-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 sassc (3.6.1-4) ...
Removing libsass1:amd64 (3.6.4-3) ...
Removing node-minimatch (3.0.4+~3.0.3-1) ...
Removing node-brace-expansion (2.0.0-1) ...
Removing node-balanced-match (1.0.0-1) ...
Removing node-commander (4.1.1-2) ...
Removing node-fs.realpath (1.0.0-1) ...
Removing node-jquery (3.5.1+dfsg+~3.5.4-1) ...
Removing node-path-is-absolute (2.0.0-1) ...
Removing perl-modules-5.30 (5.30.3-4) ...
Removing python3-sqlalchemy-utils (0.36.3-2) ...
Removing python3-babel (2.8.0+dfsg.1-4) ...
Removing python-babel-localedata (2.8.0+dfsg.1-4) ...
Removing python3-alembic (1.4.3-1) ...
Removing python3-anyjson (0.3.3-2) ...
Removing python3-arrow (0.15.7-1) ...
Removing python3-pytest (4.6.11-1) ...
Removing python3-atomicwrites (1.4.0-1) ...
Removing python3-attr (20.3.0-1) ...
Removing python3-bleach (3.2.1-1) ...
Removing python3-bs4 (4.9.3-1) ...
Removing python3-click (7.1.2-1) ...
Removing python3-colorama (0.4.3-1) ...
Removing python3-dateutil (2.8.1-4) ...
Removing python3-prometheus-client (0.7.1-1.1) ...
Removing python3-decorator (4.4.2-2) ...
Removing python3-editor (1.0.3-2) ...
Removing python3-html5lib (1.1-2) ...
Removing python3-humanize (3.1.0-1) ...
Removing python3-pluggy (0.13.0-5) ...
Removing python3-importlib-metadata (1.6.0-2) ...
Removing python3-itsdangerous (1.1.0-3) ...
Removing python3-jinja2 (2.11.2-1) ...
Removing python3-mako (1.1.3+ds1-1) ...
Removing python3-markdown (3.3.3-1) ...
Removing python3-markupsafe (1.1.1-1+b2) ...
Removing python3-mistletoe (0.7.2-2) ...
Removing python3-zipp (1.0.0-3) ...
Removing python3-more-itertools (4.2.0-3) ...
Removing python3-packaging (20.4-1) ...
Removing python3-pgpy (0.5.2-2) ...
Removing python3-py (1.9.0-2) ...
Removing python3-pyasn1 (0.4.8-1) ...
Removing python3-pyparsing (2.4.7-1) ...
Removing python3-redis (3.3.11-3) ...
Removing python3-soupsieve (2.0.1-1) ...
Removing python3-sqlalchemy (1.3.20+ds1-1) ...
Removing python3-tz (2020.4-2) ...
Removing python3-wcwidth (0.1.9+dfsg1-2) ...
Removing python3-webencodings (0.5.1-2) ...
Removing nodejs (12.19.0~dfsg-1) ...
Removing libnode72:amd64 (12.19.0~dfsg-1) ...
Removing libc-ares2:amd64 (1.16.1-1) ...
Processing triggers for libc-bin (2.31-4) ...
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 ... 28115 files and directories currently installed.)
Purging configuration files for javascript-common (11) ...
Purging configuration files for libjs-popper.js (1.16.1+ds-2) ...
Purging configuration files for libpython3.9-minimal:amd64 (3.9.0-5) ...
Purging configuration files for libjs-jquery (3.5.1+dfsg+~3.5.4-1) ...
Purging configuration files for python3.9-minimal (3.9.0-5) ...
python3-listssrht_0.45.17-1-g0ae69c9-1_all.deb
----------------------------------------------
new Debian package, version 2.0.
size 188508 bytes: control archive=4268 bytes.
578 bytes, 15 lines control
11469 bytes, 110 lines md5sums
273 bytes, 12 lines * postinst #!/bin/sh
408 bytes, 12 lines * prerm #!/bin/sh
Package: python3-listssrht
Source: lists.sr.ht
Version: 0.45.17-1-g0ae69c9-1
Architecture: all
Maintainer: Denis Laxalde <denis@laxalde.org>
Installed-Size: 1236
Depends: python3-aiosmtpd, python3-asyncpg, python3-emailthreads, python3-pygit2, python3-srht, python3:any (>= 3.7~), python3-celery
Section: misc
Priority: optional
Homepage: https://sourcehut.org/
Description: mailing lists service 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 sr.ht lists library for Python 3.
drwxr-xr-x root/root 0 2020-11-13 19:19 ./
drwxr-xr-x root/root 0 2020-11-13 19:19 ./usr/
drwxr-xr-x root/root 0 2020-11-13 19:19 ./usr/bin/
-rwxr-xr-x root/root 912 2020-11-13 19:19 ./usr/bin/listssrht-initdb
-rwxr-xr-x root/root 13921 2020-11-13 19:19 ./usr/bin/listssrht-lmtp
-rwxr-xr-x root/root 140 2020-11-13 19:19 ./usr/bin/listssrht-migrate
drwxr-xr-x root/root 0 2020-11-13 19:19 ./usr/lib/
drwxr-xr-x root/root 0 2020-11-13 19:19 ./usr/lib/python3/
drwxr-xr-x root/root 0 2020-11-13 19:19 ./usr/lib/python3/dist-packages/
drwxr-xr-x root/root 0 2020-11-13 19:19 ./usr/lib/python3/dist-packages/listssrht/
drwxr-xr-x root/root 0 2020-11-13 19:19 ./usr/lib/python3/dist-packages/listssrht/alembic/
-rw-r--r-- root/root 75 2020-11-13 19:19 ./usr/lib/python3/dist-packages/listssrht/alembic/env.py
drwxr-xr-x root/root 0 2020-11-13 19:19 ./usr/lib/python3/dist-packages/listssrht/alembic/versions/
-rw-r--r-- root/root 691 2020-11-13 19:19 ./usr/lib/python3/dist-packages/listssrht/alembic/versions/056c313b267f_add_permit_reject_mimetypes.py
-rw-r--r-- root/root 607 2020-11-13 19:19 ./usr/lib/python3/dist-packages/listssrht/alembic/versions/07257ddd8bb7_add_user_mixin_properties.py
-rw-r--r-- root/root 1560 2020-11-13 19:19 ./usr/lib/python3/dist-packages/listssrht/alembic/versions/1db0bbd80c48_add_message_date_column.py
-rw-r--r-- root/root 2145 2020-11-13 19:19 ./usr/lib/python3/dist-packages/listssrht/alembic/versions/223cd3247273_add_more_patch_fields_to_email_table.py
-rw-r--r-- root/root 528 2020-11-13 19:19 ./usr/lib/python3/dist-packages/listssrht/alembic/versions/2b20dca45cbb_add_submitter_to_patchset.py
-rw-r--r-- root/root 476 2020-11-13 19:19 ./usr/lib/python3/dist-packages/listssrht/alembic/versions/3b2f53e11ac6_add_import_in_progress_to_lists.py
-rw-r--r-- root/root 413 2020-11-13 19:19 ./usr/lib/python3/dist-packages/listssrht/alembic/versions/41c629d9fb0f_add_reply_to_to_patchset.py
-rw-r--r-- root/root 644 2020-11-13 19:19 ./usr/lib/python3/dist-packages/listssrht/alembic/versions/4a6c771785ff_add_subscribed_user_permissions.py
-rw-r--r-- root/root 2154 2020-11-13 19:19 ./usr/lib/python3/dist-packages/listssrht/alembic/versions/4c0b015574ef_add_user_type_to_user.py
-rw-r--r-- root/root 1038 2020-11-13 19:19 ./usr/lib/python3/dist-packages/listssrht/alembic/versions/617471810f6f_add_mirror_table.py
-rw-r--r-- root/root 5445 2020-11-13 19:19 ./usr/lib/python3/dist-packages/listssrht/alembic/versions/79140e9fc031_add_cascades_for_list_deletion.py
-rw-r--r-- root/root 580 2020-11-13 19:19 ./usr/lib/python3/dist-packages/listssrht/alembic/versions/803817bfd568_expand_size_of_subject_header_columns.py
-rw-r--r-- root/root 859 2020-11-13 19:19 ./usr/lib/python3/dist-packages/listssrht/alembic/versions/84d51b97a028_add_oauthtoken_table.py
-rw-r--r-- root/root 969 2020-11-13 19:19 ./usr/lib/python3/dist-packages/listssrht/alembic/versions/86fbf902f15b_add_access_table.py
-rw-r--r-- root/root 1086 2020-11-13 19:19 ./usr/lib/python3/dist-packages/listssrht/alembic/versions/98bb95b72e3a_add_patchset_tool_table.py
-rw-r--r-- root/root 464 2020-11-13 19:19 ./usr/lib/python3/dist-packages/listssrht/alembic/versions/9d264a430403_drop_confirmed_column_from_subscription.py
-rw-r--r-- root/root 1047 2020-11-13 19:19 ./usr/lib/python3/dist-packages/listssrht/alembic/versions/a03b9606f3c6_convert_headers_to_json.py
-rw-r--r-- root/root 1035 2020-11-13 19:19 ./usr/lib/python3/dist-packages/listssrht/alembic/versions/abd4678bea1b_decode_quoted_printable_message_bodies.py
-rw-r--r-- root/root 2997 2020-11-13 19:19 ./usr/lib/python3/dist-packages/listssrht/alembic/versions/c3c2bea8d735_add_webhook_tables.py
-rw-r--r-- root/root 486 2020-11-13 19:19 ./usr/lib/python3/dist-packages/listssrht/alembic/versions/e5ae6528a8d5_add_unique_constraint_on_message_id_.py
-rw-r--r-- root/root 933 2020-11-13 19:19 ./usr/lib/python3/dist-packages/listssrht/alembic/versions/ed291e59b2a0_add_constraints_to_subscriptions.py
-rw-r--r-- root/root 1171 2020-11-13 19:19 ./usr/lib/python3/dist-packages/listssrht/alembic/versions/f5ec39205a69_add_in_reply_to_header_to_database.py
-rw-r--r-- root/root 1220 2020-11-13 19:19 ./usr/lib/python3/dist-packages/listssrht/alembic/versions/fbbc6b346aee_add_fine_grained_access_control_columns.py
-rw-r--r-- root/root 1342 2020-11-13 19:19 ./usr/lib/python3/dist-packages/listssrht/app.py
drwxr-xr-x root/root 0 2020-11-13 19:19 ./usr/lib/python3/dist-packages/listssrht/blueprints/
drwxr-xr-x root/root 0 2020-11-13 19:19 ./usr/lib/python3/dist-packages/listssrht/blueprints/api/
-rw-r--r-- root/root 2697 2020-11-13 19:19 ./usr/lib/python3/dist-packages/listssrht/blueprints/api/__init__.py
-rw-r--r-- root/root 1712 2020-11-13 19:19 ./usr/lib/python3/dist-packages/listssrht/blueprints/api/emails.py
-rw-r--r-- root/root 4045 2020-11-13 19:19 ./usr/lib/python3/dist-packages/listssrht/blueprints/api/lists.py
-rw-r--r-- root/root 4403 2020-11-13 19:19 ./usr/lib/python3/dist-packages/listssrht/blueprints/api/patches.py
-rw-r--r-- root/root 2638 2020-11-13 19:19 ./usr/lib/python3/dist-packages/listssrht/blueprints/api/subscriptions.py
-rw-r--r-- root/root 14426 2020-11-13 19:19 ./usr/lib/python3/dist-packages/listssrht/blueprints/archives.py
-rw-r--r-- root/root 10497 2020-11-13 19:19 ./usr/lib/python3/dist-packages/listssrht/blueprints/patches.py
-rw-r--r-- root/root 11082 2020-11-13 19:19 ./usr/lib/python3/dist-packages/listssrht/blueprints/settings.py
-rw-r--r-- root/root 7479 2020-11-13 19:19 ./usr/lib/python3/dist-packages/listssrht/blueprints/user.py
-rw-r--r-- root/root 5811 2020-11-13 19:19 ./usr/lib/python3/dist-packages/listssrht/filters.py
-rw-r--r-- root/root 2209 2020-11-13 19:19 ./usr/lib/python3/dist-packages/listssrht/oauth.py
-rw-r--r-- root/root 23122 2020-11-13 19:19 ./usr/lib/python3/dist-packages/listssrht/process.py
drwxr-xr-x root/root 0 2020-11-13 19:19 ./usr/lib/python3/dist-packages/listssrht/static/
-rw-r--r-- root/root 8705 2020-11-13 19:19 ./usr/lib/python3/dist-packages/listssrht/static/codemirror.css
-rw-r--r-- root/root 398722 2020-11-13 19:19 ./usr/lib/python3/dist-packages/listssrht/static/codemirror.js
drwxr-xr-x root/root 0 2020-11-13 19:19 ./usr/lib/python3/dist-packages/listssrht/static/icons/
-rw-r--r-- root/root 1548 2020-11-13 19:19 ./usr/lib/python3/dist-packages/listssrht/static/icons/LICENSE.txt
-rw-r--r-- root/root 308 2020-11-13 19:19 ./usr/lib/python3/dist-packages/listssrht/static/icons/README
-rw-r--r-- root/root 334 2020-11-13 19:19 ./usr/lib/python3/dist-packages/listssrht/static/icons/arrow-right.svg
-rw-r--r-- root/root 241 2020-11-13 19:19 ./usr/lib/python3/dist-packages/listssrht/static/icons/caret-left.svg
-rw-r--r-- root/root 233 2020-11-13 19:19 ./usr/lib/python3/dist-packages/listssrht/static/icons/caret-right.svg
-rw-r--r-- root/root 355 2020-11-13 19:19 ./usr/lib/python3/dist-packages/listssrht/static/icons/check.svg
-rw-r--r-- root/root 549 2020-11-13 19:19 ./usr/lib/python3/dist-packages/listssrht/static/icons/circle-notch.svg
-rw-r--r-- root/root 150 2020-11-13 19:19 ./usr/lib/python3/dist-packages/listssrht/static/icons/circle-solid.svg
-rw-r--r-- root/root 233 2020-11-13 19:19 ./usr/lib/python3/dist-packages/listssrht/static/icons/circle.svg
-rw-r--r-- root/root 405 2020-11-13 19:19 ./usr/lib/python3/dist-packages/listssrht/static/icons/clock.svg
-rw-r--r-- root/root 756 2020-11-13 19:19 ./usr/lib/python3/dist-packages/listssrht/static/icons/code-branch.svg
-rw-r--r-- root/root 972 2020-11-13 19:19 ./usr/lib/python3/dist-packages/listssrht/static/icons/comments-o.svg
-rw-r--r-- root/root 580 2020-11-13 19:19 ./usr/lib/python3/dist-packages/listssrht/static/icons/comments.svg
-rw-r--r-- root/root 575 2020-11-13 19:19 ./usr/lib/python3/dist-packages/listssrht/static/icons/envelope-o.svg
-rw-r--r-- root/root 708 2020-11-13 19:19 ./usr/lib/python3/dist-packages/listssrht/static/icons/exclamation-triangle.svg
-rw-r--r-- root/root 605 2020-11-13 19:19 ./usr/lib/python3/dist-packages/listssrht/static/icons/external-link-alt.svg
-rw-r--r-- root/root 511 2020-11-13 19:19 ./usr/lib/python3/dist-packages/listssrht/static/icons/file-alt.svg
-rw-r--r-- root/root 268 2020-11-13 19:19 ./usr/lib/python3/dist-packages/listssrht/static/icons/file.svg
-rw-r--r-- root/root 208 2020-11-13 19:19 ./usr/lib/python3/dist-packages/listssrht/static/icons/folder.svg
-rw-r--r-- root/root 1385 2020-11-13 19:19 ./usr/lib/python3/dist-packages/listssrht/static/icons/github.svg
-rw-r--r-- root/root 682 2020-11-13 19:19 ./usr/lib/python3/dist-packages/listssrht/static/icons/gitlab.svg
-rw-r--r-- root/root 197 2020-11-13 19:19 ./usr/lib/python3/dist-packages/listssrht/static/icons/minus.svg
-rw-r--r-- root/root 355 2020-11-13 19:19 ./usr/lib/python3/dist-packages/listssrht/static/icons/plus-circle.svg
-rw-r--r-- root/root 481 2020-11-13 19:19 ./usr/lib/python3/dist-packages/listssrht/static/icons/plus-square.svg
-rw-r--r-- root/root 320 2020-11-13 19:19 ./usr/lib/python3/dist-packages/listssrht/static/icons/plus.svg
-rw-r--r-- root/root 830 2020-11-13 19:19 ./usr/lib/python3/dist-packages/listssrht/static/icons/question-circle.svg
-rw-r--r-- root/root 402 2020-11-13 19:19 ./usr/lib/python3/dist-packages/listssrht/static/icons/reply.svg
-rw-r--r-- root/root 723 2020-11-13 19:19 ./usr/lib/python3/dist-packages/listssrht/static/icons/rss.svg
-rw-r--r-- root/root 496 2020-11-13 19:19 ./usr/lib/python3/dist-packages/listssrht/static/icons/times.svg
-rw-r--r-- root/root 337 2020-11-13 19:19 ./usr/lib/python3/dist-packages/listssrht/static/icons/user.svg
-rw-r--r-- root/root 194987 2020-11-13 19:19 ./usr/lib/python3/dist-packages/listssrht/static/main.css
-rw-r--r-- root/root 154912 2020-11-13 19:19 ./usr/lib/python3/dist-packages/listssrht/static/main.min.34128fd3.css
-rw-r--r-- root/root 154912 2020-11-13 19:19 ./usr/lib/python3/dist-packages/listssrht/static/main.min.css
-rw-r--r-- root/root 8044 2020-11-13 19:19 ./usr/lib/python3/dist-packages/listssrht/static/simple.js
drwxr-xr-x root/root 0 2020-11-13 19:19 ./usr/lib/python3/dist-packages/listssrht/templates/
-rw-r--r-- root/root 9254 2020-11-13 19:19 ./usr/lib/python3/dist-packages/listssrht/templates/archive.html
-rw-r--r-- root/root 2138 2020-11-13 19:19 ./usr/lib/python3/dist-packages/listssrht/templates/create-mirror.html
-rw-r--r-- root/root 1282 2020-11-13 19:19 ./usr/lib/python3/dist-packages/listssrht/templates/create.html
-rw-r--r-- root/root 3154 2020-11-13 19:19 ./usr/lib/python3/dist-packages/listssrht/templates/dashboard.html
-rw-r--r-- root/root 851 2020-11-13 19:19 ./usr/lib/python3/dist-packages/listssrht/templates/index.html
-rw-r--r-- root/root 214 2020-11-13 19:19 ./usr/lib/python3/dist-packages/listssrht/templates/list-full.html
-rw-r--r-- root/root 1959 2020-11-13 19:19 ./usr/lib/python3/dist-packages/listssrht/templates/list.html
-rw-r--r-- root/root 8272 2020-11-13 19:19 ./usr/lib/python3/dist-packages/listssrht/templates/patchset.html
-rw-r--r-- root/root 6198 2020-11-13 19:19 ./usr/lib/python3/dist-packages/listssrht/templates/settings-access.html
-rw-r--r-- root/root 2712 2020-11-13 19:19 ./usr/lib/python3/dist-packages/listssrht/templates/settings-content.html
-rw-r--r-- root/root 1155 2020-11-13 19:19 ./usr/lib/python3/dist-packages/listssrht/templates/settings-delete.html
-rw-r--r-- root/root 1855 2020-11-13 19:19 ./usr/lib/python3/dist-packages/listssrht/templates/settings-import-export.html
-rw-r--r-- root/root 1682 2020-11-13 19:19 ./usr/lib/python3/dist-packages/listssrht/templates/settings-info.html
-rw-r--r-- root/root 1398 2020-11-13 19:19 ./usr/lib/python3/dist-packages/listssrht/templates/settings.html
-rw-r--r-- root/root 7683 2020-11-13 19:19 ./usr/lib/python3/dist-packages/listssrht/templates/thread.html
-rw-r--r-- root/root 1497 2020-11-13 19:19 ./usr/lib/python3/dist-packages/listssrht/templates/user-lists.html
-rw-r--r-- root/root 2882 2020-11-13 19:19 ./usr/lib/python3/dist-packages/listssrht/templates/user.html
drwxr-xr-x root/root 0 2020-11-13 19:19 ./usr/lib/python3/dist-packages/listssrht/types/
-rw-r--r-- root/root 564 2020-11-13 19:19 ./usr/lib/python3/dist-packages/listssrht/types/__init__.py
-rw-r--r-- root/root 984 2020-11-13 19:19 ./usr/lib/python3/dist-packages/listssrht/types/access.py
-rw-r--r-- root/root 4688 2020-11-13 19:19 ./usr/lib/python3/dist-packages/listssrht/types/email.py
-rw-r--r-- root/root 3606 2020-11-13 19:19 ./usr/lib/python3/dist-packages/listssrht/types/list.py
-rw-r--r-- root/root 484 2020-11-13 19:19 ./usr/lib/python3/dist-packages/listssrht/types/listaccess.py
-rw-r--r-- root/root 988 2020-11-13 19:19 ./usr/lib/python3/dist-packages/listssrht/types/mirror.py
-rw-r--r-- root/root 3346 2020-11-13 19:19 ./usr/lib/python3/dist-packages/listssrht/types/patchset.py
-rw-r--r-- root/root 1242 2020-11-13 19:19 ./usr/lib/python3/dist-packages/listssrht/types/repo.py
-rw-r--r-- root/root 1472 2020-11-13 19:19 ./usr/lib/python3/dist-packages/listssrht/types/subscription.py
-rw-r--r-- root/root 216 2020-11-13 19:19 ./usr/lib/python3/dist-packages/listssrht/types/user.py
-rw-r--r-- root/root 1172 2020-11-13 19:19 ./usr/lib/python3/dist-packages/listssrht/webhooks.py
drwxr-xr-x root/root 0 2020-11-13 19:19 ./usr/lib/python3/dist-packages/listssrht-0.45.17.egg-info/
-rw-r--r-- root/root 241 2020-11-13 19:19 ./usr/lib/python3/dist-packages/listssrht-0.45.17.egg-info/PKG-INFO
-rw-r--r-- root/root 1 2020-11-13 19:19 ./usr/lib/python3/dist-packages/listssrht-0.45.17.egg-info/dependency_links.txt
-rw-r--r-- root/root 0 2020-11-13 19:19 ./usr/lib/python3/dist-packages/listssrht-0.45.17.egg-info/requires.txt
-rw-r--r-- root/root 10 2020-11-13 19:19 ./usr/lib/python3/dist-packages/listssrht-0.45.17.egg-info/top_level.txt
drwxr-xr-x root/root 0 2020-11-13 19:19 ./usr/share/
drwxr-xr-x root/root 0 2020-11-13 19:19 ./usr/share/doc/
drwxr-xr-x root/root 0 2020-11-13 19:19 ./usr/share/doc/python3-listssrht/
-rw-r--r-- root/root 686 2020-11-13 19:19 ./usr/share/doc/python3-listssrht/changelog.Debian.gz
-rw-r--r-- root/root 35625 2020-11-13 19:19 ./usr/share/doc/python3-listssrht/copyright
srht-lists_0.45.17-1-g0ae69c9-1_all.deb
---------------------------------------
new Debian package, version 2.0.
size 18552 bytes: control archive=2016 bytes.
532 bytes, 16 lines control
1043 bytes, 13 lines md5sums
5952 bytes, 147 lines * postinst #!/bin/sh
2591 bytes, 78 lines * postrm #!/bin/sh
1087 bytes, 27 lines * prerm #!/bin/sh
Package: srht-lists
Source: lists.sr.ht
Version: 0.45.17-1-g0ae69c9-1
Architecture: all
Maintainer: Denis Laxalde <denis@laxalde.org>
Installed-Size: 73
Depends: sysuser-helper (<< 1.4), python3-listssrht (= 0.45.17-1-g0ae69c9-1), gunicorn
Recommends: postgresql
Section: misc
Priority: optional
Homepage: https://sourcehut.org/
Description: mailing lists service for sr.ht
Sourcehut (a.k.a. sr.ht) is a software suite for managing your software
development projects.
.
This package installs the mailing lists service of sr.ht.
drwxr-xr-x root/root 0 2020-11-13 19:19 ./
drwxr-xr-x root/root 0 2020-11-13 19:19 ./etc/
drwxr-xr-x root/root 0 2020-11-13 19:19 ./etc/sr.ht/
drwxr-xr-x root/root 0 2020-11-13 19:19 ./lib/
drwxr-xr-x root/root 0 2020-11-13 19:19 ./lib/systemd/
drwxr-xr-x root/root 0 2020-11-13 19:19 ./lib/systemd/system/
-rw-r--r-- root/root 245 2020-11-13 19:19 ./lib/systemd/system/srht-lists-lmtp.service
-rw-r--r-- root/root 295 2020-11-13 19:19 ./lib/systemd/system/srht-lists-process.service
-rw-r--r-- root/root 297 2020-11-13 19:19 ./lib/systemd/system/srht-lists-webhooks.service
-rw-r--r-- root/root 270 2020-11-13 19:19 ./lib/systemd/system/srht-lists.service
drwxr-xr-x root/root 0 2020-11-13 19:19 ./usr/
drwxr-xr-x root/root 0 2020-11-13 19:19 ./usr/share/
drwxr-xr-x root/root 0 2020-11-13 19:19 ./usr/share/doc/
drwxr-xr-x root/root 0 2020-11-13 19:19 ./usr/share/doc/srht-lists/
-rw-r--r-- root/root 727 2020-11-13 19:19 ./usr/share/doc/srht-lists/README.Debian
-rw-r--r-- root/root 686 2020-11-13 19:19 ./usr/share/doc/srht-lists/changelog.Debian.gz
drwxr-xr-x root/root 0 2020-11-13 19:19 ./usr/share/doc/srht-lists/contrib/
-rw-r--r-- root/root 618 2020-11-13 19:19 ./usr/share/doc/srht-lists/contrib/backfill-patchsets
-rw-r--r-- root/root 534 2020-11-13 19:19 ./usr/share/doc/srht-lists/contrib/maildir-to-mbox
-rw-r--r-- root/root 1449 2020-11-13 19:19 ./usr/share/doc/srht-lists/contrib/mbox-split
-rw-r--r-- root/root 617 2020-11-13 19:19 ./usr/share/doc/srht-lists/contrib/pile-o-emails-to-mbox
-rw-r--r-- root/root 444 2020-11-13 19:19 ./usr/share/doc/srht-lists/contrib/reclassify-patches
-rw-r--r-- root/root 35625 2020-11-13 19:19 ./usr/share/doc/srht-lists/copyright
drwxr-xr-x root/root 0 2020-11-13 19:19 ./usr/share/doc/srht-lists/examples/
-rw-r--r-- root/root 1995 2020-11-13 19:19 ./usr/share/doc/srht-lists/examples/config.example.ini.gz
./pkgkit: line 36: lintian: command not found
Reading package lists... 0%
Reading package lists... 0%
Reading package lists... 91%
Reading package lists... 91%
Reading package lists... 91%
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
Note, selecting 'python3-listssrht' instead of '../python3-listssrht_0.45.17-1-g0ae69c9-1_all.deb'
Note, selecting 'srht-lists' instead of '../srht-lists_0.45.17-1-g0ae69c9-1_all.deb'
The following additional packages will be installed:
gunicorn libgit2-28 libhttp-parser2.9 libjs-jquery libmbedcrypto3
libmbedtls12 libmbedx509-0 libpq5 node-jquery python-babel-localedata
python3-aiosmtpd python3-alembic python3-amqp python3-anyjson python3-arrow
python3-asyncpg python3-babel python3-billiard python3-bleach python3-bs4
python3-celery python3-click python3-click-didyoumean python3-click-repl
python3-colorama python3-dateutil python3-decorator python3-editor
python3-emailthreads python3-ephem python3-flask python3-gunicorn
python3-html5lib python3-humanize python3-itsdangerous python3-jinja2
python3-kombu python3-mako python3-markdown python3-markupsafe
python3-memcache python3-mistletoe python3-packaging python3-pgpy
python3-prometheus-client python3-prompt-toolkit python3-psycopg2
python3-public python3-pyasn1 python3-pygit2 python3-pyparsing python3-redis
python3-soupsieve python3-sqlalchemy python3-sqlalchemy-utils python3-srht
python3-tz python3-vine python3-wcwidth python3-webencodings
python3-werkzeug sysuser-helper
Suggested packages:
python3-pastedeploy python3-setproctitle python3-tornado python-amqp-doc
python-arrow-doc python-billiard-doc python-bleach-doc python-celery-doc
python-flask-doc python3-genshi python3-lxml python-jinja2-doc
python-kombu-doc python3-boto python3-django python3-pymongo python3-beaker
python-mako-doc python-markdown-doc memcached python-psycopg2-doc
python-public-doc python-pygit2-doc python-pyparsing-doc python3-hiredis
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 postgresql
The following NEW packages will be installed:
gunicorn libgit2-28 libhttp-parser2.9 libjs-jquery libmbedcrypto3
libmbedtls12 libmbedx509-0 libpq5 node-jquery python-babel-localedata
python3-aiosmtpd python3-alembic python3-amqp python3-anyjson python3-arrow
python3-asyncpg python3-babel python3-billiard python3-bleach python3-bs4
python3-celery python3-click python3-click-didyoumean python3-click-repl
python3-colorama python3-dateutil python3-decorator python3-editor
python3-emailthreads python3-ephem python3-flask python3-gunicorn
python3-html5lib python3-humanize python3-itsdangerous python3-jinja2
python3-kombu python3-listssrht python3-mako python3-markdown
python3-markupsafe python3-memcache python3-mistletoe python3-packaging
python3-pgpy python3-prometheus-client python3-prompt-toolkit
python3-psycopg2 python3-public python3-pyasn1 python3-pygit2
python3-pyparsing python3-redis python3-soupsieve python3-sqlalchemy
python3-sqlalchemy-utils python3-srht python3-tz python3-vine
python3-wcwidth python3-webencodings python3-werkzeug srht-lists
sysuser-helper
0 upgraded, 64 newly installed, 0 to remove and 47 not upgraded.
Need to get 3355 kB/12.1 MB of archives.
After this operation, 59.9 MB of additional disk space will be used.
69% [Working]
Get:1 /home/build/python3-listssrht_0.45.17-1-g0ae69c9-1_all.deb python3-listssrht all 0.45.17-1-g0ae69c9-1 [189 kB]
70% [Working]
Get:2 /home/build/srht-lists_0.45.17-1-g0ae69c9-1_all.deb srht-lists all 0.45.17-1-g0ae69c9-1 [18.6 kB]
70% [2 srht-lists 0 B/18.6 kB 0%]
71% [Working]
Get:3 http://deb.debian.org/debian sid/main amd64 python3-gunicorn all 20.0.4-4 [62.1 kB]
71% [3 python3-gunicorn 0 B/62.1 kB 0%] [Connecting to mirror.sr.ht]
71% [Connecting to mirror.sr.ht (208.88.54.62)]
Get:4 https://mirror.sr.ht/debian sid/main amd64 python3-emailthreads all 0.1.2-1 [6032 B]
71% [Waiting for headers] [4 python3-emailthreads 6032 B/6032 B 100%]
72% [Waiting for headers]
Get:5 http://deb.debian.org/debian sid/main amd64 gunicorn all 20.0.4-4 [18.4 kB]
72% [5 gunicorn 0 B/18.4 kB 0%]
72% [Working]
Get:6 http://deb.debian.org/debian sid/main amd64 libhttp-parser2.9 amd64 2.9.2-2 [21.3 kB]
72% [6 libhttp-parser2.9 0 B/21.3 kB 0%]
73% [Working]
Get:7 http://deb.debian.org/debian sid/main amd64 libmbedcrypto3 amd64 2.16.5-1 [214 kB]
73% [7 libmbedcrypto3 0 B/214 kB 0%]
74% [Working]
Get:8 http://deb.debian.org/debian sid/main amd64 libmbedx509-0 amd64 2.16.5-1 [105 kB]
74% [8 libmbedx509-0 0 B/105 kB 0%]
75% [Working]
Get:9 http://deb.debian.org/debian sid/main amd64 libmbedtls12 amd64 2.16.5-1 [134 kB]
75% [9 libmbedtls12 0 B/134 kB 0%]
77% [Working]
Get:10 http://deb.debian.org/debian sid/main amd64 libgit2-28 amd64 0.28.5+dfsg.1-1 [427 kB]
77% [10 libgit2-28 0 B/427 kB 0%]
80% [Working]
Get:11 http://deb.debian.org/debian sid/main amd64 python3-public all 0.5-1 [24.1 kB]
80% [11 python3-public 0 B/24.1 kB 0%]
80% [Working]
Get:12 http://deb.debian.org/debian sid/main amd64 python3-aiosmtpd all 1.2-3 [58.6 kB]
80% [12 python3-aiosmtpd 0 B/58.6 kB 0%]
81% [Working]
Get:13 http://deb.debian.org/debian sid/main amd64 python3-vine all 5.0.0+dfsg-2 [15.6 kB]
81% [13 python3-vine 0 B/15.6 kB 0%]
81% [Working]
Get:14 http://deb.debian.org/debian sid/main amd64 python3-amqp all 5.0.1-1 [40.6 kB]
81% [14 python3-amqp 0 B/40.6 kB 0%]
82% [Working]
Get:15 http://deb.debian.org/debian sid/main amd64 python3-asyncpg amd64 0.21.0-1+b1 [690 kB]
82% [15 python3-asyncpg 0 B/690 kB 0%]
87% [Working]
Get:16 http://deb.debian.org/debian sid/main amd64 python3-billiard all 3.6.3.0-1 [75.9 kB]
87% [16 python3-billiard 0 B/75.9 kB 0%]
88% [Working]
Get:17 http://deb.debian.org/debian sid/main amd64 python3-click-didyoumean all 0.0.3-2 [3972 B]
88% [17 python3-click-didyoumean 0 B/3972 B 0%]
88% [Working]
Get:18 http://deb.debian.org/debian sid/main amd64 python3-prompt-toolkit all 3.0.8-1 [254 kB]
88% [18 python3-prompt-toolkit 0 B/254 kB 0%]
90% [Working]
Get:19 http://deb.debian.org/debian sid/main amd64 python3-click-repl all 0.1.6-2 [5908 B]
90% [19 python3-click-repl 0 B/5908 B 0%]
90% [Working]
Get:20 http://deb.debian.org/debian sid/main amd64 python3-ephem amd64 3.7.7.1-1+b2 [626 kB]
90% [20 python3-ephem 0 B/626 kB 0%]
95% [Working]
Get:21 http://deb.debian.org/debian sid/main amd64 python3-kombu all 5.0.2-2 [133 kB]
95% [21 python3-kombu 0 B/133 kB 0%]
96% [Working]
Get:22 http://deb.debian.org/debian sid/main amd64 python3-memcache all 1.59-4 [26.3 kB]
96% [22 python3-memcache 0 B/26.3 kB 0%]
96% [Working]
Get:23 http://deb.debian.org/debian sid/main amd64 python3-celery all 5.0.0-3 [280 kB]
96% [23 python3-celery 0 B/280 kB 0%]
98% [Working]
Get:24 http://deb.debian.org/debian sid/main amd64 python3-pygit2 amd64 1.0.3-1+b1 [130 kB]
98% [24 python3-pygit2 0 B/130 kB 0%]
100% [Working]
Get:25 http://deb.debian.org/debian sid/main amd64 sysuser-helper all 1.3.5 [4300 B]
100% [25 sysuser-helper 0 B/4300 B 0%]
100% [Working]
Fetched 3355 kB in 1s (4088 kB/s)
Extracting templates from packages: 46%
Extracting templates from packages: 93%
Extracting templates from packages: 100%
Selecting previously unselected package python3-gunicorn.
(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 ... 28107 files and directories currently installed.)
Preparing to unpack .../00-python3-gunicorn_20.0.4-4_all.deb ...
Unpacking python3-gunicorn (20.0.4-4) ...
Selecting previously unselected package gunicorn.
Preparing to unpack .../01-gunicorn_20.0.4-4_all.deb ...
Unpacking gunicorn (20.0.4-4) ...
Selecting previously unselected package libhttp-parser2.9:amd64.
Preparing to unpack .../02-libhttp-parser2.9_2.9.2-2_amd64.deb ...
Unpacking libhttp-parser2.9:amd64 (2.9.2-2) ...
Selecting previously unselected package libmbedcrypto3:amd64.
Preparing to unpack .../03-libmbedcrypto3_2.16.5-1_amd64.deb ...
Unpacking libmbedcrypto3:amd64 (2.16.5-1) ...
Selecting previously unselected package libmbedx509-0:amd64.
Preparing to unpack .../04-libmbedx509-0_2.16.5-1_amd64.deb ...
Unpacking libmbedx509-0:amd64 (2.16.5-1) ...
Selecting previously unselected package libmbedtls12:amd64.
Preparing to unpack .../05-libmbedtls12_2.16.5-1_amd64.deb ...
Unpacking libmbedtls12:amd64 (2.16.5-1) ...
Selecting previously unselected package libgit2-28:amd64.
Preparing to unpack .../06-libgit2-28_0.28.5+dfsg.1-1_amd64.deb ...
Unpacking libgit2-28:amd64 (0.28.5+dfsg.1-1) ...
Selecting previously unselected package node-jquery.
Preparing to unpack .../07-node-jquery_3.5.1+dfsg+~3.5.4-1_all.deb ...
Unpacking node-jquery (3.5.1+dfsg+~3.5.4-1) ...
Selecting previously unselected package libjs-jquery.
Preparing to unpack .../08-libjs-jquery_3.5.1+dfsg+~3.5.4-1_all.deb ...
Unpacking libjs-jquery (3.5.1+dfsg+~3.5.4-1) ...
Selecting previously unselected package libpq5:amd64.
Preparing to unpack .../09-libpq5_13.1-1_amd64.deb ...
Unpacking libpq5:amd64 (13.1-1) ...
Selecting previously unselected package python-babel-localedata.
Preparing to unpack .../10-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-public.
Preparing to unpack .../11-python3-public_0.5-1_all.deb ...
Unpacking python3-public (0.5-1) ...
Selecting previously unselected package python3-aiosmtpd.
Preparing to unpack .../12-python3-aiosmtpd_1.2-3_all.deb ...
Unpacking python3-aiosmtpd (1.2-3) ...
Selecting previously unselected package python3-dateutil.
Preparing to unpack .../13-python3-dateutil_2.8.1-4_all.deb ...
Unpacking python3-dateutil (2.8.1-4) ...
Selecting previously unselected package python3-editor.
Preparing to unpack .../14-python3-editor_1.0.3-2_all.deb ...
Unpacking python3-editor (1.0.3-2) ...
Selecting previously unselected package python3-markupsafe.
Preparing to unpack .../15-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 .../16-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 .../17-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 .../18-python3-alembic_1.4.3-1_all.deb ...
Unpacking python3-alembic (1.4.3-1) ...
Selecting previously unselected package python3-vine.
Preparing to unpack .../19-python3-vine_5.0.0+dfsg-2_all.deb ...
Unpacking python3-vine (5.0.0+dfsg-2) ...
Selecting previously unselected package python3-amqp.
Preparing to unpack .../20-python3-amqp_5.0.1-1_all.deb ...
Unpacking python3-amqp (5.0.1-1) ...
Selecting previously unselected package python3-anyjson.
Preparing to unpack .../21-python3-anyjson_0.3.3-2_all.deb ...
Unpacking python3-anyjson (0.3.3-2) ...
Selecting previously unselected package python3-arrow.
Preparing to unpack .../22-python3-arrow_0.15.7-1_all.deb ...
Unpacking python3-arrow (0.15.7-1) ...
Selecting previously unselected package python3-asyncpg.
Preparing to unpack .../23-python3-asyncpg_0.21.0-1+b1_amd64.deb ...
Unpacking python3-asyncpg (0.21.0-1+b1) ...
Selecting previously unselected package python3-tz.
Preparing to unpack .../24-python3-tz_2020.4-2_all.deb ...
Unpacking python3-tz (2020.4-2) ...
Selecting previously unselected package python3-babel.
Preparing to unpack .../25-python3-babel_2.8.0+dfsg.1-4_all.deb ...
Unpacking python3-babel (2.8.0+dfsg.1-4) ...
Selecting previously unselected package python3-billiard.
Preparing to unpack .../26-python3-billiard_3.6.3.0-1_all.deb ...
Unpacking python3-billiard (3.6.3.0-1) ...
Selecting previously unselected package python3-pyparsing.
Preparing to unpack .../27-python3-pyparsing_2.4.7-1_all.deb ...
Unpacking python3-pyparsing (2.4.7-1) ...
Selecting previously unselected package python3-packaging.
Preparing to unpack .../28-python3-packaging_20.4-1_all.deb ...
Unpacking python3-packaging (20.4-1) ...
Selecting previously unselected package python3-webencodings.
Preparing to unpack .../29-python3-webencodings_0.5.1-2_all.deb ...
Unpacking python3-webencodings (0.5.1-2) ...
Selecting previously unselected package python3-html5lib.
Preparing to unpack .../30-python3-html5lib_1.1-2_all.deb ...
Unpacking python3-html5lib (1.1-2) ...
Selecting previously unselected package python3-bleach.
Preparing to unpack .../31-python3-bleach_3.2.1-1_all.deb ...
Unpacking python3-bleach (3.2.1-1) ...
Selecting previously unselected package python3-soupsieve.
Preparing to unpack .../32-python3-soupsieve_2.0.1-1_all.deb ...
Unpacking python3-soupsieve (2.0.1-1) ...
Selecting previously unselected package python3-bs4.
Preparing to unpack .../33-python3-bs4_4.9.3-1_all.deb ...
Unpacking python3-bs4 (4.9.3-1) ...
Selecting previously unselected package python3-colorama.
Preparing to unpack .../34-python3-colorama_0.4.3-1_all.deb ...
Unpacking python3-colorama (0.4.3-1) ...
Selecting previously unselected package python3-click.
Preparing to unpack .../35-python3-click_7.1.2-1_all.deb ...
Unpacking python3-click (7.1.2-1) ...
Selecting previously unselected package python3-click-didyoumean.
Preparing to unpack .../36-python3-click-didyoumean_0.0.3-2_all.deb ...
Unpacking python3-click-didyoumean (0.0.3-2) ...
Selecting previously unselected package python3-wcwidth.
Preparing to unpack .../37-python3-wcwidth_0.1.9+dfsg1-2_all.deb ...
Unpacking python3-wcwidth (0.1.9+dfsg1-2) ...
Selecting previously unselected package python3-prompt-toolkit.
Preparing to unpack .../38-python3-prompt-toolkit_3.0.8-1_all.deb ...
Unpacking python3-prompt-toolkit (3.0.8-1) ...
Selecting previously unselected package python3-click-repl.
Preparing to unpack .../39-python3-click-repl_0.1.6-2_all.deb ...
Unpacking python3-click-repl (0.1.6-2) ...
Selecting previously unselected package python3-ephem.
Preparing to unpack .../40-python3-ephem_3.7.7.1-1+b2_amd64.deb ...
Unpacking python3-ephem (3.7.7.1-1+b2) ...
Selecting previously unselected package python3-kombu.
Preparing to unpack .../41-python3-kombu_5.0.2-2_all.deb ...
Unpacking python3-kombu (5.0.2-2) ...
Selecting previously unselected package python3-memcache.
Preparing to unpack .../42-python3-memcache_1.59-4_all.deb ...
Unpacking python3-memcache (1.59-4) ...
Selecting previously unselected package python3-celery.
Preparing to unpack .../43-python3-celery_5.0.0-3_all.deb ...
Unpacking python3-celery (5.0.0-3) ...
Selecting previously unselected package python3-decorator.
Preparing to unpack .../44-python3-decorator_4.4.2-2_all.deb ...
Unpacking python3-decorator (4.4.2-2) ...
Selecting previously unselected package python3-emailthreads.
Preparing to unpack .../45-python3-emailthreads_0.1.2-1_all.deb ...
Unpacking python3-emailthreads (0.1.2-1) ...
Selecting previously unselected package python3-itsdangerous.
Preparing to unpack .../46-python3-itsdangerous_1.1.0-3_all.deb ...
Unpacking python3-itsdangerous (1.1.0-3) ...
Selecting previously unselected package python3-jinja2.
Preparing to unpack .../47-python3-jinja2_2.11.2-1_all.deb ...
Unpacking python3-jinja2 (2.11.2-1) ...
Selecting previously unselected package python3-werkzeug.
Preparing to unpack .../48-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 .../49-python3-flask_1.1.2-2_all.deb ...
Unpacking python3-flask (1.1.2-2) ...
Selecting previously unselected package python3-humanize.
Preparing to unpack .../50-python3-humanize_3.1.0-1_all.deb ...
Unpacking python3-humanize (3.1.0-1) ...
Selecting previously unselected package python3-pygit2.
Preparing to unpack .../51-python3-pygit2_1.0.3-1+b1_amd64.deb ...
Unpacking python3-pygit2 (1.0.3-1+b1) ...
Selecting previously unselected package python3-markdown.
Preparing to unpack .../52-python3-markdown_3.3.3-1_all.deb ...
Unpacking python3-markdown (3.3.3-1) ...
Selecting previously unselected package python3-mistletoe.
Preparing to unpack .../53-python3-mistletoe_0.7.2-2_all.deb ...
Unpacking python3-mistletoe (0.7.2-2) ...
Selecting previously unselected package python3-pyasn1.
Preparing to unpack .../54-python3-pyasn1_0.4.8-1_all.deb ...
Unpacking python3-pyasn1 (0.4.8-1) ...
Selecting previously unselected package python3-pgpy.
Preparing to unpack .../55-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 .../56-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 .../57-python3-psycopg2_2.8.5-1+b1_amd64.deb ...
Unpacking python3-psycopg2 (2.8.5-1+b1) ...
Selecting previously unselected package python3-sqlalchemy-utils.
Preparing to unpack .../58-python3-sqlalchemy-utils_0.36.3-2_all.deb ...
Unpacking python3-sqlalchemy-utils (0.36.3-2) ...
Selecting previously unselected package python3-redis.
Preparing to unpack .../59-python3-redis_3.3.11-3_all.deb ...
Unpacking python3-redis (3.3.11-3) ...
Selecting previously unselected package python3-srht.
Preparing to unpack .../60-python3-srht_0.65.7-1_all.deb ...
Unpacking python3-srht (0.65.7-1) ...
Selecting previously unselected package python3-listssrht.
Preparing to unpack .../61-python3-listssrht_0.45.17-1-g0ae69c9-1_all.deb ...
Unpacking python3-listssrht (0.45.17-1-g0ae69c9-1) ...
Selecting previously unselected package sysuser-helper.
Preparing to unpack .../62-sysuser-helper_1.3.5_all.deb ...
Unpacking sysuser-helper (1.3.5) ...
Selecting previously unselected package srht-lists.
Preparing to unpack .../63-srht-lists_0.45.17-1-g0ae69c9-1_all.deb ...
Unpacking srht-lists (0.45.17-1-g0ae69c9-1) ...
Setting up python3-billiard (3.6.3.0-1) ...
Setting up python3-emailthreads (0.1.2-1) ...
Setting up python3-colorama (0.4.3-1) ...
Setting up python3-public (0.5-1) ...
Setting up python3-aiosmtpd (1.2-3) ...
Setting up python3-ephem (3.7.7.1-1+b2) ...
Setting up python3-memcache (1.59-4) ...
Setting up libpq5:amd64 (13.1-1) ...
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.4-2) ...
Setting up python-babel-localedata (2.8.0+dfsg.1-4) ...
Setting up python3-sqlalchemy (1.3.20+ds1-1) ...
Setting up python3-vine (5.0.0+dfsg-2) ...
Setting up python3-decorator (4.4.2-2) ...
Setting up python3-jinja2 (2.11.2-1) ...
Setting up python3-wcwidth (0.1.9+dfsg1-2) ...
Setting up python3-pyparsing (2.4.7-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-gunicorn (20.0.4-4) ...
Setting up python3-html5lib (1.1-2) ...
Setting up sysuser-helper (1.3.5) ...
Setting up python3-mistletoe (0.7.2-2) ...
Setting up python3-amqp (5.0.1-1) ...
Setting up python3-pyasn1 (0.4.8-1) ...
Setting up libmbedcrypto3:amd64 (2.16.5-1) ...
Setting up python3-dateutil (2.8.1-4) ...
Setting up python3-anyjson (0.3.3-2) ...
Setting up python3-asyncpg (0.21.0-1+b1) ...
Setting up python3-humanize (3.1.0-1) ...
Setting up python3-soupsieve (2.0.1-1) ...
Setting up node-jquery (3.5.1+dfsg+~3.5.4-1) ...
Setting up python3-mako (1.1.3+ds1-1) ...
Setting up libhttp-parser2.9:amd64 (2.9.2-2) ...
Setting up python3-editor (1.0.3-2) ...
Setting up python3-prompt-toolkit (3.0.8-1) ...
Setting up python3-pgpy (0.5.2-2) ...
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 libmbedx509-0:amd64 (2.16.5-1) ...
Setting up libmbedtls12:amd64 (2.16.5-1) ...
Setting up python3-click-didyoumean (0.0.3-2) ...
Setting up python3-kombu (5.0.2-2) ...
Setting up gunicorn (20.0.4-4) ...
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-click-repl (0.1.6-2) ...
Setting up python3-alembic (1.4.3-1) ...
Setting up libjs-jquery (3.5.1+dfsg+~3.5.4-1) ...
Setting up libgit2-28:amd64 (0.28.5+dfsg.1-1) ...
Setting up python3-sqlalchemy-utils (0.36.3-2) ...
Setting up python3-celery (5.0.0-3) ...
Setting up python3-pygit2 (1.0.3-1+b1) ...
Setting up python3-bleach (3.2.1-1) ...
Setting up python3-werkzeug (1.0.1+dfsg1-2) ...
Setting up python3-flask (1.1.2-2) ...
Setting up python3-srht (0.65.7-1) ...
Setting up python3-listssrht (0.45.17-1-g0ae69c9-1) ...
Setting up srht-lists (0.45.17-1-g0ae69c9-1) ...
Skipping automatic database migrations
Set [lists.sr.ht]migrate-on-upgrade=yes in config.ini to enable
Skipping automatic database migrations
Set [lists.sr.ht]migrate-on-upgrade=yes in config.ini to enable
Created symlink /etc/systemd/system/multi-user.target.wants/srht-lists.service → /lib/systemd/system/srht-lists.service.
Failed to start srht-lists.service: Unit postgresql.service not found.
Created symlink /etc/systemd/system/multi-user.target.wants/srht-lists-lmtp.service → /lib/systemd/system/srht-lists-lmtp.service.
Failed to start srht-lists-lmtp.service: Unit postgresql.service not found.
Created symlink /etc/systemd/system/multi-user.target.wants/srht-lists-process.service → /lib/systemd/system/srht-lists-process.service.
Failed to start srht-lists-process.service: Unit postgresql.service not found.
Created symlink /etc/systemd/system/multi-user.target.wants/srht-lists-webhooks.service → /lib/systemd/system/srht-lists-webhooks.service.
Failed to start srht-lists-webhooks.service: Unit postgresql.service not found.
Processing triggers for man-db (2.9.3-2) ...
Processing triggers for libc-bin (2.31-4) ...
+ cd /home/build/lists.sr.ht
+ git describe --exact-match HEAD
fatal: no tag exactly matches '0ae69c98495068f5fe141c07e6a3f0b94fde1e06'
+ complete-build
+ exit 255
|