1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
1526
1527
1528
1529
1530
1531
1532
1533
1534
1535
1536
1537
1538
1539
1540
1541
1542
1543
1544
1545
1546
1547
1548
1549
1550
1551
1552
1553
1554
1555
1556
1557
1558
1559
1560
1561
1562
1563
1564
1565
1566
1567
1568
1569
1570
1571
1572
1573
1574
1575
1576
1577
1578
1579
1580
1581
1582
1583
1584
1585
1586
1587
1588
1589
1590
1591
1592
1593
1594
1595
1596
1597
1598
1599
1600
1601
1602
1603
1604
1605
1606
1607
1608
1609
1610
1611
1612
1613
1614
1615
1616
1617
1618
1619 |
This is a big file! Only the last 128KiB is shown. Click here to download the full log.
Unpacking python3-ply (3.11-4) ...
Selecting previously unselected package python3-pycparser.
Preparing to unpack .../61-python3-pycparser_2.20-3_all.deb ...
Unpacking python3-pycparser (2.20-3) ...
Selecting previously unselected package python3-cffi.
Preparing to unpack .../62-python3-cffi_1.14.5-1_all.deb ...
Unpacking python3-cffi (1.14.5-1) ...
Selecting previously unselected package python3-psycopg2cffi.
Preparing to unpack .../63-python3-psycopg2cffi_2.8.1-2_amd64.deb ...
Unpacking python3-psycopg2cffi (2.8.1-2) ...
Selecting previously unselected package python3-sqlalchemy-utils.
Preparing to unpack .../64-python3-sqlalchemy-utils_0.36.8-4_all.deb ...
Unpacking python3-sqlalchemy-utils (0.36.8-4) ...
Selecting previously unselected package python3-redis.
Preparing to unpack .../65-python3-redis_3.5.3-2_all.deb ...
Unpacking python3-redis (3.5.3-2) ...
Selecting previously unselected package python3-srht.
Preparing to unpack .../66-python3-srht_0.66.19-1_all.deb ...
Unpacking python3-srht (0.66.19-1) ...
Selecting previously unselected package libc-ares2:amd64.
Preparing to unpack .../67-libc-ares2_1.17.1-1_amd64.deb ...
Unpacking libc-ares2:amd64 (1.17.1-1) ...
Selecting previously unselected package libnode72:amd64.
Preparing to unpack .../68-libnode72_12.20.2~dfsg-2_amd64.deb ...
Unpacking libnode72:amd64 (12.20.2~dfsg-2) ...
Selecting previously unselected package nodejs.
Preparing to unpack .../69-nodejs_12.20.2~dfsg-2_amd64.deb ...
Unpacking nodejs (12.20.2~dfsg-2) ...
Selecting previously unselected package libjs-source-map.
Preparing to unpack .../70-libjs-source-map_0.7.0++dfsg2+really.0.6.1-7_all.deb ...
Unpacking libjs-source-map (0.7.0++dfsg2+really.0.6.1-7) ...
Selecting previously unselected package node-source-map.
Preparing to unpack .../71-node-source-map_0.7.0++dfsg2+really.0.6.1-7_all.deb ...
Unpacking node-source-map (0.7.0++dfsg2+really.0.6.1-7) ...
Selecting previously unselected package node-clean-css.
Preparing to unpack .../72-node-clean-css_4.2.3+~4.3.0-1_all.deb ...
Unpacking node-clean-css (4.2.3+~4.3.0-1) ...
Selecting previously unselected package node-commander.
Preparing to unpack .../73-node-commander_6.2.1-2_all.deb ...
Unpacking node-commander (6.2.1-2) ...
Selecting previously unselected package node-fs.realpath.
Preparing to unpack .../74-node-fs.realpath_1.0.0-1.1_all.deb ...
Unpacking node-fs.realpath (1.0.0-1.1) ...
Selecting previously unselected package node-wrappy.
Preparing to unpack .../75-node-wrappy_1.0.2-1.1_all.deb ...
Unpacking node-wrappy (1.0.2-1.1) ...
Selecting previously unselected package node-once.
Preparing to unpack .../76-node-once_1.4.0-3_all.deb ...
Unpacking node-once (1.4.0-3) ...
Selecting previously unselected package node-inflight.
Preparing to unpack .../77-node-inflight_1.0.6-1.1_all.deb ...
Unpacking node-inflight (1.0.6-1.1) ...
Selecting previously unselected package libjs-inherits.
Preparing to unpack .../78-libjs-inherits_2.0.4-1_all.deb ...
Unpacking libjs-inherits (2.0.4-1) ...
Selecting previously unselected package node-inherits.
Preparing to unpack .../79-node-inherits_2.0.4-1_all.deb ...
Unpacking node-inherits (2.0.4-1) ...
Selecting previously unselected package node-balanced-match.
Preparing to unpack .../80-node-balanced-match_1.0.0-1_all.deb ...
Unpacking node-balanced-match (1.0.0-1) ...
Selecting previously unselected package node-brace-expansion.
Preparing to unpack .../81-node-brace-expansion_2.0.0-1_all.deb ...
Unpacking node-brace-expansion (2.0.0-1) ...
Selecting previously unselected package node-minimatch.
Preparing to unpack .../82-node-minimatch_3.0.4+~3.0.3-1_all.deb ...
Unpacking node-minimatch (3.0.4+~3.0.3-1) ...
Selecting previously unselected package node-path-is-absolute.
Preparing to unpack .../83-node-path-is-absolute_2.0.0-1_all.deb ...
Unpacking node-path-is-absolute (2.0.0-1) ...
Selecting previously unselected package node-glob.
Preparing to unpack .../84-node-glob_7.1.6+~7.1.3-1_all.deb ...
Unpacking node-glob (7.1.6+~7.1.3-1) ...
Selecting previously unselected package cleancss.
Preparing to unpack .../85-cleancss_4.2.3+~4.3.0-1_all.deb ...
Unpacking cleancss (4.2.3+~4.3.0-1) ...
Selecting previously unselected package libsass1:amd64.
Preparing to unpack .../86-libsass1_3.6.4+20201122-1_amd64.deb ...
Unpacking libsass1:amd64 (3.6.4+20201122-1) ...
Selecting previously unselected package sassc.
Preparing to unpack .../87-sassc_3.6.1+20201027-1_amd64.deb ...
Unpacking sassc (3.6.1+20201027-1) ...
Selecting previously unselected package javascript-common.
Preparing to unpack .../88-javascript-common_11+nmu1_all.deb ...
Unpacking javascript-common (11+nmu1) ...
Selecting previously unselected package libjs-popper.js.
Preparing to unpack .../89-libjs-popper.js_1.16.1+ds-3_all.deb ...
Unpacking libjs-popper.js (1.16.1+ds-3) ...
Selecting previously unselected package libjs-bootstrap4.
Preparing to unpack .../90-libjs-bootstrap4_4.5.2+dfsg1-6_all.deb ...
Unpacking libjs-bootstrap4 (4.5.2+dfsg1-6) ...
Setting up python3-pkg-resources (52.0.0-1) ...
Setting up javascript-common (11+nmu1) ...
Setting up python3-iniconfig (1.1.1-1) ...
Setting up python3-attr (20.3.0-1) ...
Setting up dh-sysuser (1.3.5.1) ...
Setting up libjs-inherits (2.0.4-1) ...
Setting up python3-py (1.10.0-1) ...
Setting up libsass1:amd64 (3.6.4+20201122-1) ...
Setting up libjs-popper.js (1.16.1+ds-3) ...
Setting up python3-colorama (0.4.4-1) ...
Setting up python3-ply (3.11-4) ...
Setting up libjs-source-map (0.7.0++dfsg2+really.0.6.1-7) ...
Setting up libpq5:amd64 (13.2-1) ...
Setting up python3-itsdangerous (1.1.0-3) ...
Setting up libc-ares2:amd64 (1.17.1-1) ...
Setting up python3-click (7.1.2-1) ...
Setting up python3-markupsafe (1.1.1-1+b3) ...
Setting up python3-webencodings (0.5.1-2) ...
Setting up libnode72:amd64 (12.20.2~dfsg-2) ...
Setting up python3-tz (2021.1-1) ...
Setting up python3-pycparser (2.20-3) ...
Setting up python-babel-localedata (2.8.0+dfsg.1-6) ...
Setting up python3-sqlalchemy (1.3.22+ds1-1) ...
Setting up python3-six (1.15.0-2) ...
Setting up python3-decorator (4.4.2-2) ...
Setting up python3-jinja2 (2.11.2-1) ...
Setting up python3-pygments (2.7.1+dfsg-1) ...
Setting up python3-chardet (4.0.0-1) ...
Setting up python3-pyparsing (2.4.7-1) ...
Setting up python3-certifi (2020.6.20-1) ...
Setting up python3-idna (2.10-1) ...
Setting up python3-markdown (3.3.3-1) ...
Setting up python3-psycopg2 (2.8.6-2) ...
Setting up python3-redis (3.5.3-2) ...
Setting up node-source-map (0.7.0++dfsg2+really.0.6.1-7) ...
Setting up python3-html5lib (1.1-3) ...
Setting up python3-toml (0.10.1-1) ...
Setting up python3-urllib3 (1.26.2-1) ...
Setting up sassc (3.6.1+20201027-1) ...
Setting up python3-mistletoe (0.7.2-2) ...
Setting up python3-infinity (1.5-2) ...
Setting up python3-pyasn1 (0.4.8-1) ...
Setting up python3-dateutil (2.8.1-5) ...
Setting up python3-anyjson (0.3.3-2) ...
Setting up libjs-bootstrap4 (4.5.2+dfsg1-6) ...
Setting up libjs-jquery (3.5.1+dfsg+~3.5.5-7) ...
Setting up python3-humanize (3.2.0-1) ...
Setting up python3-lib2to3 (3.9.2-1) ...
Setting up python3-soupsieve (2.2-1) ...
Setting up python3-cffi-backend:amd64 (1.14.5-1) ...
Setting up python3-mako (1.1.3+ds1-2) ...
Setting up python3-distutils (3.9.2-1) ...
Setting up dh-python (4.20201102) ...
Setting up python3-more-itertools (4.2.0-3) ...
Setting up python3-setuptools (52.0.0-1) ...
Setting up python3-arrow (0.17.0-1) ...
Setting up python3-babel (2.8.0+dfsg.1-6) ...
update-alternatives: using /usr/bin/pybabel-python3 to provide /usr/bin/pybabel (pybabel) in auto mode
Setting up python3-cffi (1.14.5-1) ...
Setting up python3-all (3.9.1-1) ...
Setting up python3-zipp (1.0.0-3) ...
Setting up nodejs (12.20.2~dfsg-2) ...
update-alternatives: using /usr/bin/nodejs to provide /usr/bin/js (js) in auto mode
Setting up python3-bs4 (4.9.3-1) ...
Setting up python3-psycopg2cffi (2.8.1-2) ...
Setting up node-inherits (2.0.4-1) ...
Setting up python3-prometheus-client (0.9.0-1) ...
Setting up node-path-is-absolute (2.0.0-1) ...
Setting up python3-packaging (20.9-2) ...
Setting up node-balanced-match (1.0.0-1) ...
Setting up python3-werkzeug (1.0.1+dfsg1-2) ...
Setting up node-brace-expansion (2.0.0-1) ...
Setting up python3-cryptography (3.3.2-1) ...
Setting up python3-requests (2.25.1+dfsg-2) ...
Setting up node-wrappy (1.0.2-1.1) ...
Setting up node-commander (6.2.1-2) ...
Setting up node-minimatch (3.0.4+~3.0.3-1) ...
Setting up python3-editor (1.0.3-2) ...
Setting up python3-pgpy (0.5.3-3) ...
Setting up node-clean-css (4.2.3+~4.3.0-1) ...
Setting up python3-sqlalchemy-utils (0.36.8-4) ...
Setting up node-fs.realpath (1.0.0-1.1) ...
Setting up python3-importlib-metadata (1.6.0-2) ...
Setting up node-once (1.4.0-3) ...
Setting up python3-flask (1.1.2-2) ...
Setting up python3-bleach (3.2.1-2) ...
Setting up python3-pluggy (0.13.0-6) ...
Setting up node-inflight (1.0.6-1.1) ...
Setting up python3-alembic (1.4.3-1) ...
Setting up python3-pytest (6.0.2-2) ...
Setting up python3-srht (0.66.19-1) ...
Setting up node-glob (7.1.6+~7.1.3-1) ...
Setting up cleancss (4.2.3+~4.3.0-1) ...
Setting up todo.sr.ht-build-deps (0.63.12-1-g511779e-1) ...
Processing triggers for man-db (2.9.4-2) ...
Processing triggers for libc-bin (2.31-9) ...
dpkg-buildpackage: info: source package todo.sr.ht
dpkg-buildpackage: info: source version 0.63.12-1-g511779e-1
dpkg-buildpackage: info: source distribution unstable
dpkg-buildpackage: info: source changed by sr.ht Debian autobuilder <debian@sr.ht>
dpkg-buildpackage: info: host architecture amd64
dpkg-source --before-build .
dpkg-source: info: using options from todo.sr.ht-0.63.12-1-g511779e/debian/source/options: --extend-diff-ignore=(^[^/]*[.]egg-info/|static/)
dpkg-source: info: using patch list from debian/patches/series
dpkg-source: info: applying 0001-Do-not-run-core-s-make.patch
dpkg-source: info: applying 0002-Use-setuptools-instead-of-distutils.patch
fakeroot debian/rules clean
dh clean --with python3,sysuser --buildsystem=pybuild
dh_auto_clean -O--buildsystem=pybuild
I: pybuild base:232: python3.9 setup.py clean
running clean
removing '/home/build/todo.sr.ht-0.63.12-1-g511779e/.pybuild/cpython3_3.9_todosrht/build' (and everything under it)
'build/bdist.linux-x86_64' does not exist -- can't clean it
'build/scripts-3.9' does not exist -- can't clean it
dh_autoreconf_clean -O--buildsystem=pybuild
dh_clean -O--buildsystem=pybuild
dpkg-source -b .
dpkg-source: info: using options from todo.sr.ht-0.63.12-1-g511779e/debian/source/options: --extend-diff-ignore=(^[^/]*[.]egg-info/|static/)
dpkg-source: info: using source format '3.0 (quilt)'
dpkg-source: info: building todo.sr.ht using existing ./todo.sr.ht_0.63.12-1-g511779e.orig.tar.gz
dpkg-source: info: using patch list from debian/patches/series
dpkg-source: info: building todo.sr.ht in todo.sr.ht_0.63.12-1-g511779e-1.debian.tar.xz
dpkg-source: info: building todo.sr.ht in todo.sr.ht_0.63.12-1-g511779e-1.dsc
debian/rules build
dh build --with python3,sysuser --buildsystem=pybuild
dh_update_autotools_config -O--buildsystem=pybuild
dh_autoreconf -O--buildsystem=pybuild
dh_auto_configure -O--buildsystem=pybuild
I: pybuild base:232: python3.9 setup.py config
running config
debian/rules override_dh_auto_build
make[1]: Entering directory '/home/build/todo.sr.ht-0.63.12-1-g511779e'
make SRHT_PATH=/usr/lib/python3/dist-packages/srht/
make[2]: Entering directory '/home/build/todo.sr.ht-0.63.12-1-g511779e'
cp -L /usr/lib/python3/dist-packages/srht//static/codemirror.css todosrht/static/codemirror.css
cp -L /usr/lib/python3/dist-packages/srht//static/codemirror.js todosrht/static/codemirror.js
cp -L /usr/lib/python3/dist-packages/srht//static/simple.js todosrht/static/simple.js
cp -L /usr/lib/python3/dist-packages/srht//static/icons/LICENSE.txt todosrht/static/icons/LICENSE.txt
cp -L /usr/lib/python3/dist-packages/srht//static/icons/README todosrht/static/icons/README
cp -L /usr/lib/python3/dist-packages/srht//static/icons/arrow-right.svg todosrht/static/icons/arrow-right.svg
cp -L /usr/lib/python3/dist-packages/srht//static/icons/caret-left.svg todosrht/static/icons/caret-left.svg
cp -L /usr/lib/python3/dist-packages/srht//static/icons/caret-right.svg todosrht/static/icons/caret-right.svg
cp -L /usr/lib/python3/dist-packages/srht//static/icons/check.svg todosrht/static/icons/check.svg
cp -L /usr/lib/python3/dist-packages/srht//static/icons/circle-notch.svg todosrht/static/icons/circle-notch.svg
cp -L /usr/lib/python3/dist-packages/srht//static/icons/circle-solid.svg todosrht/static/icons/circle-solid.svg
cp -L /usr/lib/python3/dist-packages/srht//static/icons/circle.svg todosrht/static/icons/circle.svg
cp -L /usr/lib/python3/dist-packages/srht//static/icons/clock.svg todosrht/static/icons/clock.svg
cp -L /usr/lib/python3/dist-packages/srht//static/icons/code-branch.svg todosrht/static/icons/code-branch.svg
cp -L /usr/lib/python3/dist-packages/srht//static/icons/comments-o.svg todosrht/static/icons/comments-o.svg
cp -L /usr/lib/python3/dist-packages/srht//static/icons/comments.svg todosrht/static/icons/comments.svg
cp -L /usr/lib/python3/dist-packages/srht//static/icons/envelope-o.svg todosrht/static/icons/envelope-o.svg
cp -L /usr/lib/python3/dist-packages/srht//static/icons/exclamation-triangle.svg todosrht/static/icons/exclamation-triangle.svg
cp -L /usr/lib/python3/dist-packages/srht//static/icons/external-link-alt.svg todosrht/static/icons/external-link-alt.svg
cp -L /usr/lib/python3/dist-packages/srht//static/icons/file-alt.svg todosrht/static/icons/file-alt.svg
cp -L /usr/lib/python3/dist-packages/srht//static/icons/file.svg todosrht/static/icons/file.svg
cp -L /usr/lib/python3/dist-packages/srht//static/icons/folder.svg todosrht/static/icons/folder.svg
cp -L /usr/lib/python3/dist-packages/srht//static/icons/github.svg todosrht/static/icons/github.svg
cp -L /usr/lib/python3/dist-packages/srht//static/icons/gitlab.svg todosrht/static/icons/gitlab.svg
cp -L /usr/lib/python3/dist-packages/srht//static/icons/minus.svg todosrht/static/icons/minus.svg
cp -L /usr/lib/python3/dist-packages/srht//static/icons/plus-circle.svg todosrht/static/icons/plus-circle.svg
cp -L /usr/lib/python3/dist-packages/srht//static/icons/plus-square.svg todosrht/static/icons/plus-square.svg
cp -L /usr/lib/python3/dist-packages/srht//static/icons/plus.svg todosrht/static/icons/plus.svg
cp -L /usr/lib/python3/dist-packages/srht//static/icons/question-circle.svg todosrht/static/icons/question-circle.svg
cp -L /usr/lib/python3/dist-packages/srht//static/icons/reply.svg todosrht/static/icons/reply.svg
cp -L /usr/lib/python3/dist-packages/srht//static/icons/rss.svg todosrht/static/icons/rss.svg
cp -L /usr/lib/python3/dist-packages/srht//static/icons/times.svg todosrht/static/icons/times.svg
cp -L /usr/lib/python3/dist-packages/srht//static/icons/user.svg todosrht/static/icons/user.svg
sassc -I/usr/share/sass/bootstrap -I/usr/lib/python3/dist-packages/srht//scss scss/main.scss todosrht/static/main.css
/usr/lib/python3/dist-packages/srht/scss/contrast.scss:72 DEBUG: #fff was adjusted to #fff but this is not enough contrast to #007bff (AERT).
/usr/lib/python3/dist-packages/srht/scss/contrast.scss:72 DEBUG: #fff was adjusted to #fff but this is not enough contrast to #17a2b8 (AERT).
/usr/lib/python3/dist-packages/srht/scss/contrast.scss:72 DEBUG: #fff was adjusted to #fff but this is not enough contrast to #dc3545 (AERT).
cleancss \
-o static/main.min.css \
static/main.css
cp static/main.min.css \
static/main.min.$(sha256sum static/main.min.css | cut -c1-8).css
make[2]: Leaving directory '/home/build/todo.sr.ht-0.63.12-1-g511779e'
dh_auto_build
I: pybuild base:232: /usr/bin/python3 setup.py build
running build
running build_py
package init file 'todosrht/__init__.py' not found (or not a regular file)
creating /home/build/todo.sr.ht-0.63.12-1-g511779e/.pybuild/cpython3_3.9_todosrht/build/todosrht
copying todosrht/app.py -> /home/build/todo.sr.ht-0.63.12-1-g511779e/.pybuild/cpython3_3.9_todosrht/build/todosrht
copying todosrht/filters.py -> /home/build/todo.sr.ht-0.63.12-1-g511779e/.pybuild/cpython3_3.9_todosrht/build/todosrht
copying todosrht/tracker_import.py -> /home/build/todo.sr.ht-0.63.12-1-g511779e/.pybuild/cpython3_3.9_todosrht/build/todosrht
copying todosrht/export.py -> /home/build/todo.sr.ht-0.63.12-1-g511779e/.pybuild/cpython3_3.9_todosrht/build/todosrht
copying todosrht/email.py -> /home/build/todo.sr.ht-0.63.12-1-g511779e/.pybuild/cpython3_3.9_todosrht/build/todosrht
copying todosrht/urls.py -> /home/build/todo.sr.ht-0.63.12-1-g511779e/.pybuild/cpython3_3.9_todosrht/build/todosrht
copying todosrht/access.py -> /home/build/todo.sr.ht-0.63.12-1-g511779e/.pybuild/cpython3_3.9_todosrht/build/todosrht
copying todosrht/flask.py -> /home/build/todo.sr.ht-0.63.12-1-g511779e/.pybuild/cpython3_3.9_todosrht/build/todosrht
copying todosrht/service.py -> /home/build/todo.sr.ht-0.63.12-1-g511779e/.pybuild/cpython3_3.9_todosrht/build/todosrht
copying todosrht/trackers.py -> /home/build/todo.sr.ht-0.63.12-1-g511779e/.pybuild/cpython3_3.9_todosrht/build/todosrht
copying todosrht/search.py -> /home/build/todo.sr.ht-0.63.12-1-g511779e/.pybuild/cpython3_3.9_todosrht/build/todosrht
copying todosrht/webhooks.py -> /home/build/todo.sr.ht-0.63.12-1-g511779e/.pybuild/cpython3_3.9_todosrht/build/todosrht
copying todosrht/color.py -> /home/build/todo.sr.ht-0.63.12-1-g511779e/.pybuild/cpython3_3.9_todosrht/build/todosrht
copying todosrht/tickets.py -> /home/build/todo.sr.ht-0.63.12-1-g511779e/.pybuild/cpython3_3.9_todosrht/build/todosrht
creating /home/build/todo.sr.ht-0.63.12-1-g511779e/.pybuild/cpython3_3.9_todosrht/build/todosrht/types
copying todosrht/types/ticketstatus.py -> /home/build/todo.sr.ht-0.63.12-1-g511779e/.pybuild/cpython3_3.9_todosrht/build/todosrht/types
copying todosrht/types/ticketseen.py -> /home/build/todo.sr.ht-0.63.12-1-g511779e/.pybuild/cpython3_3.9_todosrht/build/todosrht/types
copying todosrht/types/label.py -> /home/build/todo.sr.ht-0.63.12-1-g511779e/.pybuild/cpython3_3.9_todosrht/build/todosrht/types
copying todosrht/types/ticketassignee.py -> /home/build/todo.sr.ht-0.63.12-1-g511779e/.pybuild/cpython3_3.9_todosrht/build/todosrht/types
copying todosrht/types/participant.py -> /home/build/todo.sr.ht-0.63.12-1-g511779e/.pybuild/cpython3_3.9_todosrht/build/todosrht/types
copying todosrht/types/tracker.py -> /home/build/todo.sr.ht-0.63.12-1-g511779e/.pybuild/cpython3_3.9_todosrht/build/todosrht/types
copying todosrht/types/__init__.py -> /home/build/todo.sr.ht-0.63.12-1-g511779e/.pybuild/cpython3_3.9_todosrht/build/todosrht/types
copying todosrht/types/useraccess.py -> /home/build/todo.sr.ht-0.63.12-1-g511779e/.pybuild/cpython3_3.9_todosrht/build/todosrht/types
copying todosrht/types/ticketcomment.py -> /home/build/todo.sr.ht-0.63.12-1-g511779e/.pybuild/cpython3_3.9_todosrht/build/todosrht/types
copying todosrht/types/ticketaccess.py -> /home/build/todo.sr.ht-0.63.12-1-g511779e/.pybuild/cpython3_3.9_todosrht/build/todosrht/types
copying todosrht/types/event.py -> /home/build/todo.sr.ht-0.63.12-1-g511779e/.pybuild/cpython3_3.9_todosrht/build/todosrht/types
copying todosrht/types/ticket.py -> /home/build/todo.sr.ht-0.63.12-1-g511779e/.pybuild/cpython3_3.9_todosrht/build/todosrht/types
copying todosrht/types/ticketsubscription.py -> /home/build/todo.sr.ht-0.63.12-1-g511779e/.pybuild/cpython3_3.9_todosrht/build/todosrht/types
package init file 'todosrht/blueprints/__init__.py' not found (or not a regular file)
creating /home/build/todo.sr.ht-0.63.12-1-g511779e/.pybuild/cpython3_3.9_todosrht/build/todosrht/blueprints
copying todosrht/blueprints/tracker.py -> /home/build/todo.sr.ht-0.63.12-1-g511779e/.pybuild/cpython3_3.9_todosrht/build/todosrht/blueprints
copying todosrht/blueprints/settings.py -> /home/build/todo.sr.ht-0.63.12-1-g511779e/.pybuild/cpython3_3.9_todosrht/build/todosrht/blueprints
copying todosrht/blueprints/ticket.py -> /home/build/todo.sr.ht-0.63.12-1-g511779e/.pybuild/cpython3_3.9_todosrht/build/todosrht/blueprints
copying todosrht/blueprints/html.py -> /home/build/todo.sr.ht-0.63.12-1-g511779e/.pybuild/cpython3_3.9_todosrht/build/todosrht/blueprints
creating /home/build/todo.sr.ht-0.63.12-1-g511779e/.pybuild/cpython3_3.9_todosrht/build/todosrht/blueprints/api
copying todosrht/blueprints/api/internal.py -> /home/build/todo.sr.ht-0.63.12-1-g511779e/.pybuild/cpython3_3.9_todosrht/build/todosrht/blueprints/api
copying todosrht/blueprints/api/__init__.py -> /home/build/todo.sr.ht-0.63.12-1-g511779e/.pybuild/cpython3_3.9_todosrht/build/todosrht/blueprints/api
copying todosrht/blueprints/api/trackers.py -> /home/build/todo.sr.ht-0.63.12-1-g511779e/.pybuild/cpython3_3.9_todosrht/build/todosrht/blueprints/api
copying todosrht/blueprints/api/tickets.py -> /home/build/todo.sr.ht-0.63.12-1-g511779e/.pybuild/cpython3_3.9_todosrht/build/todosrht/blueprints/api
package init file 'todosrht/alembic/__init__.py' not found (or not a regular file)
creating /home/build/todo.sr.ht-0.63.12-1-g511779e/.pybuild/cpython3_3.9_todosrht/build/todosrht/alembic
copying todosrht/alembic/env.py -> /home/build/todo.sr.ht-0.63.12-1-g511779e/.pybuild/cpython3_3.9_todosrht/build/todosrht/alembic
package init file 'todosrht/alembic/versions/__init__.py' not found (or not a regular file)
creating /home/build/todo.sr.ht-0.63.12-1-g511779e/.pybuild/cpython3_3.9_todosrht/build/todosrht/alembic/versions
copying todosrht/alembic/versions/3a9cb6757f59_add_user_notify_self.py -> /home/build/todo.sr.ht-0.63.12-1-g511779e/.pybuild/cpython3_3.9_todosrht/build/todosrht/alembic/versions
copying todosrht/alembic/versions/3a0a7407fb50_add_label.py -> /home/build/todo.sr.ht-0.63.12-1-g511779e/.pybuild/cpython3_3.9_todosrht/build/todosrht/alembic/versions
copying todosrht/alembic/versions/132ee194cefe_add_events.py -> /home/build/todo.sr.ht-0.63.12-1-g511779e/.pybuild/cpython3_3.9_todosrht/build/todosrht/alembic/versions
copying todosrht/alembic/versions/bd06de76eb15_add_assigned_user_events.py -> /home/build/todo.sr.ht-0.63.12-1-g511779e/.pybuild/cpython3_3.9_todosrht/build/todosrht/alembic/versions
copying todosrht/alembic/versions/61e241dc978c_add_cascade_to_tracker_ticket_webhooks.py -> /home/build/todo.sr.ht-0.63.12-1-g511779e/.pybuild/cpython3_3.9_todosrht/build/todosrht/alembic/versions
copying todosrht/alembic/versions/6742af305c73_clean_no-comment_isostatus-change_events.py -> /home/build/todo.sr.ht-0.63.12-1-g511779e/.pybuild/cpython3_3.9_todosrht/build/todosrht/alembic/versions
copying todosrht/alembic/versions/030c8f83a75d_add_ticket_assignee.py -> /home/build/todo.sr.ht-0.63.12-1-g511779e/.pybuild/cpython3_3.9_todosrht/build/todosrht/alembic/versions
copying todosrht/alembic/versions/237974dd94c4_add_tracker_scoped_ticket_ids.py -> /home/build/todo.sr.ht-0.63.12-1-g511779e/.pybuild/cpython3_3.9_todosrht/build/todosrht/alembic/versions
copying todosrht/alembic/versions/0494a51dbfd0_add_user_mixin_properties.py -> /home/build/todo.sr.ht-0.63.12-1-g511779e/.pybuild/cpython3_3.9_todosrht/build/todosrht/alembic/versions
copying todosrht/alembic/versions/0ba3b223e552_add_oauthtoken_table.py -> /home/build/todo.sr.ht-0.63.12-1-g511779e/.pybuild/cpython3_3.9_todosrht/build/todosrht/alembic/versions
copying todosrht/alembic/versions/4631a2317dd0_migrate_users_to_participants.py -> /home/build/todo.sr.ht-0.63.12-1-g511779e/.pybuild/cpython3_3.9_todosrht/build/todosrht/alembic/versions
copying todosrht/alembic/versions/c7146cb70d6b_.py -> /home/build/todo.sr.ht-0.63.12-1-g511779e/.pybuild/cpython3_3.9_todosrht/build/todosrht/alembic/versions
copying todosrht/alembic/versions/afece1d17451_add_last_view_table.py -> /home/build/todo.sr.ht-0.63.12-1-g511779e/.pybuild/cpython3_3.9_todosrht/build/todosrht/alembic/versions
copying todosrht/alembic/versions/cb9732f3364c_clear_defaults_from_tickets_to_support_.py -> /home/build/todo.sr.ht-0.63.12-1-g511779e/.pybuild/cpython3_3.9_todosrht/build/todosrht/alembic/versions
copying todosrht/alembic/versions/6169a5600336_split_event_table_in_two.py -> /home/build/todo.sr.ht-0.63.12-1-g511779e/.pybuild/cpython3_3.9_todosrht/build/todosrht/alembic/versions
copying todosrht/alembic/versions/6c714f704591_add_core_sr_ht_cascades_to_tracker_.py -> /home/build/todo.sr.ht-0.63.12-1-g511779e/.pybuild/cpython3_3.9_todosrht/build/todosrht/alembic/versions
copying todosrht/alembic/versions/5fb6db84ce55_add_tracker_subscriptions.py -> /home/build/todo.sr.ht-0.63.12-1-g511779e/.pybuild/cpython3_3.9_todosrht/build/todosrht/alembic/versions
copying todosrht/alembic/versions/bdf809d6a775_drop_user_agent_from_tickets.py -> /home/build/todo.sr.ht-0.63.12-1-g511779e/.pybuild/cpython3_3.9_todosrht/build/todosrht/alembic/versions
copying todosrht/alembic/versions/a8cb241798dc_.py -> /home/build/todo.sr.ht-0.63.12-1-g511779e/.pybuild/cpython3_3.9_todosrht/build/todosrht/alembic/versions
copying todosrht/alembic/versions/4b32d0e0603d_add_authenticity_column_to_tickets_.py -> /home/build/todo.sr.ht-0.63.12-1-g511779e/.pybuild/cpython3_3.9_todosrht/build/todosrht/alembic/versions
copying todosrht/alembic/versions/cf222857edec_add_ticket_label.py -> /home/build/todo.sr.ht-0.63.12-1-g511779e/.pybuild/cpython3_3.9_todosrht/build/todosrht/alembic/versions
copying todosrht/alembic/versions/074182407bb2_remove_self-referencing_ticket_mention_events.py -> /home/build/todo.sr.ht-0.63.12-1-g511779e/.pybuild/cpython3_3.9_todosrht/build/todosrht/alembic/versions
copying todosrht/alembic/versions/cd94e721e6b0_add_cascade_to_tracker_deletions.py -> /home/build/todo.sr.ht-0.63.12-1-g511779e/.pybuild/cpython3_3.9_todosrht/build/todosrht/alembic/versions
copying todosrht/alembic/versions/75ff2f7624fd_new_event_fields.py -> /home/build/todo.sr.ht-0.63.12-1-g511779e/.pybuild/cpython3_3.9_todosrht/build/todosrht/alembic/versions
copying todosrht/alembic/versions/c32f13924e46_add_superceeded_by_id_column_to_ticket_.py -> /home/build/todo.sr.ht-0.63.12-1-g511779e/.pybuild/cpython3_3.9_todosrht/build/todosrht/alembic/versions
copying todosrht/alembic/versions/01ed05041614_add_webhook_tables.py -> /home/build/todo.sr.ht-0.63.12-1-g511779e/.pybuild/cpython3_3.9_todosrht/build/todosrht/alembic/versions
copying todosrht/alembic/versions/ec0b84a86165_add_user_type_to_user.py -> /home/build/todo.sr.ht-0.63.12-1-g511779e/.pybuild/cpython3_3.9_todosrht/build/todosrht/alembic/versions
copying todosrht/alembic/versions/d54ed600c4bf_add_user_access.py -> /home/build/todo.sr.ht-0.63.12-1-g511779e/.pybuild/cpython3_3.9_todosrht/build/todosrht/alembic/versions
creating /home/build/todo.sr.ht-0.63.12-1-g511779e/.pybuild/cpython3_3.9_todosrht/build/todosrht/templates
copying todosrht/templates/events.html -> /home/build/todo.sr.ht-0.63.12-1-g511779e/.pybuild/cpython3_3.9_todosrht/build/todosrht/templates
copying todosrht/templates/tracker-label-edit.html -> /home/build/todo.sr.ht-0.63.12-1-g511779e/.pybuild/cpython3_3.9_todosrht/build/todosrht/templates
copying todosrht/templates/tracker-create.html -> /home/build/todo.sr.ht-0.63.12-1-g511779e/.pybuild/cpython3_3.9_todosrht/build/todosrht/templates
copying todosrht/templates/edit_ticket.html -> /home/build/todo.sr.ht-0.63.12-1-g511779e/.pybuild/cpython3_3.9_todosrht/build/todosrht/templates
copying todosrht/templates/trackers.html -> /home/build/todo.sr.ht-0.63.12-1-g511779e/.pybuild/cpython3_3.9_todosrht/build/todosrht/templates
copying todosrht/templates/dashboard.html -> /home/build/todo.sr.ht-0.63.12-1-g511779e/.pybuild/cpython3_3.9_todosrht/build/todosrht/templates
copying todosrht/templates/ticket.html -> /home/build/todo.sr.ht-0.63.12-1-g511779e/.pybuild/cpython3_3.9_todosrht/build/todosrht/templates
copying todosrht/templates/tracker-delete.html -> /home/build/todo.sr.ht-0.63.12-1-g511779e/.pybuild/cpython3_3.9_todosrht/build/todosrht/templates
copying todosrht/templates/tracker-details.html -> /home/build/todo.sr.ht-0.63.12-1-g511779e/.pybuild/cpython3_3.9_todosrht/build/todosrht/templates
copying todosrht/templates/settings.html -> /home/build/todo.sr.ht-0.63.12-1-g511779e/.pybuild/cpython3_3.9_todosrht/build/todosrht/templates
copying todosrht/templates/tracker-access.html -> /home/build/todo.sr.ht-0.63.12-1-g511779e/.pybuild/cpython3_3.9_todosrht/build/todosrht/templates
copying todosrht/templates/tracker.html -> /home/build/todo.sr.ht-0.63.12-1-g511779e/.pybuild/cpython3_3.9_todosrht/build/todosrht/templates
copying todosrht/templates/index.html -> /home/build/todo.sr.ht-0.63.12-1-g511779e/.pybuild/cpython3_3.9_todosrht/build/todosrht/templates
copying todosrht/templates/tracker-labels.html -> /home/build/todo.sr.ht-0.63.12-1-g511779e/.pybuild/cpython3_3.9_todosrht/build/todosrht/templates
copying todosrht/templates/edit-comment.html -> /home/build/todo.sr.ht-0.63.12-1-g511779e/.pybuild/cpython3_3.9_todosrht/build/todosrht/templates
copying todosrht/templates/tracker-import-export.html -> /home/build/todo.sr.ht-0.63.12-1-g511779e/.pybuild/cpython3_3.9_todosrht/build/todosrht/templates
copying todosrht/templates/autocomplete.js -> /home/build/todo.sr.ht-0.63.12-1-g511779e/.pybuild/cpython3_3.9_todosrht/build/todosrht/templates
creating /home/build/todo.sr.ht-0.63.12-1-g511779e/.pybuild/cpython3_3.9_todosrht/build/todosrht/static
copying todosrht/static/codemirror.css -> /home/build/todo.sr.ht-0.63.12-1-g511779e/.pybuild/cpython3_3.9_todosrht/build/todosrht/static
copying todosrht/static/main.min.css -> /home/build/todo.sr.ht-0.63.12-1-g511779e/.pybuild/cpython3_3.9_todosrht/build/todosrht/static
copying todosrht/static/main.css -> /home/build/todo.sr.ht-0.63.12-1-g511779e/.pybuild/cpython3_3.9_todosrht/build/todosrht/static
copying todosrht/static/simple.js -> /home/build/todo.sr.ht-0.63.12-1-g511779e/.pybuild/cpython3_3.9_todosrht/build/todosrht/static
copying todosrht/static/main.min.6a82eb91.css -> /home/build/todo.sr.ht-0.63.12-1-g511779e/.pybuild/cpython3_3.9_todosrht/build/todosrht/static
copying todosrht/static/codemirror.js -> /home/build/todo.sr.ht-0.63.12-1-g511779e/.pybuild/cpython3_3.9_todosrht/build/todosrht/static
creating /home/build/todo.sr.ht-0.63.12-1-g511779e/.pybuild/cpython3_3.9_todosrht/build/todosrht/static/icons
copying todosrht/static/icons/folder.svg -> /home/build/todo.sr.ht-0.63.12-1-g511779e/.pybuild/cpython3_3.9_todosrht/build/todosrht/static/icons
copying todosrht/static/icons/clock.svg -> /home/build/todo.sr.ht-0.63.12-1-g511779e/.pybuild/cpython3_3.9_todosrht/build/todosrht/static/icons
copying todosrht/static/icons/envelope-o.svg -> /home/build/todo.sr.ht-0.63.12-1-g511779e/.pybuild/cpython3_3.9_todosrht/build/todosrht/static/icons
copying todosrht/static/icons/README -> /home/build/todo.sr.ht-0.63.12-1-g511779e/.pybuild/cpython3_3.9_todosrht/build/todosrht/static/icons
copying todosrht/static/icons/circle-notch.svg -> /home/build/todo.sr.ht-0.63.12-1-g511779e/.pybuild/cpython3_3.9_todosrht/build/todosrht/static/icons
copying todosrht/static/icons/gitlab.svg -> /home/build/todo.sr.ht-0.63.12-1-g511779e/.pybuild/cpython3_3.9_todosrht/build/todosrht/static/icons
copying todosrht/static/icons/LICENSE.txt -> /home/build/todo.sr.ht-0.63.12-1-g511779e/.pybuild/cpython3_3.9_todosrht/build/todosrht/static/icons
copying todosrht/static/icons/caret-left.svg -> /home/build/todo.sr.ht-0.63.12-1-g511779e/.pybuild/cpython3_3.9_todosrht/build/todosrht/static/icons
copying todosrht/static/icons/question-circle.svg -> /home/build/todo.sr.ht-0.63.12-1-g511779e/.pybuild/cpython3_3.9_todosrht/build/todosrht/static/icons
copying todosrht/static/icons/comments-o.svg -> /home/build/todo.sr.ht-0.63.12-1-g511779e/.pybuild/cpython3_3.9_todosrht/build/todosrht/static/icons
copying todosrht/static/icons/github.svg -> /home/build/todo.sr.ht-0.63.12-1-g511779e/.pybuild/cpython3_3.9_todosrht/build/todosrht/static/icons
copying todosrht/static/icons/circle.svg -> /home/build/todo.sr.ht-0.63.12-1-g511779e/.pybuild/cpython3_3.9_todosrht/build/todosrht/static/icons
copying todosrht/static/icons/plus.svg -> /home/build/todo.sr.ht-0.63.12-1-g511779e/.pybuild/cpython3_3.9_todosrht/build/todosrht/static/icons
copying todosrht/static/icons/check.svg -> /home/build/todo.sr.ht-0.63.12-1-g511779e/.pybuild/cpython3_3.9_todosrht/build/todosrht/static/icons
copying todosrht/static/icons/exclamation-triangle.svg -> /home/build/todo.sr.ht-0.63.12-1-g511779e/.pybuild/cpython3_3.9_todosrht/build/todosrht/static/icons
copying todosrht/static/icons/times.svg -> /home/build/todo.sr.ht-0.63.12-1-g511779e/.pybuild/cpython3_3.9_todosrht/build/todosrht/static/icons
copying todosrht/static/icons/external-link-alt.svg -> /home/build/todo.sr.ht-0.63.12-1-g511779e/.pybuild/cpython3_3.9_todosrht/build/todosrht/static/icons
copying todosrht/static/icons/circle-solid.svg -> /home/build/todo.sr.ht-0.63.12-1-g511779e/.pybuild/cpython3_3.9_todosrht/build/todosrht/static/icons
copying todosrht/static/icons/plus-square.svg -> /home/build/todo.sr.ht-0.63.12-1-g511779e/.pybuild/cpython3_3.9_todosrht/build/todosrht/static/icons
copying todosrht/static/icons/file-alt.svg -> /home/build/todo.sr.ht-0.63.12-1-g511779e/.pybuild/cpython3_3.9_todosrht/build/todosrht/static/icons
copying todosrht/static/icons/plus-circle.svg -> /home/build/todo.sr.ht-0.63.12-1-g511779e/.pybuild/cpython3_3.9_todosrht/build/todosrht/static/icons
copying todosrht/static/icons/file.svg -> /home/build/todo.sr.ht-0.63.12-1-g511779e/.pybuild/cpython3_3.9_todosrht/build/todosrht/static/icons
copying todosrht/static/icons/arrow-right.svg -> /home/build/todo.sr.ht-0.63.12-1-g511779e/.pybuild/cpython3_3.9_todosrht/build/todosrht/static/icons
copying todosrht/static/icons/rss.svg -> /home/build/todo.sr.ht-0.63.12-1-g511779e/.pybuild/cpython3_3.9_todosrht/build/todosrht/static/icons
copying todosrht/static/icons/minus.svg -> /home/build/todo.sr.ht-0.63.12-1-g511779e/.pybuild/cpython3_3.9_todosrht/build/todosrht/static/icons
copying todosrht/static/icons/comments.svg -> /home/build/todo.sr.ht-0.63.12-1-g511779e/.pybuild/cpython3_3.9_todosrht/build/todosrht/static/icons
copying todosrht/static/icons/caret-right.svg -> /home/build/todo.sr.ht-0.63.12-1-g511779e/.pybuild/cpython3_3.9_todosrht/build/todosrht/static/icons
copying todosrht/static/icons/user.svg -> /home/build/todo.sr.ht-0.63.12-1-g511779e/.pybuild/cpython3_3.9_todosrht/build/todosrht/static/icons
copying todosrht/static/icons/code-branch.svg -> /home/build/todo.sr.ht-0.63.12-1-g511779e/.pybuild/cpython3_3.9_todosrht/build/todosrht/static/icons
copying todosrht/static/icons/reply.svg -> /home/build/todo.sr.ht-0.63.12-1-g511779e/.pybuild/cpython3_3.9_todosrht/build/todosrht/static/icons
creating /home/build/todo.sr.ht-0.63.12-1-g511779e/.pybuild/cpython3_3.9_todosrht/build/todosrht/emails
copying todosrht/emails/ticket_mention -> /home/build/todo.sr.ht-0.63.12-1-g511779e/.pybuild/cpython3_3.9_todosrht/build/todosrht/emails
copying todosrht/emails/ticket_assigned -> /home/build/todo.sr.ht-0.63.12-1-g511779e/.pybuild/cpython3_3.9_todosrht/build/todosrht/emails
copying todosrht/emails/new_ticket -> /home/build/todo.sr.ht-0.63.12-1-g511779e/.pybuild/cpython3_3.9_todosrht/build/todosrht/emails
copying todosrht/emails/ticket_comment -> /home/build/todo.sr.ht-0.63.12-1-g511779e/.pybuild/cpython3_3.9_todosrht/build/todosrht/emails
running build_scripts
creating build
creating build/scripts-3.9
copying and adjusting todosrht-initdb -> build/scripts-3.9
copying and adjusting todosrht-lmtp -> build/scripts-3.9
copying and adjusting todosrht-migrate -> build/scripts-3.9
changing mode of build/scripts-3.9/todosrht-initdb from 644 to 755
changing mode of build/scripts-3.9/todosrht-lmtp from 644 to 755
changing mode of build/scripts-3.9/todosrht-migrate from 644 to 755
make[1]: Leaving directory '/home/build/todo.sr.ht-0.63.12-1-g511779e'
dh_auto_test -O--buildsystem=pybuild
create-stamp debian/debhelper-build-stamp
fakeroot debian/rules binary
dh binary --with python3,sysuser --buildsystem=pybuild
dh_testroot -O--buildsystem=pybuild
dh_prep -O--buildsystem=pybuild
dh_installdirs -O--buildsystem=pybuild
dh_auto_install -O--buildsystem=pybuild
I: pybuild base:232: /usr/bin/python3 setup.py install --root /home/build/todo.sr.ht-0.63.12-1-g511779e/debian/python3-todosrht
running install
running build
running build_py
package init file 'todosrht/__init__.py' not found (or not a regular file)
package init file 'todosrht/blueprints/__init__.py' not found (or not a regular file)
package init file 'todosrht/alembic/__init__.py' not found (or not a regular file)
package init file 'todosrht/alembic/versions/__init__.py' not found (or not a regular file)
running build_scripts
running install_lib
creating /home/build/todo.sr.ht-0.63.12-1-g511779e/debian/python3-todosrht
creating /home/build/todo.sr.ht-0.63.12-1-g511779e/debian/python3-todosrht/usr
creating /home/build/todo.sr.ht-0.63.12-1-g511779e/debian/python3-todosrht/usr/lib
creating /home/build/todo.sr.ht-0.63.12-1-g511779e/debian/python3-todosrht/usr/lib/python3.9
creating /home/build/todo.sr.ht-0.63.12-1-g511779e/debian/python3-todosrht/usr/lib/python3.9/dist-packages
creating /home/build/todo.sr.ht-0.63.12-1-g511779e/debian/python3-todosrht/usr/lib/python3.9/dist-packages/todosrht
creating /home/build/todo.sr.ht-0.63.12-1-g511779e/debian/python3-todosrht/usr/lib/python3.9/dist-packages/todosrht/types
copying /home/build/todo.sr.ht-0.63.12-1-g511779e/.pybuild/cpython3_3.9_todosrht/build/todosrht/types/ticketstatus.py -> /home/build/todo.sr.ht-0.63.12-1-g511779e/debian/python3-todosrht/usr/lib/python3.9/dist-packages/todosrht/types
copying /home/build/todo.sr.ht-0.63.12-1-g511779e/.pybuild/cpython3_3.9_todosrht/build/todosrht/types/ticketseen.py -> /home/build/todo.sr.ht-0.63.12-1-g511779e/debian/python3-todosrht/usr/lib/python3.9/dist-packages/todosrht/types
copying /home/build/todo.sr.ht-0.63.12-1-g511779e/.pybuild/cpython3_3.9_todosrht/build/todosrht/types/label.py -> /home/build/todo.sr.ht-0.63.12-1-g511779e/debian/python3-todosrht/usr/lib/python3.9/dist-packages/todosrht/types
copying /home/build/todo.sr.ht-0.63.12-1-g511779e/.pybuild/cpython3_3.9_todosrht/build/todosrht/types/ticketassignee.py -> /home/build/todo.sr.ht-0.63.12-1-g511779e/debian/python3-todosrht/usr/lib/python3.9/dist-packages/todosrht/types
copying /home/build/todo.sr.ht-0.63.12-1-g511779e/.pybuild/cpython3_3.9_todosrht/build/todosrht/types/participant.py -> /home/build/todo.sr.ht-0.63.12-1-g511779e/debian/python3-todosrht/usr/lib/python3.9/dist-packages/todosrht/types
copying /home/build/todo.sr.ht-0.63.12-1-g511779e/.pybuild/cpython3_3.9_todosrht/build/todosrht/types/tracker.py -> /home/build/todo.sr.ht-0.63.12-1-g511779e/debian/python3-todosrht/usr/lib/python3.9/dist-packages/todosrht/types
copying /home/build/todo.sr.ht-0.63.12-1-g511779e/.pybuild/cpython3_3.9_todosrht/build/todosrht/types/__init__.py -> /home/build/todo.sr.ht-0.63.12-1-g511779e/debian/python3-todosrht/usr/lib/python3.9/dist-packages/todosrht/types
copying /home/build/todo.sr.ht-0.63.12-1-g511779e/.pybuild/cpython3_3.9_todosrht/build/todosrht/types/useraccess.py -> /home/build/todo.sr.ht-0.63.12-1-g511779e/debian/python3-todosrht/usr/lib/python3.9/dist-packages/todosrht/types
copying /home/build/todo.sr.ht-0.63.12-1-g511779e/.pybuild/cpython3_3.9_todosrht/build/todosrht/types/ticketcomment.py -> /home/build/todo.sr.ht-0.63.12-1-g511779e/debian/python3-todosrht/usr/lib/python3.9/dist-packages/todosrht/types
copying /home/build/todo.sr.ht-0.63.12-1-g511779e/.pybuild/cpython3_3.9_todosrht/build/todosrht/types/ticketaccess.py -> /home/build/todo.sr.ht-0.63.12-1-g511779e/debian/python3-todosrht/usr/lib/python3.9/dist-packages/todosrht/types
copying /home/build/todo.sr.ht-0.63.12-1-g511779e/.pybuild/cpython3_3.9_todosrht/build/todosrht/types/event.py -> /home/build/todo.sr.ht-0.63.12-1-g511779e/debian/python3-todosrht/usr/lib/python3.9/dist-packages/todosrht/types
copying /home/build/todo.sr.ht-0.63.12-1-g511779e/.pybuild/cpython3_3.9_todosrht/build/todosrht/types/ticket.py -> /home/build/todo.sr.ht-0.63.12-1-g511779e/debian/python3-todosrht/usr/lib/python3.9/dist-packages/todosrht/types
copying /home/build/todo.sr.ht-0.63.12-1-g511779e/.pybuild/cpython3_3.9_todosrht/build/todosrht/types/ticketsubscription.py -> /home/build/todo.sr.ht-0.63.12-1-g511779e/debian/python3-todosrht/usr/lib/python3.9/dist-packages/todosrht/types
copying /home/build/todo.sr.ht-0.63.12-1-g511779e/.pybuild/cpython3_3.9_todosrht/build/todosrht/app.py -> /home/build/todo.sr.ht-0.63.12-1-g511779e/debian/python3-todosrht/usr/lib/python3.9/dist-packages/todosrht
creating /home/build/todo.sr.ht-0.63.12-1-g511779e/debian/python3-todosrht/usr/lib/python3.9/dist-packages/todosrht/emails
copying /home/build/todo.sr.ht-0.63.12-1-g511779e/.pybuild/cpython3_3.9_todosrht/build/todosrht/emails/ticket_mention -> /home/build/todo.sr.ht-0.63.12-1-g511779e/debian/python3-todosrht/usr/lib/python3.9/dist-packages/todosrht/emails
copying /home/build/todo.sr.ht-0.63.12-1-g511779e/.pybuild/cpython3_3.9_todosrht/build/todosrht/emails/ticket_assigned -> /home/build/todo.sr.ht-0.63.12-1-g511779e/debian/python3-todosrht/usr/lib/python3.9/dist-packages/todosrht/emails
copying /home/build/todo.sr.ht-0.63.12-1-g511779e/.pybuild/cpython3_3.9_todosrht/build/todosrht/emails/new_ticket -> /home/build/todo.sr.ht-0.63.12-1-g511779e/debian/python3-todosrht/usr/lib/python3.9/dist-packages/todosrht/emails
copying /home/build/todo.sr.ht-0.63.12-1-g511779e/.pybuild/cpython3_3.9_todosrht/build/todosrht/emails/ticket_comment -> /home/build/todo.sr.ht-0.63.12-1-g511779e/debian/python3-todosrht/usr/lib/python3.9/dist-packages/todosrht/emails
copying /home/build/todo.sr.ht-0.63.12-1-g511779e/.pybuild/cpython3_3.9_todosrht/build/todosrht/filters.py -> /home/build/todo.sr.ht-0.63.12-1-g511779e/debian/python3-todosrht/usr/lib/python3.9/dist-packages/todosrht
copying /home/build/todo.sr.ht-0.63.12-1-g511779e/.pybuild/cpython3_3.9_todosrht/build/todosrht/tracker_import.py -> /home/build/todo.sr.ht-0.63.12-1-g511779e/debian/python3-todosrht/usr/lib/python3.9/dist-packages/todosrht
copying /home/build/todo.sr.ht-0.63.12-1-g511779e/.pybuild/cpython3_3.9_todosrht/build/todosrht/export.py -> /home/build/todo.sr.ht-0.63.12-1-g511779e/debian/python3-todosrht/usr/lib/python3.9/dist-packages/todosrht
copying /home/build/todo.sr.ht-0.63.12-1-g511779e/.pybuild/cpython3_3.9_todosrht/build/todosrht/email.py -> /home/build/todo.sr.ht-0.63.12-1-g511779e/debian/python3-todosrht/usr/lib/python3.9/dist-packages/todosrht
copying /home/build/todo.sr.ht-0.63.12-1-g511779e/.pybuild/cpython3_3.9_todosrht/build/todosrht/urls.py -> /home/build/todo.sr.ht-0.63.12-1-g511779e/debian/python3-todosrht/usr/lib/python3.9/dist-packages/todosrht
copying /home/build/todo.sr.ht-0.63.12-1-g511779e/.pybuild/cpython3_3.9_todosrht/build/todosrht/access.py -> /home/build/todo.sr.ht-0.63.12-1-g511779e/debian/python3-todosrht/usr/lib/python3.9/dist-packages/todosrht
creating /home/build/todo.sr.ht-0.63.12-1-g511779e/debian/python3-todosrht/usr/lib/python3.9/dist-packages/todosrht/static
creating /home/build/todo.sr.ht-0.63.12-1-g511779e/debian/python3-todosrht/usr/lib/python3.9/dist-packages/todosrht/static/icons
copying /home/build/todo.sr.ht-0.63.12-1-g511779e/.pybuild/cpython3_3.9_todosrht/build/todosrht/static/icons/folder.svg -> /home/build/todo.sr.ht-0.63.12-1-g511779e/debian/python3-todosrht/usr/lib/python3.9/dist-packages/todosrht/static/icons
copying /home/build/todo.sr.ht-0.63.12-1-g511779e/.pybuild/cpython3_3.9_todosrht/build/todosrht/static/icons/clock.svg -> /home/build/todo.sr.ht-0.63.12-1-g511779e/debian/python3-todosrht/usr/lib/python3.9/dist-packages/todosrht/static/icons
copying /home/build/todo.sr.ht-0.63.12-1-g511779e/.pybuild/cpython3_3.9_todosrht/build/todosrht/static/icons/envelope-o.svg -> /home/build/todo.sr.ht-0.63.12-1-g511779e/debian/python3-todosrht/usr/lib/python3.9/dist-packages/todosrht/static/icons
copying /home/build/todo.sr.ht-0.63.12-1-g511779e/.pybuild/cpython3_3.9_todosrht/build/todosrht/static/icons/README -> /home/build/todo.sr.ht-0.63.12-1-g511779e/debian/python3-todosrht/usr/lib/python3.9/dist-packages/todosrht/static/icons
copying /home/build/todo.sr.ht-0.63.12-1-g511779e/.pybuild/cpython3_3.9_todosrht/build/todosrht/static/icons/circle-notch.svg -> /home/build/todo.sr.ht-0.63.12-1-g511779e/debian/python3-todosrht/usr/lib/python3.9/dist-packages/todosrht/static/icons
copying /home/build/todo.sr.ht-0.63.12-1-g511779e/.pybuild/cpython3_3.9_todosrht/build/todosrht/static/icons/gitlab.svg -> /home/build/todo.sr.ht-0.63.12-1-g511779e/debian/python3-todosrht/usr/lib/python3.9/dist-packages/todosrht/static/icons
copying /home/build/todo.sr.ht-0.63.12-1-g511779e/.pybuild/cpython3_3.9_todosrht/build/todosrht/static/icons/LICENSE.txt -> /home/build/todo.sr.ht-0.63.12-1-g511779e/debian/python3-todosrht/usr/lib/python3.9/dist-packages/todosrht/static/icons
copying /home/build/todo.sr.ht-0.63.12-1-g511779e/.pybuild/cpython3_3.9_todosrht/build/todosrht/static/icons/caret-left.svg -> /home/build/todo.sr.ht-0.63.12-1-g511779e/debian/python3-todosrht/usr/lib/python3.9/dist-packages/todosrht/static/icons
copying /home/build/todo.sr.ht-0.63.12-1-g511779e/.pybuild/cpython3_3.9_todosrht/build/todosrht/static/icons/question-circle.svg -> /home/build/todo.sr.ht-0.63.12-1-g511779e/debian/python3-todosrht/usr/lib/python3.9/dist-packages/todosrht/static/icons
copying /home/build/todo.sr.ht-0.63.12-1-g511779e/.pybuild/cpython3_3.9_todosrht/build/todosrht/static/icons/comments-o.svg -> /home/build/todo.sr.ht-0.63.12-1-g511779e/debian/python3-todosrht/usr/lib/python3.9/dist-packages/todosrht/static/icons
copying /home/build/todo.sr.ht-0.63.12-1-g511779e/.pybuild/cpython3_3.9_todosrht/build/todosrht/static/icons/github.svg -> /home/build/todo.sr.ht-0.63.12-1-g511779e/debian/python3-todosrht/usr/lib/python3.9/dist-packages/todosrht/static/icons
copying /home/build/todo.sr.ht-0.63.12-1-g511779e/.pybuild/cpython3_3.9_todosrht/build/todosrht/static/icons/circle.svg -> /home/build/todo.sr.ht-0.63.12-1-g511779e/debian/python3-todosrht/usr/lib/python3.9/dist-packages/todosrht/static/icons
copying /home/build/todo.sr.ht-0.63.12-1-g511779e/.pybuild/cpython3_3.9_todosrht/build/todosrht/static/icons/plus.svg -> /home/build/todo.sr.ht-0.63.12-1-g511779e/debian/python3-todosrht/usr/lib/python3.9/dist-packages/todosrht/static/icons
copying /home/build/todo.sr.ht-0.63.12-1-g511779e/.pybuild/cpython3_3.9_todosrht/build/todosrht/static/icons/check.svg -> /home/build/todo.sr.ht-0.63.12-1-g511779e/debian/python3-todosrht/usr/lib/python3.9/dist-packages/todosrht/static/icons
copying /home/build/todo.sr.ht-0.63.12-1-g511779e/.pybuild/cpython3_3.9_todosrht/build/todosrht/static/icons/exclamation-triangle.svg -> /home/build/todo.sr.ht-0.63.12-1-g511779e/debian/python3-todosrht/usr/lib/python3.9/dist-packages/todosrht/static/icons
copying /home/build/todo.sr.ht-0.63.12-1-g511779e/.pybuild/cpython3_3.9_todosrht/build/todosrht/static/icons/times.svg -> /home/build/todo.sr.ht-0.63.12-1-g511779e/debian/python3-todosrht/usr/lib/python3.9/dist-packages/todosrht/static/icons
copying /home/build/todo.sr.ht-0.63.12-1-g511779e/.pybuild/cpython3_3.9_todosrht/build/todosrht/static/icons/external-link-alt.svg -> /home/build/todo.sr.ht-0.63.12-1-g511779e/debian/python3-todosrht/usr/lib/python3.9/dist-packages/todosrht/static/icons
copying /home/build/todo.sr.ht-0.63.12-1-g511779e/.pybuild/cpython3_3.9_todosrht/build/todosrht/static/icons/circle-solid.svg -> /home/build/todo.sr.ht-0.63.12-1-g511779e/debian/python3-todosrht/usr/lib/python3.9/dist-packages/todosrht/static/icons
copying /home/build/todo.sr.ht-0.63.12-1-g511779e/.pybuild/cpython3_3.9_todosrht/build/todosrht/static/icons/plus-square.svg -> /home/build/todo.sr.ht-0.63.12-1-g511779e/debian/python3-todosrht/usr/lib/python3.9/dist-packages/todosrht/static/icons
copying /home/build/todo.sr.ht-0.63.12-1-g511779e/.pybuild/cpython3_3.9_todosrht/build/todosrht/static/icons/file-alt.svg -> /home/build/todo.sr.ht-0.63.12-1-g511779e/debian/python3-todosrht/usr/lib/python3.9/dist-packages/todosrht/static/icons
copying /home/build/todo.sr.ht-0.63.12-1-g511779e/.pybuild/cpython3_3.9_todosrht/build/todosrht/static/icons/plus-circle.svg -> /home/build/todo.sr.ht-0.63.12-1-g511779e/debian/python3-todosrht/usr/lib/python3.9/dist-packages/todosrht/static/icons
copying /home/build/todo.sr.ht-0.63.12-1-g511779e/.pybuild/cpython3_3.9_todosrht/build/todosrht/static/icons/file.svg -> /home/build/todo.sr.ht-0.63.12-1-g511779e/debian/python3-todosrht/usr/lib/python3.9/dist-packages/todosrht/static/icons
copying /home/build/todo.sr.ht-0.63.12-1-g511779e/.pybuild/cpython3_3.9_todosrht/build/todosrht/static/icons/arrow-right.svg -> /home/build/todo.sr.ht-0.63.12-1-g511779e/debian/python3-todosrht/usr/lib/python3.9/dist-packages/todosrht/static/icons
copying /home/build/todo.sr.ht-0.63.12-1-g511779e/.pybuild/cpython3_3.9_todosrht/build/todosrht/static/icons/rss.svg -> /home/build/todo.sr.ht-0.63.12-1-g511779e/debian/python3-todosrht/usr/lib/python3.9/dist-packages/todosrht/static/icons
copying /home/build/todo.sr.ht-0.63.12-1-g511779e/.pybuild/cpython3_3.9_todosrht/build/todosrht/static/icons/minus.svg -> /home/build/todo.sr.ht-0.63.12-1-g511779e/debian/python3-todosrht/usr/lib/python3.9/dist-packages/todosrht/static/icons
copying /home/build/todo.sr.ht-0.63.12-1-g511779e/.pybuild/cpython3_3.9_todosrht/build/todosrht/static/icons/comments.svg -> /home/build/todo.sr.ht-0.63.12-1-g511779e/debian/python3-todosrht/usr/lib/python3.9/dist-packages/todosrht/static/icons
copying /home/build/todo.sr.ht-0.63.12-1-g511779e/.pybuild/cpython3_3.9_todosrht/build/todosrht/static/icons/caret-right.svg -> /home/build/todo.sr.ht-0.63.12-1-g511779e/debian/python3-todosrht/usr/lib/python3.9/dist-packages/todosrht/static/icons
copying /home/build/todo.sr.ht-0.63.12-1-g511779e/.pybuild/cpython3_3.9_todosrht/build/todosrht/static/icons/user.svg -> /home/build/todo.sr.ht-0.63.12-1-g511779e/debian/python3-todosrht/usr/lib/python3.9/dist-packages/todosrht/static/icons
copying /home/build/todo.sr.ht-0.63.12-1-g511779e/.pybuild/cpython3_3.9_todosrht/build/todosrht/static/icons/code-branch.svg -> /home/build/todo.sr.ht-0.63.12-1-g511779e/debian/python3-todosrht/usr/lib/python3.9/dist-packages/todosrht/static/icons
copying /home/build/todo.sr.ht-0.63.12-1-g511779e/.pybuild/cpython3_3.9_todosrht/build/todosrht/static/icons/reply.svg -> /home/build/todo.sr.ht-0.63.12-1-g511779e/debian/python3-todosrht/usr/lib/python3.9/dist-packages/todosrht/static/icons
copying /home/build/todo.sr.ht-0.63.12-1-g511779e/.pybuild/cpython3_3.9_todosrht/build/todosrht/static/codemirror.css -> /home/build/todo.sr.ht-0.63.12-1-g511779e/debian/python3-todosrht/usr/lib/python3.9/dist-packages/todosrht/static
copying /home/build/todo.sr.ht-0.63.12-1-g511779e/.pybuild/cpython3_3.9_todosrht/build/todosrht/static/main.min.css -> /home/build/todo.sr.ht-0.63.12-1-g511779e/debian/python3-todosrht/usr/lib/python3.9/dist-packages/todosrht/static
copying /home/build/todo.sr.ht-0.63.12-1-g511779e/.pybuild/cpython3_3.9_todosrht/build/todosrht/static/main.css -> /home/build/todo.sr.ht-0.63.12-1-g511779e/debian/python3-todosrht/usr/lib/python3.9/dist-packages/todosrht/static
copying /home/build/todo.sr.ht-0.63.12-1-g511779e/.pybuild/cpython3_3.9_todosrht/build/todosrht/static/simple.js -> /home/build/todo.sr.ht-0.63.12-1-g511779e/debian/python3-todosrht/usr/lib/python3.9/dist-packages/todosrht/static
copying /home/build/todo.sr.ht-0.63.12-1-g511779e/.pybuild/cpython3_3.9_todosrht/build/todosrht/static/main.min.6a82eb91.css -> /home/build/todo.sr.ht-0.63.12-1-g511779e/debian/python3-todosrht/usr/lib/python3.9/dist-packages/todosrht/static
copying /home/build/todo.sr.ht-0.63.12-1-g511779e/.pybuild/cpython3_3.9_todosrht/build/todosrht/static/codemirror.js -> /home/build/todo.sr.ht-0.63.12-1-g511779e/debian/python3-todosrht/usr/lib/python3.9/dist-packages/todosrht/static
copying /home/build/todo.sr.ht-0.63.12-1-g511779e/.pybuild/cpython3_3.9_todosrht/build/todosrht/flask.py -> /home/build/todo.sr.ht-0.63.12-1-g511779e/debian/python3-todosrht/usr/lib/python3.9/dist-packages/todosrht
copying /home/build/todo.sr.ht-0.63.12-1-g511779e/.pybuild/cpython3_3.9_todosrht/build/todosrht/service.py -> /home/build/todo.sr.ht-0.63.12-1-g511779e/debian/python3-todosrht/usr/lib/python3.9/dist-packages/todosrht
copying /home/build/todo.sr.ht-0.63.12-1-g511779e/.pybuild/cpython3_3.9_todosrht/build/todosrht/trackers.py -> /home/build/todo.sr.ht-0.63.12-1-g511779e/debian/python3-todosrht/usr/lib/python3.9/dist-packages/todosrht
copying /home/build/todo.sr.ht-0.63.12-1-g511779e/.pybuild/cpython3_3.9_todosrht/build/todosrht/search.py -> /home/build/todo.sr.ht-0.63.12-1-g511779e/debian/python3-todosrht/usr/lib/python3.9/dist-packages/todosrht
copying /home/build/todo.sr.ht-0.63.12-1-g511779e/.pybuild/cpython3_3.9_todosrht/build/todosrht/webhooks.py -> /home/build/todo.sr.ht-0.63.12-1-g511779e/debian/python3-todosrht/usr/lib/python3.9/dist-packages/todosrht
creating /home/build/todo.sr.ht-0.63.12-1-g511779e/debian/python3-todosrht/usr/lib/python3.9/dist-packages/todosrht/templates
copying /home/build/todo.sr.ht-0.63.12-1-g511779e/.pybuild/cpython3_3.9_todosrht/build/todosrht/templates/events.html -> /home/build/todo.sr.ht-0.63.12-1-g511779e/debian/python3-todosrht/usr/lib/python3.9/dist-packages/todosrht/templates
copying /home/build/todo.sr.ht-0.63.12-1-g511779e/.pybuild/cpython3_3.9_todosrht/build/todosrht/templates/tracker-label-edit.html -> /home/build/todo.sr.ht-0.63.12-1-g511779e/debian/python3-todosrht/usr/lib/python3.9/dist-packages/todosrht/templates
copying /home/build/todo.sr.ht-0.63.12-1-g511779e/.pybuild/cpython3_3.9_todosrht/build/todosrht/templates/tracker-create.html -> /home/build/todo.sr.ht-0.63.12-1-g511779e/debian/python3-todosrht/usr/lib/python3.9/dist-packages/todosrht/templates
copying /home/build/todo.sr.ht-0.63.12-1-g511779e/.pybuild/cpython3_3.9_todosrht/build/todosrht/templates/edit_ticket.html -> /home/build/todo.sr.ht-0.63.12-1-g511779e/debian/python3-todosrht/usr/lib/python3.9/dist-packages/todosrht/templates
copying /home/build/todo.sr.ht-0.63.12-1-g511779e/.pybuild/cpython3_3.9_todosrht/build/todosrht/templates/trackers.html -> /home/build/todo.sr.ht-0.63.12-1-g511779e/debian/python3-todosrht/usr/lib/python3.9/dist-packages/todosrht/templates
copying /home/build/todo.sr.ht-0.63.12-1-g511779e/.pybuild/cpython3_3.9_todosrht/build/todosrht/templates/dashboard.html -> /home/build/todo.sr.ht-0.63.12-1-g511779e/debian/python3-todosrht/usr/lib/python3.9/dist-packages/todosrht/templates
copying /home/build/todo.sr.ht-0.63.12-1-g511779e/.pybuild/cpython3_3.9_todosrht/build/todosrht/templates/ticket.html -> /home/build/todo.sr.ht-0.63.12-1-g511779e/debian/python3-todosrht/usr/lib/python3.9/dist-packages/todosrht/templates
copying /home/build/todo.sr.ht-0.63.12-1-g511779e/.pybuild/cpython3_3.9_todosrht/build/todosrht/templates/tracker-delete.html -> /home/build/todo.sr.ht-0.63.12-1-g511779e/debian/python3-todosrht/usr/lib/python3.9/dist-packages/todosrht/templates
copying /home/build/todo.sr.ht-0.63.12-1-g511779e/.pybuild/cpython3_3.9_todosrht/build/todosrht/templates/tracker-details.html -> /home/build/todo.sr.ht-0.63.12-1-g511779e/debian/python3-todosrht/usr/lib/python3.9/dist-packages/todosrht/templates
copying /home/build/todo.sr.ht-0.63.12-1-g511779e/.pybuild/cpython3_3.9_todosrht/build/todosrht/templates/settings.html -> /home/build/todo.sr.ht-0.63.12-1-g511779e/debian/python3-todosrht/usr/lib/python3.9/dist-packages/todosrht/templates
copying /home/build/todo.sr.ht-0.63.12-1-g511779e/.pybuild/cpython3_3.9_todosrht/build/todosrht/templates/tracker-access.html -> /home/build/todo.sr.ht-0.63.12-1-g511779e/debian/python3-todosrht/usr/lib/python3.9/dist-packages/todosrht/templates
copying /home/build/todo.sr.ht-0.63.12-1-g511779e/.pybuild/cpython3_3.9_todosrht/build/todosrht/templates/tracker.html -> /home/build/todo.sr.ht-0.63.12-1-g511779e/debian/python3-todosrht/usr/lib/python3.9/dist-packages/todosrht/templates
copying /home/build/todo.sr.ht-0.63.12-1-g511779e/.pybuild/cpython3_3.9_todosrht/build/todosrht/templates/autocomplete.js -> /home/build/todo.sr.ht-0.63.12-1-g511779e/debian/python3-todosrht/usr/lib/python3.9/dist-packages/todosrht/templates
copying /home/build/todo.sr.ht-0.63.12-1-g511779e/.pybuild/cpython3_3.9_todosrht/build/todosrht/templates/index.html -> /home/build/todo.sr.ht-0.63.12-1-g511779e/debian/python3-todosrht/usr/lib/python3.9/dist-packages/todosrht/templates
copying /home/build/todo.sr.ht-0.63.12-1-g511779e/.pybuild/cpython3_3.9_todosrht/build/todosrht/templates/tracker-labels.html -> /home/build/todo.sr.ht-0.63.12-1-g511779e/debian/python3-todosrht/usr/lib/python3.9/dist-packages/todosrht/templates
copying /home/build/todo.sr.ht-0.63.12-1-g511779e/.pybuild/cpython3_3.9_todosrht/build/todosrht/templates/edit-comment.html -> /home/build/todo.sr.ht-0.63.12-1-g511779e/debian/python3-todosrht/usr/lib/python3.9/dist-packages/todosrht/templates
copying /home/build/todo.sr.ht-0.63.12-1-g511779e/.pybuild/cpython3_3.9_todosrht/build/todosrht/templates/tracker-import-export.html -> /home/build/todo.sr.ht-0.63.12-1-g511779e/debian/python3-todosrht/usr/lib/python3.9/dist-packages/todosrht/templates
creating /home/build/todo.sr.ht-0.63.12-1-g511779e/debian/python3-todosrht/usr/lib/python3.9/dist-packages/todosrht/alembic
copying /home/build/todo.sr.ht-0.63.12-1-g511779e/.pybuild/cpython3_3.9_todosrht/build/todosrht/alembic/env.py -> /home/build/todo.sr.ht-0.63.12-1-g511779e/debian/python3-todosrht/usr/lib/python3.9/dist-packages/todosrht/alembic
creating /home/build/todo.sr.ht-0.63.12-1-g511779e/debian/python3-todosrht/usr/lib/python3.9/dist-packages/todosrht/alembic/versions
copying /home/build/todo.sr.ht-0.63.12-1-g511779e/.pybuild/cpython3_3.9_todosrht/build/todosrht/alembic/versions/3a9cb6757f59_add_user_notify_self.py -> /home/build/todo.sr.ht-0.63.12-1-g511779e/debian/python3-todosrht/usr/lib/python3.9/dist-packages/todosrht/alembic/versions
copying /home/build/todo.sr.ht-0.63.12-1-g511779e/.pybuild/cpython3_3.9_todosrht/build/todosrht/alembic/versions/3a0a7407fb50_add_label.py -> /home/build/todo.sr.ht-0.63.12-1-g511779e/debian/python3-todosrht/usr/lib/python3.9/dist-packages/todosrht/alembic/versions
copying /home/build/todo.sr.ht-0.63.12-1-g511779e/.pybuild/cpython3_3.9_todosrht/build/todosrht/alembic/versions/132ee194cefe_add_events.py -> /home/build/todo.sr.ht-0.63.12-1-g511779e/debian/python3-todosrht/usr/lib/python3.9/dist-packages/todosrht/alembic/versions
copying /home/build/todo.sr.ht-0.63.12-1-g511779e/.pybuild/cpython3_3.9_todosrht/build/todosrht/alembic/versions/bd06de76eb15_add_assigned_user_events.py -> /home/build/todo.sr.ht-0.63.12-1-g511779e/debian/python3-todosrht/usr/lib/python3.9/dist-packages/todosrht/alembic/versions
copying /home/build/todo.sr.ht-0.63.12-1-g511779e/.pybuild/cpython3_3.9_todosrht/build/todosrht/alembic/versions/61e241dc978c_add_cascade_to_tracker_ticket_webhooks.py -> /home/build/todo.sr.ht-0.63.12-1-g511779e/debian/python3-todosrht/usr/lib/python3.9/dist-packages/todosrht/alembic/versions
copying /home/build/todo.sr.ht-0.63.12-1-g511779e/.pybuild/cpython3_3.9_todosrht/build/todosrht/alembic/versions/6742af305c73_clean_no-comment_isostatus-change_events.py -> /home/build/todo.sr.ht-0.63.12-1-g511779e/debian/python3-todosrht/usr/lib/python3.9/dist-packages/todosrht/alembic/versions
copying /home/build/todo.sr.ht-0.63.12-1-g511779e/.pybuild/cpython3_3.9_todosrht/build/todosrht/alembic/versions/030c8f83a75d_add_ticket_assignee.py -> /home/build/todo.sr.ht-0.63.12-1-g511779e/debian/python3-todosrht/usr/lib/python3.9/dist-packages/todosrht/alembic/versions
copying /home/build/todo.sr.ht-0.63.12-1-g511779e/.pybuild/cpython3_3.9_todosrht/build/todosrht/alembic/versions/237974dd94c4_add_tracker_scoped_ticket_ids.py -> /home/build/todo.sr.ht-0.63.12-1-g511779e/debian/python3-todosrht/usr/lib/python3.9/dist-packages/todosrht/alembic/versions
copying /home/build/todo.sr.ht-0.63.12-1-g511779e/.pybuild/cpython3_3.9_todosrht/build/todosrht/alembic/versions/0494a51dbfd0_add_user_mixin_properties.py -> /home/build/todo.sr.ht-0.63.12-1-g511779e/debian/python3-todosrht/usr/lib/python3.9/dist-packages/todosrht/alembic/versions
copying /home/build/todo.sr.ht-0.63.12-1-g511779e/.pybuild/cpython3_3.9_todosrht/build/todosrht/alembic/versions/0ba3b223e552_add_oauthtoken_table.py -> /home/build/todo.sr.ht-0.63.12-1-g511779e/debian/python3-todosrht/usr/lib/python3.9/dist-packages/todosrht/alembic/versions
copying /home/build/todo.sr.ht-0.63.12-1-g511779e/.pybuild/cpython3_3.9_todosrht/build/todosrht/alembic/versions/4631a2317dd0_migrate_users_to_participants.py -> /home/build/todo.sr.ht-0.63.12-1-g511779e/debian/python3-todosrht/usr/lib/python3.9/dist-packages/todosrht/alembic/versions
copying /home/build/todo.sr.ht-0.63.12-1-g511779e/.pybuild/cpython3_3.9_todosrht/build/todosrht/alembic/versions/c7146cb70d6b_.py -> /home/build/todo.sr.ht-0.63.12-1-g511779e/debian/python3-todosrht/usr/lib/python3.9/dist-packages/todosrht/alembic/versions
copying /home/build/todo.sr.ht-0.63.12-1-g511779e/.pybuild/cpython3_3.9_todosrht/build/todosrht/alembic/versions/afece1d17451_add_last_view_table.py -> /home/build/todo.sr.ht-0.63.12-1-g511779e/debian/python3-todosrht/usr/lib/python3.9/dist-packages/todosrht/alembic/versions
copying /home/build/todo.sr.ht-0.63.12-1-g511779e/.pybuild/cpython3_3.9_todosrht/build/todosrht/alembic/versions/cb9732f3364c_clear_defaults_from_tickets_to_support_.py -> /home/build/todo.sr.ht-0.63.12-1-g511779e/debian/python3-todosrht/usr/lib/python3.9/dist-packages/todosrht/alembic/versions
copying /home/build/todo.sr.ht-0.63.12-1-g511779e/.pybuild/cpython3_3.9_todosrht/build/todosrht/alembic/versions/6169a5600336_split_event_table_in_two.py -> /home/build/todo.sr.ht-0.63.12-1-g511779e/debian/python3-todosrht/usr/lib/python3.9/dist-packages/todosrht/alembic/versions
copying /home/build/todo.sr.ht-0.63.12-1-g511779e/.pybuild/cpython3_3.9_todosrht/build/todosrht/alembic/versions/6c714f704591_add_core_sr_ht_cascades_to_tracker_.py -> /home/build/todo.sr.ht-0.63.12-1-g511779e/debian/python3-todosrht/usr/lib/python3.9/dist-packages/todosrht/alembic/versions
copying /home/build/todo.sr.ht-0.63.12-1-g511779e/.pybuild/cpython3_3.9_todosrht/build/todosrht/alembic/versions/5fb6db84ce55_add_tracker_subscriptions.py -> /home/build/todo.sr.ht-0.63.12-1-g511779e/debian/python3-todosrht/usr/lib/python3.9/dist-packages/todosrht/alembic/versions
copying /home/build/todo.sr.ht-0.63.12-1-g511779e/.pybuild/cpython3_3.9_todosrht/build/todosrht/alembic/versions/bdf809d6a775_drop_user_agent_from_tickets.py -> /home/build/todo.sr.ht-0.63.12-1-g511779e/debian/python3-todosrht/usr/lib/python3.9/dist-packages/todosrht/alembic/versions
copying /home/build/todo.sr.ht-0.63.12-1-g511779e/.pybuild/cpython3_3.9_todosrht/build/todosrht/alembic/versions/a8cb241798dc_.py -> /home/build/todo.sr.ht-0.63.12-1-g511779e/debian/python3-todosrht/usr/lib/python3.9/dist-packages/todosrht/alembic/versions
copying /home/build/todo.sr.ht-0.63.12-1-g511779e/.pybuild/cpython3_3.9_todosrht/build/todosrht/alembic/versions/4b32d0e0603d_add_authenticity_column_to_tickets_.py -> /home/build/todo.sr.ht-0.63.12-1-g511779e/debian/python3-todosrht/usr/lib/python3.9/dist-packages/todosrht/alembic/versions
copying /home/build/todo.sr.ht-0.63.12-1-g511779e/.pybuild/cpython3_3.9_todosrht/build/todosrht/alembic/versions/cf222857edec_add_ticket_label.py -> /home/build/todo.sr.ht-0.63.12-1-g511779e/debian/python3-todosrht/usr/lib/python3.9/dist-packages/todosrht/alembic/versions
copying /home/build/todo.sr.ht-0.63.12-1-g511779e/.pybuild/cpython3_3.9_todosrht/build/todosrht/alembic/versions/074182407bb2_remove_self-referencing_ticket_mention_events.py -> /home/build/todo.sr.ht-0.63.12-1-g511779e/debian/python3-todosrht/usr/lib/python3.9/dist-packages/todosrht/alembic/versions
copying /home/build/todo.sr.ht-0.63.12-1-g511779e/.pybuild/cpython3_3.9_todosrht/build/todosrht/alembic/versions/cd94e721e6b0_add_cascade_to_tracker_deletions.py -> /home/build/todo.sr.ht-0.63.12-1-g511779e/debian/python3-todosrht/usr/lib/python3.9/dist-packages/todosrht/alembic/versions
copying /home/build/todo.sr.ht-0.63.12-1-g511779e/.pybuild/cpython3_3.9_todosrht/build/todosrht/alembic/versions/75ff2f7624fd_new_event_fields.py -> /home/build/todo.sr.ht-0.63.12-1-g511779e/debian/python3-todosrht/usr/lib/python3.9/dist-packages/todosrht/alembic/versions
copying /home/build/todo.sr.ht-0.63.12-1-g511779e/.pybuild/cpython3_3.9_todosrht/build/todosrht/alembic/versions/c32f13924e46_add_superceeded_by_id_column_to_ticket_.py -> /home/build/todo.sr.ht-0.63.12-1-g511779e/debian/python3-todosrht/usr/lib/python3.9/dist-packages/todosrht/alembic/versions
copying /home/build/todo.sr.ht-0.63.12-1-g511779e/.pybuild/cpython3_3.9_todosrht/build/todosrht/alembic/versions/01ed05041614_add_webhook_tables.py -> /home/build/todo.sr.ht-0.63.12-1-g511779e/debian/python3-todosrht/usr/lib/python3.9/dist-packages/todosrht/alembic/versions
copying /home/build/todo.sr.ht-0.63.12-1-g511779e/.pybuild/cpython3_3.9_todosrht/build/todosrht/alembic/versions/ec0b84a86165_add_user_type_to_user.py -> /home/build/todo.sr.ht-0.63.12-1-g511779e/debian/python3-todosrht/usr/lib/python3.9/dist-packages/todosrht/alembic/versions
copying /home/build/todo.sr.ht-0.63.12-1-g511779e/.pybuild/cpython3_3.9_todosrht/build/todosrht/alembic/versions/d54ed600c4bf_add_user_access.py -> /home/build/todo.sr.ht-0.63.12-1-g511779e/debian/python3-todosrht/usr/lib/python3.9/dist-packages/todosrht/alembic/versions
copying /home/build/todo.sr.ht-0.63.12-1-g511779e/.pybuild/cpython3_3.9_todosrht/build/todosrht/color.py -> /home/build/todo.sr.ht-0.63.12-1-g511779e/debian/python3-todosrht/usr/lib/python3.9/dist-packages/todosrht
creating /home/build/todo.sr.ht-0.63.12-1-g511779e/debian/python3-todosrht/usr/lib/python3.9/dist-packages/todosrht/blueprints
copying /home/build/todo.sr.ht-0.63.12-1-g511779e/.pybuild/cpython3_3.9_todosrht/build/todosrht/blueprints/tracker.py -> /home/build/todo.sr.ht-0.63.12-1-g511779e/debian/python3-todosrht/usr/lib/python3.9/dist-packages/todosrht/blueprints
creating /home/build/todo.sr.ht-0.63.12-1-g511779e/debian/python3-todosrht/usr/lib/python3.9/dist-packages/todosrht/blueprints/api
copying /home/build/todo.sr.ht-0.63.12-1-g511779e/.pybuild/cpython3_3.9_todosrht/build/todosrht/blueprints/api/internal.py -> /home/build/todo.sr.ht-0.63.12-1-g511779e/debian/python3-todosrht/usr/lib/python3.9/dist-packages/todosrht/blueprints/api
copying /home/build/todo.sr.ht-0.63.12-1-g511779e/.pybuild/cpython3_3.9_todosrht/build/todosrht/blueprints/api/__init__.py -> /home/build/todo.sr.ht-0.63.12-1-g511779e/debian/python3-todosrht/usr/lib/python3.9/dist-packages/todosrht/blueprints/api
copying /home/build/todo.sr.ht-0.63.12-1-g511779e/.pybuild/cpython3_3.9_todosrht/build/todosrht/blueprints/api/trackers.py -> /home/build/todo.sr.ht-0.63.12-1-g511779e/debian/python3-todosrht/usr/lib/python3.9/dist-packages/todosrht/blueprints/api
copying /home/build/todo.sr.ht-0.63.12-1-g511779e/.pybuild/cpython3_3.9_todosrht/build/todosrht/blueprints/api/tickets.py -> /home/build/todo.sr.ht-0.63.12-1-g511779e/debian/python3-todosrht/usr/lib/python3.9/dist-packages/todosrht/blueprints/api
copying /home/build/todo.sr.ht-0.63.12-1-g511779e/.pybuild/cpython3_3.9_todosrht/build/todosrht/blueprints/settings.py -> /home/build/todo.sr.ht-0.63.12-1-g511779e/debian/python3-todosrht/usr/lib/python3.9/dist-packages/todosrht/blueprints
copying /home/build/todo.sr.ht-0.63.12-1-g511779e/.pybuild/cpython3_3.9_todosrht/build/todosrht/blueprints/ticket.py -> /home/build/todo.sr.ht-0.63.12-1-g511779e/debian/python3-todosrht/usr/lib/python3.9/dist-packages/todosrht/blueprints
copying /home/build/todo.sr.ht-0.63.12-1-g511779e/.pybuild/cpython3_3.9_todosrht/build/todosrht/blueprints/html.py -> /home/build/todo.sr.ht-0.63.12-1-g511779e/debian/python3-todosrht/usr/lib/python3.9/dist-packages/todosrht/blueprints
copying /home/build/todo.sr.ht-0.63.12-1-g511779e/.pybuild/cpython3_3.9_todosrht/build/todosrht/tickets.py -> /home/build/todo.sr.ht-0.63.12-1-g511779e/debian/python3-todosrht/usr/lib/python3.9/dist-packages/todosrht
byte-compiling /home/build/todo.sr.ht-0.63.12-1-g511779e/debian/python3-todosrht/usr/lib/python3.9/dist-packages/todosrht/types/ticketstatus.py to ticketstatus.cpython-39.pyc
byte-compiling /home/build/todo.sr.ht-0.63.12-1-g511779e/debian/python3-todosrht/usr/lib/python3.9/dist-packages/todosrht/types/ticketseen.py to ticketseen.cpython-39.pyc
byte-compiling /home/build/todo.sr.ht-0.63.12-1-g511779e/debian/python3-todosrht/usr/lib/python3.9/dist-packages/todosrht/types/label.py to label.cpython-39.pyc
byte-compiling /home/build/todo.sr.ht-0.63.12-1-g511779e/debian/python3-todosrht/usr/lib/python3.9/dist-packages/todosrht/types/ticketassignee.py to ticketassignee.cpython-39.pyc
byte-compiling /home/build/todo.sr.ht-0.63.12-1-g511779e/debian/python3-todosrht/usr/lib/python3.9/dist-packages/todosrht/types/participant.py to participant.cpython-39.pyc
byte-compiling /home/build/todo.sr.ht-0.63.12-1-g511779e/debian/python3-todosrht/usr/lib/python3.9/dist-packages/todosrht/types/tracker.py to tracker.cpython-39.pyc
byte-compiling /home/build/todo.sr.ht-0.63.12-1-g511779e/debian/python3-todosrht/usr/lib/python3.9/dist-packages/todosrht/types/__init__.py to __init__.cpython-39.pyc
byte-compiling /home/build/todo.sr.ht-0.63.12-1-g511779e/debian/python3-todosrht/usr/lib/python3.9/dist-packages/todosrht/types/useraccess.py to useraccess.cpython-39.pyc
byte-compiling /home/build/todo.sr.ht-0.63.12-1-g511779e/debian/python3-todosrht/usr/lib/python3.9/dist-packages/todosrht/types/ticketcomment.py to ticketcomment.cpython-39.pyc
byte-compiling /home/build/todo.sr.ht-0.63.12-1-g511779e/debian/python3-todosrht/usr/lib/python3.9/dist-packages/todosrht/types/ticketaccess.py to ticketaccess.cpython-39.pyc
byte-compiling /home/build/todo.sr.ht-0.63.12-1-g511779e/debian/python3-todosrht/usr/lib/python3.9/dist-packages/todosrht/types/event.py to event.cpython-39.pyc
byte-compiling /home/build/todo.sr.ht-0.63.12-1-g511779e/debian/python3-todosrht/usr/lib/python3.9/dist-packages/todosrht/types/ticket.py to ticket.cpython-39.pyc
byte-compiling /home/build/todo.sr.ht-0.63.12-1-g511779e/debian/python3-todosrht/usr/lib/python3.9/dist-packages/todosrht/types/ticketsubscription.py to ticketsubscription.cpython-39.pyc
byte-compiling /home/build/todo.sr.ht-0.63.12-1-g511779e/debian/python3-todosrht/usr/lib/python3.9/dist-packages/todosrht/app.py to app.cpython-39.pyc
byte-compiling /home/build/todo.sr.ht-0.63.12-1-g511779e/debian/python3-todosrht/usr/lib/python3.9/dist-packages/todosrht/filters.py to filters.cpython-39.pyc
byte-compiling /home/build/todo.sr.ht-0.63.12-1-g511779e/debian/python3-todosrht/usr/lib/python3.9/dist-packages/todosrht/tracker_import.py to tracker_import.cpython-39.pyc
byte-compiling /home/build/todo.sr.ht-0.63.12-1-g511779e/debian/python3-todosrht/usr/lib/python3.9/dist-packages/todosrht/export.py to export.cpython-39.pyc
byte-compiling /home/build/todo.sr.ht-0.63.12-1-g511779e/debian/python3-todosrht/usr/lib/python3.9/dist-packages/todosrht/email.py to email.cpython-39.pyc
byte-compiling /home/build/todo.sr.ht-0.63.12-1-g511779e/debian/python3-todosrht/usr/lib/python3.9/dist-packages/todosrht/urls.py to urls.cpython-39.pyc
byte-compiling /home/build/todo.sr.ht-0.63.12-1-g511779e/debian/python3-todosrht/usr/lib/python3.9/dist-packages/todosrht/access.py to access.cpython-39.pyc
byte-compiling /home/build/todo.sr.ht-0.63.12-1-g511779e/debian/python3-todosrht/usr/lib/python3.9/dist-packages/todosrht/flask.py to flask.cpython-39.pyc
byte-compiling /home/build/todo.sr.ht-0.63.12-1-g511779e/debian/python3-todosrht/usr/lib/python3.9/dist-packages/todosrht/service.py to service.cpython-39.pyc
byte-compiling /home/build/todo.sr.ht-0.63.12-1-g511779e/debian/python3-todosrht/usr/lib/python3.9/dist-packages/todosrht/trackers.py to trackers.cpython-39.pyc
byte-compiling /home/build/todo.sr.ht-0.63.12-1-g511779e/debian/python3-todosrht/usr/lib/python3.9/dist-packages/todosrht/search.py to search.cpython-39.pyc
byte-compiling /home/build/todo.sr.ht-0.63.12-1-g511779e/debian/python3-todosrht/usr/lib/python3.9/dist-packages/todosrht/webhooks.py to webhooks.cpython-39.pyc
byte-compiling /home/build/todo.sr.ht-0.63.12-1-g511779e/debian/python3-todosrht/usr/lib/python3.9/dist-packages/todosrht/alembic/env.py to env.cpython-39.pyc
byte-compiling /home/build/todo.sr.ht-0.63.12-1-g511779e/debian/python3-todosrht/usr/lib/python3.9/dist-packages/todosrht/alembic/versions/3a9cb6757f59_add_user_notify_self.py to 3a9cb6757f59_add_user_notify_self.cpython-39.pyc
byte-compiling /home/build/todo.sr.ht-0.63.12-1-g511779e/debian/python3-todosrht/usr/lib/python3.9/dist-packages/todosrht/alembic/versions/3a0a7407fb50_add_label.py to 3a0a7407fb50_add_label.cpython-39.pyc
byte-compiling /home/build/todo.sr.ht-0.63.12-1-g511779e/debian/python3-todosrht/usr/lib/python3.9/dist-packages/todosrht/alembic/versions/132ee194cefe_add_events.py to 132ee194cefe_add_events.cpython-39.pyc
byte-compiling /home/build/todo.sr.ht-0.63.12-1-g511779e/debian/python3-todosrht/usr/lib/python3.9/dist-packages/todosrht/alembic/versions/bd06de76eb15_add_assigned_user_events.py to bd06de76eb15_add_assigned_user_events.cpython-39.pyc
byte-compiling /home/build/todo.sr.ht-0.63.12-1-g511779e/debian/python3-todosrht/usr/lib/python3.9/dist-packages/todosrht/alembic/versions/61e241dc978c_add_cascade_to_tracker_ticket_webhooks.py to 61e241dc978c_add_cascade_to_tracker_ticket_webhooks.cpython-39.pyc
byte-compiling /home/build/todo.sr.ht-0.63.12-1-g511779e/debian/python3-todosrht/usr/lib/python3.9/dist-packages/todosrht/alembic/versions/6742af305c73_clean_no-comment_isostatus-change_events.py to 6742af305c73_clean_no-comment_isostatus-change_events.cpython-39.pyc
byte-compiling /home/build/todo.sr.ht-0.63.12-1-g511779e/debian/python3-todosrht/usr/lib/python3.9/dist-packages/todosrht/alembic/versions/030c8f83a75d_add_ticket_assignee.py to 030c8f83a75d_add_ticket_assignee.cpython-39.pyc
byte-compiling /home/build/todo.sr.ht-0.63.12-1-g511779e/debian/python3-todosrht/usr/lib/python3.9/dist-packages/todosrht/alembic/versions/237974dd94c4_add_tracker_scoped_ticket_ids.py to 237974dd94c4_add_tracker_scoped_ticket_ids.cpython-39.pyc
byte-compiling /home/build/todo.sr.ht-0.63.12-1-g511779e/debian/python3-todosrht/usr/lib/python3.9/dist-packages/todosrht/alembic/versions/0494a51dbfd0_add_user_mixin_properties.py to 0494a51dbfd0_add_user_mixin_properties.cpython-39.pyc
byte-compiling /home/build/todo.sr.ht-0.63.12-1-g511779e/debian/python3-todosrht/usr/lib/python3.9/dist-packages/todosrht/alembic/versions/0ba3b223e552_add_oauthtoken_table.py to 0ba3b223e552_add_oauthtoken_table.cpython-39.pyc
byte-compiling /home/build/todo.sr.ht-0.63.12-1-g511779e/debian/python3-todosrht/usr/lib/python3.9/dist-packages/todosrht/alembic/versions/4631a2317dd0_migrate_users_to_participants.py to 4631a2317dd0_migrate_users_to_participants.cpython-39.pyc
byte-compiling /home/build/todo.sr.ht-0.63.12-1-g511779e/debian/python3-todosrht/usr/lib/python3.9/dist-packages/todosrht/alembic/versions/c7146cb70d6b_.py to c7146cb70d6b_.cpython-39.pyc
byte-compiling /home/build/todo.sr.ht-0.63.12-1-g511779e/debian/python3-todosrht/usr/lib/python3.9/dist-packages/todosrht/alembic/versions/afece1d17451_add_last_view_table.py to afece1d17451_add_last_view_table.cpython-39.pyc
byte-compiling /home/build/todo.sr.ht-0.63.12-1-g511779e/debian/python3-todosrht/usr/lib/python3.9/dist-packages/todosrht/alembic/versions/cb9732f3364c_clear_defaults_from_tickets_to_support_.py to cb9732f3364c_clear_defaults_from_tickets_to_support_.cpython-39.pyc
byte-compiling /home/build/todo.sr.ht-0.63.12-1-g511779e/debian/python3-todosrht/usr/lib/python3.9/dist-packages/todosrht/alembic/versions/6169a5600336_split_event_table_in_two.py to 6169a5600336_split_event_table_in_two.cpython-39.pyc
byte-compiling /home/build/todo.sr.ht-0.63.12-1-g511779e/debian/python3-todosrht/usr/lib/python3.9/dist-packages/todosrht/alembic/versions/6c714f704591_add_core_sr_ht_cascades_to_tracker_.py to 6c714f704591_add_core_sr_ht_cascades_to_tracker_.cpython-39.pyc
byte-compiling /home/build/todo.sr.ht-0.63.12-1-g511779e/debian/python3-todosrht/usr/lib/python3.9/dist-packages/todosrht/alembic/versions/5fb6db84ce55_add_tracker_subscriptions.py to 5fb6db84ce55_add_tracker_subscriptions.cpython-39.pyc
byte-compiling /home/build/todo.sr.ht-0.63.12-1-g511779e/debian/python3-todosrht/usr/lib/python3.9/dist-packages/todosrht/alembic/versions/bdf809d6a775_drop_user_agent_from_tickets.py to bdf809d6a775_drop_user_agent_from_tickets.cpython-39.pyc
byte-compiling /home/build/todo.sr.ht-0.63.12-1-g511779e/debian/python3-todosrht/usr/lib/python3.9/dist-packages/todosrht/alembic/versions/a8cb241798dc_.py to a8cb241798dc_.cpython-39.pyc
byte-compiling /home/build/todo.sr.ht-0.63.12-1-g511779e/debian/python3-todosrht/usr/lib/python3.9/dist-packages/todosrht/alembic/versions/4b32d0e0603d_add_authenticity_column_to_tickets_.py to 4b32d0e0603d_add_authenticity_column_to_tickets_.cpython-39.pyc
byte-compiling /home/build/todo.sr.ht-0.63.12-1-g511779e/debian/python3-todosrht/usr/lib/python3.9/dist-packages/todosrht/alembic/versions/cf222857edec_add_ticket_label.py to cf222857edec_add_ticket_label.cpython-39.pyc
byte-compiling /home/build/todo.sr.ht-0.63.12-1-g511779e/debian/python3-todosrht/usr/lib/python3.9/dist-packages/todosrht/alembic/versions/074182407bb2_remove_self-referencing_ticket_mention_events.py to 074182407bb2_remove_self-referencing_ticket_mention_events.cpython-39.pyc
byte-compiling /home/build/todo.sr.ht-0.63.12-1-g511779e/debian/python3-todosrht/usr/lib/python3.9/dist-packages/todosrht/alembic/versions/cd94e721e6b0_add_cascade_to_tracker_deletions.py to cd94e721e6b0_add_cascade_to_tracker_deletions.cpython-39.pyc
byte-compiling /home/build/todo.sr.ht-0.63.12-1-g511779e/debian/python3-todosrht/usr/lib/python3.9/dist-packages/todosrht/alembic/versions/75ff2f7624fd_new_event_fields.py to 75ff2f7624fd_new_event_fields.cpython-39.pyc
byte-compiling /home/build/todo.sr.ht-0.63.12-1-g511779e/debian/python3-todosrht/usr/lib/python3.9/dist-packages/todosrht/alembic/versions/c32f13924e46_add_superceeded_by_id_column_to_ticket_.py to c32f13924e46_add_superceeded_by_id_column_to_ticket_.cpython-39.pyc
byte-compiling /home/build/todo.sr.ht-0.63.12-1-g511779e/debian/python3-todosrht/usr/lib/python3.9/dist-packages/todosrht/alembic/versions/01ed05041614_add_webhook_tables.py to 01ed05041614_add_webhook_tables.cpython-39.pyc
byte-compiling /home/build/todo.sr.ht-0.63.12-1-g511779e/debian/python3-todosrht/usr/lib/python3.9/dist-packages/todosrht/alembic/versions/ec0b84a86165_add_user_type_to_user.py to ec0b84a86165_add_user_type_to_user.cpython-39.pyc
byte-compiling /home/build/todo.sr.ht-0.63.12-1-g511779e/debian/python3-todosrht/usr/lib/python3.9/dist-packages/todosrht/alembic/versions/d54ed600c4bf_add_user_access.py to d54ed600c4bf_add_user_access.cpython-39.pyc
byte-compiling /home/build/todo.sr.ht-0.63.12-1-g511779e/debian/python3-todosrht/usr/lib/python3.9/dist-packages/todosrht/color.py to color.cpython-39.pyc
byte-compiling /home/build/todo.sr.ht-0.63.12-1-g511779e/debian/python3-todosrht/usr/lib/python3.9/dist-packages/todosrht/blueprints/tracker.py to tracker.cpython-39.pyc
byte-compiling /home/build/todo.sr.ht-0.63.12-1-g511779e/debian/python3-todosrht/usr/lib/python3.9/dist-packages/todosrht/blueprints/api/internal.py to internal.cpython-39.pyc
byte-compiling /home/build/todo.sr.ht-0.63.12-1-g511779e/debian/python3-todosrht/usr/lib/python3.9/dist-packages/todosrht/blueprints/api/__init__.py to __init__.cpython-39.pyc
byte-compiling /home/build/todo.sr.ht-0.63.12-1-g511779e/debian/python3-todosrht/usr/lib/python3.9/dist-packages/todosrht/blueprints/api/trackers.py to trackers.cpython-39.pyc
byte-compiling /home/build/todo.sr.ht-0.63.12-1-g511779e/debian/python3-todosrht/usr/lib/python3.9/dist-packages/todosrht/blueprints/api/tickets.py to tickets.cpython-39.pyc
byte-compiling /home/build/todo.sr.ht-0.63.12-1-g511779e/debian/python3-todosrht/usr/lib/python3.9/dist-packages/todosrht/blueprints/settings.py to settings.cpython-39.pyc
byte-compiling /home/build/todo.sr.ht-0.63.12-1-g511779e/debian/python3-todosrht/usr/lib/python3.9/dist-packages/todosrht/blueprints/ticket.py to ticket.cpython-39.pyc
byte-compiling /home/build/todo.sr.ht-0.63.12-1-g511779e/debian/python3-todosrht/usr/lib/python3.9/dist-packages/todosrht/blueprints/html.py to html.cpython-39.pyc
byte-compiling /home/build/todo.sr.ht-0.63.12-1-g511779e/debian/python3-todosrht/usr/lib/python3.9/dist-packages/todosrht/tickets.py to tickets.cpython-39.pyc
running install_egg_info
running egg_info
creating todosrht.egg-info
writing todosrht.egg-info/PKG-INFO
writing dependency_links to todosrht.egg-info/dependency_links.txt
writing requirements to todosrht.egg-info/requires.txt
writing top-level names to todosrht.egg-info/top_level.txt
writing manifest file 'todosrht.egg-info/SOURCES.txt'
reading manifest file 'todosrht.egg-info/SOURCES.txt'
writing manifest file 'todosrht.egg-info/SOURCES.txt'
Copying todosrht.egg-info to /home/build/todo.sr.ht-0.63.12-1-g511779e/debian/python3-todosrht/usr/lib/python3.9/dist-packages/todosrht-0.63.12.egg-info
Skipping SOURCES.txt
running install_scripts
creating /home/build/todo.sr.ht-0.63.12-1-g511779e/debian/python3-todosrht/usr/bin
copying build/scripts-3.9/todosrht-lmtp -> /home/build/todo.sr.ht-0.63.12-1-g511779e/debian/python3-todosrht/usr/bin
copying build/scripts-3.9/todosrht-migrate -> /home/build/todo.sr.ht-0.63.12-1-g511779e/debian/python3-todosrht/usr/bin
copying build/scripts-3.9/todosrht-initdb -> /home/build/todo.sr.ht-0.63.12-1-g511779e/debian/python3-todosrht/usr/bin
changing mode of /home/build/todo.sr.ht-0.63.12-1-g511779e/debian/python3-todosrht/usr/bin/todosrht-lmtp to 755
changing mode of /home/build/todo.sr.ht-0.63.12-1-g511779e/debian/python3-todosrht/usr/bin/todosrht-migrate to 755
changing mode of /home/build/todo.sr.ht-0.63.12-1-g511779e/debian/python3-todosrht/usr/bin/todosrht-initdb 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/todo.sr.ht-0.63.12-1-g511779e'
dh_installsystemd
dh_installsystemd --name srht-todo-lmtp
dh_installsystemd --name srht-todo-webhooks
make[1]: Leaving directory '/home/build/todo.sr.ht-0.63.12-1-g511779e'
dh_perl -O--buildsystem=pybuild
dh_link -O--buildsystem=pybuild
dh_strip_nondeterminism -O--buildsystem=pybuild
dh_compress -O--buildsystem=pybuild
dh_fixperms -O--buildsystem=pybuild
dh_missing -O--buildsystem=pybuild
dh_installdeb -O--buildsystem=pybuild
dh_gencontrol -O--buildsystem=pybuild
dh_md5sums -O--buildsystem=pybuild
dh_builddeb -O--buildsystem=pybuild
dpkg-deb: building package 'python3-todosrht' in '../python3-todosrht_0.63.12-1-g511779e-1_all.deb'.
dpkg-deb: building package 'srht-todo' in '../srht-todo_0.63.12-1-g511779e-1_all.deb'.
dpkg-genbuildinfo
dpkg-genchanges -si >../todo.sr.ht_0.63.12-1-g511779e-1_amd64.changes
dpkg-genchanges: info: including full source code in upload
dpkg-source --after-build .
dpkg-source: info: using options from todo.sr.ht-0.63.12-1-g511779e/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... Done
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* libpq5* libsass1* node-balanced-match*
node-brace-expansion* node-clean-css* node-commander* node-fs.realpath*
node-glob* node-inflight* node-inherits* node-minimatch* node-once*
node-path-is-absolute* node-source-map* node-wrappy* nodejs*
python-babel-localedata* python3-alembic* python3-all* python3-anyjson*
python3-arrow* python3-attr* python3-babel* python3-bleach* python3-bs4*
python3-cffi* python3-click* python3-colorama* python3-dateutil*
python3-decorator* python3-editor* python3-flask* python3-html5lib*
python3-humanize* python3-importlib-metadata* python3-infinity*
python3-iniconfig* python3-itsdangerous* python3-jinja2* python3-mako*
python3-markdown* python3-markupsafe* python3-mistletoe*
python3-more-itertools* python3-packaging* python3-pgpy* python3-pluggy*
python3-ply* python3-prometheus-client* python3-psycopg2*
python3-psycopg2cffi* python3-py* python3-pyasn1* python3-pycparser*
python3-pyparsing* python3-pytest* python3-redis* python3-soupsieve*
python3-sqlalchemy* python3-sqlalchemy-utils* python3-srht* python3-toml*
python3-tz* python3-webencodings* python3-werkzeug* python3-zipp* sassc*
todo.sr.ht-build-deps*
0 upgraded, 0 newly installed, 80 to remove and 10 not upgraded.
After this operation, 97.1 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 ... 31872 files and directories currently installed.)
Removing todo.sr.ht-build-deps (0.63.12-1-g511779e-1) ...
Removing cleancss (4.2.3+~4.3.0-1) ...
Removing dh-python (4.20201102) ...
Removing dh-sysuser (1.3.5.1) ...
Removing equivs (2.3.1) ...
Removing libjs-bootstrap4 (4.5.2+dfsg1-6) ...
Removing libjs-popper.js (1.16.1+ds-3) ...
Removing javascript-common (11+nmu1) ...
Removing node-glob (7.1.6+~7.1.3-1) ...
Removing node-inflight (1.0.6-1.1) ...
Removing node-once (1.4.0-3) ...
Removing node-wrappy (1.0.2-1.1) ...
Removing node-path-is-absolute (2.0.0-1) ...
Removing node-inherits (2.0.4-1) ...
Removing libjs-inherits (2.0.4-1) ...
Removing python3-srht (0.66.19-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.5-7) ...
Removing node-clean-css (4.2.3+~4.3.0-1) ...
Removing node-source-map (0.7.0++dfsg2+really.0.6.1-7) ...
Removing libjs-source-map (0.7.0++dfsg2+really.0.6.1-7) ...
Removing python3-sqlalchemy-utils (0.36.8-4) ...
Removing python3-psycopg2cffi (2.8.1-2) ...
Removing python3-psycopg2 (2.8.6-2) ...
Removing libpq5:amd64 (13.2-1) ...
Removing sassc (3.6.1+20201027-1) ...
Removing libsass1:amd64 (3.6.4+20201122-1) ...
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 (6.2.1-2) ...
Removing node-fs.realpath (1.0.0-1.1) ...
Removing python3-babel (2.8.0+dfsg.1-6) ...
Removing python-babel-localedata (2.8.0+dfsg.1-6) ...
Removing python3-alembic (1.4.3-1) ...
Removing python3-all (3.9.1-1) ...
Removing python3-anyjson (0.3.3-2) ...
Removing python3-arrow (0.17.0-1) ...
Removing python3-pytest (6.0.2-2) ...
Removing python3-attr (20.3.0-1) ...
Removing python3-bleach (3.2.1-2) ...
Removing python3-bs4 (4.9.3-1) ...
Removing python3-cffi (1.14.5-1) ...
Removing python3-click (7.1.2-1) ...
Removing python3-colorama (0.4.4-1) ...
Removing python3-dateutil (2.8.1-5) ...
Removing python3-prometheus-client (0.9.0-1) ...
Removing python3-decorator (4.4.2-2) ...
Removing python3-editor (1.0.3-2) ...
Removing python3-html5lib (1.1-3) ...
Removing python3-humanize (3.2.0-1) ...
Removing python3-pluggy (0.13.0-6) ...
Removing python3-importlib-metadata (1.6.0-2) ...
Removing python3-infinity (1.5-2) ...
Removing python3-iniconfig (1.1.1-1) ...
Removing python3-itsdangerous (1.1.0-3) ...
Removing python3-jinja2 (2.11.2-1) ...
Removing python3-mako (1.1.3+ds1-2) ...
Removing python3-markdown (3.3.3-1) ...
Removing python3-markupsafe (1.1.1-1+b3) ...
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.9-2) ...
Removing python3-pgpy (0.5.3-3) ...
Removing python3-pycparser (2.20-3) ...
Removing python3-ply (3.11-4) ...
Removing python3-py (1.10.0-1) ...
Removing python3-pyasn1 (0.4.8-1) ...
Removing python3-pyparsing (2.4.7-1) ...
Removing python3-redis (3.5.3-2) ...
Removing python3-soupsieve (2.2-1) ...
Removing python3-sqlalchemy (1.3.22+ds1-1) ...
Removing python3-toml (0.10.1-1) ...
Removing python3-tz (2021.1-1) ...
Removing python3-webencodings (0.5.1-2) ...
Removing nodejs (12.20.2~dfsg-2) ...
Removing libnode72:amd64 (12.20.2~dfsg-2) ...
Removing libc-ares2:amd64 (1.17.1-1) ...
Processing triggers for man-db (2.9.4-2) ...
Processing triggers for libc-bin (2.31-9) ...
(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 ... 28098 files and directories currently installed.)
Purging configuration files for javascript-common (11+nmu1) ...
Purging configuration files for libjs-popper.js (1.16.1+ds-3) ...
Purging configuration files for libjs-bootstrap4 (4.5.2+dfsg1-6) ...
Purging configuration files for libjs-jquery (3.5.1+dfsg+~3.5.5-7) ...
python3-todosrht_0.63.12-1-g511779e-1_all.deb
---------------------------------------------
new Debian package, version 2.0.
size 198284 bytes: control archive=4732 bytes.
513 bytes, 16 lines control
13284 bytes, 130 lines md5sums
271 bytes, 12 lines * postinst #!/bin/sh
406 bytes, 12 lines * prerm #!/bin/sh
Package: python3-todosrht
Source: todo.sr.ht
Version: 0.63.12-1-g511779e-1
Architecture: all
Maintainer: Denis Laxalde <denis@laxalde.org>
Installed-Size: 1353
Depends: python3-pystache, python3-srht, python3:any (>= 3.7~)
Section: misc
Priority: optional
Homepage: https://sourcehut.org/
Description: todo 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 todo (ticket tracker) library for
Python 3.
drwxr-xr-x root/root 0 2021-02-21 19:39 ./
drwxr-xr-x root/root 0 2021-02-21 19:39 ./usr/
drwxr-xr-x root/root 0 2021-02-21 19:39 ./usr/bin/
-rwxr-xr-x root/root 907 2021-02-21 19:39 ./usr/bin/todosrht-initdb
-rwxr-xr-x root/root 14872 2021-02-21 19:39 ./usr/bin/todosrht-lmtp
-rwxr-xr-x root/root 137 2021-02-21 19:39 ./usr/bin/todosrht-migrate
drwxr-xr-x root/root 0 2021-02-21 19:39 ./usr/lib/
drwxr-xr-x root/root 0 2021-02-21 19:39 ./usr/lib/python3/
drwxr-xr-x root/root 0 2021-02-21 19:39 ./usr/lib/python3/dist-packages/
drwxr-xr-x root/root 0 2021-02-21 19:39 ./usr/lib/python3/dist-packages/todosrht/
-rw-r--r-- root/root 2352 2021-02-21 19:39 ./usr/lib/python3/dist-packages/todosrht/access.py
drwxr-xr-x root/root 0 2021-02-21 19:39 ./usr/lib/python3/dist-packages/todosrht/alembic/
-rw-r--r-- root/root 74 2021-02-21 19:39 ./usr/lib/python3/dist-packages/todosrht/alembic/env.py
drwxr-xr-x root/root 0 2021-02-21 19:39 ./usr/lib/python3/dist-packages/todosrht/alembic/versions/
-rw-r--r-- root/root 4452 2021-02-21 19:39 ./usr/lib/python3/dist-packages/todosrht/alembic/versions/01ed05041614_add_webhook_tables.py
-rw-r--r-- root/root 1049 2021-02-21 19:39 ./usr/lib/python3/dist-packages/todosrht/alembic/versions/030c8f83a75d_add_ticket_assignee.py
-rw-r--r-- root/root 607 2021-02-21 19:39 ./usr/lib/python3/dist-packages/todosrht/alembic/versions/0494a51dbfd0_add_user_mixin_properties.py
-rw-r--r-- root/root 637 2021-02-21 19:39 ./usr/lib/python3/dist-packages/todosrht/alembic/versions/074182407bb2_remove_self-referencing_ticket_mention_events.py
-rw-r--r-- root/root 859 2021-02-21 19:39 ./usr/lib/python3/dist-packages/todosrht/alembic/versions/0ba3b223e552_add_oauthtoken_table.py
-rw-r--r-- root/root 1012 2021-02-21 19:39 ./usr/lib/python3/dist-packages/todosrht/alembic/versions/132ee194cefe_add_events.py
-rw-r--r-- root/root 2053 2021-02-21 19:39 ./usr/lib/python3/dist-packages/todosrht/alembic/versions/237974dd94c4_add_tracker_scoped_ticket_ids.py
-rw-r--r-- root/root 947 2021-02-21 19:39 ./usr/lib/python3/dist-packages/todosrht/alembic/versions/3a0a7407fb50_add_label.py
-rw-r--r-- root/root 455 2021-02-21 19:39 ./usr/lib/python3/dist-packages/todosrht/alembic/versions/3a9cb6757f59_add_user_notify_self.py
-rw-r--r-- root/root 5692 2021-02-21 19:39 ./usr/lib/python3/dist-packages/todosrht/alembic/versions/4631a2317dd0_migrate_users_to_participants.py
-rw-r--r-- root/root 835 2021-02-21 19:39 ./usr/lib/python3/dist-packages/todosrht/alembic/versions/4b32d0e0603d_add_authenticity_column_to_tickets_.py
-rw-r--r-- root/root 1986 2021-02-21 19:39 ./usr/lib/python3/dist-packages/todosrht/alembic/versions/5fb6db84ce55_add_tracker_subscriptions.py
-rw-r--r-- root/root 2712 2021-02-21 19:39 ./usr/lib/python3/dist-packages/todosrht/alembic/versions/6169a5600336_split_event_table_in_two.py
-rw-r--r-- root/root 4151 2021-02-21 19:39 ./usr/lib/python3/dist-packages/todosrht/alembic/versions/61e241dc978c_add_cascade_to_tracker_ticket_webhooks.py
-rw-r--r-- root/root 729 2021-02-21 19:39 ./usr/lib/python3/dist-packages/todosrht/alembic/versions/6742af305c73_clean_no-comment_isostatus-change_events.py
-rw-r--r-- root/root 4099 2021-02-21 19:39 ./usr/lib/python3/dist-packages/todosrht/alembic/versions/6c714f704591_add_core_sr_ht_cascades_to_tracker_.py
-rw-r--r-- root/root 3919 2021-02-21 19:39 ./usr/lib/python3/dist-packages/todosrht/alembic/versions/75ff2f7624fd_new_event_fields.py
-rw-r--r-- root/root 549 2021-02-21 19:39 ./usr/lib/python3/dist-packages/todosrht/alembic/versions/a8cb241798dc_.py
-rw-r--r-- root/root 652 2021-02-21 19:39 ./usr/lib/python3/dist-packages/todosrht/alembic/versions/afece1d17451_add_last_view_table.py
-rw-r--r-- root/root 633 2021-02-21 19:39 ./usr/lib/python3/dist-packages/todosrht/alembic/versions/bd06de76eb15_add_assigned_user_events.py
-rw-r--r-- root/root 423 2021-02-21 19:39 ./usr/lib/python3/dist-packages/todosrht/alembic/versions/bdf809d6a775_drop_user_agent_from_tickets.py
-rw-r--r-- root/root 530 2021-02-21 19:39 ./usr/lib/python3/dist-packages/todosrht/alembic/versions/c32f13924e46_add_superceeded_by_id_column_to_ticket_.py
-rw-r--r-- root/root 492 2021-02-21 19:39 ./usr/lib/python3/dist-packages/todosrht/alembic/versions/c7146cb70d6b_.py
-rw-r--r-- root/root 3296 2021-02-21 19:39 ./usr/lib/python3/dist-packages/todosrht/alembic/versions/cb9732f3364c_clear_defaults_from_tickets_to_support_.py
-rw-r--r-- root/root 11526 2021-02-21 19:39 ./usr/lib/python3/dist-packages/todosrht/alembic/versions/cd94e721e6b0_add_cascade_to_tracker_deletions.py
-rw-r--r-- root/root 857 2021-02-21 19:39 ./usr/lib/python3/dist-packages/todosrht/alembic/versions/cf222857edec_add_ticket_label.py
-rw-r--r-- root/root 1218 2021-02-21 19:39 ./usr/lib/python3/dist-packages/todosrht/alembic/versions/d54ed600c4bf_add_user_access.py
-rw-r--r-- root/root 2016 2021-02-21 19:39 ./usr/lib/python3/dist-packages/todosrht/alembic/versions/ec0b84a86165_add_user_type_to_user.py
-rw-r--r-- root/root 182 2021-02-21 19:39 ./usr/lib/python3/dist-packages/todosrht/app.py
drwxr-xr-x root/root 0 2021-02-21 19:39 ./usr/lib/python3/dist-packages/todosrht/blueprints/
drwxr-xr-x root/root 0 2021-02-21 19:39 ./usr/lib/python3/dist-packages/todosrht/blueprints/api/
-rw-r--r-- root/root 1290 2021-02-21 19:39 ./usr/lib/python3/dist-packages/todosrht/blueprints/api/__init__.py
-rw-r--r-- root/root 321 2021-02-21 19:39 ./usr/lib/python3/dist-packages/todosrht/blueprints/api/internal.py
-rw-r--r-- root/root 14757 2021-02-21 19:39 ./usr/lib/python3/dist-packages/todosrht/blueprints/api/tickets.py
-rw-r--r-- root/root 5319 2021-02-21 19:39 ./usr/lib/python3/dist-packages/todosrht/blueprints/api/trackers.py
-rw-r--r-- root/root 5849 2021-02-21 19:39 ./usr/lib/python3/dist-packages/todosrht/blueprints/html.py
-rw-r--r-- root/root 10951 2021-02-21 19:39 ./usr/lib/python3/dist-packages/todosrht/blueprints/settings.py
-rw-r--r-- root/root 17810 2021-02-21 19:39 ./usr/lib/python3/dist-packages/todosrht/blueprints/ticket.py
-rw-r--r-- root/root 13229 2021-02-21 19:39 ./usr/lib/python3/dist-packages/todosrht/blueprints/tracker.py
-rw-r--r-- root/root 1687 2021-02-21 19:39 ./usr/lib/python3/dist-packages/todosrht/color.py
-rw-r--r-- root/root 1172 2021-02-21 19:39 ./usr/lib/python3/dist-packages/todosrht/email.py
drwxr-xr-x root/root 0 2021-02-21 19:39 ./usr/lib/python3/dist-packages/todosrht/emails/
-rw-r--r-- root/root 93 2021-02-21 19:39 ./usr/lib/python3/dist-packages/todosrht/emails/new_ticket
-rw-r--r-- root/root 127 2021-02-21 19:39 ./usr/lib/python3/dist-packages/todosrht/emails/ticket_assigned
-rw-r--r-- root/root 151 2021-02-21 19:39 ./usr/lib/python3/dist-packages/todosrht/emails/ticket_comment
-rw-r--r-- root/root 141 2021-02-21 19:39 ./usr/lib/python3/dist-packages/todosrht/emails/ticket_mention
-rw-r--r-- root/root 2183 2021-02-21 19:39 ./usr/lib/python3/dist-packages/todosrht/export.py
-rw-r--r-- root/root 3821 2021-02-21 19:39 ./usr/lib/python3/dist-packages/todosrht/filters.py
-rw-r--r-- root/root 2041 2021-02-21 19:39 ./usr/lib/python3/dist-packages/todosrht/flask.py
-rw-r--r-- root/root 2842 2021-02-21 19:39 ./usr/lib/python3/dist-packages/todosrht/search.py
-rw-r--r-- root/root 743 2021-02-21 19:39 ./usr/lib/python3/dist-packages/todosrht/service.py
drwxr-xr-x root/root 0 2021-02-21 19:39 ./usr/lib/python3/dist-packages/todosrht/static/
-rw-r--r-- root/root 8705 2021-02-21 19:39 ./usr/lib/python3/dist-packages/todosrht/static/codemirror.css
-rw-r--r-- root/root 398722 2021-02-21 19:39 ./usr/lib/python3/dist-packages/todosrht/static/codemirror.js
drwxr-xr-x root/root 0 2021-02-21 19:39 ./usr/lib/python3/dist-packages/todosrht/static/icons/
-rw-r--r-- root/root 1548 2021-02-21 19:39 ./usr/lib/python3/dist-packages/todosrht/static/icons/LICENSE.txt
-rw-r--r-- root/root 308 2021-02-21 19:39 ./usr/lib/python3/dist-packages/todosrht/static/icons/README
-rw-r--r-- root/root 334 2021-02-21 19:39 ./usr/lib/python3/dist-packages/todosrht/static/icons/arrow-right.svg
-rw-r--r-- root/root 241 2021-02-21 19:39 ./usr/lib/python3/dist-packages/todosrht/static/icons/caret-left.svg
-rw-r--r-- root/root 233 2021-02-21 19:39 ./usr/lib/python3/dist-packages/todosrht/static/icons/caret-right.svg
-rw-r--r-- root/root 355 2021-02-21 19:39 ./usr/lib/python3/dist-packages/todosrht/static/icons/check.svg
-rw-r--r-- root/root 549 2021-02-21 19:39 ./usr/lib/python3/dist-packages/todosrht/static/icons/circle-notch.svg
-rw-r--r-- root/root 150 2021-02-21 19:39 ./usr/lib/python3/dist-packages/todosrht/static/icons/circle-solid.svg
-rw-r--r-- root/root 233 2021-02-21 19:39 ./usr/lib/python3/dist-packages/todosrht/static/icons/circle.svg
-rw-r--r-- root/root 405 2021-02-21 19:39 ./usr/lib/python3/dist-packages/todosrht/static/icons/clock.svg
-rw-r--r-- root/root 756 2021-02-21 19:39 ./usr/lib/python3/dist-packages/todosrht/static/icons/code-branch.svg
-rw-r--r-- root/root 972 2021-02-21 19:39 ./usr/lib/python3/dist-packages/todosrht/static/icons/comments-o.svg
-rw-r--r-- root/root 580 2021-02-21 19:39 ./usr/lib/python3/dist-packages/todosrht/static/icons/comments.svg
-rw-r--r-- root/root 575 2021-02-21 19:39 ./usr/lib/python3/dist-packages/todosrht/static/icons/envelope-o.svg
-rw-r--r-- root/root 708 2021-02-21 19:39 ./usr/lib/python3/dist-packages/todosrht/static/icons/exclamation-triangle.svg
-rw-r--r-- root/root 605 2021-02-21 19:39 ./usr/lib/python3/dist-packages/todosrht/static/icons/external-link-alt.svg
-rw-r--r-- root/root 511 2021-02-21 19:39 ./usr/lib/python3/dist-packages/todosrht/static/icons/file-alt.svg
-rw-r--r-- root/root 268 2021-02-21 19:39 ./usr/lib/python3/dist-packages/todosrht/static/icons/file.svg
-rw-r--r-- root/root 208 2021-02-21 19:39 ./usr/lib/python3/dist-packages/todosrht/static/icons/folder.svg
-rw-r--r-- root/root 1385 2021-02-21 19:39 ./usr/lib/python3/dist-packages/todosrht/static/icons/github.svg
-rw-r--r-- root/root 682 2021-02-21 19:39 ./usr/lib/python3/dist-packages/todosrht/static/icons/gitlab.svg
-rw-r--r-- root/root 197 2021-02-21 19:39 ./usr/lib/python3/dist-packages/todosrht/static/icons/minus.svg
-rw-r--r-- root/root 355 2021-02-21 19:39 ./usr/lib/python3/dist-packages/todosrht/static/icons/plus-circle.svg
-rw-r--r-- root/root 481 2021-02-21 19:39 ./usr/lib/python3/dist-packages/todosrht/static/icons/plus-square.svg
-rw-r--r-- root/root 320 2021-02-21 19:39 ./usr/lib/python3/dist-packages/todosrht/static/icons/plus.svg
-rw-r--r-- root/root 830 2021-02-21 19:39 ./usr/lib/python3/dist-packages/todosrht/static/icons/question-circle.svg
-rw-r--r-- root/root 402 2021-02-21 19:39 ./usr/lib/python3/dist-packages/todosrht/static/icons/reply.svg
-rw-r--r-- root/root 723 2021-02-21 19:39 ./usr/lib/python3/dist-packages/todosrht/static/icons/rss.svg
-rw-r--r-- root/root 496 2021-02-21 19:39 ./usr/lib/python3/dist-packages/todosrht/static/icons/times.svg
-rw-r--r-- root/root 337 2021-02-21 19:39 ./usr/lib/python3/dist-packages/todosrht/static/icons/user.svg
-rw-r--r-- root/root 211000 2021-02-21 19:39 ./usr/lib/python3/dist-packages/todosrht/static/main.css
-rw-r--r-- root/root 164699 2021-02-21 19:39 ./usr/lib/python3/dist-packages/todosrht/static/main.min.6a82eb91.css
-rw-r--r-- root/root 164699 2021-02-21 19:39 ./usr/lib/python3/dist-packages/todosrht/static/main.min.css
-rw-r--r-- root/root 8044 2021-02-21 19:39 ./usr/lib/python3/dist-packages/todosrht/static/simple.js
drwxr-xr-x root/root 0 2021-02-21 19:39 ./usr/lib/python3/dist-packages/todosrht/templates/
-rw-r--r-- root/root 1937 2021-02-21 19:39 ./usr/lib/python3/dist-packages/todosrht/templates/autocomplete.js
-rw-r--r-- root/root 2984 2021-02-21 19:39 ./usr/lib/python3/dist-packages/todosrht/templates/dashboard.html
-rw-r--r-- root/root 6475 2021-02-21 19:39 ./usr/lib/python3/dist-packages/todosrht/templates/edit-comment.html
-rw-r--r-- root/root 2442 2021-02-21 19:39 ./usr/lib/python3/dist-packages/todosrht/templates/edit_ticket.html
-rw-r--r-- root/root 2852 2021-02-21 19:39 ./usr/lib/python3/dist-packages/todosrht/templates/events.html
-rw-r--r-- root/root 996 2021-02-21 19:39 ./usr/lib/python3/dist-packages/todosrht/templates/index.html
-rw-r--r-- root/root 1384 2021-02-21 19:39 ./usr/lib/python3/dist-packages/todosrht/templates/settings.html
-rw-r--r-- root/root 16854 2021-02-21 19:39 ./usr/lib/python3/dist-packages/todosrht/templates/ticket.html
-rw-r--r-- root/root 6319 2021-02-21 19:39 ./usr/lib/python3/dist-packages/todosrht/templates/tracker-access.html
-rw-r--r-- root/root 1688 2021-02-21 19:39 ./usr/lib/python3/dist-packages/todosrht/templates/tracker-create.html
-rw-r--r-- root/root 733 2021-02-21 19:39 ./usr/lib/python3/dist-packages/todosrht/templates/tracker-delete.html
-rw-r--r-- root/root 1384 2021-02-21 19:39 ./usr/lib/python3/dist-packages/todosrht/templates/tracker-details.html
-rw-r--r-- root/root 3391 2021-02-21 19:39 ./usr/lib/python3/dist-packages/todosrht/templates/tracker-import-export.html
-rw-r--r-- root/root 2262 2021-02-21 19:39 ./usr/lib/python3/dist-packages/todosrht/templates/tracker-label-edit.html
-rw-r--r-- root/root 3720 2021-02-21 19:39 ./usr/lib/python3/dist-packages/todosrht/templates/tracker-labels.html
-rw-r--r-- root/root 7805 2021-02-21 19:39 ./usr/lib/python3/dist-packages/todosrht/templates/tracker.html
-rw-r--r-- root/root 1677 2021-02-21 19:39 ./usr/lib/python3/dist-packages/todosrht/templates/trackers.html
-rw-r--r-- root/root 18541 2021-02-21 19:39 ./usr/lib/python3/dist-packages/todosrht/tickets.py
-rw-r--r-- root/root 8908 2021-02-21 19:39 ./usr/lib/python3/dist-packages/todosrht/tracker_import.py
-rw-r--r-- root/root 614 2021-02-21 19:39 ./usr/lib/python3/dist-packages/todosrht/trackers.py
drwxr-xr-x root/root 0 2021-02-21 19:39 ./usr/lib/python3/dist-packages/todosrht/types/
-rw-r--r-- root/root 1053 2021-02-21 19:39 ./usr/lib/python3/dist-packages/todosrht/types/__init__.py
-rw-r--r-- root/root 4177 2021-02-21 19:39 ./usr/lib/python3/dist-packages/todosrht/types/event.py
-rw-r--r-- root/root 2339 2021-02-21 19:39 ./usr/lib/python3/dist-packages/todosrht/types/label.py
-rw-r--r-- root/root 2774 2021-02-21 19:39 ./usr/lib/python3/dist-packages/todosrht/types/participant.py
-rw-r--r-- root/root 4807 2021-02-21 19:39 ./usr/lib/python3/dist-packages/todosrht/types/ticket.py
-rw-r--r-- root/root 195 2021-02-21 19:39 ./usr/lib/python3/dist-packages/todosrht/types/ticketaccess.py
-rw-r--r-- root/root 921 2021-02-21 19:39 ./usr/lib/python3/dist-packages/todosrht/types/ticketassignee.py
-rw-r--r-- root/root 1959 2021-02-21 19:39 ./usr/lib/python3/dist-packages/todosrht/types/ticketcomment.py
-rw-r--r-- root/root 783 2021-02-21 19:39 ./usr/lib/python3/dist-packages/todosrht/types/ticketseen.py
-rw-r--r-- root/root 420 2021-02-21 19:39 ./usr/lib/python3/dist-packages/todosrht/types/ticketstatus.py
-rw-r--r-- root/root 1348 2021-02-21 19:39 ./usr/lib/python3/dist-packages/todosrht/types/ticketsubscription.py
-rw-r--r-- root/root 4873 2021-02-21 19:39 ./usr/lib/python3/dist-packages/todosrht/types/tracker.py
-rw-r--r-- root/root 1007 2021-02-21 19:39 ./usr/lib/python3/dist-packages/todosrht/types/useraccess.py
-rw-r--r-- root/root 3264 2021-02-21 19:39 ./usr/lib/python3/dist-packages/todosrht/urls.py
-rw-r--r-- root/root 1519 2021-02-21 19:39 ./usr/lib/python3/dist-packages/todosrht/webhooks.py
drwxr-xr-x root/root 0 2021-02-21 19:39 ./usr/lib/python3/dist-packages/todosrht-0.63.12.egg-info/
-rw-r--r-- root/root 239 2021-02-21 19:39 ./usr/lib/python3/dist-packages/todosrht-0.63.12.egg-info/PKG-INFO
-rw-r--r-- root/root 1 2021-02-21 19:39 ./usr/lib/python3/dist-packages/todosrht-0.63.12.egg-info/dependency_links.txt
-rw-r--r-- root/root 0 2021-02-21 19:39 ./usr/lib/python3/dist-packages/todosrht-0.63.12.egg-info/requires.txt
-rw-r--r-- root/root 9 2021-02-21 19:39 ./usr/lib/python3/dist-packages/todosrht-0.63.12.egg-info/top_level.txt
drwxr-xr-x root/root 0 2021-02-21 19:39 ./usr/share/
drwxr-xr-x root/root 0 2021-02-21 19:39 ./usr/share/doc/
drwxr-xr-x root/root 0 2021-02-21 19:39 ./usr/share/doc/python3-todosrht/
-rw-r--r-- root/root 592 2021-02-21 19:39 ./usr/share/doc/python3-todosrht/changelog.Debian.gz
-rw-r--r-- root/root 35623 2021-02-21 19:39 ./usr/share/doc/python3-todosrht/copyright
srht-todo_0.63.12-1-g511779e-1_all.deb
--------------------------------------
new Debian package, version 2.0.
size 15872 bytes: control archive=1776 bytes.
522 bytes, 16 lines control
529 bytes, 7 lines md5sums
4564 bytes, 117 lines * postinst #!/bin/sh
1994 bytes, 59 lines * postrm #!/bin/sh
865 bytes, 22 lines * prerm #!/bin/sh
Package: srht-todo
Source: todo.sr.ht
Version: 0.63.12-1-g511779e-1
Architecture: all
Maintainer: Denis Laxalde <denis@laxalde.org>
Installed-Size: 64
Depends: sysuser-helper (<< 1.4), python3-todosrht (= 0.63.12-1-g511779e-1), gunicorn
Recommends: postgresql
Section: misc
Priority: optional
Homepage: https://sourcehut.org/
Description: todo service for sr.ht
Sourcehut (a.k.a. sr.ht) is a software suite for managing your software
development projects.
.
This package installs the ticket tracking service of sr.ht.
drwxr-xr-x root/root 0 2021-02-21 19:39 ./
drwxr-xr-x root/root 0 2021-02-21 19:39 ./etc/
drwxr-xr-x root/root 0 2021-02-21 19:39 ./etc/sr.ht/
drwxr-xr-x root/root 0 2021-02-21 19:39 ./lib/
drwxr-xr-x root/root 0 2021-02-21 19:39 ./lib/systemd/
drwxr-xr-x root/root 0 2021-02-21 19:39 ./lib/systemd/system/
-rw-r--r-- root/root 245 2021-02-21 19:39 ./lib/systemd/system/srht-todo-lmtp.service
-rw-r--r-- root/root 294 2021-02-21 19:39 ./lib/systemd/system/srht-todo-webhooks.service
-rw-r--r-- root/root 267 2021-02-21 19:39 ./lib/systemd/system/srht-todo.service
drwxr-xr-x root/root 0 2021-02-21 19:39 ./usr/
drwxr-xr-x root/root 0 2021-02-21 19:39 ./usr/share/
drwxr-xr-x root/root 0 2021-02-21 19:39 ./usr/share/doc/
drwxr-xr-x root/root 0 2021-02-21 19:39 ./usr/share/doc/srht-todo/
-rw-r--r-- root/root 25 2021-02-21 19:39 ./usr/share/doc/srht-todo/TODO.Debian
-rw-r--r-- root/root 592 2021-02-21 19:39 ./usr/share/doc/srht-todo/changelog.Debian.gz
-rw-r--r-- root/root 35623 2021-02-21 19:39 ./usr/share/doc/srht-todo/copyright
drwxr-xr-x root/root 0 2021-02-21 19:39 ./usr/share/doc/srht-todo/examples/
-rw-r--r-- root/root 3520 2021-02-21 19:39 ./usr/share/doc/srht-todo/examples/config.example.ini
./pkgkit: line 36: lintian: command not found
Reading package lists... 0%
Reading package lists... 0%
Reading package lists... 92%
Reading package lists... 92%
Reading package lists... 92%
Reading package lists... Done
Building dependency tree... 0%
Building dependency tree... 0%
Building dependency tree... 50%
Building dependency tree... 50%
Building dependency tree... Done
Reading state information... 0%
Reading state information... 0%
Reading state information... Done
Note, selecting 'python3-todosrht' instead of '../python3-todosrht_0.63.12-1-g511779e-1_all.deb'
Note, selecting 'srht-todo' instead of '../srht-todo_0.63.12-1-g511779e-1_all.deb'
The following additional packages will be installed:
gunicorn libjs-jquery libpq5 python-babel-localedata python3-alembic
python3-anyjson python3-arrow python3-babel python3-bleach python3-bs4
python3-cffi python3-click python3-colorama python3-dateutil
python3-decorator python3-editor python3-flask python3-gunicorn
python3-html5lib python3-humanize python3-infinity python3-itsdangerous
python3-jinja2 python3-mako python3-markdown python3-markupsafe
python3-mistletoe python3-packaging python3-pgpy python3-ply
python3-prometheus-client python3-psycopg2 python3-psycopg2cffi
python3-pyasn1 python3-pycparser python3-pyparsing python3-pystache
python3-redis python3-soupsieve python3-sqlalchemy python3-sqlalchemy-utils
python3-srht python3-tz python3-webencodings python3-werkzeug sysuser-helper
Suggested packages:
python3-pastedeploy python3-setproctitle python3-tornado python-arrow-doc
python-bleach-doc python3-dev python-flask-doc python3-genshi python3-lxml
python-jinja2-doc python3-beaker python-mako-doc python-markdown-doc
python-ply-doc python-psycopg2-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 libjs-jquery libpq5 python-babel-localedata python3-alembic
python3-anyjson python3-arrow python3-babel python3-bleach python3-bs4
python3-cffi python3-click python3-colorama python3-dateutil
python3-decorator python3-editor python3-flask python3-gunicorn
python3-html5lib python3-humanize python3-infinity python3-itsdangerous
python3-jinja2 python3-mako python3-markdown python3-markupsafe
python3-mistletoe python3-packaging python3-pgpy python3-ply
python3-prometheus-client python3-psycopg2 python3-psycopg2cffi
python3-pyasn1 python3-pycparser python3-pyparsing python3-pystache
python3-redis python3-soupsieve python3-sqlalchemy python3-sqlalchemy-utils
python3-srht python3-todosrht python3-tz python3-webencodings
python3-werkzeug srht-todo sysuser-helper
0 upgraded, 48 newly installed, 0 to remove and 10 not upgraded.
Need to get 121 kB/9100 kB of archives.
After this operation, 47.0 MB of additional disk space will be used.
95% [Working]
Get:1 /home/build/python3-todosrht_0.63.12-1-g511779e-1_all.deb python3-todosrht all 0.63.12-1-g511779e-1 [198 kB]
95% [1 python3-todosrht 0 B/198 kB 0%]
97% [Working]
Get:2 /home/build/srht-todo_0.63.12-1-g511779e-1_all.deb srht-todo all 0.63.12-1-g511779e-1 [15.9 kB]
97% [2 srht-todo 0 B/15.9 kB 0%]
97% [Working]
Get:3 http://deb.debian.org/debian sid/main amd64 python3-gunicorn all 20.1.0-1 [62.8 kB]
97% [3 python3-gunicorn 0 B/62.8 kB 0%]
98% [Working]
Get:4 http://deb.debian.org/debian sid/main amd64 gunicorn all 20.1.0-1 [18.7 kB]
98% [4 gunicorn 0 B/18.7 kB 0%]
99% [Working]
Get:5 http://deb.debian.org/debian sid/main amd64 python3-pystache all 0.5.4-6.1 [35.1 kB]
99% [5 python3-pystache 0 B/35.1 kB 0%]
100% [Working]
Get:6 http://deb.debian.org/debian sid/main amd64 sysuser-helper all 1.3.5.1 [4440 B]
100% [6 sysuser-helper 0 B/4440 B 0%]
100% [Working]
Fetched 121 kB in 0s (342 kB/s)
Extracting templates from packages: 62%
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 ... 28092 files and directories currently installed.)
Preparing to unpack .../00-python3-gunicorn_20.1.0-1_all.deb ...
Unpacking python3-gunicorn (20.1.0-1) ...
Selecting previously unselected package gunicorn.
Preparing to unpack .../01-gunicorn_20.1.0-1_all.deb ...
Unpacking gunicorn (20.1.0-1) ...
Selecting previously unselected package libjs-jquery.
Preparing to unpack .../02-libjs-jquery_3.5.1+dfsg+~3.5.5-7_all.deb ...
Unpacking libjs-jquery (3.5.1+dfsg+~3.5.5-7) ...
Selecting previously unselected package libpq5:amd64.
Preparing to unpack .../03-libpq5_13.2-1_amd64.deb ...
Unpacking libpq5:amd64 (13.2-1) ...
Selecting previously unselected package python-babel-localedata.
Preparing to unpack .../04-python-babel-localedata_2.8.0+dfsg.1-6_all.deb ...
Unpacking python-babel-localedata (2.8.0+dfsg.1-6) ...
Selecting previously unselected package python3-dateutil.
Preparing to unpack .../05-python3-dateutil_2.8.1-5_all.deb ...
Unpacking python3-dateutil (2.8.1-5) ...
Selecting previously unselected package python3-editor.
Preparing to unpack .../06-python3-editor_1.0.3-2_all.deb ...
Unpacking python3-editor (1.0.3-2) ...
Selecting previously unselected package python3-markupsafe.
Preparing to unpack .../07-python3-markupsafe_1.1.1-1+b3_amd64.deb ...
Unpacking python3-markupsafe (1.1.1-1+b3) ...
Selecting previously unselected package python3-mako.
Preparing to unpack .../08-python3-mako_1.1.3+ds1-2_all.deb ...
Unpacking python3-mako (1.1.3+ds1-2) ...
Selecting previously unselected package python3-sqlalchemy.
Preparing to unpack .../09-python3-sqlalchemy_1.3.22+ds1-1_all.deb ...
Unpacking python3-sqlalchemy (1.3.22+ds1-1) ...
Selecting previously unselected package python3-alembic.
Preparing to unpack .../10-python3-alembic_1.4.3-1_all.deb ...
Unpacking python3-alembic (1.4.3-1) ...
Selecting previously unselected package python3-anyjson.
Preparing to unpack .../11-python3-anyjson_0.3.3-2_all.deb ...
Unpacking python3-anyjson (0.3.3-2) ...
Selecting previously unselected package python3-arrow.
Preparing to unpack .../12-python3-arrow_0.17.0-1_all.deb ...
Unpacking python3-arrow (0.17.0-1) ...
Selecting previously unselected package python3-tz.
Preparing to unpack .../13-python3-tz_2021.1-1_all.deb ...
Unpacking python3-tz (2021.1-1) ...
Selecting previously unselected package python3-babel.
Preparing to unpack .../14-python3-babel_2.8.0+dfsg.1-6_all.deb ...
Unpacking python3-babel (2.8.0+dfsg.1-6) ...
Selecting previously unselected package python3-pyparsing.
Preparing to unpack .../15-python3-pyparsing_2.4.7-1_all.deb ...
Unpacking python3-pyparsing (2.4.7-1) ...
Selecting previously unselected package python3-packaging.
Preparing to unpack .../16-python3-packaging_20.9-2_all.deb ...
Unpacking python3-packaging (20.9-2) ...
Selecting previously unselected package python3-webencodings.
Preparing to unpack .../17-python3-webencodings_0.5.1-2_all.deb ...
Unpacking python3-webencodings (0.5.1-2) ...
Selecting previously unselected package python3-html5lib.
Preparing to unpack .../18-python3-html5lib_1.1-3_all.deb ...
Unpacking python3-html5lib (1.1-3) ...
Selecting previously unselected package python3-bleach.
Preparing to unpack .../19-python3-bleach_3.2.1-2_all.deb ...
Unpacking python3-bleach (3.2.1-2) ...
Selecting previously unselected package python3-soupsieve.
Preparing to unpack .../20-python3-soupsieve_2.2-1_all.deb ...
Unpacking python3-soupsieve (2.2-1) ...
Selecting previously unselected package python3-bs4.
Preparing to unpack .../21-python3-bs4_4.9.3-1_all.deb ...
Unpacking python3-bs4 (4.9.3-1) ...
Selecting previously unselected package python3-ply.
Preparing to unpack .../22-python3-ply_3.11-4_all.deb ...
Unpacking python3-ply (3.11-4) ...
Selecting previously unselected package python3-pycparser.
Preparing to unpack .../23-python3-pycparser_2.20-3_all.deb ...
Unpacking python3-pycparser (2.20-3) ...
Selecting previously unselected package python3-cffi.
Preparing to unpack .../24-python3-cffi_1.14.5-1_all.deb ...
Unpacking python3-cffi (1.14.5-1) ...
Selecting previously unselected package python3-colorama.
Preparing to unpack .../25-python3-colorama_0.4.4-1_all.deb ...
Unpacking python3-colorama (0.4.4-1) ...
Selecting previously unselected package python3-click.
Preparing to unpack .../26-python3-click_7.1.2-1_all.deb ...
Unpacking python3-click (7.1.2-1) ...
Selecting previously unselected package python3-decorator.
Preparing to unpack .../27-python3-decorator_4.4.2-2_all.deb ...
Unpacking python3-decorator (4.4.2-2) ...
Selecting previously unselected package python3-itsdangerous.
Preparing to unpack .../28-python3-itsdangerous_1.1.0-3_all.deb ...
Unpacking python3-itsdangerous (1.1.0-3) ...
Selecting previously unselected package python3-jinja2.
Preparing to unpack .../29-python3-jinja2_2.11.2-1_all.deb ...
Unpacking python3-jinja2 (2.11.2-1) ...
Selecting previously unselected package python3-werkzeug.
Preparing to unpack .../30-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 .../31-python3-flask_1.1.2-2_all.deb ...
Unpacking python3-flask (1.1.2-2) ...
Selecting previously unselected package python3-humanize.
Preparing to unpack .../32-python3-humanize_3.2.0-1_all.deb ...
Unpacking python3-humanize (3.2.0-1) ...
Selecting previously unselected package python3-infinity.
Preparing to unpack .../33-python3-infinity_1.5-2_all.deb ...
Unpacking python3-infinity (1.5-2) ...
Selecting previously unselected package python3-markdown.
Preparing to unpack .../34-python3-markdown_3.3.3-1_all.deb ...
Unpacking python3-markdown (3.3.3-1) ...
Selecting previously unselected package python3-mistletoe.
Preparing to unpack .../35-python3-mistletoe_0.7.2-2_all.deb ...
Unpacking python3-mistletoe (0.7.2-2) ...
Selecting previously unselected package python3-pyasn1.
Preparing to unpack .../36-python3-pyasn1_0.4.8-1_all.deb ...
Unpacking python3-pyasn1 (0.4.8-1) ...
Selecting previously unselected package python3-pgpy.
Preparing to unpack .../37-python3-pgpy_0.5.3-3_all.deb ...
Unpacking python3-pgpy (0.5.3-3) ...
Selecting previously unselected package python3-prometheus-client.
Preparing to unpack .../38-python3-prometheus-client_0.9.0-1_all.deb ...
Unpacking python3-prometheus-client (0.9.0-1) ...
Selecting previously unselected package python3-psycopg2.
Preparing to unpack .../39-python3-psycopg2_2.8.6-2_amd64.deb ...
Unpacking python3-psycopg2 (2.8.6-2) ...
Selecting previously unselected package python3-psycopg2cffi.
Preparing to unpack .../40-python3-psycopg2cffi_2.8.1-2_amd64.deb ...
Unpacking python3-psycopg2cffi (2.8.1-2) ...
Selecting previously unselected package python3-pystache.
Preparing to unpack .../41-python3-pystache_0.5.4-6.1_all.deb ...
Unpacking python3-pystache (0.5.4-6.1) ...
Selecting previously unselected package python3-redis.
Preparing to unpack .../42-python3-redis_3.5.3-2_all.deb ...
Unpacking python3-redis (3.5.3-2) ...
Selecting previously unselected package python3-sqlalchemy-utils.
Preparing to unpack .../43-python3-sqlalchemy-utils_0.36.8-4_all.deb ...
Unpacking python3-sqlalchemy-utils (0.36.8-4) ...
Selecting previously unselected package python3-srht.
Preparing to unpack .../44-python3-srht_0.66.19-1_all.deb ...
Unpacking python3-srht (0.66.19-1) ...
Selecting previously unselected package python3-todosrht.
Preparing to unpack .../45-python3-todosrht_0.63.12-1-g511779e-1_all.deb ...
Unpacking python3-todosrht (0.63.12-1-g511779e-1) ...
Selecting previously unselected package sysuser-helper.
Preparing to unpack .../46-sysuser-helper_1.3.5.1_all.deb ...
Unpacking sysuser-helper (1.3.5.1) ...
Selecting previously unselected package srht-todo.
Preparing to unpack .../47-srht-todo_0.63.12-1-g511779e-1_all.deb ...
Unpacking srht-todo (0.63.12-1-g511779e-1) ...
Setting up python3-colorama (0.4.4-1) ...
Setting up python3-ply (3.11-4) ...
Setting up libpq5:amd64 (13.2-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+b3) ...
Setting up python3-webencodings (0.5.1-2) ...
Setting up python3-tz (2021.1-1) ...
Setting up python3-pycparser (2.20-3) ...
Setting up python-babel-localedata (2.8.0+dfsg.1-6) ...
Setting up python3-sqlalchemy (1.3.22+ds1-1) ...
Setting up python3-decorator (4.4.2-2) ...
Setting up python3-jinja2 (2.11.2-1) ...
Setting up python3-pyparsing (2.4.7-1) ...
Setting up python3-markdown (3.3.3-1) ...
Setting up python3-psycopg2 (2.8.6-2) ...
Setting up python3-redis (3.5.3-2) ...
Setting up python3-gunicorn (20.1.0-1) ...
Setting up python3-html5lib (1.1-3) ...
Setting up sysuser-helper (1.3.5.1) ...
Setting up python3-mistletoe (0.7.2-2) ...
Setting up python3-infinity (1.5-2) ...
Setting up python3-pyasn1 (0.4.8-1) ...
Setting up python3-dateutil (2.8.1-5) ...
Setting up python3-anyjson (0.3.3-2) ...
Setting up libjs-jquery (3.5.1+dfsg+~3.5.5-7) ...
Setting up python3-humanize (3.2.0-1) ...
Setting up python3-soupsieve (2.2-1) ...
Setting up python3-pystache (0.5.4-6.1) ...
Setting up python3-mako (1.1.3+ds1-2) ...
Setting up python3-editor (1.0.3-2) ...
Setting up python3-pgpy (0.5.3-3) ...
Setting up python3-arrow (0.17.0-1) ...
Setting up python3-babel (2.8.0+dfsg.1-6) ...
update-alternatives: using /usr/bin/pybabel-python3 to provide /usr/bin/pybabel (pybabel) in auto mode
Setting up python3-cffi (1.14.5-1) ...
Setting up gunicorn (20.1.0-1) ...
Setting up python3-bs4 (4.9.3-1) ...
Setting up python3-psycopg2cffi (2.8.1-2) ...
Setting up python3-prometheus-client (0.9.0-1) ...
Setting up python3-packaging (20.9-2) ...
Setting up python3-werkzeug (1.0.1+dfsg1-2) ...
Setting up python3-alembic (1.4.3-1) ...
Setting up python3-sqlalchemy-utils (0.36.8-4) ...
Setting up python3-flask (1.1.2-2) ...
Setting up python3-bleach (3.2.1-2) ...
Setting up python3-srht (0.66.19-1) ...
Setting up python3-todosrht (0.63.12-1-g511779e-1) ...
Setting up srht-todo (0.63.12-1-g511779e-1) ...
Skipping automatic database migrations
Set [todo.sr.ht]migrate-on-upgrade=yes in config.ini to enable
Skipping automatic database migrations
Set [todo.sr.ht]migrate-on-upgrade=yes in config.ini to enable
Created symlink /etc/systemd/system/multi-user.target.wants/srht-todo.service → /lib/systemd/system/srht-todo.service.
Failed to start srht-todo.service: Unit postgresql.service not found.
Created symlink /etc/systemd/system/multi-user.target.wants/srht-todo-lmtp.service → /lib/systemd/system/srht-todo-lmtp.service.
Failed to start srht-todo-lmtp.service: Unit postgresql.service not found.
Created symlink /etc/systemd/system/multi-user.target.wants/srht-todo-webhooks.service → /lib/systemd/system/srht-todo-webhooks.service.
Failed to start srht-todo-webhooks.service: Unit postgresql.service not found.
Processing triggers for libc-bin (2.31-9) ...
Processing triggers for man-db (2.9.4-2) ...
+ cd /home/build/todo.sr.ht
+ git describe --exact-match HEAD
fatal: no tag exactly matches '511779e6c35a978279bebc585393881d0c3a3ac1'
+ complete-build
+ exit 255
|