Artifact golang-github-teambition-rrule-go_1.8.1-1_amd64-2024-11-22T20:46:15Z

Metadata
bd_uninstallable: null
filename: golang-github-teambition-rrule-go_1.8.1-1_amd64-2024-11-22T20:46:15Z.build
source: golang-github-teambition-rrule-go
version: 1.8.1-1

File

golang-github-teambition-rrule-go_1.8.1-1_amd64-2024-11-22T20:46:15Z.build
   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
1620
1621
1622
1623
1624
1625
1626
1627
1628
1629
1630
1631
1632
1633
1634
1635
1636
1637
1638
1639
1640
1641
1642
1643
1644
1645
1646
1647
1648
1649
1650
1651
1652
1653
1654
1655
1656
1657
1658
1659
1660
1661
1662
1663
1664
1665
1666
1667
1668
1669
1670
1671
1672
1673
1674
1675
1676
1677
1678
1679
1680
1681
1682
1683
1684
1685
1686
1687
1688
1689
1690
1691
1692
1693
1694
1695
1696
1697
1698
1699
1700
1701
1702
1703
1704
1705
1706
1707
1708
1709
1710
1711
1712
1713
1714
1715
1716
1717
1718
1719
1720
1721
1722
1723
1724
1725
1726
1727
1728
1729
1730
1731
1732
1733
1734
1735
1736
1737
1738
1739
1740
1741
1742
1743
1744
1745
1746
1747
1748
1749
1750
1751
1752
1753
1754
1755
1756
1757
1758
1759
1760
1761
1762
1763
1764
1765
1766
1767
1768
1769
1770
1771
1772
1773
1774
1775
1776
1777
1778
1779
1780
1781
1782
1783
1784
1785
1786
1787
1788
1789
1790
1791
1792
1793
1794
1795
1796
1797
1798
1799
1800
1801
1802
1803
1804
1805
1806
1807
1808
1809
1810
1811
1812
1813
1814
1815
1816
1817
1818
1819
1820
1821
1822
1823
1824
1825
1826
1827
1828
1829
1830
1831
1832
1833
1834
1835
1836
1837
1838
1839
1840
1841
1842
1843
1844
1845
1846
1847
1848
1849
1850
1851
1852
1853
1854
1855
1856
1857
1858
1859
1860
1861
1862
1863
1864
1865
1866
1867
1868
1869
1870
1871
1872
1873
1874
1875
1876
1877
1878
1879
1880
1881
1882
1883
1884
1885
1886
1887
1888
1889
1890
1891
1892
1893
1894
1895
1896
1897
1898
1899
1900
1901
1902
1903
1904
1905
1906
1907
1908
1909
1910
1911
1912
1913
1914
1915
1916
1917
1918
1919
1920
1921
1922
1923
1924
1925
1926
1927
1928
1929
1930
1931
1932
1933
1934
1935
1936
1937
1938
1939
1940
1941
1942
1943
1944
1945
1946
1947
1948
1949
1950
1951
1952
1953
1954
1955
1956
1957
1958
1959
1960
1961
1962
1963
1964
1965
1966
1967
1968
1969
1970
1971
1972
1973
1974
1975
1976
1977
1978
1979
1980
1981
1982
1983
1984
1985
1986
1987
1988
1989
1990
1991
1992
1993
1994
1995
1996
1997
1998
1999
2000
2001
2002
2003
2004
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
2025
2026
2027
2028
2029
2030
2031
2032
2033
2034
2035
2036
2037
2038
2039
2040
2041
2042
2043
2044
2045
2046
2047
2048
2049
2050
2051
2052
2053
2054
2055
2056
2057
2058
2059
2060
2061
2062
2063
2064
2065
2066
2067
2068
2069
2070
2071
2072
2073
2074
2075
2076
2077
2078
2079
2080
2081
2082
2083
2084
2085
2086
2087
2088
2089
2090
2091
2092
2093
2094
2095
2096
2097
2098
2099
2100
2101
2102
2103
2104
2105
2106
2107
2108
2109
2110
2111
2112
2113
2114
2115
2116
2117
2118
2119
2120
2121
2122
2123
2124
2125
2126
2127
2128
2129
2130
2131
2132
2133
2134
2135
2136
2137
2138
2139
2140
2141
2142
2143
2144
2145
2146
2147
2148
2149
2150
2151
2152
2153
2154
2155
2156
2157
2158
2159
2160
2161
2162
2163
2164
2165
2166
2167
2168
2169
2170
2171
2172
2173
2174
2175
2176
2177
2178
2179
2180
2181
2182
2183
2184
2185
2186
2187
2188
2189
2190
2191
2192
2193
2194
2195
2196
2197
2198
2199
2200
2201
2202
2203
2204
2205
2206
2207
2208
2209
2210
2211
2212
2213
2214
2215
2216
2217
2218
2219
2220
2221
2222
2223
2224
2225
2226
2227
2228
2229
2230
2231
2232
2233
2234
2235
2236
2237
2238
2239
2240
2241
2242
2243
2244
2245
2246
2247
2248
2249
2250
2251
2252
2253
2254
2255
2256
2257
2258
2259
2260
2261
2262
2263
2264
2265
2266
2267
2268
2269
2270
2271
2272
2273
2274
2275
2276
2277
2278
2279
2280
2281
2282
2283
2284
2285
2286
2287
2288
2289
2290
2291
2292
2293
sbuild (Debian sbuild) 0.86.3~bpo12+1 (03 November 2024) on debusine-worker-amd64-hades-06.freexian.com

+===================================================================================+
| golang-github-teambition-rrule-go 1.8.1-1 (amd64) Fri, 22 Nov 2024 20:46:15 +0000 |
+===================================================================================+

Package: golang-github-teambition-rrule-go
Version: 1.8.1-1
Source Version: 1.8.1-1
Distribution: bookworm
Machine Architecture: amd64
Host Architecture: amd64
Build Architecture: amd64
Build Type: binary

I: No tarballs found in /var/lib/debusine/worker/.cache/sbuild
Unpacking /var/lib/debusine/worker/system-images/1032025/system.tar.xz to /tmp/tmp.sbuild.Il8nnGOtJ5...
I: NOTICE: Log filtering will replace 'sbuild-unshare-dummy-location' with '<<CHROOT>>'

+------------------------------------------------------------------------------+
| Chroot Setup Commands                                                        |
+------------------------------------------------------------------------------+


rm -f /etc/resolv.conf
----------------------


I: Finished running 'rm -f /etc/resolv.conf'.

Finished processing commands.
--------------------------------------------------------------------------------
I: NOTICE: Log filtering will replace 'build/golang-github-teambition-rrule-go-BxqD0M/resolver-iIhCe4' with '<<RESOLVERDIR>>'

+------------------------------------------------------------------------------+
| Update chroot                                                                |
+------------------------------------------------------------------------------+

Get:1 http://deb.debian.org/debian bookworm InRelease [151 kB]
Get:2 http://deb.debian.org/debian bookworm/main amd64 Packages [8789 kB]
Fetched 8940 kB in 1s (9558 kB/s)
Reading package lists...
Reading package lists...
Building dependency tree...
Reading state information...
Calculating upgrade...
0 upgraded, 0 newly installed, 0 to remove and 0 not upgraded.

+------------------------------------------------------------------------------+
| Fetch source files                                                           |
+------------------------------------------------------------------------------+


Local sources
-------------

/tmp/debusine-fetch-exec-upload-o3_vhz0x/golang-github-teambition-rrule-go_1.8.1-1.dsc exists in /tmp/debusine-fetch-exec-upload-o3_vhz0x; copying to chroot
I: NOTICE: Log filtering will replace 'build/golang-github-teambition-rrule-go-BxqD0M/golang-github-teambition-rrule-go-1.8.1' with '<<PKGBUILDDIR>>'
I: NOTICE: Log filtering will replace 'build/golang-github-teambition-rrule-go-BxqD0M' with '<<BUILDDIR>>'

+------------------------------------------------------------------------------+
| Install package build dependencies                                           |
+------------------------------------------------------------------------------+


Setup apt archive
-----------------

Merged Build-Depends: debhelper-compat (= 13), dh-golang, golang-any, tzdata, build-essential, fakeroot
Filtered Build-Depends: debhelper-compat (= 13), dh-golang, golang-any, tzdata, build-essential, fakeroot
dpkg-deb: building package 'sbuild-build-depends-main-dummy' in '/<<RESOLVERDIR>>/apt_archive/sbuild-build-depends-main-dummy.deb'.
Ign:1 copy:/<<RESOLVERDIR>>/apt_archive ./ InRelease
Get:2 copy:/<<RESOLVERDIR>>/apt_archive ./ Release [609 B]
Ign:3 copy:/<<RESOLVERDIR>>/apt_archive ./ Release.gpg
Get:4 copy:/<<RESOLVERDIR>>/apt_archive ./ Sources [648 B]
Get:5 copy:/<<RESOLVERDIR>>/apt_archive ./ Packages [680 B]
Fetched 1937 B in 0s (0 B/s)
Reading package lists...
Reading package lists...

Install main build dependencies (apt-based resolver)
----------------------------------------------------

Installing build dependencies
Reading package lists...
Building dependency tree...
Reading state information...
The following additional packages will be installed:
  autoconf automake autopoint autotools-dev bsdextrautils debhelper
  dh-autoreconf dh-golang dh-strip-nondeterminism dwz fakeroot file gettext
  gettext-base golang-1.19-go golang-1.19-src golang-any golang-go golang-src
  groff-base intltool-debian libarchive-zip-perl libdebhelper-perl libelf1
  libfakeroot libfile-stripnondeterminism-perl libicu72 libmagic-mgc libmagic1
  libpipeline1 libsub-override-perl libtool libuchardet0 libxml2 m4 man-db
  po-debconf sensible-utils
Suggested packages:
  autoconf-archive gnu-standards autoconf-doc dh-make gettext-doc
  libasprintf-dev libgettextpo-dev bzr | brz ca-certificates git mercurial
  subversion groff libtool-doc gfortran | fortran95-compiler gcj-jdk m4-doc
  apparmor less www-browser libmail-box-perl
Recommended packages:
  curl | wget | lynx pkg-config libarchive-cpio-perl libltdl-dev
  libmail-sendmail-perl
The following NEW packages will be installed:
  autoconf automake autopoint autotools-dev bsdextrautils debhelper
  dh-autoreconf dh-golang dh-strip-nondeterminism dwz fakeroot file gettext
  gettext-base golang-1.19-go golang-1.19-src golang-any golang-go golang-src
  groff-base intltool-debian libarchive-zip-perl libdebhelper-perl libelf1
  libfakeroot libfile-stripnondeterminism-perl libicu72 libmagic-mgc libmagic1
  libpipeline1 libsub-override-perl libtool libuchardet0 libxml2 m4 man-db
  po-debconf sbuild-build-depends-main-dummy sensible-utils
0 upgraded, 39 newly installed, 0 to remove and 0 not upgraded.
Need to get 99.9 MB of archives.
After this operation, 537 MB of additional disk space will be used.
Get:1 copy:/<<RESOLVERDIR>>/apt_archive ./ sbuild-build-depends-main-dummy 0.invalid.0 [904 B]
Get:2 http://deb.debian.org/debian bookworm/main amd64 sensible-utils all 0.0.17+nmu1 [19.0 kB]
Get:3 http://deb.debian.org/debian bookworm/main amd64 libmagic-mgc amd64 1:5.44-3 [305 kB]
Get:4 http://deb.debian.org/debian bookworm/main amd64 libmagic1 amd64 1:5.44-3 [104 kB]
Get:5 http://deb.debian.org/debian bookworm/main amd64 file amd64 1:5.44-3 [42.5 kB]
Get:6 http://deb.debian.org/debian bookworm/main amd64 gettext-base amd64 0.21-12 [160 kB]
Get:7 http://deb.debian.org/debian bookworm/main amd64 libuchardet0 amd64 0.0.7-1 [67.8 kB]
Get:8 http://deb.debian.org/debian bookworm/main amd64 groff-base amd64 1.22.4-10 [916 kB]
Get:9 http://deb.debian.org/debian bookworm/main amd64 bsdextrautils amd64 2.38.1-5+deb12u2 [86.8 kB]
Get:10 http://deb.debian.org/debian bookworm/main amd64 libpipeline1 amd64 1.5.7-1 [38.5 kB]
Get:11 http://deb.debian.org/debian bookworm/main amd64 man-db amd64 2.11.2-2 [1386 kB]
Get:12 http://deb.debian.org/debian bookworm/main amd64 m4 amd64 1.4.19-3 [287 kB]
Get:13 http://deb.debian.org/debian bookworm/main amd64 autoconf all 2.71-3 [332 kB]
Get:14 http://deb.debian.org/debian bookworm/main amd64 autotools-dev all 20220109.1 [51.6 kB]
Get:15 http://deb.debian.org/debian bookworm/main amd64 automake all 1:1.16.5-1.3 [823 kB]
Get:16 http://deb.debian.org/debian bookworm/main amd64 autopoint all 0.21-12 [495 kB]
Get:17 http://deb.debian.org/debian bookworm/main amd64 libdebhelper-perl all 13.11.4 [81.2 kB]
Get:18 http://deb.debian.org/debian bookworm/main amd64 libtool all 2.4.7-7~deb12u1 [517 kB]
Get:19 http://deb.debian.org/debian bookworm/main amd64 dh-autoreconf all 20 [17.1 kB]
Get:20 http://deb.debian.org/debian bookworm/main amd64 libarchive-zip-perl all 1.68-1 [104 kB]
Get:21 http://deb.debian.org/debian bookworm/main amd64 libsub-override-perl all 0.09-4 [9304 B]
Get:22 http://deb.debian.org/debian bookworm/main amd64 libfile-stripnondeterminism-perl all 1.13.1-1 [19.4 kB]
Get:23 http://deb.debian.org/debian bookworm/main amd64 dh-strip-nondeterminism all 1.13.1-1 [8620 B]
Get:24 http://deb.debian.org/debian bookworm/main amd64 libelf1 amd64 0.188-2.1 [174 kB]
Get:25 http://deb.debian.org/debian bookworm/main amd64 dwz amd64 0.15-1 [109 kB]
Get:26 http://deb.debian.org/debian bookworm/main amd64 libicu72 amd64 72.1-3 [9376 kB]
Get:27 http://deb.debian.org/debian bookworm/main amd64 libxml2 amd64 2.9.14+dfsg-1.3~deb12u1 [687 kB]
Get:28 http://deb.debian.org/debian bookworm/main amd64 gettext amd64 0.21-12 [1300 kB]
Get:29 http://deb.debian.org/debian bookworm/main amd64 intltool-debian all 0.35.0+20060710.6 [22.9 kB]
Get:30 http://deb.debian.org/debian bookworm/main amd64 po-debconf all 1.0.21+nmu1 [248 kB]
Get:31 http://deb.debian.org/debian bookworm/main amd64 debhelper all 13.11.4 [942 kB]
Get:32 http://deb.debian.org/debian bookworm/main amd64 dh-golang all 1.59 [27.8 kB]
Get:33 http://deb.debian.org/debian bookworm/main amd64 libfakeroot amd64 1.31-1.2 [28.3 kB]
Get:34 http://deb.debian.org/debian bookworm/main amd64 fakeroot amd64 1.31-1.2 [66.9 kB]
Get:35 http://deb.debian.org/debian bookworm/main amd64 golang-1.19-src all 1.19.8-2 [18.3 MB]
Get:36 http://deb.debian.org/debian bookworm/main amd64 golang-1.19-go amd64 1.19.8-2 [62.7 MB]
Get:37 http://deb.debian.org/debian bookworm/main amd64 golang-src all 2:1.19~1 [5756 B]
Get:38 http://deb.debian.org/debian bookworm/main amd64 golang-go amd64 2:1.19~1 [45.0 kB]
Get:39 http://deb.debian.org/debian bookworm/main amd64 golang-any amd64 2:1.19~1 [5876 B]
debconf: delaying package configuration, since apt-utils is not installed
Fetched 99.9 MB in 1s (94.0 MB/s)
Selecting previously unselected package sensible-utils.
(Reading database ... 12212 files and directories currently installed.)
Preparing to unpack .../00-sensible-utils_0.0.17+nmu1_all.deb ...
Unpacking sensible-utils (0.0.17+nmu1) ...
Selecting previously unselected package libmagic-mgc.
Preparing to unpack .../01-libmagic-mgc_1%3a5.44-3_amd64.deb ...
Unpacking libmagic-mgc (1:5.44-3) ...
Selecting previously unselected package libmagic1:amd64.
Preparing to unpack .../02-libmagic1_1%3a5.44-3_amd64.deb ...
Unpacking libmagic1:amd64 (1:5.44-3) ...
Selecting previously unselected package file.
Preparing to unpack .../03-file_1%3a5.44-3_amd64.deb ...
Unpacking file (1:5.44-3) ...
Selecting previously unselected package gettext-base.
Preparing to unpack .../04-gettext-base_0.21-12_amd64.deb ...
Unpacking gettext-base (0.21-12) ...
Selecting previously unselected package libuchardet0:amd64.
Preparing to unpack .../05-libuchardet0_0.0.7-1_amd64.deb ...
Unpacking libuchardet0:amd64 (0.0.7-1) ...
Selecting previously unselected package groff-base.
Preparing to unpack .../06-groff-base_1.22.4-10_amd64.deb ...
Unpacking groff-base (1.22.4-10) ...
Selecting previously unselected package bsdextrautils.
Preparing to unpack .../07-bsdextrautils_2.38.1-5+deb12u2_amd64.deb ...
Unpacking bsdextrautils (2.38.1-5+deb12u2) ...
Selecting previously unselected package libpipeline1:amd64.
Preparing to unpack .../08-libpipeline1_1.5.7-1_amd64.deb ...
Unpacking libpipeline1:amd64 (1.5.7-1) ...
Selecting previously unselected package man-db.
Preparing to unpack .../09-man-db_2.11.2-2_amd64.deb ...
Unpacking man-db (2.11.2-2) ...
Selecting previously unselected package m4.
Preparing to unpack .../10-m4_1.4.19-3_amd64.deb ...
Unpacking m4 (1.4.19-3) ...
Selecting previously unselected package autoconf.
Preparing to unpack .../11-autoconf_2.71-3_all.deb ...
Unpacking autoconf (2.71-3) ...
Selecting previously unselected package autotools-dev.
Preparing to unpack .../12-autotools-dev_20220109.1_all.deb ...
Unpacking autotools-dev (20220109.1) ...
Selecting previously unselected package automake.
Preparing to unpack .../13-automake_1%3a1.16.5-1.3_all.deb ...
Unpacking automake (1:1.16.5-1.3) ...
Selecting previously unselected package autopoint.
Preparing to unpack .../14-autopoint_0.21-12_all.deb ...
Unpacking autopoint (0.21-12) ...
Selecting previously unselected package libdebhelper-perl.
Preparing to unpack .../15-libdebhelper-perl_13.11.4_all.deb ...
Unpacking libdebhelper-perl (13.11.4) ...
Selecting previously unselected package libtool.
Preparing to unpack .../16-libtool_2.4.7-7~deb12u1_all.deb ...
Unpacking libtool (2.4.7-7~deb12u1) ...
Selecting previously unselected package dh-autoreconf.
Preparing to unpack .../17-dh-autoreconf_20_all.deb ...
Unpacking dh-autoreconf (20) ...
Selecting previously unselected package libarchive-zip-perl.
Preparing to unpack .../18-libarchive-zip-perl_1.68-1_all.deb ...
Unpacking libarchive-zip-perl (1.68-1) ...
Selecting previously unselected package libsub-override-perl.
Preparing to unpack .../19-libsub-override-perl_0.09-4_all.deb ...
Unpacking libsub-override-perl (0.09-4) ...
Selecting previously unselected package libfile-stripnondeterminism-perl.
Preparing to unpack .../20-libfile-stripnondeterminism-perl_1.13.1-1_all.deb ...
Unpacking libfile-stripnondeterminism-perl (1.13.1-1) ...
Selecting previously unselected package dh-strip-nondeterminism.
Preparing to unpack .../21-dh-strip-nondeterminism_1.13.1-1_all.deb ...
Unpacking dh-strip-nondeterminism (1.13.1-1) ...
Selecting previously unselected package libelf1:amd64.
Preparing to unpack .../22-libelf1_0.188-2.1_amd64.deb ...
Unpacking libelf1:amd64 (0.188-2.1) ...
Selecting previously unselected package dwz.
Preparing to unpack .../23-dwz_0.15-1_amd64.deb ...
Unpacking dwz (0.15-1) ...
Selecting previously unselected package libicu72:amd64.
Preparing to unpack .../24-libicu72_72.1-3_amd64.deb ...
Unpacking libicu72:amd64 (72.1-3) ...
Selecting previously unselected package libxml2:amd64.
Preparing to unpack .../25-libxml2_2.9.14+dfsg-1.3~deb12u1_amd64.deb ...
Unpacking libxml2:amd64 (2.9.14+dfsg-1.3~deb12u1) ...
Selecting previously unselected package gettext.
Preparing to unpack .../26-gettext_0.21-12_amd64.deb ...
Unpacking gettext (0.21-12) ...
Selecting previously unselected package intltool-debian.
Preparing to unpack .../27-intltool-debian_0.35.0+20060710.6_all.deb ...
Unpacking intltool-debian (0.35.0+20060710.6) ...
Selecting previously unselected package po-debconf.
Preparing to unpack .../28-po-debconf_1.0.21+nmu1_all.deb ...
Unpacking po-debconf (1.0.21+nmu1) ...
Selecting previously unselected package debhelper.
Preparing to unpack .../29-debhelper_13.11.4_all.deb ...
Unpacking debhelper (13.11.4) ...
Selecting previously unselected package dh-golang.
Preparing to unpack .../30-dh-golang_1.59_all.deb ...
Unpacking dh-golang (1.59) ...
Selecting previously unselected package libfakeroot:amd64.
Preparing to unpack .../31-libfakeroot_1.31-1.2_amd64.deb ...
Unpacking libfakeroot:amd64 (1.31-1.2) ...
Selecting previously unselected package fakeroot.
Preparing to unpack .../32-fakeroot_1.31-1.2_amd64.deb ...
Unpacking fakeroot (1.31-1.2) ...
Selecting previously unselected package golang-1.19-src.
Preparing to unpack .../33-golang-1.19-src_1.19.8-2_all.deb ...
Unpacking golang-1.19-src (1.19.8-2) ...
Selecting previously unselected package golang-1.19-go.
Preparing to unpack .../34-golang-1.19-go_1.19.8-2_amd64.deb ...
Unpacking golang-1.19-go (1.19.8-2) ...
Selecting previously unselected package golang-src.
Preparing to unpack .../35-golang-src_2%3a1.19~1_all.deb ...
Unpacking golang-src (2:1.19~1) ...
Selecting previously unselected package golang-go:amd64.
Preparing to unpack .../36-golang-go_2%3a1.19~1_amd64.deb ...
Unpacking golang-go:amd64 (2:1.19~1) ...
Selecting previously unselected package golang-any:amd64.
Preparing to unpack .../37-golang-any_2%3a1.19~1_amd64.deb ...
Unpacking golang-any:amd64 (2:1.19~1) ...
Selecting previously unselected package sbuild-build-depends-main-dummy.
Preparing to unpack .../38-sbuild-build-depends-main-dummy_0.invalid.0_amd64.deb ...
Unpacking sbuild-build-depends-main-dummy (0.invalid.0) ...
Setting up libpipeline1:amd64 (1.5.7-1) ...
Setting up libicu72:amd64 (72.1-3) ...
Setting up bsdextrautils (2.38.1-5+deb12u2) ...
Setting up libmagic-mgc (1:5.44-3) ...
Setting up libarchive-zip-perl (1.68-1) ...
Setting up libdebhelper-perl (13.11.4) ...
Setting up libmagic1:amd64 (1:5.44-3) ...
Setting up gettext-base (0.21-12) ...
Setting up golang-1.19-src (1.19.8-2) ...
Setting up m4 (1.4.19-3) ...
Setting up file (1:5.44-3) ...
Setting up libfakeroot:amd64 (1.31-1.2) ...
Setting up fakeroot (1.31-1.2) ...
update-alternatives: using /usr/bin/fakeroot-sysv to provide /usr/bin/fakeroot (fakeroot) in auto mode
Setting up autotools-dev (20220109.1) ...
Setting up autopoint (0.21-12) ...
Setting up autoconf (2.71-3) ...
Setting up sensible-utils (0.0.17+nmu1) ...
Setting up libuchardet0:amd64 (0.0.7-1) ...
Setting up libsub-override-perl (0.09-4) ...
Setting up golang-src (2:1.19~1) ...
Setting up libelf1:amd64 (0.188-2.1) ...
Setting up libxml2:amd64 (2.9.14+dfsg-1.3~deb12u1) ...
Setting up golang-1.19-go (1.19.8-2) ...
Setting up automake (1:1.16.5-1.3) ...
update-alternatives: using /usr/bin/automake-1.16 to provide /usr/bin/automake (automake) in auto mode
Setting up libfile-stripnondeterminism-perl (1.13.1-1) ...
Setting up gettext (0.21-12) ...
Setting up libtool (2.4.7-7~deb12u1) ...
Setting up golang-go:amd64 (2:1.19~1) ...
Setting up golang-any:amd64 (2:1.19~1) ...
Setting up intltool-debian (0.35.0+20060710.6) ...
Setting up dh-autoreconf (20) ...
Setting up dh-strip-nondeterminism (1.13.1-1) ...
Setting up dwz (0.15-1) ...
Setting up groff-base (1.22.4-10) ...
Setting up po-debconf (1.0.21+nmu1) ...
Setting up man-db (2.11.2-2) ...
Not building database; man-db/auto-update is not 'true'.
Setting up debhelper (13.11.4) ...
Setting up dh-golang (1.59) ...
Setting up sbuild-build-depends-main-dummy (0.invalid.0) ...
Processing triggers for libc-bin (2.36-9+deb12u9) ...

+------------------------------------------------------------------------------+
| Check architectures                                                          |
+------------------------------------------------------------------------------+

Arch check ok (amd64 included in all)

+------------------------------------------------------------------------------+
| Build environment                                                            |
+------------------------------------------------------------------------------+

Kernel: Linux 6.1.0-27-amd64 #1 SMP PREEMPT_DYNAMIC Debian 6.1.115-1 (2024-11-01) amd64 (x86_64)
Toolchain package versions: binutils_2.40-2 dpkg-dev_1.21.22 g++-12_12.2.0-14 gcc-12_12.2.0-14 libc6-dev_2.36-9+deb12u9 libstdc++-12-dev_12.2.0-14 libstdc++6_12.2.0-14 linux-libc-dev_6.1.115-1
Package versions: adduser_3.134 apt_2.6.1 autoconf_2.71-3 automake_1:1.16.5-1.3 autopoint_0.21-12 autotools-dev_20220109.1 base-files_12.4+deb12u8 base-passwd_3.6.1 bash_5.2.15-2+b7 binutils_2.40-2 binutils-common_2.40-2 binutils-x86-64-linux-gnu_2.40-2 bsdextrautils_2.38.1-5+deb12u2 bsdutils_1:2.38.1-5+deb12u2 build-essential_12.9 bzip2_1.0.8-5+b1 coreutils_9.1-1 cpp_4:12.2.0-3 cpp-12_12.2.0-14 dash_0.5.12-2 debconf_1.5.82 debhelper_13.11.4 debian-archive-keyring_2023.3+deb12u1 debianutils_5.7-0.5~deb12u1 dh-autoreconf_20 dh-golang_1.59 dh-strip-nondeterminism_1.13.1-1 diffutils_1:3.8-4 dpkg_1.21.22 dpkg-dev_1.21.22 dwz_0.15-1 e2fsprogs_1.47.0-2 fakeroot_1.31-1.2 file_1:5.44-3 findutils_4.9.0-4 g++_4:12.2.0-3 g++-12_12.2.0-14 gcc_4:12.2.0-3 gcc-12_12.2.0-14 gcc-12-base_12.2.0-14 gettext_0.21-12 gettext-base_0.21-12 golang-1.19-go_1.19.8-2 golang-1.19-src_1.19.8-2 golang-any_2:1.19~1 golang-go_2:1.19~1 golang-src_2:1.19~1 gpgv_2.2.40-1.1 grep_3.8-5 groff-base_1.22.4-10 gzip_1.12-1 hostname_3.23+nmu1 init-system-helpers_1.65.2 intltool-debian_0.35.0+20060710.6 libacl1_2.3.1-3 libapt-pkg6.0_2.6.1 libarchive-zip-perl_1.68-1 libasan8_12.2.0-14 libatomic1_12.2.0-14 libattr1_1:2.5.1-4 libaudit-common_1:3.0.9-1 libaudit1_1:3.0.9-1 libbinutils_2.40-2 libblkid1_2.38.1-5+deb12u2 libbz2-1.0_1.0.8-5+b1 libc-bin_2.36-9+deb12u9 libc-dev-bin_2.36-9+deb12u9 libc6_2.36-9+deb12u9 libc6-dev_2.36-9+deb12u9 libcap-ng0_0.8.3-1+b3 libcap2_1:2.66-4 libcc1-0_12.2.0-14 libcom-err2_1.47.0-2 libcrypt-dev_1:4.4.33-2 libcrypt1_1:4.4.33-2 libctf-nobfd0_2.40-2 libctf0_2.40-2 libdb5.3_5.3.28+dfsg2-1 libdebconfclient0_0.270 libdebhelper-perl_13.11.4 libdpkg-perl_1.21.22 libelf1_0.188-2.1 libext2fs2_1.47.0-2 libfakeroot_1.31-1.2 libffi8_3.4.4-1 libfile-find-rule-perl_0.34-3 libfile-stripnondeterminism-perl_1.13.1-1 libgcc-12-dev_12.2.0-14 libgcc-s1_12.2.0-14 libgcrypt20_1.10.1-3 libgdbm-compat4_1.23-3 libgdbm6_1.23-3 libgmp10_2:6.2.1+dfsg1-1.1 libgnutls30_3.7.9-2+deb12u3 libgomp1_12.2.0-14 libgpg-error0_1.46-1 libgprofng0_2.40-2 libgssapi-krb5-2_1.20.1-2+deb12u2 libhogweed6_3.8.1-2 libicu72_72.1-3 libidn2-0_2.3.3-1+b1 libisl23_0.25-1.1 libitm1_12.2.0-14 libjansson4_2.14-2 libk5crypto3_1.20.1-2+deb12u2 libkeyutils1_1.6.3-2 libkrb5-3_1.20.1-2+deb12u2 libkrb5support0_1.20.1-2+deb12u2 liblsan0_12.2.0-14 liblz4-1_1.9.4-1 liblzma5_5.4.1-0.2 libmagic-mgc_1:5.44-3 libmagic1_1:5.44-3 libmd0_1.0.4-2 libmount1_2.38.1-5+deb12u2 libmpc3_1.3.1-1 libmpfr6_4.2.0-1 libnettle8_3.8.1-2 libnsl-dev_1.3.0-2 libnsl2_1.3.0-2 libnumber-compare-perl_0.03-3 libp11-kit0_0.24.1-2 libpam-modules_1.5.2-6+deb12u1 libpam-modules-bin_1.5.2-6+deb12u1 libpam-runtime_1.5.2-6+deb12u1 libpam0g_1.5.2-6+deb12u1 libpcre2-8-0_10.42-1 libperl5.36_5.36.0-7+deb12u1 libpipeline1_1.5.7-1 libquadmath0_12.2.0-14 libseccomp2_2.5.4-1+deb12u1 libselinux1_3.4-1+b6 libsemanage-common_3.4-1 libsemanage2_3.4-1+b5 libsepol2_3.4-2.1 libsmartcols1_2.38.1-5+deb12u2 libss2_1.47.0-2 libssl3_3.0.15-1~deb12u1 libstdc++-12-dev_12.2.0-14 libstdc++6_12.2.0-14 libsub-override-perl_0.09-4 libsystemd0_252.31-1~deb12u1 libtasn1-6_4.19.0-2 libtext-glob-perl_0.11-3 libtinfo6_6.4-4 libtirpc-common_1.3.3+ds-1 libtirpc-dev_1.3.3+ds-1 libtirpc3_1.3.3+ds-1 libtool_2.4.7-7~deb12u1 libtsan2_12.2.0-14 libubsan1_12.2.0-14 libuchardet0_0.0.7-1 libudev1_252.31-1~deb12u1 libunistring2_1.0-2 libuuid1_2.38.1-5+deb12u2 libxml2_2.9.14+dfsg-1.3~deb12u1 libxxhash0_0.8.1-1 libzstd1_1.5.4+dfsg2-5 linux-libc-dev_6.1.115-1 login_1:4.13+dfsg1-1+b1 logsave_1.47.0-2 m4_1.4.19-3 make_4.3-4.1 man-db_2.11.2-2 mawk_1.3.4.20200120-3.1 mount_2.38.1-5+deb12u2 ncurses-base_6.4-4 ncurses-bin_6.4-4 passwd_1:4.13+dfsg1-1+b1 patch_2.7.6-7 perl_5.36.0-7+deb12u1 perl-base_5.36.0-7+deb12u1 perl-modules-5.36_5.36.0-7+deb12u1 po-debconf_1.0.21+nmu1 rpcsvc-proto_1.4.3-1 sbuild-build-depends-main-dummy_0.invalid.0 sed_4.9-1 sensible-utils_0.0.17+nmu1 sysvinit-utils_3.06-4 tar_1.34+dfsg-1.2+deb12u1 tzdata_2024a-0+deb12u1 usrmerge_37~deb12u1 util-linux_2.38.1-5+deb12u2 util-linux-extra_2.38.1-5+deb12u2 xz-utils_5.4.1-0.2 zlib1g_1:1.2.13.dfsg-1

+------------------------------------------------------------------------------+
| Build                                                                        |
+------------------------------------------------------------------------------+


Unpack source
-------------

-----BEGIN PGP SIGNED MESSAGE-----
Hash: SHA512

Format: 3.0 (quilt)
Source: golang-github-teambition-rrule-go
Binary: golang-github-teambition-rrule-go-dev
Architecture: all
Version: 1.8.1-1
Maintainer: Debian Go Packaging Team <team+pkg-go@tracker.debian.org>
Uploaders:  Arun Kumar Pariyar <arun@debian.org>,
Homepage: https://github.com/teambition/rrule-go
Standards-Version: 4.6.2
Vcs-Browser: https://salsa.debian.org/go-team/packages/golang-github-teambition-rrule-go
Vcs-Git: https://salsa.debian.org/go-team/packages/golang-github-teambition-rrule-go.git
Testsuite: autopkgtest-pkg-go
Build-Depends: debhelper-compat (= 13), dh-golang, golang-any, tzdata
Package-List:
 golang-github-teambition-rrule-go-dev deb devel optional arch=all
Checksums-Sha1:
 f3f8c14e619be83c878f1518b4378541f936fc3e 26865 golang-github-teambition-rrule-go_1.8.1.orig.tar.gz
 0387a81c30bc4d82a1f3753ffe30000dae479f63 2456 golang-github-teambition-rrule-go_1.8.1-1.debian.tar.xz
Checksums-Sha256:
 9201f7c2dd666ce0852f1e20c0bae2e8d6bd371ee46fe2db741df540eda9fb7c 26865 golang-github-teambition-rrule-go_1.8.1.orig.tar.gz
 2b6bef7cba4a1a614c001c8f84d9ffe93787a202a951f0a7dc769d2db83fc176 2456 golang-github-teambition-rrule-go_1.8.1-1.debian.tar.xz
Files:
 098f2f54a36a876960959e26a8ed91da 26865 golang-github-teambition-rrule-go_1.8.1.orig.tar.gz
 1fc16fc50ee83e7b714d182e87ff4677 2456 golang-github-teambition-rrule-go_1.8.1-1.debian.tar.xz
Go-Import-Path: github.com/teambition/rrule-go

-----BEGIN PGP SIGNATURE-----

iQIzBAEBCgAdFiEE2lMFjb4VS9/L8WutS1Qq9wT3RRYFAmO28mYACgkQS1Qq9wT3
RRadNQ/9HBiXcA10hoDZ0UZCk84adO5Ab8BYFYppu2KgrQu5DP1qA/dH9yz7Yncw
12jMw88J29f5YhfQGTVQakwbEDZHjEMnYSNl9S4Ws79itxRxHtgLevfahXV+q/1D
AfPtmlEpOIIdyMaMjsIFG72l8z4Cj8S3Kb+RLXTDyloUpDoKmMJq6CfGKgjxpc/w
6rfQWi2HUCVKlg3ufB8ik+bDY3mciAN+mTq2MM8Jw1cS0JpdN8NXn8ITBtERJRpw
wyv8mBfQeLpCTFP7AntmLeiWNxJ59wIbgBnH5Y5M/+jfIUJbHoGfqaXtbv4+BZSs
cgbRjSwzUsU0LrjyzEyuiok5+beMylbatVmBoRJNp+JwgwFE2oIz0u1/H3C8SUKD
/prTHJ3MeDg7gA4oQT7Kw9238fDaBJsH2TLMVKcC/62WBVkrm6vV028GzCRvb6AC
id4R/mEUyzfo7yWWwT0VV1faIMfeWvYWdOSwx5uKxBEFbjj1kfFQGx+Xpx2dQbfB
I4wtDVyVLhbJ+K73NGEzEKh8MoWa2Jy+dQn+sBsOGnO8/+DLcK/5BUuiGkrBy4va
a4n6Y6m58MErNFP4VtM56B3xDjYjhsbhY+RypGNI+ioszn0D/g9q+BCCoHNFh/Fi
O6FrnOCQUabjkbkE0FJCVHyOfCGWmvaCvyM/P1wu6xFpp/2Dpno=
=L8Vu
-----END PGP SIGNATURE-----

gpgv: Signature made Thu Jan  5 15:53:10 2023 UTC
gpgv:                using RSA key DA53058DBE154BDFCBF16BAD4B542AF704F74516
gpgv: Can't check signature: No public key
dpkg-source: warning: cannot verify inline signature for ./golang-github-teambition-rrule-go_1.8.1-1.dsc: no acceptable signature found
dpkg-source: info: extracting golang-github-teambition-rrule-go in /<<PKGBUILDDIR>>
dpkg-source: info: unpacking golang-github-teambition-rrule-go_1.8.1.orig.tar.gz
dpkg-source: info: unpacking golang-github-teambition-rrule-go_1.8.1-1.debian.tar.xz

Check disk space
----------------

Sufficient free space for build

User Environment
----------------

APT_CONFIG=/var/lib/sbuild/apt.conf
HOME=/sbuild-nonexistent
LANG=C.UTF-8
LC_ALL=C.UTF-8
LOGNAME=debusine-worker
PATH=/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin:/usr/games
SHELL=/bin/sh
USER=debusine-worker

dpkg-buildpackage
-----------------

Command: dpkg-buildpackage --sanitize-env -us -uc -b -rfakeroot
dpkg-buildpackage: info: source package golang-github-teambition-rrule-go
dpkg-buildpackage: info: source version 1.8.1-1
dpkg-buildpackage: info: source distribution unstable
dpkg-buildpackage: info: source changed by Arun Kumar Pariyar <arun@debian.org>
 dpkg-source --before-build .
dpkg-buildpackage: info: host architecture amd64
 debian/rules clean
dh clean --builddirectory=_build --buildsystem=golang --with=golang
   dh_auto_clean -O--builddirectory=_build -O--buildsystem=golang
   dh_autoreconf_clean -O--builddirectory=_build -O--buildsystem=golang
   dh_clean -O--builddirectory=_build -O--buildsystem=golang
 debian/rules binary
dh binary --builddirectory=_build --buildsystem=golang --with=golang
   dh_update_autotools_config -O--builddirectory=_build -O--buildsystem=golang
   dh_autoreconf -O--builddirectory=_build -O--buildsystem=golang
   dh_auto_configure -O--builddirectory=_build -O--buildsystem=golang
   dh_auto_build -O--builddirectory=_build -O--buildsystem=golang
	cd _build && go install -trimpath -v -p 4 github.com/teambition/rrule-go
internal/goarch
internal/unsafeheader
internal/goexperiment
internal/cpu
internal/goos
internal/abi
runtime/internal/atomic
runtime/internal/math
runtime/internal/sys
runtime/internal/syscall
internal/bytealg
internal/itoa
math/bits
unicode/utf8
internal/race
sync/atomic
math
unicode
runtime
internal/reflectlite
sync
internal/testlog
errors
sort
internal/oserror
io
strconv
syscall
internal/safefilepath
path
strings
reflect
internal/syscall/unix
internal/syscall/execenv
time
internal/poll
io/fs
internal/fmtsort
os
fmt
github.com/teambition/rrule-go
   dh_auto_test -O--builddirectory=_build -O--buildsystem=golang
	cd _build && go test -vet=off -v -p 4 github.com/teambition/rrule-go
=== RUN   TestNoDtstart
--- PASS: TestNoDtstart (0.00s)
=== RUN   TestBadBySetPos
--- PASS: TestBadBySetPos (0.00s)
=== RUN   TestBadBySetPosMany
--- PASS: TestBadBySetPosMany (0.00s)
=== RUN   TestByNegativeMonthDay
--- PASS: TestByNegativeMonthDay (0.00s)
=== RUN   TestMonthlyMaxYear
--- PASS: TestMonthlyMaxYear (0.00s)
=== RUN   TestWeeklyMaxYear
--- PASS: TestWeeklyMaxYear (0.04s)
=== RUN   TestInvalidRRules
=== RUN   TestInvalidRRules/Bysecond_under
=== RUN   TestInvalidRRules/Bysecond_over
=== RUN   TestInvalidRRules/Byminute_under
=== RUN   TestInvalidRRules/Byminute_over
=== RUN   TestInvalidRRules/Byhour_under
=== RUN   TestInvalidRRules/Byhour_over
=== RUN   TestInvalidRRules/Bymonthday_under
=== RUN   TestInvalidRRules/Bymonthday_over
=== RUN   TestInvalidRRules/Bymonthday_under_negative
=== RUN   TestInvalidRRules/Byyearday_under
=== RUN   TestInvalidRRules/Byyearday_over
=== RUN   TestInvalidRRules/Byyearday_under_negative
=== RUN   TestInvalidRRules/Byweekno_under
=== RUN   TestInvalidRRules/Byweekno_over
=== RUN   TestInvalidRRules/Byweekno_under_negative
=== RUN   TestInvalidRRules/Bymonth_under
=== RUN   TestInvalidRRules/Bymonth_over
=== RUN   TestInvalidRRules/Bysetpos_under
=== RUN   TestInvalidRRules/Bysetpos_over
=== RUN   TestInvalidRRules/Bysetpos_under_negative
=== RUN   TestInvalidRRules/Byday_under
=== RUN   TestInvalidRRules/Byday_over
=== RUN   TestInvalidRRules/Interval_under
--- PASS: TestInvalidRRules (0.00s)
    --- PASS: TestInvalidRRules/Bysecond_under (0.00s)
    --- PASS: TestInvalidRRules/Bysecond_over (0.00s)
    --- PASS: TestInvalidRRules/Byminute_under (0.00s)
    --- PASS: TestInvalidRRules/Byminute_over (0.00s)
    --- PASS: TestInvalidRRules/Byhour_under (0.00s)
    --- PASS: TestInvalidRRules/Byhour_over (0.00s)
    --- PASS: TestInvalidRRules/Bymonthday_under (0.00s)
    --- PASS: TestInvalidRRules/Bymonthday_over (0.00s)
    --- PASS: TestInvalidRRules/Bymonthday_under_negative (0.00s)
    --- PASS: TestInvalidRRules/Byyearday_under (0.00s)
    --- PASS: TestInvalidRRules/Byyearday_over (0.00s)
    --- PASS: TestInvalidRRules/Byyearday_under_negative (0.00s)
    --- PASS: TestInvalidRRules/Byweekno_under (0.00s)
    --- PASS: TestInvalidRRules/Byweekno_over (0.00s)
    --- PASS: TestInvalidRRules/Byweekno_under_negative (0.00s)
    --- PASS: TestInvalidRRules/Bymonth_under (0.00s)
    --- PASS: TestInvalidRRules/Bymonth_over (0.00s)
    --- PASS: TestInvalidRRules/Bysetpos_under (0.00s)
    --- PASS: TestInvalidRRules/Bysetpos_over (0.00s)
    --- PASS: TestInvalidRRules/Bysetpos_under_negative (0.00s)
    --- PASS: TestInvalidRRules/Byday_under (0.00s)
    --- PASS: TestInvalidRRules/Byday_over (0.00s)
    --- PASS: TestInvalidRRules/Interval_under (0.00s)
=== RUN   TestHourlyInvalidAndRepeatedBysetpos
--- PASS: TestHourlyInvalidAndRepeatedBysetpos (0.00s)
=== RUN   TestNoAfter
--- PASS: TestNoAfter (0.00s)
=== RUN   TestYearly
--- PASS: TestYearly (0.00s)
=== RUN   TestYearlyInterval
--- PASS: TestYearlyInterval (0.00s)
=== RUN   TestYearlyIntervalLarge
--- PASS: TestYearlyIntervalLarge (0.00s)
=== RUN   TestYearlyByMonth
--- PASS: TestYearlyByMonth (0.00s)
=== RUN   TestYearlyByMonthDay
--- PASS: TestYearlyByMonthDay (0.00s)
=== RUN   TestYearlyByMonthAndMonthDay
--- PASS: TestYearlyByMonthAndMonthDay (0.00s)
=== RUN   TestYearlyByWeekDay
--- PASS: TestYearlyByWeekDay (0.00s)
=== RUN   TestYearlyByNWeekDay
--- PASS: TestYearlyByNWeekDay (0.00s)
=== RUN   TestYearlyByNWeekDayLarge
--- PASS: TestYearlyByNWeekDayLarge (0.00s)
=== RUN   TestYearlyByMonthAndWeekDay
--- PASS: TestYearlyByMonthAndWeekDay (0.00s)
=== RUN   TestYearlyByMonthAndNWeekDay
--- PASS: TestYearlyByMonthAndNWeekDay (0.00s)
=== RUN   TestYearlyByMonthAndNWeekDayLarge
--- PASS: TestYearlyByMonthAndNWeekDayLarge (0.00s)
=== RUN   TestYearlyByMonthDayAndWeekDay
--- PASS: TestYearlyByMonthDayAndWeekDay (0.00s)
=== RUN   TestYearlyByMonthAndMonthDayAndWeekDay
--- PASS: TestYearlyByMonthAndMonthDayAndWeekDay (0.00s)
=== RUN   TestYearlyByYearDay
--- PASS: TestYearlyByYearDay (0.00s)
=== RUN   TestYearlyByYearDayNeg
--- PASS: TestYearlyByYearDayNeg (0.00s)
=== RUN   TestYearlyByMonthAndYearDay
--- PASS: TestYearlyByMonthAndYearDay (0.00s)
=== RUN   TestYearlyByMonthAndYearDayNeg
--- PASS: TestYearlyByMonthAndYearDayNeg (0.00s)
=== RUN   TestYearlyByWeekNo
--- PASS: TestYearlyByWeekNo (0.00s)
=== RUN   TestYearlyByWeekNoAndWeekDay
--- PASS: TestYearlyByWeekNoAndWeekDay (0.00s)
=== RUN   TestYearlyByWeekNoAndWeekDayLarge
--- PASS: TestYearlyByWeekNoAndWeekDayLarge (0.00s)
=== RUN   TestYearlyByWeekNoAndWeekDayLast
--- PASS: TestYearlyByWeekNoAndWeekDayLast (0.00s)
=== RUN   TestYearlyByEaster
--- PASS: TestYearlyByEaster (0.00s)
=== RUN   TestYearlyByEasterPos
--- PASS: TestYearlyByEasterPos (0.00s)
=== RUN   TestYearlyByEasterNeg
--- PASS: TestYearlyByEasterNeg (0.00s)
=== RUN   TestYearlyByWeekNoAndWeekDay53
--- PASS: TestYearlyByWeekNoAndWeekDay53 (0.00s)
=== RUN   TestYearlyByHour
--- PASS: TestYearlyByHour (0.00s)
=== RUN   TestYearlyByMinute
--- PASS: TestYearlyByMinute (0.00s)
=== RUN   TestYearlyBySecond
--- PASS: TestYearlyBySecond (0.00s)
=== RUN   TestYearlyByHourAndMinute
--- PASS: TestYearlyByHourAndMinute (0.00s)
=== RUN   TestYearlyByHourAndSecond
--- PASS: TestYearlyByHourAndSecond (0.00s)
=== RUN   TestYearlyByMinuteAndSecond
--- PASS: TestYearlyByMinuteAndSecond (0.00s)
=== RUN   TestYearlyByHourAndMinuteAndSecond
--- PASS: TestYearlyByHourAndMinuteAndSecond (0.00s)
=== RUN   TestYearlyBySetPos
--- PASS: TestYearlyBySetPos (0.00s)
=== RUN   TestMonthly
--- PASS: TestMonthly (0.00s)
=== RUN   TestMonthlyInterval
--- PASS: TestMonthlyInterval (0.00s)
=== RUN   TestMonthlyIntervalLarge
--- PASS: TestMonthlyIntervalLarge (0.00s)
=== RUN   TestMonthlyByMonth
--- PASS: TestMonthlyByMonth (0.00s)
=== RUN   TestMonthlyByMonthDay
--- PASS: TestMonthlyByMonthDay (0.00s)
=== RUN   TestMonthlyByMonthAndMonthDay
--- PASS: TestMonthlyByMonthAndMonthDay (0.00s)
=== RUN   TestMonthlyByWeekDay
--- PASS: TestMonthlyByWeekDay (0.00s)
=== RUN   TestMonthlyByNWeekDay
--- PASS: TestMonthlyByNWeekDay (0.00s)
=== RUN   TestMonthlyByNWeekDayLarge
--- PASS: TestMonthlyByNWeekDayLarge (0.00s)
=== RUN   TestMonthlyByMonthAndWeekDay
--- PASS: TestMonthlyByMonthAndWeekDay (0.00s)
=== RUN   TestMonthlyByMonthAndNWeekDay
--- PASS: TestMonthlyByMonthAndNWeekDay (0.00s)
=== RUN   TestMonthlyByMonthAndNWeekDayLarge
--- PASS: TestMonthlyByMonthAndNWeekDayLarge (0.00s)
=== RUN   TestMonthlyByMonthDayAndWeekDay
--- PASS: TestMonthlyByMonthDayAndWeekDay (0.00s)
=== RUN   TestMonthlyByMonthAndMonthDayAndWeekDay
--- PASS: TestMonthlyByMonthAndMonthDayAndWeekDay (0.00s)
=== RUN   TestMonthlyByYearDay
--- PASS: TestMonthlyByYearDay (0.00s)
=== RUN   TestMonthlyByYearDayNeg
--- PASS: TestMonthlyByYearDayNeg (0.00s)
=== RUN   TestMonthlyByMonthAndYearDay
--- PASS: TestMonthlyByMonthAndYearDay (0.00s)
=== RUN   TestMonthlyByMonthAndYearDayNeg
--- PASS: TestMonthlyByMonthAndYearDayNeg (0.00s)
=== RUN   TestMonthlyByWeekNo
--- PASS: TestMonthlyByWeekNo (0.00s)
=== RUN   TestMonthlyByWeekNoAndWeekDay
--- PASS: TestMonthlyByWeekNoAndWeekDay (0.00s)
=== RUN   TestMonthlyByWeekNoAndWeekDayLarge
--- PASS: TestMonthlyByWeekNoAndWeekDayLarge (0.00s)
=== RUN   TestMonthlyByWeekNoAndWeekDayLast
--- PASS: TestMonthlyByWeekNoAndWeekDayLast (0.00s)
=== RUN   TestMonthlyByWeekNoAndWeekDay53
--- PASS: TestMonthlyByWeekNoAndWeekDay53 (0.00s)
=== RUN   TestMonthlyByEaster
--- PASS: TestMonthlyByEaster (0.00s)
=== RUN   TestMonthlyByEasterPos
--- PASS: TestMonthlyByEasterPos (0.00s)
=== RUN   TestMonthlyByEasterNeg
--- PASS: TestMonthlyByEasterNeg (0.00s)
=== RUN   TestMonthlyByHour
--- PASS: TestMonthlyByHour (0.00s)
=== RUN   TestMonthlyByMinute
--- PASS: TestMonthlyByMinute (0.00s)
=== RUN   TestMonthlyBySecond
--- PASS: TestMonthlyBySecond (0.00s)
=== RUN   TestMonthlyByHourAndMinute
--- PASS: TestMonthlyByHourAndMinute (0.00s)
=== RUN   TestMonthlyByHourAndSecond
--- PASS: TestMonthlyByHourAndSecond (0.00s)
=== RUN   TestMonthlyByMinuteAndSecond
--- PASS: TestMonthlyByMinuteAndSecond (0.00s)
=== RUN   TestMonthlyByHourAndMinuteAndSecond
--- PASS: TestMonthlyByHourAndMinuteAndSecond (0.00s)
=== RUN   TestMonthlyBySetPos
--- PASS: TestMonthlyBySetPos (0.00s)
=== RUN   TestWeekly
--- PASS: TestWeekly (0.00s)
=== RUN   TestWeeklyInterval
--- PASS: TestWeeklyInterval (0.00s)
=== RUN   TestWeeklyIntervalLarge
--- PASS: TestWeeklyIntervalLarge (0.00s)
=== RUN   TestWeeklyByMonth
--- PASS: TestWeeklyByMonth (0.00s)
=== RUN   TestWeeklyByMonthDay
--- PASS: TestWeeklyByMonthDay (0.00s)
=== RUN   TestWeeklyByMonthAndMonthDay
--- PASS: TestWeeklyByMonthAndMonthDay (0.00s)
=== RUN   TestWeeklyByWeekDay
--- PASS: TestWeeklyByWeekDay (0.00s)
=== RUN   TestWeeklyByNWeekDay
--- PASS: TestWeeklyByNWeekDay (0.00s)
=== RUN   TestWeeklyByMonthAndWeekDay
--- PASS: TestWeeklyByMonthAndWeekDay (0.00s)
=== RUN   TestWeeklyByMonthAndNWeekDay
--- PASS: TestWeeklyByMonthAndNWeekDay (0.00s)
=== RUN   TestWeeklyByMonthDayAndWeekDay
--- PASS: TestWeeklyByMonthDayAndWeekDay (0.00s)
=== RUN   TestWeeklyByMonthAndMonthDayAndWeekDay
--- PASS: TestWeeklyByMonthAndMonthDayAndWeekDay (0.00s)
=== RUN   TestWeeklyByYearDay
--- PASS: TestWeeklyByYearDay (0.00s)
=== RUN   TestWeeklyByYearDayNeg
--- PASS: TestWeeklyByYearDayNeg (0.00s)
=== RUN   TestWeeklyByMonthAndYearDay
--- PASS: TestWeeklyByMonthAndYearDay (0.00s)
=== RUN   TestWeeklyByMonthAndYearDayNeg
--- PASS: TestWeeklyByMonthAndYearDayNeg (0.00s)
=== RUN   TestWeeklyByWeekNo
--- PASS: TestWeeklyByWeekNo (0.00s)
=== RUN   TestWeeklyByWeekNoAndWeekDay
--- PASS: TestWeeklyByWeekNoAndWeekDay (0.00s)
=== RUN   TestWeeklyByWeekNoAndWeekDayLarge
--- PASS: TestWeeklyByWeekNoAndWeekDayLarge (0.00s)
=== RUN   TestWeeklyByWeekNoAndWeekDayLast
--- PASS: TestWeeklyByWeekNoAndWeekDayLast (0.00s)
=== RUN   TestWeeklyByWeekNoAndWeekDay53
--- PASS: TestWeeklyByWeekNoAndWeekDay53 (0.00s)
=== RUN   TestWeeklyByEaster
--- PASS: TestWeeklyByEaster (0.00s)
=== RUN   TestWeeklyByEasterPos
--- PASS: TestWeeklyByEasterPos (0.00s)
=== RUN   TestWeeklyByEasterNeg
--- PASS: TestWeeklyByEasterNeg (0.00s)
=== RUN   TestWeeklyByHour
--- PASS: TestWeeklyByHour (0.00s)
=== RUN   TestWeeklyByMinute
--- PASS: TestWeeklyByMinute (0.00s)
=== RUN   TestWeeklyBySecond
--- PASS: TestWeeklyBySecond (0.00s)
=== RUN   TestWeeklyByHourAndMinute
--- PASS: TestWeeklyByHourAndMinute (0.00s)
=== RUN   TestWeeklyByHourAndSecond
--- PASS: TestWeeklyByHourAndSecond (0.00s)
=== RUN   TestWeeklyByMinuteAndSecond
--- PASS: TestWeeklyByMinuteAndSecond (0.00s)
=== RUN   TestWeeklyByHourAndMinuteAndSecond
--- PASS: TestWeeklyByHourAndMinuteAndSecond (0.00s)
=== RUN   TestWeeklyBySetPos
--- PASS: TestWeeklyBySetPos (0.00s)
=== RUN   TestDaily
--- PASS: TestDaily (0.00s)
=== RUN   TestDailyInterval
--- PASS: TestDailyInterval (0.00s)
=== RUN   TestDailyIntervalLarge
--- PASS: TestDailyIntervalLarge (0.00s)
=== RUN   TestDailyByMonth
--- PASS: TestDailyByMonth (0.00s)
=== RUN   TestDailyByMonthDay
--- PASS: TestDailyByMonthDay (0.00s)
=== RUN   TestDailyByMonthAndMonthDay
--- PASS: TestDailyByMonthAndMonthDay (0.00s)
=== RUN   TestDailyByWeekDay
--- PASS: TestDailyByWeekDay (0.00s)
=== RUN   TestDailyByNWeekDay
--- PASS: TestDailyByNWeekDay (0.00s)
=== RUN   TestDailyByMonthAndWeekDay
--- PASS: TestDailyByMonthAndWeekDay (0.00s)
=== RUN   TestDailyByMonthAndNWeekDay
--- PASS: TestDailyByMonthAndNWeekDay (0.00s)
=== RUN   TestDailyByMonthDayAndWeekDay
--- PASS: TestDailyByMonthDayAndWeekDay (0.00s)
=== RUN   TestDailyByMonthAndMonthDayAndWeekDay
--- PASS: TestDailyByMonthAndMonthDayAndWeekDay (0.00s)
=== RUN   TestDailyByYearDay
--- PASS: TestDailyByYearDay (0.00s)
=== RUN   TestDailyByYearDayNeg
--- PASS: TestDailyByYearDayNeg (0.00s)
=== RUN   TestDailyByMonthAndYearDay
--- PASS: TestDailyByMonthAndYearDay (0.00s)
=== RUN   TestDailyByMonthAndYearDayNeg
--- PASS: TestDailyByMonthAndYearDayNeg (0.00s)
=== RUN   TestDailyByWeekNo
--- PASS: TestDailyByWeekNo (0.00s)
=== RUN   TestDailyByWeekNoAndWeekDay
--- PASS: TestDailyByWeekNoAndWeekDay (0.00s)
=== RUN   TestDailyByWeekNoAndWeekDayLarge
--- PASS: TestDailyByWeekNoAndWeekDayLarge (0.00s)
=== RUN   TestDailyByWeekNoAndWeekDayLast
--- PASS: TestDailyByWeekNoAndWeekDayLast (0.00s)
=== RUN   TestDailyByWeekNoAndWeekDay53
--- PASS: TestDailyByWeekNoAndWeekDay53 (0.00s)
=== RUN   TestDailyByEaster
--- PASS: TestDailyByEaster (0.00s)
=== RUN   TestDailyByEasterPos
--- PASS: TestDailyByEasterPos (0.00s)
=== RUN   TestDailyByEasterNeg
--- PASS: TestDailyByEasterNeg (0.00s)
=== RUN   TestDailyByHour
--- PASS: TestDailyByHour (0.00s)
=== RUN   TestDailyByMinute
--- PASS: TestDailyByMinute (0.00s)
=== RUN   TestDailyBySecond
--- PASS: TestDailyBySecond (0.00s)
=== RUN   TestDailyByHourAndMinute
--- PASS: TestDailyByHourAndMinute (0.00s)
=== RUN   TestDailyByHourAndSecond
--- PASS: TestDailyByHourAndSecond (0.00s)
=== RUN   TestDailyByMinuteAndSecond
--- PASS: TestDailyByMinuteAndSecond (0.00s)
=== RUN   TestDailyByHourAndMinuteAndSecond
--- PASS: TestDailyByHourAndMinuteAndSecond (0.00s)
=== RUN   TestDailyBySetPos
--- PASS: TestDailyBySetPos (0.00s)
=== RUN   TestHourly
--- PASS: TestHourly (0.00s)
=== RUN   TestHourlyInterval
--- PASS: TestHourlyInterval (0.00s)
=== RUN   TestHourlyIntervalLarge
--- PASS: TestHourlyIntervalLarge (0.00s)
=== RUN   TestHourlyByMonth
--- PASS: TestHourlyByMonth (0.00s)
=== RUN   TestHourlyByMonthDay
--- PASS: TestHourlyByMonthDay (0.00s)
=== RUN   TestHourlyByMonthAndMonthDay
--- PASS: TestHourlyByMonthAndMonthDay (0.00s)
=== RUN   TestHourlyByWeekDay
--- PASS: TestHourlyByWeekDay (0.00s)
=== RUN   TestHourlyByNWeekDay
--- PASS: TestHourlyByNWeekDay (0.00s)
=== RUN   TestHourlyByMonthAndWeekDay
--- PASS: TestHourlyByMonthAndWeekDay (0.00s)
=== RUN   TestHourlyByMonthAndNWeekDay
--- PASS: TestHourlyByMonthAndNWeekDay (0.00s)
=== RUN   TestHourlyByMonthDayAndWeekDay
--- PASS: TestHourlyByMonthDayAndWeekDay (0.00s)
=== RUN   TestHourlyByMonthAndMonthDayAndWeekDay
--- PASS: TestHourlyByMonthAndMonthDayAndWeekDay (0.00s)
=== RUN   TestHourlyByYearDay
--- PASS: TestHourlyByYearDay (0.00s)
=== RUN   TestHourlyByYearDayNeg
--- PASS: TestHourlyByYearDayNeg (0.00s)
=== RUN   TestHourlyByMonthAndYearDay
--- PASS: TestHourlyByMonthAndYearDay (0.00s)
=== RUN   TestHourlyByMonthAndYearDayNeg
--- PASS: TestHourlyByMonthAndYearDayNeg (0.00s)
=== RUN   TestHourlyByWeekNo
--- PASS: TestHourlyByWeekNo (0.00s)
=== RUN   TestHourlyByWeekNoAndWeekDay
--- PASS: TestHourlyByWeekNoAndWeekDay (0.00s)
=== RUN   TestHourlyByWeekNoAndWeekDayLarge
--- PASS: TestHourlyByWeekNoAndWeekDayLarge (0.00s)
=== RUN   TestHourlyByWeekNoAndWeekDayLast
--- PASS: TestHourlyByWeekNoAndWeekDayLast (0.00s)
=== RUN   TestHourlyByWeekNoAndWeekDay53
--- PASS: TestHourlyByWeekNoAndWeekDay53 (0.00s)
=== RUN   TestHourlyByEaster
--- PASS: TestHourlyByEaster (0.00s)
=== RUN   TestHourlyByEasterPos
--- PASS: TestHourlyByEasterPos (0.00s)
=== RUN   TestHourlyByEasterNeg
--- PASS: TestHourlyByEasterNeg (0.00s)
=== RUN   TestHourlyByHour
--- PASS: TestHourlyByHour (0.00s)
=== RUN   TestHourlyByMinute
--- PASS: TestHourlyByMinute (0.00s)
=== RUN   TestHourlyBySecond
--- PASS: TestHourlyBySecond (0.00s)
=== RUN   TestHourlyByHourAndMinute
--- PASS: TestHourlyByHourAndMinute (0.00s)
=== RUN   TestHourlyByHourAndSecond
--- PASS: TestHourlyByHourAndSecond (0.00s)
=== RUN   TestHourlyByMinuteAndSecond
--- PASS: TestHourlyByMinuteAndSecond (0.00s)
=== RUN   TestHourlyByHourAndMinuteAndSecond
--- PASS: TestHourlyByHourAndMinuteAndSecond (0.00s)
=== RUN   TestHourlyBySetPos
--- PASS: TestHourlyBySetPos (0.00s)
=== RUN   TestMinutely
--- PASS: TestMinutely (0.00s)
=== RUN   TestMinutelyInterval
--- PASS: TestMinutelyInterval (0.00s)
=== RUN   TestMinutelyIntervalLarge
--- PASS: TestMinutelyIntervalLarge (0.00s)
=== RUN   TestMinutelyByMonth
--- PASS: TestMinutelyByMonth (0.00s)
=== RUN   TestMinutelyByMonthDay
--- PASS: TestMinutelyByMonthDay (0.00s)
=== RUN   TestMinutelyByMonthAndMonthDay
--- PASS: TestMinutelyByMonthAndMonthDay (0.00s)
=== RUN   TestMinutelyByWeekDay
--- PASS: TestMinutelyByWeekDay (0.00s)
=== RUN   TestMinutelyByNWeekDay
--- PASS: TestMinutelyByNWeekDay (0.00s)
=== RUN   TestMinutelyByMonthAndWeekDay
--- PASS: TestMinutelyByMonthAndWeekDay (0.00s)
=== RUN   TestMinutelyByMonthAndNWeekDay
--- PASS: TestMinutelyByMonthAndNWeekDay (0.00s)
=== RUN   TestMinutelyByMonthDayAndWeekDay
--- PASS: TestMinutelyByMonthDayAndWeekDay (0.00s)
=== RUN   TestMinutelyByMonthAndMonthDayAndWeekDay
--- PASS: TestMinutelyByMonthAndMonthDayAndWeekDay (0.00s)
=== RUN   TestMinutelyByYearDay
--- PASS: TestMinutelyByYearDay (0.00s)
=== RUN   TestMinutelyByYearDayNeg
--- PASS: TestMinutelyByYearDayNeg (0.00s)
=== RUN   TestMinutelyByMonthAndYearDay
--- PASS: TestMinutelyByMonthAndYearDay (0.00s)
=== RUN   TestMinutelyByMonthAndYearDayNeg
--- PASS: TestMinutelyByMonthAndYearDayNeg (0.00s)
=== RUN   TestMinutelyByWeekNo
--- PASS: TestMinutelyByWeekNo (0.00s)
=== RUN   TestMinutelyByWeekNoAndWeekDay
--- PASS: TestMinutelyByWeekNoAndWeekDay (0.00s)
=== RUN   TestMinutelyByWeekNoAndWeekDayLarge
--- PASS: TestMinutelyByWeekNoAndWeekDayLarge (0.00s)
=== RUN   TestMinutelyByWeekNoAndWeekDayLast
--- PASS: TestMinutelyByWeekNoAndWeekDayLast (0.00s)
=== RUN   TestMinutelyByWeekNoAndWeekDay53
--- PASS: TestMinutelyByWeekNoAndWeekDay53 (0.00s)
=== RUN   TestMinutelyByEaster
--- PASS: TestMinutelyByEaster (0.00s)
=== RUN   TestMinutelyByEasterPos
--- PASS: TestMinutelyByEasterPos (0.00s)
=== RUN   TestMinutelyByEasterNeg
--- PASS: TestMinutelyByEasterNeg (0.00s)
=== RUN   TestMinutelyByHour
--- PASS: TestMinutelyByHour (0.00s)
=== RUN   TestMinutelyByMinute
--- PASS: TestMinutelyByMinute (0.00s)
=== RUN   TestMinutelyBySecond
--- PASS: TestMinutelyBySecond (0.00s)
=== RUN   TestMinutelyByHourAndMinute
--- PASS: TestMinutelyByHourAndMinute (0.00s)
=== RUN   TestMinutelyByHourAndSecond
--- PASS: TestMinutelyByHourAndSecond (0.00s)
=== RUN   TestMinutelyByMinuteAndSecond
--- PASS: TestMinutelyByMinuteAndSecond (0.00s)
=== RUN   TestMinutelyByHourAndMinuteAndSecond
--- PASS: TestMinutelyByHourAndMinuteAndSecond (0.00s)
=== RUN   TestMinutelyBySetPos
--- PASS: TestMinutelyBySetPos (0.00s)
=== RUN   TestSecondly
--- PASS: TestSecondly (0.00s)
=== RUN   TestSecondlyInterval
--- PASS: TestSecondlyInterval (0.00s)
=== RUN   TestSecondlyIntervalLarge
--- PASS: TestSecondlyIntervalLarge (0.00s)
=== RUN   TestSecondlyByMonth
--- PASS: TestSecondlyByMonth (0.00s)
=== RUN   TestSecondlyByMonthDay
--- PASS: TestSecondlyByMonthDay (0.00s)
=== RUN   TestSecondlyByMonthAndMonthDay
--- PASS: TestSecondlyByMonthAndMonthDay (0.00s)
=== RUN   TestSecondlyByWeekDay
--- PASS: TestSecondlyByWeekDay (0.00s)
=== RUN   TestSecondlyByNWeekDay
--- PASS: TestSecondlyByNWeekDay (0.00s)
=== RUN   TestSecondlyByMonthAndWeekDay
--- PASS: TestSecondlyByMonthAndWeekDay (0.00s)
=== RUN   TestSecondlyByMonthAndNWeekDay
--- PASS: TestSecondlyByMonthAndNWeekDay (0.00s)
=== RUN   TestSecondlyByMonthDayAndWeekDay
--- PASS: TestSecondlyByMonthDayAndWeekDay (0.00s)
=== RUN   TestSecondlyByMonthAndMonthDayAndWeekDay
--- PASS: TestSecondlyByMonthAndMonthDayAndWeekDay (0.00s)
=== RUN   TestSecondlyByYearDay
--- PASS: TestSecondlyByYearDay (0.00s)
=== RUN   TestSecondlyByYearDayNeg
--- PASS: TestSecondlyByYearDayNeg (0.00s)
=== RUN   TestSecondlyByMonthAndYearDay
--- PASS: TestSecondlyByMonthAndYearDay (0.00s)
=== RUN   TestSecondlyByMonthAndYearDayNeg
--- PASS: TestSecondlyByMonthAndYearDayNeg (0.00s)
=== RUN   TestSecondlyByWeekNo
--- PASS: TestSecondlyByWeekNo (0.00s)
=== RUN   TestSecondlyByWeekNoAndWeekDay
--- PASS: TestSecondlyByWeekNoAndWeekDay (0.00s)
=== RUN   TestSecondlyByWeekNoAndWeekDayLarge
--- PASS: TestSecondlyByWeekNoAndWeekDayLarge (0.00s)
=== RUN   TestSecondlyByWeekNoAndWeekDayLast
--- PASS: TestSecondlyByWeekNoAndWeekDayLast (0.00s)
=== RUN   TestSecondlyByWeekNoAndWeekDay53
--- PASS: TestSecondlyByWeekNoAndWeekDay53 (0.00s)
=== RUN   TestSecondlyByEaster
--- PASS: TestSecondlyByEaster (0.00s)
=== RUN   TestSecondlyByEasterPos
--- PASS: TestSecondlyByEasterPos (0.00s)
=== RUN   TestSecondlyByEasterNeg
--- PASS: TestSecondlyByEasterNeg (0.00s)
=== RUN   TestSecondlyByHour
--- PASS: TestSecondlyByHour (0.00s)
=== RUN   TestSecondlyByMinute
--- PASS: TestSecondlyByMinute (0.00s)
=== RUN   TestSecondlyBySecond
--- PASS: TestSecondlyBySecond (0.00s)
=== RUN   TestSecondlyByHourAndMinute
--- PASS: TestSecondlyByHourAndMinute (0.00s)
=== RUN   TestSecondlyByHourAndSecond
--- PASS: TestSecondlyByHourAndSecond (0.00s)
=== RUN   TestSecondlyByMinuteAndSecond
--- PASS: TestSecondlyByMinuteAndSecond (0.00s)
=== RUN   TestSecondlyByHourAndMinuteAndSecond
--- PASS: TestSecondlyByHourAndMinuteAndSecond (0.00s)
=== RUN   TestSecondlyByHourAndMinuteAndSecondBug
--- PASS: TestSecondlyByHourAndMinuteAndSecondBug (0.00s)
=== RUN   TestUntilNotMatching
--- PASS: TestUntilNotMatching (0.00s)
=== RUN   TestUntilMatching
--- PASS: TestUntilMatching (0.00s)
=== RUN   TestUntilSingle
--- PASS: TestUntilSingle (0.00s)
=== RUN   TestUntilEmpty
--- PASS: TestUntilEmpty (0.00s)
=== RUN   TestUntilWithDate
--- PASS: TestUntilWithDate (0.00s)
=== RUN   TestWkStIntervalMO
--- PASS: TestWkStIntervalMO (0.00s)
=== RUN   TestWkStIntervalSU
--- PASS: TestWkStIntervalSU (0.00s)
=== RUN   TestDTStart
--- PASS: TestDTStart (0.00s)
=== RUN   TestDTStartIsDate
--- PASS: TestDTStartIsDate (0.00s)
=== RUN   TestDTStartWithMicroseconds
--- PASS: TestDTStartWithMicroseconds (0.00s)
=== RUN   TestUntil
--- PASS: TestUntil (0.00s)
=== RUN   TestMaxYear
--- PASS: TestMaxYear (0.01s)
=== RUN   TestBefore
--- PASS: TestBefore (0.00s)
=== RUN   TestBeforeInc
--- PASS: TestBeforeInc (0.00s)
=== RUN   TestAfter
--- PASS: TestAfter (0.00s)
=== RUN   TestAfterInc
--- PASS: TestAfterInc (0.00s)
=== RUN   TestBetween
--- PASS: TestBetween (0.00s)
=== RUN   TestBetweenInc
--- PASS: TestBetweenInc (0.00s)
=== RUN   TestAllWithDefaultUtil
--- PASS: TestAllWithDefaultUtil (0.00s)
=== RUN   TestWeekdayGetters
--- PASS: TestWeekdayGetters (0.00s)
=== RUN   TestRuleChangeDTStartTimezoneRespected
--- PASS: TestRuleChangeDTStartTimezoneRespected (0.00s)
=== RUN   TestSet
--- PASS: TestSet (0.00s)
=== RUN   TestSetOverlapping
--- PASS: TestSetOverlapping (0.00s)
=== RUN   TestSetString
--- PASS: TestSetString (0.00s)
=== RUN   TestSetDTStart
--- PASS: TestSetDTStart (0.00s)
=== RUN   TestSetRecurrence
--- PASS: TestSetRecurrence (0.00s)
=== RUN   TestSetDate
--- PASS: TestSetDate (0.00s)
=== RUN   TestSetRDates
--- PASS: TestSetRDates (0.00s)
=== RUN   TestSetExDate
--- PASS: TestSetExDate (0.00s)
=== RUN   TestSetExDates
--- PASS: TestSetExDates (0.00s)
=== RUN   TestSetExDateRevOrder
--- PASS: TestSetExDateRevOrder (0.00s)
=== RUN   TestSetDateAndExDate
--- PASS: TestSetDateAndExDate (0.00s)
=== RUN   TestSetBefore
--- PASS: TestSetBefore (0.00s)
=== RUN   TestSetBeforeInc
--- PASS: TestSetBeforeInc (0.00s)
=== RUN   TestSetAfter
--- PASS: TestSetAfter (0.00s)
=== RUN   TestSetAfterInc
--- PASS: TestSetAfterInc (0.00s)
=== RUN   TestSetBetween
--- PASS: TestSetBetween (0.00s)
=== RUN   TestSetBetweenInc
--- PASS: TestSetBetweenInc (0.00s)
=== RUN   TestSetTrickyTimeZones
--- PASS: TestSetTrickyTimeZones (0.00s)
=== RUN   TestSetDtStart
--- PASS: TestSetDtStart (0.00s)
=== RUN   TestRuleSetChangeDTStartTimezoneRespected
--- PASS: TestRuleSetChangeDTStartTimezoneRespected (0.00s)
=== RUN   TestRFCRuleToStr
--- PASS: TestRFCRuleToStr (0.00s)
=== RUN   TestRFCSetToString
--- PASS: TestRFCSetToString (0.00s)
=== RUN   TestCompatibility
--- PASS: TestCompatibility (0.00s)
=== RUN   TestInvalidString
--- PASS: TestInvalidString (0.00s)
=== RUN   TestSetStr
--- PASS: TestSetStr (0.00s)
=== RUN   TestStrToDtStart
--- PASS: TestStrToDtStart (0.00s)
=== RUN   TestStrToDates
--- PASS: TestStrToDates (0.00s)
=== RUN   TestStrToDatesTimeIsCorrect
--- PASS: TestStrToDatesTimeIsCorrect (0.00s)
=== RUN   TestProcessRRuleName
--- PASS: TestProcessRRuleName (0.00s)
=== RUN   TestSetStrCompatibility
--- PASS: TestSetStrCompatibility (0.00s)
=== RUN   TestSetParseLocalTimes
=== RUN   TestSetParseLocalTimes/DtstartTimeZoneIsUsed
=== RUN   TestSetParseLocalTimes/DtstartTimeZoneValidOutput
=== RUN   TestSetParseLocalTimes/DtstartUTCValidOutput
=== RUN   TestSetParseLocalTimes/SpecifiedDefaultZoneIsUsed
--- PASS: TestSetParseLocalTimes (0.00s)
    --- PASS: TestSetParseLocalTimes/DtstartTimeZoneIsUsed (0.00s)
    --- PASS: TestSetParseLocalTimes/DtstartTimeZoneValidOutput (0.00s)
    --- PASS: TestSetParseLocalTimes/DtstartUTCValidOutput (0.00s)
    --- PASS: TestSetParseLocalTimes/SpecifiedDefaultZoneIsUsed (0.00s)
=== RUN   TestRDateValueDateStr
=== RUN   TestRDateValueDateStr/DefaultToUTC
=== RUN   TestRDateValueDateStr/PreserveExplicitTimezone
--- PASS: TestRDateValueDateStr (0.00s)
    --- PASS: TestRDateValueDateStr/DefaultToUTC (0.00s)
    --- PASS: TestRDateValueDateStr/PreserveExplicitTimezone (0.00s)
=== RUN   TestStrSetEmptySliceParse
--- PASS: TestStrSetEmptySliceParse (0.00s)
=== RUN   TestStrSetParseErrors
--- PASS: TestStrSetParseErrors (0.00s)
=== RUN   ExampleRRule
--- PASS: ExampleRRule (0.00s)
=== RUN   ExampleSet
--- PASS: ExampleSet (0.00s)
=== RUN   ExampleStrToRRule
--- PASS: ExampleStrToRRule (0.00s)
=== RUN   ExampleStrToRRuleSet
--- PASS: ExampleStrToRRuleSet (0.00s)
PASS
ok  	github.com/teambition/rrule-go	0.064s
   create-stamp debian/debhelper-build-stamp
   dh_testroot -O--builddirectory=_build -O--buildsystem=golang
   dh_prep -O--builddirectory=_build -O--buildsystem=golang
   dh_auto_install --destdir=debian/golang-github-teambition-rrule-go-dev/ -O--builddirectory=_build -O--buildsystem=golang
   dh_installdocs -O--builddirectory=_build -O--buildsystem=golang
   dh_installchangelogs -O--builddirectory=_build -O--buildsystem=golang
   dh_installsystemduser -O--builddirectory=_build -O--buildsystem=golang
   dh_perl -O--builddirectory=_build -O--buildsystem=golang
   dh_link -O--builddirectory=_build -O--buildsystem=golang
   dh_strip_nondeterminism -O--builddirectory=_build -O--buildsystem=golang
   dh_compress -O--builddirectory=_build -O--buildsystem=golang
   dh_fixperms -O--builddirectory=_build -O--buildsystem=golang
   dh_missing -O--builddirectory=_build -O--buildsystem=golang
   dh_installdeb -O--builddirectory=_build -O--buildsystem=golang
   dh_golang -O--builddirectory=_build -O--buildsystem=golang
   dh_gencontrol -O--builddirectory=_build -O--buildsystem=golang
   dh_md5sums -O--builddirectory=_build -O--buildsystem=golang
   dh_builddeb -O--builddirectory=_build -O--buildsystem=golang
dpkg-deb: building package 'golang-github-teambition-rrule-go-dev' in '../golang-github-teambition-rrule-go-dev_1.8.1-1_all.deb'.
 dpkg-genbuildinfo --build=binary -O../golang-github-teambition-rrule-go_1.8.1-1_amd64.buildinfo
 dpkg-genchanges --build=binary -O../golang-github-teambition-rrule-go_1.8.1-1_amd64.changes
dpkg-genchanges: info: binary-only upload (no source code included)
 dpkg-source --after-build .
dpkg-buildpackage: info: binary-only upload (no source included)
--------------------------------------------------------------------------------
Build finished at 2024-11-22T20:46:49Z

Finished
--------

I: Built successfully

+------------------------------------------------------------------------------+
| Changes                                                                      |
+------------------------------------------------------------------------------+


golang-github-teambition-rrule-go_1.8.1-1_amd64.changes:
--------------------------------------------------------

Format: 1.8
Date: Thu, 05 Jan 2023 21:28:51 +0545
Source: golang-github-teambition-rrule-go
Binary: golang-github-teambition-rrule-go-dev
Architecture: all
Version: 1.8.1-1
Distribution: bookworm
Urgency: medium
Maintainer: Debian Go Packaging Team <team+pkg-go@tracker.debian.org>
Changed-By: Arun Kumar Pariyar <arun@debian.org>
Description:
 golang-github-teambition-rrule-go-dev - Go library for working with recurrence rules for calendar dates.
Closes: 1027372
Changes:
 golang-github-teambition-rrule-go (1.8.1-1) unstable; urgency=medium
 .
   * New upstream release 1.8.1.
   * debian/control:
     + Bump Standards version to 4.6.2.
     + Add tzdata to build dependency. (Closes: #1027372)
   * debian/copyright: Update copyright years.
   * debian/rules: Drop example from DH_GOLANG_EXCLUDES.
Checksums-Sha1:
 37f5c7cd67beadda754d8ef22b18cb7cbed1600a 24496 golang-github-teambition-rrule-go-dev_1.8.1-1_all.deb
 edf971d803a451558df618383c8a3a908150ec6a 5386 golang-github-teambition-rrule-go_1.8.1-1_amd64.buildinfo
Checksums-Sha256:
 aa0ab65813f9faf63c4406a780a82e4a39000763335cee65939add9771802d18 24496 golang-github-teambition-rrule-go-dev_1.8.1-1_all.deb
 829fc39b0cb4fbaa70869b639787ea0b02e1a111ab28b0f50ec9f2e17b9c8f35 5386 golang-github-teambition-rrule-go_1.8.1-1_amd64.buildinfo
Files:
 f9d724eef1fad9a268a6f750ff934fb7 24496 devel optional golang-github-teambition-rrule-go-dev_1.8.1-1_all.deb
 5e02b4d70f1c61d462d464d90a250f9a 5386 devel optional golang-github-teambition-rrule-go_1.8.1-1_amd64.buildinfo

+------------------------------------------------------------------------------+
| Buildinfo                                                                    |
+------------------------------------------------------------------------------+

Format: 1.0
Source: golang-github-teambition-rrule-go
Binary: golang-github-teambition-rrule-go-dev
Architecture: all
Version: 1.8.1-1
Checksums-Md5:
 f9d724eef1fad9a268a6f750ff934fb7 24496 golang-github-teambition-rrule-go-dev_1.8.1-1_all.deb
Checksums-Sha1:
 37f5c7cd67beadda754d8ef22b18cb7cbed1600a 24496 golang-github-teambition-rrule-go-dev_1.8.1-1_all.deb
Checksums-Sha256:
 aa0ab65813f9faf63c4406a780a82e4a39000763335cee65939add9771802d18 24496 golang-github-teambition-rrule-go-dev_1.8.1-1_all.deb
Build-Origin: Debian
Build-Architecture: amd64
Build-Date: Fri, 22 Nov 2024 20:46:49 +0000
Build-Path: /<<PKGBUILDDIR>>
Build-Tainted-By:
 merged-usr-via-aliased-dirs
Installed-Build-Depends:
 autoconf (= 2.71-3),
 automake (= 1:1.16.5-1.3),
 autopoint (= 0.21-12),
 autotools-dev (= 20220109.1),
 base-files (= 12.4+deb12u8),
 base-passwd (= 3.6.1),
 bash (= 5.2.15-2+b7),
 binutils (= 2.40-2),
 binutils-common (= 2.40-2),
 binutils-x86-64-linux-gnu (= 2.40-2),
 bsdextrautils (= 2.38.1-5+deb12u2),
 bsdutils (= 1:2.38.1-5+deb12u2),
 build-essential (= 12.9),
 bzip2 (= 1.0.8-5+b1),
 coreutils (= 9.1-1),
 cpp (= 4:12.2.0-3),
 cpp-12 (= 12.2.0-14),
 dash (= 0.5.12-2),
 debconf (= 1.5.82),
 debhelper (= 13.11.4),
 debianutils (= 5.7-0.5~deb12u1),
 dh-autoreconf (= 20),
 dh-golang (= 1.59),
 dh-strip-nondeterminism (= 1.13.1-1),
 diffutils (= 1:3.8-4),
 dpkg (= 1.21.22),
 dpkg-dev (= 1.21.22),
 dwz (= 0.15-1),
 file (= 1:5.44-3),
 findutils (= 4.9.0-4),
 g++ (= 4:12.2.0-3),
 g++-12 (= 12.2.0-14),
 gcc (= 4:12.2.0-3),
 gcc-12 (= 12.2.0-14),
 gcc-12-base (= 12.2.0-14),
 gettext (= 0.21-12),
 gettext-base (= 0.21-12),
 golang-1.19-go (= 1.19.8-2),
 golang-1.19-src (= 1.19.8-2),
 golang-any (= 2:1.19~1),
 golang-go (= 2:1.19~1),
 golang-src (= 2:1.19~1),
 grep (= 3.8-5),
 groff-base (= 1.22.4-10),
 gzip (= 1.12-1),
 hostname (= 3.23+nmu1),
 init-system-helpers (= 1.65.2),
 intltool-debian (= 0.35.0+20060710.6),
 libacl1 (= 2.3.1-3),
 libarchive-zip-perl (= 1.68-1),
 libasan8 (= 12.2.0-14),
 libatomic1 (= 12.2.0-14),
 libattr1 (= 1:2.5.1-4),
 libaudit-common (= 1:3.0.9-1),
 libaudit1 (= 1:3.0.9-1),
 libbinutils (= 2.40-2),
 libblkid1 (= 2.38.1-5+deb12u2),
 libbz2-1.0 (= 1.0.8-5+b1),
 libc-bin (= 2.36-9+deb12u9),
 libc-dev-bin (= 2.36-9+deb12u9),
 libc6 (= 2.36-9+deb12u9),
 libc6-dev (= 2.36-9+deb12u9),
 libcap-ng0 (= 0.8.3-1+b3),
 libcap2 (= 1:2.66-4),
 libcc1-0 (= 12.2.0-14),
 libcom-err2 (= 1.47.0-2),
 libcrypt-dev (= 1:4.4.33-2),
 libcrypt1 (= 1:4.4.33-2),
 libctf-nobfd0 (= 2.40-2),
 libctf0 (= 2.40-2),
 libdb5.3 (= 5.3.28+dfsg2-1),
 libdebconfclient0 (= 0.270),
 libdebhelper-perl (= 13.11.4),
 libdpkg-perl (= 1.21.22),
 libelf1 (= 0.188-2.1),
 libfile-find-rule-perl (= 0.34-3),
 libfile-stripnondeterminism-perl (= 1.13.1-1),
 libgcc-12-dev (= 12.2.0-14),
 libgcc-s1 (= 12.2.0-14),
 libgcrypt20 (= 1.10.1-3),
 libgdbm-compat4 (= 1.23-3),
 libgdbm6 (= 1.23-3),
 libgmp10 (= 2:6.2.1+dfsg1-1.1),
 libgomp1 (= 12.2.0-14),
 libgpg-error0 (= 1.46-1),
 libgprofng0 (= 2.40-2),
 libgssapi-krb5-2 (= 1.20.1-2+deb12u2),
 libicu72 (= 72.1-3),
 libisl23 (= 0.25-1.1),
 libitm1 (= 12.2.0-14),
 libjansson4 (= 2.14-2),
 libk5crypto3 (= 1.20.1-2+deb12u2),
 libkeyutils1 (= 1.6.3-2),
 libkrb5-3 (= 1.20.1-2+deb12u2),
 libkrb5support0 (= 1.20.1-2+deb12u2),
 liblsan0 (= 12.2.0-14),
 liblz4-1 (= 1.9.4-1),
 liblzma5 (= 5.4.1-0.2),
 libmagic-mgc (= 1:5.44-3),
 libmagic1 (= 1:5.44-3),
 libmd0 (= 1.0.4-2),
 libmount1 (= 2.38.1-5+deb12u2),
 libmpc3 (= 1.3.1-1),
 libmpfr6 (= 4.2.0-1),
 libnsl-dev (= 1.3.0-2),
 libnsl2 (= 1.3.0-2),
 libnumber-compare-perl (= 0.03-3),
 libpam-modules (= 1.5.2-6+deb12u1),
 libpam-modules-bin (= 1.5.2-6+deb12u1),
 libpam-runtime (= 1.5.2-6+deb12u1),
 libpam0g (= 1.5.2-6+deb12u1),
 libpcre2-8-0 (= 10.42-1),
 libperl5.36 (= 5.36.0-7+deb12u1),
 libpipeline1 (= 1.5.7-1),
 libquadmath0 (= 12.2.0-14),
 libseccomp2 (= 2.5.4-1+deb12u1),
 libselinux1 (= 3.4-1+b6),
 libsmartcols1 (= 2.38.1-5+deb12u2),
 libssl3 (= 3.0.15-1~deb12u1),
 libstdc++-12-dev (= 12.2.0-14),
 libstdc++6 (= 12.2.0-14),
 libsub-override-perl (= 0.09-4),
 libsystemd0 (= 252.31-1~deb12u1),
 libtext-glob-perl (= 0.11-3),
 libtinfo6 (= 6.4-4),
 libtirpc-common (= 1.3.3+ds-1),
 libtirpc-dev (= 1.3.3+ds-1),
 libtirpc3 (= 1.3.3+ds-1),
 libtool (= 2.4.7-7~deb12u1),
 libtsan2 (= 12.2.0-14),
 libubsan1 (= 12.2.0-14),
 libuchardet0 (= 0.0.7-1),
 libudev1 (= 252.31-1~deb12u1),
 libunistring2 (= 1.0-2),
 libuuid1 (= 2.38.1-5+deb12u2),
 libxml2 (= 2.9.14+dfsg-1.3~deb12u1),
 libzstd1 (= 1.5.4+dfsg2-5),
 linux-libc-dev (= 6.1.115-1),
 login (= 1:4.13+dfsg1-1+b1),
 m4 (= 1.4.19-3),
 make (= 4.3-4.1),
 man-db (= 2.11.2-2),
 mawk (= 1.3.4.20200120-3.1),
 ncurses-base (= 6.4-4),
 ncurses-bin (= 6.4-4),
 patch (= 2.7.6-7),
 perl (= 5.36.0-7+deb12u1),
 perl-base (= 5.36.0-7+deb12u1),
 perl-modules-5.36 (= 5.36.0-7+deb12u1),
 po-debconf (= 1.0.21+nmu1),
 rpcsvc-proto (= 1.4.3-1),
 sed (= 4.9-1),
 sensible-utils (= 0.0.17+nmu1),
 sysvinit-utils (= 3.06-4),
 tar (= 1.34+dfsg-1.2+deb12u1),
 tzdata (= 2024a-0+deb12u1),
 usrmerge (= 37~deb12u1),
 util-linux (= 2.38.1-5+deb12u2),
 util-linux-extra (= 2.38.1-5+deb12u2),
 xz-utils (= 5.4.1-0.2),
 zlib1g (= 1:1.2.13.dfsg-1)
Environment:
 DEB_BUILD_OPTIONS="parallel=4"
 LANG="C.UTF-8"
 LC_ALL="C.UTF-8"
 LC_COLLATE="C.UTF-8"
 SOURCE_DATE_EPOCH="1672933431"


+------------------------------------------------------------------------------+
| Package contents                                                             |
+------------------------------------------------------------------------------+


golang-github-teambition-rrule-go-dev_1.8.1-1_all.deb
-----------------------------------------------------

 new Debian package, version 2.0.
 size 24496 bytes: control archive=980 bytes.
     603 bytes,    14 lines      control              
    1171 bytes,    12 lines      md5sums              
 Package: golang-github-teambition-rrule-go-dev
 Source: golang-github-teambition-rrule-go
 Version: 1.8.1-1
 Architecture: all
 Maintainer: Debian Go Packaging Team <team+pkg-go@tracker.debian.org>
 Installed-Size: 219
 Depends: tzdata
 Section: devel
 Priority: optional
 Homepage: https://github.com/teambition/rrule-go
 Description: Go library for working with recurrence rules for calendar dates. (library)
  The rrule golang module offers a complete implementation of the
  recurrence rules documented in the iCalendar RFC. It is a partial
  port of the rrule module from the excellent python-dateutil library.

drwxr-xr-x root/root         0 2023-01-05 15:43 ./
drwxr-xr-x root/root         0 2023-01-05 15:43 ./usr/
drwxr-xr-x root/root         0 2023-01-05 15:43 ./usr/share/
drwxr-xr-x root/root         0 2023-01-05 15:43 ./usr/share/doc/
drwxr-xr-x root/root         0 2023-01-05 15:43 ./usr/share/doc/golang-github-teambition-rrule-go-dev/
-rw-r--r-- root/root       540 2023-01-05 15:43 ./usr/share/doc/golang-github-teambition-rrule-go-dev/changelog.Debian.gz
-rw-r--r-- root/root      1422 2023-01-05 15:42 ./usr/share/doc/golang-github-teambition-rrule-go-dev/copyright
drwxr-xr-x root/root         0 2023-01-05 15:43 ./usr/share/gocode/
drwxr-xr-x root/root         0 2023-01-05 15:43 ./usr/share/gocode/src/
drwxr-xr-x root/root         0 2023-01-05 15:43 ./usr/share/gocode/src/github.com/
drwxr-xr-x root/root         0 2023-01-05 15:43 ./usr/share/gocode/src/github.com/teambition/
drwxr-xr-x root/root         0 2023-01-05 15:43 ./usr/share/gocode/src/github.com/teambition/rrule-go/
-rw-r--r-- root/root      5553 2023-01-05 15:43 ./usr/share/gocode/src/github.com/teambition/rrule-go/example_test.go
-rw-r--r-- root/root        47 2023-01-05 15:43 ./usr/share/gocode/src/github.com/teambition/rrule-go/go.mod
-rw-r--r-- root/root         0 2023-01-05 15:43 ./usr/share/gocode/src/github.com/teambition/rrule-go/go.sum
-rw-r--r-- root/root     26606 2023-01-05 15:43 ./usr/share/gocode/src/github.com/teambition/rrule-go/rrule.go
-rw-r--r-- root/root    126306 2023-01-05 15:43 ./usr/share/gocode/src/github.com/teambition/rrule-go/rrule_test.go
-rw-r--r-- root/root      5666 2023-01-05 15:43 ./usr/share/gocode/src/github.com/teambition/rrule-go/rruleset.go
-rw-r--r-- root/root     12304 2023-01-05 15:43 ./usr/share/gocode/src/github.com/teambition/rrule-go/rruleset_test.go
-rw-r--r-- root/root     13247 2023-01-05 15:43 ./usr/share/gocode/src/github.com/teambition/rrule-go/str.go
-rw-r--r-- root/root     12230 2023-01-05 15:43 ./usr/share/gocode/src/github.com/teambition/rrule-go/str_test.go
-rw-r--r-- root/root      3613 2023-01-05 15:43 ./usr/share/gocode/src/github.com/teambition/rrule-go/util.go


lintian
-------


Setup apt archive
-----------------

Merged Build-Depends: lintian
Filtered Build-Depends: lintian
dpkg-deb: building package 'sbuild-build-depends-lintian-dummy' in '/<<RESOLVERDIR>>/apt_archive/sbuild-build-depends-lintian-dummy.deb'.
Ign:1 copy:/<<RESOLVERDIR>>/apt_archive ./ InRelease
Get:2 copy:/<<RESOLVERDIR>>/apt_archive ./ Release [615 B]
Ign:3 copy:/<<RESOLVERDIR>>/apt_archive ./ Release.gpg
Get:4 copy:/<<RESOLVERDIR>>/apt_archive ./ Sources [1230 B]
Get:5 copy:/<<RESOLVERDIR>>/apt_archive ./ Packages [1292 B]
Fetched 3137 B in 0s (0 B/s)
Reading package lists...
Reading package lists...

Install lintian build dependencies (apt-based resolver)
-------------------------------------------------------

Installing build dependencies
Reading package lists...
Building dependency tree...
Reading state information...
The following additional packages will be installed:
  ca-certificates diffstat gpg gpgconf iso-codes libaliased-perl
  libapt-pkg-perl libassuan0 libb-hooks-endofscope-perl
  libb-hooks-op-check-perl libberkeleydb-perl libcapture-tiny-perl
  libcgi-pm-perl libclass-data-inheritable-perl libclass-method-modifiers-perl
  libclass-xsaccessor-perl libclone-perl libconfig-tiny-perl
  libconst-fast-perl libcpanel-json-xs-perl libdata-dpath-perl
  libdata-messagepack-perl libdata-optlist-perl libdata-validate-domain-perl
  libdata-validate-ip-perl libdata-validate-uri-perl libdevel-callchecker-perl
  libdevel-size-perl libdevel-stacktrace-perl libdynaloader-functions-perl
  libemail-address-xs-perl libencode-locale-perl libexception-class-perl
  libfile-basedir-perl libfile-listing-perl libfont-ttf-perl libhtml-form-perl
  libhtml-html5-entities-perl libhtml-parser-perl libhtml-tagset-perl
  libhtml-tokeparser-simple-perl libhtml-tree-perl libhttp-cookies-perl
  libhttp-date-perl libhttp-message-perl libhttp-negotiate-perl
  libimport-into-perl libio-html-perl libio-interactive-perl
  libio-socket-ssl-perl libio-string-perl libipc-run3-perl
  libipc-system-simple-perl libiterator-perl libiterator-util-perl
  libjson-maybexs-perl liblist-compare-perl liblist-someutils-perl
  liblist-utilsby-perl liblwp-mediatypes-perl liblwp-protocol-https-perl
  liblz1 liblzo2-2 libmarkdown2 libmldbm-perl libmodule-implementation-perl
  libmodule-runtime-perl libmoo-perl libmoox-aliases-perl libmouse-perl
  libnamespace-clean-perl libnet-domain-tld-perl libnet-http-perl
  libnet-ipv6addr-perl libnet-netmask-perl libnet-ssleay-perl
  libnetaddr-ip-perl libpackage-stash-perl libparams-classify-perl
  libparams-util-perl libpath-tiny-perl libperlio-gzip-perl
  libperlio-utf8-strict-perl libproc-processtable-perl libreadline8
  libregexp-ipv6-perl libregexp-wildcards-perl librole-tiny-perl
  libsereal-decoder-perl libsereal-encoder-perl libsort-versions-perl
  libsqlite3-0 libstrictures-perl libsub-exporter-perl
  libsub-exporter-progressive-perl libsub-identify-perl libsub-install-perl
  libsub-name-perl libsub-quote-perl libsyntax-keyword-try-perl
  libterm-readkey-perl libtext-levenshteinxs-perl
  libtext-markdown-discount-perl libtext-xslate-perl libtime-duration-perl
  libtime-moment-perl libtimedate-perl libtry-tiny-perl libunicode-utf8-perl
  liburi-perl libvariable-magic-perl libwww-mechanize-perl libwww-perl
  libwww-robotrules-perl libxml-libxml-perl libxml-namespacesupport-perl
  libxml-sax-base-perl libxml-sax-perl libxs-parse-keyword-perl libyaml-0-2
  libyaml-libyaml-perl lintian lzop netbase openssl patchutils
  perl-openssl-defaults plzip readline-common t1utils ucf unzip
Suggested packages:
  isoquery libxml-parser-perl libdata-dump-perl libcrypt-ssleay-perl
  libscalar-number-perl libbareword-filehandles-perl libindirect-perl
  libmultidimensional-perl libbusiness-isbn-perl libauthen-ntlm-perl
  binutils-multiarch libtext-template-perl readline-doc zip
Recommended packages:
  gnupg libcgi-fast-perl libhtml-format-perl liblist-someutils-xs-perl
  libfreezethaw-perl libmath-base85-perl libsocket6-perl
  libpackage-stash-xs-perl libxstring-perl libdata-dump-perl
  libhttp-daemon-perl libmailtools-perl libxml-sax-expat-perl
The following NEW packages will be installed:
  ca-certificates diffstat gpg gpgconf iso-codes libaliased-perl
  libapt-pkg-perl libassuan0 libb-hooks-endofscope-perl
  libb-hooks-op-check-perl libberkeleydb-perl libcapture-tiny-perl
  libcgi-pm-perl libclass-data-inheritable-perl libclass-method-modifiers-perl
  libclass-xsaccessor-perl libclone-perl libconfig-tiny-perl
  libconst-fast-perl libcpanel-json-xs-perl libdata-dpath-perl
  libdata-messagepack-perl libdata-optlist-perl libdata-validate-domain-perl
  libdata-validate-ip-perl libdata-validate-uri-perl libdevel-callchecker-perl
  libdevel-size-perl libdevel-stacktrace-perl libdynaloader-functions-perl
  libemail-address-xs-perl libencode-locale-perl libexception-class-perl
  libfile-basedir-perl libfile-listing-perl libfont-ttf-perl libhtml-form-perl
  libhtml-html5-entities-perl libhtml-parser-perl libhtml-tagset-perl
  libhtml-tokeparser-simple-perl libhtml-tree-perl libhttp-cookies-perl
  libhttp-date-perl libhttp-message-perl libhttp-negotiate-perl
  libimport-into-perl libio-html-perl libio-interactive-perl
  libio-socket-ssl-perl libio-string-perl libipc-run3-perl
  libipc-system-simple-perl libiterator-perl libiterator-util-perl
  libjson-maybexs-perl liblist-compare-perl liblist-someutils-perl
  liblist-utilsby-perl liblwp-mediatypes-perl liblwp-protocol-https-perl
  liblz1 liblzo2-2 libmarkdown2 libmldbm-perl libmodule-implementation-perl
  libmodule-runtime-perl libmoo-perl libmoox-aliases-perl libmouse-perl
  libnamespace-clean-perl libnet-domain-tld-perl libnet-http-perl
  libnet-ipv6addr-perl libnet-netmask-perl libnet-ssleay-perl
  libnetaddr-ip-perl libpackage-stash-perl libparams-classify-perl
  libparams-util-perl libpath-tiny-perl libperlio-gzip-perl
  libperlio-utf8-strict-perl libproc-processtable-perl libreadline8
  libregexp-ipv6-perl libregexp-wildcards-perl librole-tiny-perl
  libsereal-decoder-perl libsereal-encoder-perl libsort-versions-perl
  libsqlite3-0 libstrictures-perl libsub-exporter-perl
  libsub-exporter-progressive-perl libsub-identify-perl libsub-install-perl
  libsub-name-perl libsub-quote-perl libsyntax-keyword-try-perl
  libterm-readkey-perl libtext-levenshteinxs-perl
  libtext-markdown-discount-perl libtext-xslate-perl libtime-duration-perl
  libtime-moment-perl libtimedate-perl libtry-tiny-perl libunicode-utf8-perl
  liburi-perl libvariable-magic-perl libwww-mechanize-perl libwww-perl
  libwww-robotrules-perl libxml-libxml-perl libxml-namespacesupport-perl
  libxml-sax-base-perl libxml-sax-perl libxs-parse-keyword-perl libyaml-0-2
  libyaml-libyaml-perl lintian lzop netbase openssl patchutils
  perl-openssl-defaults plzip readline-common
  sbuild-build-depends-lintian-dummy t1utils ucf unzip
0 upgraded, 133 newly installed, 0 to remove and 0 not upgraded.
Need to get 14.2 MB of archives.
After this operation, 53.1 MB of additional disk space will be used.
Get:1 copy:/<<RESOLVERDIR>>/apt_archive ./ sbuild-build-depends-lintian-dummy 0.invalid.0 [852 B]
Get:2 http://deb.debian.org/debian bookworm/main amd64 netbase all 6.4 [12.8 kB]
Get:3 http://deb.debian.org/debian bookworm/main amd64 readline-common all 8.2-1.3 [69.0 kB]
Get:4 http://deb.debian.org/debian bookworm/main amd64 openssl amd64 3.0.15-1~deb12u1 [1427 kB]
Get:5 http://deb.debian.org/debian bookworm/main amd64 ca-certificates all 20230311 [153 kB]
Get:6 http://deb.debian.org/debian bookworm/main amd64 ucf all 3.0043+nmu1 [55.2 kB]
Get:7 http://deb.debian.org/debian bookworm/main amd64 diffstat amd64 1.65-1 [33.3 kB]
Get:8 http://deb.debian.org/debian bookworm/main amd64 libassuan0 amd64 2.5.5-5 [48.5 kB]
Get:9 http://deb.debian.org/debian bookworm/main amd64 libreadline8 amd64 8.2-1.3 [166 kB]
Get:10 http://deb.debian.org/debian bookworm/main amd64 gpgconf amd64 2.2.40-1.1 [564 kB]
Get:11 http://deb.debian.org/debian bookworm/main amd64 libsqlite3-0 amd64 3.40.1-2+deb12u1 [839 kB]
Get:12 http://deb.debian.org/debian bookworm/main amd64 gpg amd64 2.2.40-1.1 [949 kB]
Get:13 http://deb.debian.org/debian bookworm/main amd64 iso-codes all 4.15.0-1 [2906 kB]
Get:14 http://deb.debian.org/debian bookworm/main amd64 libaliased-perl all 0.34-3 [13.5 kB]
Get:15 http://deb.debian.org/debian bookworm/main amd64 libapt-pkg-perl amd64 0.1.40+b2 [69.2 kB]
Get:16 http://deb.debian.org/debian bookworm/main amd64 libb-hooks-op-check-perl amd64 0.22-2+b1 [10.5 kB]
Get:17 http://deb.debian.org/debian bookworm/main amd64 libdynaloader-functions-perl all 0.003-3 [12.7 kB]
Get:18 http://deb.debian.org/debian bookworm/main amd64 libdevel-callchecker-perl amd64 0.008-2 [15.8 kB]
Get:19 http://deb.debian.org/debian bookworm/main amd64 libparams-classify-perl amd64 0.015-2+b1 [23.1 kB]
Get:20 http://deb.debian.org/debian bookworm/main amd64 libmodule-runtime-perl all 0.016-2 [19.6 kB]
Get:21 http://deb.debian.org/debian bookworm/main amd64 libtry-tiny-perl all 0.31-2 [22.6 kB]
Get:22 http://deb.debian.org/debian bookworm/main amd64 libmodule-implementation-perl all 0.09-2 [12.6 kB]
Get:23 http://deb.debian.org/debian bookworm/main amd64 libsub-exporter-progressive-perl all 0.001013-3 [7496 B]
Get:24 http://deb.debian.org/debian bookworm/main amd64 libvariable-magic-perl amd64 0.63-1+b1 [44.0 kB]
Get:25 http://deb.debian.org/debian bookworm/main amd64 libb-hooks-endofscope-perl all 0.26-1 [19.6 kB]
Get:26 http://deb.debian.org/debian bookworm/main amd64 libberkeleydb-perl amd64 0.64-2+b1 [123 kB]
Get:27 http://deb.debian.org/debian bookworm/main amd64 libcapture-tiny-perl all 0.48-2 [24.6 kB]
Get:28 http://deb.debian.org/debian bookworm/main amd64 libhtml-tagset-perl all 3.20-6 [11.7 kB]
Get:29 http://deb.debian.org/debian bookworm/main amd64 libregexp-ipv6-perl all 0.03-3 [5212 B]
Get:30 http://deb.debian.org/debian bookworm/main amd64 liburi-perl all 5.17-1 [90.4 kB]
Get:31 http://deb.debian.org/debian bookworm/main amd64 libhtml-parser-perl amd64 3.81-1 [101 kB]
Get:32 http://deb.debian.org/debian bookworm/main amd64 libcgi-pm-perl all 4.55-1 [220 kB]
Get:33 http://deb.debian.org/debian bookworm/main amd64 libclass-data-inheritable-perl all 0.08-3 [8588 B]
Get:34 http://deb.debian.org/debian bookworm/main amd64 libclass-method-modifiers-perl all 2.14-1 [18.1 kB]
Get:35 http://deb.debian.org/debian bookworm/main amd64 libclass-xsaccessor-perl amd64 1.19-4+b1 [36.4 kB]
Get:36 http://deb.debian.org/debian bookworm/main amd64 libclone-perl amd64 0.46-1 [13.7 kB]
Get:37 http://deb.debian.org/debian bookworm/main amd64 libconfig-tiny-perl all 2.28-2 [16.4 kB]
Get:38 http://deb.debian.org/debian bookworm/main amd64 libparams-util-perl amd64 1.102-2+b1 [24.8 kB]
Get:39 http://deb.debian.org/debian bookworm/main amd64 libsub-install-perl all 0.929-1 [10.5 kB]
Get:40 http://deb.debian.org/debian bookworm/main amd64 libdata-optlist-perl all 0.113-1 [10.6 kB]
Get:41 http://deb.debian.org/debian bookworm/main amd64 libsub-exporter-perl all 0.989-1 [50.5 kB]
Get:42 http://deb.debian.org/debian bookworm/main amd64 libconst-fast-perl all 0.014-2 [8792 B]
Get:43 http://deb.debian.org/debian bookworm/main amd64 libcpanel-json-xs-perl amd64 4.35-1 [131 kB]
Get:44 http://deb.debian.org/debian bookworm/main amd64 libdevel-stacktrace-perl all 2.0400-2 [26.8 kB]
Get:45 http://deb.debian.org/debian bookworm/main amd64 libexception-class-perl all 1.45-1 [34.6 kB]
Get:46 http://deb.debian.org/debian bookworm/main amd64 libiterator-perl all 0.03+ds1-2 [18.8 kB]
Get:47 http://deb.debian.org/debian bookworm/main amd64 libiterator-util-perl all 0.02+ds1-2 [14.0 kB]
Get:48 http://deb.debian.org/debian bookworm/main amd64 libdata-dpath-perl all 0.58-2 [43.6 kB]
Get:49 http://deb.debian.org/debian bookworm/main amd64 libdata-messagepack-perl amd64 1.02-1+b1 [35.2 kB]
Get:50 http://deb.debian.org/debian bookworm/main amd64 libnet-domain-tld-perl all 1.75-3 [31.9 kB]
Get:51 http://deb.debian.org/debian bookworm/main amd64 libdata-validate-domain-perl all 0.10-1.1 [11.1 kB]
Get:52 http://deb.debian.org/debian bookworm/main amd64 libnet-ipv6addr-perl all 1.02-1 [21.7 kB]
Get:53 http://deb.debian.org/debian bookworm/main amd64 libnet-netmask-perl all 2.0002-2 [28.6 kB]
Get:54 http://deb.debian.org/debian bookworm/main amd64 libnetaddr-ip-perl amd64 4.079+dfsg-2+b1 [99.5 kB]
Get:55 http://deb.debian.org/debian bookworm/main amd64 libdata-validate-ip-perl all 0.31-1 [20.6 kB]
Get:56 http://deb.debian.org/debian bookworm/main amd64 libdata-validate-uri-perl all 0.07-2 [11.2 kB]
Get:57 http://deb.debian.org/debian bookworm/main amd64 libdevel-size-perl amd64 0.83-2+b1 [24.3 kB]
Get:58 http://deb.debian.org/debian bookworm/main amd64 libemail-address-xs-perl amd64 1.05-1+b1 [29.4 kB]
Get:59 http://deb.debian.org/debian bookworm/main amd64 libencode-locale-perl all 1.05-3 [12.9 kB]
Get:60 http://deb.debian.org/debian bookworm/main amd64 libipc-system-simple-perl all 1.30-2 [26.8 kB]
Get:61 http://deb.debian.org/debian bookworm/main amd64 libfile-basedir-perl all 0.09-2 [15.1 kB]
Get:62 http://deb.debian.org/debian bookworm/main amd64 libtimedate-perl all 2.3300-2 [39.3 kB]
Get:63 http://deb.debian.org/debian bookworm/main amd64 libhttp-date-perl all 6.05-2 [10.5 kB]
Get:64 http://deb.debian.org/debian bookworm/main amd64 libfile-listing-perl all 6.15-1 [12.6 kB]
Get:65 http://deb.debian.org/debian bookworm/main amd64 libio-string-perl all 1.08-4 [12.1 kB]
Get:66 http://deb.debian.org/debian bookworm/main amd64 libfont-ttf-perl all 1.06-2 [318 kB]
Get:67 http://deb.debian.org/debian bookworm/main amd64 libio-html-perl all 1.004-3 [16.2 kB]
Get:68 http://deb.debian.org/debian bookworm/main amd64 liblwp-mediatypes-perl all 6.04-2 [20.2 kB]
Get:69 http://deb.debian.org/debian bookworm/main amd64 libhttp-message-perl all 6.44-1 [81.7 kB]
Get:70 http://deb.debian.org/debian bookworm/main amd64 libhtml-form-perl all 6.11-1 [33.1 kB]
Get:71 http://deb.debian.org/debian bookworm/main amd64 libhtml-html5-entities-perl all 0.004-3 [21.0 kB]
Get:72 http://deb.debian.org/debian bookworm/main amd64 libhtml-tree-perl all 5.07-3 [211 kB]
Get:73 http://deb.debian.org/debian bookworm/main amd64 libhttp-cookies-perl all 6.10-1 [19.6 kB]
Get:74 http://deb.debian.org/debian bookworm/main amd64 libhttp-negotiate-perl all 6.01-2 [13.1 kB]
Get:75 http://deb.debian.org/debian bookworm/main amd64 perl-openssl-defaults amd64 7+b1 [7924 B]
Get:76 http://deb.debian.org/debian bookworm/main amd64 libnet-ssleay-perl amd64 1.92-2+b1 [317 kB]
Get:77 http://deb.debian.org/debian bookworm/main amd64 libio-socket-ssl-perl all 2.081-2 [219 kB]
Get:78 http://deb.debian.org/debian bookworm/main amd64 libnet-http-perl all 6.22-1 [25.3 kB]
Get:79 http://deb.debian.org/debian bookworm/main amd64 liblwp-protocol-https-perl all 6.10-1 [12.2 kB]
Get:80 http://deb.debian.org/debian bookworm/main amd64 libwww-robotrules-perl all 6.02-1 [12.9 kB]
Get:81 http://deb.debian.org/debian bookworm/main amd64 libwww-perl all 6.68-1 [186 kB]
Get:82 http://deb.debian.org/debian bookworm/main amd64 libhtml-tokeparser-simple-perl all 3.16-4 [39.1 kB]
Get:83 http://deb.debian.org/debian bookworm/main amd64 libimport-into-perl all 1.002005-2 [11.3 kB]
Get:84 http://deb.debian.org/debian bookworm/main amd64 libio-interactive-perl all 1.023-2 [11.0 kB]
Get:85 http://deb.debian.org/debian bookworm/main amd64 libipc-run3-perl all 0.048-3 [33.2 kB]
Get:86 http://deb.debian.org/debian bookworm/main amd64 libjson-maybexs-perl all 1.004004-1 [13.3 kB]
Get:87 http://deb.debian.org/debian bookworm/main amd64 liblist-compare-perl all 0.55-2 [65.7 kB]
Get:88 http://deb.debian.org/debian bookworm/main amd64 liblist-someutils-perl all 0.59-1 [37.1 kB]
Get:89 http://deb.debian.org/debian bookworm/main amd64 liblist-utilsby-perl all 0.12-2 [15.5 kB]
Get:90 http://deb.debian.org/debian bookworm/main amd64 liblz1 amd64 1.13-5 [37.7 kB]
Get:91 http://deb.debian.org/debian bookworm/main amd64 liblzo2-2 amd64 2.10-2 [56.9 kB]
Get:92 http://deb.debian.org/debian bookworm/main amd64 libmarkdown2 amd64 2.2.7-2 [37.0 kB]
Get:93 http://deb.debian.org/debian bookworm/main amd64 libmldbm-perl all 2.05-4 [16.8 kB]
Get:94 http://deb.debian.org/debian bookworm/main amd64 librole-tiny-perl all 2.002004-1 [21.4 kB]
Get:95 http://deb.debian.org/debian bookworm/main amd64 libsub-quote-perl all 2.006008-1 [21.8 kB]
Get:96 http://deb.debian.org/debian bookworm/main amd64 libmoo-perl all 2.005005-1 [58.0 kB]
Get:97 http://deb.debian.org/debian bookworm/main amd64 libstrictures-perl all 2.000006-1 [18.6 kB]
Get:98 http://deb.debian.org/debian bookworm/main amd64 libmoox-aliases-perl all 0.001006-2 [7156 B]
Get:99 http://deb.debian.org/debian bookworm/main amd64 libmouse-perl amd64 2.5.10-1+b3 [170 kB]
Get:100 http://deb.debian.org/debian bookworm/main amd64 libpackage-stash-perl all 0.40-1 [22.0 kB]
Get:101 http://deb.debian.org/debian bookworm/main amd64 libsub-identify-perl amd64 0.14-3 [10.9 kB]
Get:102 http://deb.debian.org/debian bookworm/main amd64 libsub-name-perl amd64 0.26-2+b1 [12.6 kB]
Get:103 http://deb.debian.org/debian bookworm/main amd64 libnamespace-clean-perl all 0.27-2 [17.8 kB]
Get:104 http://deb.debian.org/debian bookworm/main amd64 libpath-tiny-perl all 0.144-1 [56.4 kB]
Get:105 http://deb.debian.org/debian bookworm/main amd64 libperlio-gzip-perl amd64 0.20-1+b1 [17.3 kB]
Get:106 http://deb.debian.org/debian bookworm/main amd64 libperlio-utf8-strict-perl amd64 0.010-1 [11.4 kB]
Get:107 http://deb.debian.org/debian bookworm/main amd64 libproc-processtable-perl amd64 0.634-1+b2 [43.1 kB]
Get:108 http://deb.debian.org/debian bookworm/main amd64 libregexp-wildcards-perl all 1.05-3 [14.1 kB]
Get:109 http://deb.debian.org/debian bookworm/main amd64 libsereal-decoder-perl amd64 5.003+ds-1 [99.5 kB]
Get:110 http://deb.debian.org/debian bookworm/main amd64 libsereal-encoder-perl amd64 5.003+ds-1 [102 kB]
Get:111 http://deb.debian.org/debian bookworm/main amd64 libsort-versions-perl all 1.62-3 [8928 B]
Get:112 http://deb.debian.org/debian bookworm/main amd64 libxs-parse-keyword-perl amd64 0.33-1 [58.4 kB]
Get:113 http://deb.debian.org/debian bookworm/main amd64 libsyntax-keyword-try-perl amd64 0.28-1 [28.6 kB]
Get:114 http://deb.debian.org/debian bookworm/main amd64 libterm-readkey-perl amd64 2.38-2+b1 [24.5 kB]
Get:115 http://deb.debian.org/debian bookworm/main amd64 libtext-levenshteinxs-perl amd64 0.03-5+b1 [8404 B]
Get:116 http://deb.debian.org/debian bookworm/main amd64 libtext-markdown-discount-perl amd64 0.16-1 [13.0 kB]
Get:117 http://deb.debian.org/debian bookworm/main amd64 libtext-xslate-perl amd64 3.5.9-1+b2 [198 kB]
Get:118 http://deb.debian.org/debian bookworm/main amd64 libtime-duration-perl all 1.21-2 [13.1 kB]
Get:119 http://deb.debian.org/debian bookworm/main amd64 libtime-moment-perl amd64 0.44-2+b1 [73.0 kB]
Get:120 http://deb.debian.org/debian bookworm/main amd64 libunicode-utf8-perl amd64 0.62-2 [20.2 kB]
Get:121 http://deb.debian.org/debian bookworm/main amd64 libwww-mechanize-perl all 2.16-1 [116 kB]
Get:122 http://deb.debian.org/debian bookworm/main amd64 libxml-namespacesupport-perl all 1.12-2 [15.1 kB]
Get:123 http://deb.debian.org/debian bookworm/main amd64 libxml-sax-base-perl all 1.09-3 [20.6 kB]
Get:124 http://deb.debian.org/debian bookworm/main amd64 libxml-sax-perl all 1.02+dfsg-3 [59.4 kB]
Get:125 http://deb.debian.org/debian bookworm/main amd64 libxml-libxml-perl amd64 2.0207+dfsg+really+2.0134-1+b1 [322 kB]
Get:126 http://deb.debian.org/debian bookworm/main amd64 libyaml-0-2 amd64 0.2.5-1 [53.6 kB]
Get:127 http://deb.debian.org/debian bookworm/main amd64 libyaml-libyaml-perl amd64 0.86+ds-1 [34.4 kB]
Get:128 http://deb.debian.org/debian bookworm/main amd64 plzip amd64 1.10-5 [61.9 kB]
Get:129 http://deb.debian.org/debian bookworm/main amd64 lzop amd64 1.04-2 [84.2 kB]
Get:130 http://deb.debian.org/debian bookworm/main amd64 patchutils amd64 0.4.2-1 [77.5 kB]
Get:131 http://deb.debian.org/debian bookworm/main amd64 t1utils amd64 1.41-4 [62.1 kB]
Get:132 http://deb.debian.org/debian bookworm/main amd64 unzip amd64 6.0-28 [166 kB]
Get:133 http://deb.debian.org/debian bookworm/main amd64 lintian all 2.116.3 [1130 kB]
debconf: delaying package configuration, since apt-utils is not installed
Fetched 14.2 MB in 1s (26.0 MB/s)
Selecting previously unselected package netbase.
(Reading database ... 27857 files and directories currently installed.)
Preparing to unpack .../000-netbase_6.4_all.deb ...
Unpacking netbase (6.4) ...
Selecting previously unselected package readline-common.
Preparing to unpack .../001-readline-common_8.2-1.3_all.deb ...
Unpacking readline-common (8.2-1.3) ...
Selecting previously unselected package openssl.
Preparing to unpack .../002-openssl_3.0.15-1~deb12u1_amd64.deb ...
Unpacking openssl (3.0.15-1~deb12u1) ...
Selecting previously unselected package ca-certificates.
Preparing to unpack .../003-ca-certificates_20230311_all.deb ...
Unpacking ca-certificates (20230311) ...
Selecting previously unselected package ucf.
Preparing to unpack .../004-ucf_3.0043+nmu1_all.deb ...
Moving old data out of the way
Unpacking ucf (3.0043+nmu1) ...
Selecting previously unselected package diffstat.
Preparing to unpack .../005-diffstat_1.65-1_amd64.deb ...
Unpacking diffstat (1.65-1) ...
Selecting previously unselected package libassuan0:amd64.
Preparing to unpack .../006-libassuan0_2.5.5-5_amd64.deb ...
Unpacking libassuan0:amd64 (2.5.5-5) ...
Selecting previously unselected package libreadline8:amd64.
Preparing to unpack .../007-libreadline8_8.2-1.3_amd64.deb ...
Unpacking libreadline8:amd64 (8.2-1.3) ...
Selecting previously unselected package gpgconf.
Preparing to unpack .../008-gpgconf_2.2.40-1.1_amd64.deb ...
Unpacking gpgconf (2.2.40-1.1) ...
Selecting previously unselected package libsqlite3-0:amd64.
Preparing to unpack .../009-libsqlite3-0_3.40.1-2+deb12u1_amd64.deb ...
Unpacking libsqlite3-0:amd64 (3.40.1-2+deb12u1) ...
Selecting previously unselected package gpg.
Preparing to unpack .../010-gpg_2.2.40-1.1_amd64.deb ...
Unpacking gpg (2.2.40-1.1) ...
Selecting previously unselected package iso-codes.
Preparing to unpack .../011-iso-codes_4.15.0-1_all.deb ...
Unpacking iso-codes (4.15.0-1) ...
Selecting previously unselected package libaliased-perl.
Preparing to unpack .../012-libaliased-perl_0.34-3_all.deb ...
Unpacking libaliased-perl (0.34-3) ...
Selecting previously unselected package libapt-pkg-perl.
Preparing to unpack .../013-libapt-pkg-perl_0.1.40+b2_amd64.deb ...
Unpacking libapt-pkg-perl (0.1.40+b2) ...
Selecting previously unselected package libb-hooks-op-check-perl:amd64.
Preparing to unpack .../014-libb-hooks-op-check-perl_0.22-2+b1_amd64.deb ...
Unpacking libb-hooks-op-check-perl:amd64 (0.22-2+b1) ...
Selecting previously unselected package libdynaloader-functions-perl.
Preparing to unpack .../015-libdynaloader-functions-perl_0.003-3_all.deb ...
Unpacking libdynaloader-functions-perl (0.003-3) ...
Selecting previously unselected package libdevel-callchecker-perl:amd64.
Preparing to unpack .../016-libdevel-callchecker-perl_0.008-2_amd64.deb ...
Unpacking libdevel-callchecker-perl:amd64 (0.008-2) ...
Selecting previously unselected package libparams-classify-perl:amd64.
Preparing to unpack .../017-libparams-classify-perl_0.015-2+b1_amd64.deb ...
Unpacking libparams-classify-perl:amd64 (0.015-2+b1) ...
Selecting previously unselected package libmodule-runtime-perl.
Preparing to unpack .../018-libmodule-runtime-perl_0.016-2_all.deb ...
Unpacking libmodule-runtime-perl (0.016-2) ...
Selecting previously unselected package libtry-tiny-perl.
Preparing to unpack .../019-libtry-tiny-perl_0.31-2_all.deb ...
Unpacking libtry-tiny-perl (0.31-2) ...
Selecting previously unselected package libmodule-implementation-perl.
Preparing to unpack .../020-libmodule-implementation-perl_0.09-2_all.deb ...
Unpacking libmodule-implementation-perl (0.09-2) ...
Selecting previously unselected package libsub-exporter-progressive-perl.
Preparing to unpack .../021-libsub-exporter-progressive-perl_0.001013-3_all.deb ...
Unpacking libsub-exporter-progressive-perl (0.001013-3) ...
Selecting previously unselected package libvariable-magic-perl.
Preparing to unpack .../022-libvariable-magic-perl_0.63-1+b1_amd64.deb ...
Unpacking libvariable-magic-perl (0.63-1+b1) ...
Selecting previously unselected package libb-hooks-endofscope-perl.
Preparing to unpack .../023-libb-hooks-endofscope-perl_0.26-1_all.deb ...
Unpacking libb-hooks-endofscope-perl (0.26-1) ...
Selecting previously unselected package libberkeleydb-perl:amd64.
Preparing to unpack .../024-libberkeleydb-perl_0.64-2+b1_amd64.deb ...
Unpacking libberkeleydb-perl:amd64 (0.64-2+b1) ...
Selecting previously unselected package libcapture-tiny-perl.
Preparing to unpack .../025-libcapture-tiny-perl_0.48-2_all.deb ...
Unpacking libcapture-tiny-perl (0.48-2) ...
Selecting previously unselected package libhtml-tagset-perl.
Preparing to unpack .../026-libhtml-tagset-perl_3.20-6_all.deb ...
Unpacking libhtml-tagset-perl (3.20-6) ...
Selecting previously unselected package libregexp-ipv6-perl.
Preparing to unpack .../027-libregexp-ipv6-perl_0.03-3_all.deb ...
Unpacking libregexp-ipv6-perl (0.03-3) ...
Selecting previously unselected package liburi-perl.
Preparing to unpack .../028-liburi-perl_5.17-1_all.deb ...
Unpacking liburi-perl (5.17-1) ...
Selecting previously unselected package libhtml-parser-perl:amd64.
Preparing to unpack .../029-libhtml-parser-perl_3.81-1_amd64.deb ...
Unpacking libhtml-parser-perl:amd64 (3.81-1) ...
Selecting previously unselected package libcgi-pm-perl.
Preparing to unpack .../030-libcgi-pm-perl_4.55-1_all.deb ...
Unpacking libcgi-pm-perl (4.55-1) ...
Selecting previously unselected package libclass-data-inheritable-perl.
Preparing to unpack .../031-libclass-data-inheritable-perl_0.08-3_all.deb ...
Unpacking libclass-data-inheritable-perl (0.08-3) ...
Selecting previously unselected package libclass-method-modifiers-perl.
Preparing to unpack .../032-libclass-method-modifiers-perl_2.14-1_all.deb ...
Unpacking libclass-method-modifiers-perl (2.14-1) ...
Selecting previously unselected package libclass-xsaccessor-perl.
Preparing to unpack .../033-libclass-xsaccessor-perl_1.19-4+b1_amd64.deb ...
Unpacking libclass-xsaccessor-perl (1.19-4+b1) ...
Selecting previously unselected package libclone-perl:amd64.
Preparing to unpack .../034-libclone-perl_0.46-1_amd64.deb ...
Unpacking libclone-perl:amd64 (0.46-1) ...
Selecting previously unselected package libconfig-tiny-perl.
Preparing to unpack .../035-libconfig-tiny-perl_2.28-2_all.deb ...
Unpacking libconfig-tiny-perl (2.28-2) ...
Selecting previously unselected package libparams-util-perl.
Preparing to unpack .../036-libparams-util-perl_1.102-2+b1_amd64.deb ...
Unpacking libparams-util-perl (1.102-2+b1) ...
Selecting previously unselected package libsub-install-perl.
Preparing to unpack .../037-libsub-install-perl_0.929-1_all.deb ...
Unpacking libsub-install-perl (0.929-1) ...
Selecting previously unselected package libdata-optlist-perl.
Preparing to unpack .../038-libdata-optlist-perl_0.113-1_all.deb ...
Unpacking libdata-optlist-perl (0.113-1) ...
Selecting previously unselected package libsub-exporter-perl.
Preparing to unpack .../039-libsub-exporter-perl_0.989-1_all.deb ...
Unpacking libsub-exporter-perl (0.989-1) ...
Selecting previously unselected package libconst-fast-perl.
Preparing to unpack .../040-libconst-fast-perl_0.014-2_all.deb ...
Unpacking libconst-fast-perl (0.014-2) ...
Selecting previously unselected package libcpanel-json-xs-perl:amd64.
Preparing to unpack .../041-libcpanel-json-xs-perl_4.35-1_amd64.deb ...
Unpacking libcpanel-json-xs-perl:amd64 (4.35-1) ...
Selecting previously unselected package libdevel-stacktrace-perl.
Preparing to unpack .../042-libdevel-stacktrace-perl_2.0400-2_all.deb ...
Unpacking libdevel-stacktrace-perl (2.0400-2) ...
Selecting previously unselected package libexception-class-perl.
Preparing to unpack .../043-libexception-class-perl_1.45-1_all.deb ...
Unpacking libexception-class-perl (1.45-1) ...
Selecting previously unselected package libiterator-perl.
Preparing to unpack .../044-libiterator-perl_0.03+ds1-2_all.deb ...
Unpacking libiterator-perl (0.03+ds1-2) ...
Selecting previously unselected package libiterator-util-perl.
Preparing to unpack .../045-libiterator-util-perl_0.02+ds1-2_all.deb ...
Unpacking libiterator-util-perl (0.02+ds1-2) ...
Selecting previously unselected package libdata-dpath-perl.
Preparing to unpack .../046-libdata-dpath-perl_0.58-2_all.deb ...
Unpacking libdata-dpath-perl (0.58-2) ...
Selecting previously unselected package libdata-messagepack-perl.
Preparing to unpack .../047-libdata-messagepack-perl_1.02-1+b1_amd64.deb ...
Unpacking libdata-messagepack-perl (1.02-1+b1) ...
Selecting previously unselected package libnet-domain-tld-perl.
Preparing to unpack .../048-libnet-domain-tld-perl_1.75-3_all.deb ...
Unpacking libnet-domain-tld-perl (1.75-3) ...
Selecting previously unselected package libdata-validate-domain-perl.
Preparing to unpack .../049-libdata-validate-domain-perl_0.10-1.1_all.deb ...
Unpacking libdata-validate-domain-perl (0.10-1.1) ...
Selecting previously unselected package libnet-ipv6addr-perl.
Preparing to unpack .../050-libnet-ipv6addr-perl_1.02-1_all.deb ...
Unpacking libnet-ipv6addr-perl (1.02-1) ...
Selecting previously unselected package libnet-netmask-perl.
Preparing to unpack .../051-libnet-netmask-perl_2.0002-2_all.deb ...
Unpacking libnet-netmask-perl (2.0002-2) ...
Selecting previously unselected package libnetaddr-ip-perl.
Preparing to unpack .../052-libnetaddr-ip-perl_4.079+dfsg-2+b1_amd64.deb ...
Unpacking libnetaddr-ip-perl (4.079+dfsg-2+b1) ...
Selecting previously unselected package libdata-validate-ip-perl.
Preparing to unpack .../053-libdata-validate-ip-perl_0.31-1_all.deb ...
Unpacking libdata-validate-ip-perl (0.31-1) ...
Selecting previously unselected package libdata-validate-uri-perl.
Preparing to unpack .../054-libdata-validate-uri-perl_0.07-2_all.deb ...
Unpacking libdata-validate-uri-perl (0.07-2) ...
Selecting previously unselected package libdevel-size-perl.
Preparing to unpack .../055-libdevel-size-perl_0.83-2+b1_amd64.deb ...
Unpacking libdevel-size-perl (0.83-2+b1) ...
Selecting previously unselected package libemail-address-xs-perl.
Preparing to unpack .../056-libemail-address-xs-perl_1.05-1+b1_amd64.deb ...
Unpacking libemail-address-xs-perl (1.05-1+b1) ...
Selecting previously unselected package libencode-locale-perl.
Preparing to unpack .../057-libencode-locale-perl_1.05-3_all.deb ...
Unpacking libencode-locale-perl (1.05-3) ...
Selecting previously unselected package libipc-system-simple-perl.
Preparing to unpack .../058-libipc-system-simple-perl_1.30-2_all.deb ...
Unpacking libipc-system-simple-perl (1.30-2) ...
Selecting previously unselected package libfile-basedir-perl.
Preparing to unpack .../059-libfile-basedir-perl_0.09-2_all.deb ...
Unpacking libfile-basedir-perl (0.09-2) ...
Selecting previously unselected package libtimedate-perl.
Preparing to unpack .../060-libtimedate-perl_2.3300-2_all.deb ...
Unpacking libtimedate-perl (2.3300-2) ...
Selecting previously unselected package libhttp-date-perl.
Preparing to unpack .../061-libhttp-date-perl_6.05-2_all.deb ...
Unpacking libhttp-date-perl (6.05-2) ...
Selecting previously unselected package libfile-listing-perl.
Preparing to unpack .../062-libfile-listing-perl_6.15-1_all.deb ...
Unpacking libfile-listing-perl (6.15-1) ...
Selecting previously unselected package libio-string-perl.
Preparing to unpack .../063-libio-string-perl_1.08-4_all.deb ...
Unpacking libio-string-perl (1.08-4) ...
Selecting previously unselected package libfont-ttf-perl.
Preparing to unpack .../064-libfont-ttf-perl_1.06-2_all.deb ...
Unpacking libfont-ttf-perl (1.06-2) ...
Selecting previously unselected package libio-html-perl.
Preparing to unpack .../065-libio-html-perl_1.004-3_all.deb ...
Unpacking libio-html-perl (1.004-3) ...
Selecting previously unselected package liblwp-mediatypes-perl.
Preparing to unpack .../066-liblwp-mediatypes-perl_6.04-2_all.deb ...
Unpacking liblwp-mediatypes-perl (6.04-2) ...
Selecting previously unselected package libhttp-message-perl.
Preparing to unpack .../067-libhttp-message-perl_6.44-1_all.deb ...
Unpacking libhttp-message-perl (6.44-1) ...
Selecting previously unselected package libhtml-form-perl.
Preparing to unpack .../068-libhtml-form-perl_6.11-1_all.deb ...
Unpacking libhtml-form-perl (6.11-1) ...
Selecting previously unselected package libhtml-html5-entities-perl.
Preparing to unpack .../069-libhtml-html5-entities-perl_0.004-3_all.deb ...
Unpacking libhtml-html5-entities-perl (0.004-3) ...
Selecting previously unselected package libhtml-tree-perl.
Preparing to unpack .../070-libhtml-tree-perl_5.07-3_all.deb ...
Unpacking libhtml-tree-perl (5.07-3) ...
Selecting previously unselected package libhttp-cookies-perl.
Preparing to unpack .../071-libhttp-cookies-perl_6.10-1_all.deb ...
Unpacking libhttp-cookies-perl (6.10-1) ...
Selecting previously unselected package libhttp-negotiate-perl.
Preparing to unpack .../072-libhttp-negotiate-perl_6.01-2_all.deb ...
Unpacking libhttp-negotiate-perl (6.01-2) ...
Selecting previously unselected package perl-openssl-defaults:amd64.
Preparing to unpack .../073-perl-openssl-defaults_7+b1_amd64.deb ...
Unpacking perl-openssl-defaults:amd64 (7+b1) ...
Selecting previously unselected package libnet-ssleay-perl:amd64.
Preparing to unpack .../074-libnet-ssleay-perl_1.92-2+b1_amd64.deb ...
Unpacking libnet-ssleay-perl:amd64 (1.92-2+b1) ...
Selecting previously unselected package libio-socket-ssl-perl.
Preparing to unpack .../075-libio-socket-ssl-perl_2.081-2_all.deb ...
Unpacking libio-socket-ssl-perl (2.081-2) ...
Selecting previously unselected package libnet-http-perl.
Preparing to unpack .../076-libnet-http-perl_6.22-1_all.deb ...
Unpacking libnet-http-perl (6.22-1) ...
Selecting previously unselected package liblwp-protocol-https-perl.
Preparing to unpack .../077-liblwp-protocol-https-perl_6.10-1_all.deb ...
Unpacking liblwp-protocol-https-perl (6.10-1) ...
Selecting previously unselected package libwww-robotrules-perl.
Preparing to unpack .../078-libwww-robotrules-perl_6.02-1_all.deb ...
Unpacking libwww-robotrules-perl (6.02-1) ...
Selecting previously unselected package libwww-perl.
Preparing to unpack .../079-libwww-perl_6.68-1_all.deb ...
Unpacking libwww-perl (6.68-1) ...
Selecting previously unselected package libhtml-tokeparser-simple-perl.
Preparing to unpack .../080-libhtml-tokeparser-simple-perl_3.16-4_all.deb ...
Unpacking libhtml-tokeparser-simple-perl (3.16-4) ...
Selecting previously unselected package libimport-into-perl.
Preparing to unpack .../081-libimport-into-perl_1.002005-2_all.deb ...
Unpacking libimport-into-perl (1.002005-2) ...
Selecting previously unselected package libio-interactive-perl.
Preparing to unpack .../082-libio-interactive-perl_1.023-2_all.deb ...
Unpacking libio-interactive-perl (1.023-2) ...
Selecting previously unselected package libipc-run3-perl.
Preparing to unpack .../083-libipc-run3-perl_0.048-3_all.deb ...
Unpacking libipc-run3-perl (0.048-3) ...
Selecting previously unselected package libjson-maybexs-perl.
Preparing to unpack .../084-libjson-maybexs-perl_1.004004-1_all.deb ...
Unpacking libjson-maybexs-perl (1.004004-1) ...
Selecting previously unselected package liblist-compare-perl.
Preparing to unpack .../085-liblist-compare-perl_0.55-2_all.deb ...
Unpacking liblist-compare-perl (0.55-2) ...
Selecting previously unselected package liblist-someutils-perl.
Preparing to unpack .../086-liblist-someutils-perl_0.59-1_all.deb ...
Unpacking liblist-someutils-perl (0.59-1) ...
Selecting previously unselected package liblist-utilsby-perl.
Preparing to unpack .../087-liblist-utilsby-perl_0.12-2_all.deb ...
Unpacking liblist-utilsby-perl (0.12-2) ...
Selecting previously unselected package liblz1:amd64.
Preparing to unpack .../088-liblz1_1.13-5_amd64.deb ...
Unpacking liblz1:amd64 (1.13-5) ...
Selecting previously unselected package liblzo2-2:amd64.
Preparing to unpack .../089-liblzo2-2_2.10-2_amd64.deb ...
Unpacking liblzo2-2:amd64 (2.10-2) ...
Selecting previously unselected package libmarkdown2:amd64.
Preparing to unpack .../090-libmarkdown2_2.2.7-2_amd64.deb ...
Unpacking libmarkdown2:amd64 (2.2.7-2) ...
Selecting previously unselected package libmldbm-perl.
Preparing to unpack .../091-libmldbm-perl_2.05-4_all.deb ...
Unpacking libmldbm-perl (2.05-4) ...
Selecting previously unselected package librole-tiny-perl.
Preparing to unpack .../092-librole-tiny-perl_2.002004-1_all.deb ...
Unpacking librole-tiny-perl (2.002004-1) ...
Selecting previously unselected package libsub-quote-perl.
Preparing to unpack .../093-libsub-quote-perl_2.006008-1_all.deb ...
Unpacking libsub-quote-perl (2.006008-1) ...
Selecting previously unselected package libmoo-perl.
Preparing to unpack .../094-libmoo-perl_2.005005-1_all.deb ...
Unpacking libmoo-perl (2.005005-1) ...
Selecting previously unselected package libstrictures-perl.
Preparing to unpack .../095-libstrictures-perl_2.000006-1_all.deb ...
Unpacking libstrictures-perl (2.000006-1) ...
Selecting previously unselected package libmoox-aliases-perl.
Preparing to unpack .../096-libmoox-aliases-perl_0.001006-2_all.deb ...
Unpacking libmoox-aliases-perl (0.001006-2) ...
Selecting previously unselected package libmouse-perl.
Preparing to unpack .../097-libmouse-perl_2.5.10-1+b3_amd64.deb ...
Unpacking libmouse-perl (2.5.10-1+b3) ...
Selecting previously unselected package libpackage-stash-perl.
Preparing to unpack .../098-libpackage-stash-perl_0.40-1_all.deb ...
Unpacking libpackage-stash-perl (0.40-1) ...
Selecting previously unselected package libsub-identify-perl.
Preparing to unpack .../099-libsub-identify-perl_0.14-3_amd64.deb ...
Unpacking libsub-identify-perl (0.14-3) ...
Selecting previously unselected package libsub-name-perl:amd64.
Preparing to unpack .../100-libsub-name-perl_0.26-2+b1_amd64.deb ...
Unpacking libsub-name-perl:amd64 (0.26-2+b1) ...
Selecting previously unselected package libnamespace-clean-perl.
Preparing to unpack .../101-libnamespace-clean-perl_0.27-2_all.deb ...
Unpacking libnamespace-clean-perl (0.27-2) ...
Selecting previously unselected package libpath-tiny-perl.
Preparing to unpack .../102-libpath-tiny-perl_0.144-1_all.deb ...
Unpacking libpath-tiny-perl (0.144-1) ...
Selecting previously unselected package libperlio-gzip-perl.
Preparing to unpack .../103-libperlio-gzip-perl_0.20-1+b1_amd64.deb ...
Unpacking libperlio-gzip-perl (0.20-1+b1) ...
Selecting previously unselected package libperlio-utf8-strict-perl.
Preparing to unpack .../104-libperlio-utf8-strict-perl_0.010-1_amd64.deb ...
Unpacking libperlio-utf8-strict-perl (0.010-1) ...
Selecting previously unselected package libproc-processtable-perl:amd64.
Preparing to unpack .../105-libproc-processtable-perl_0.634-1+b2_amd64.deb ...
Unpacking libproc-processtable-perl:amd64 (0.634-1+b2) ...
Selecting previously unselected package libregexp-wildcards-perl.
Preparing to unpack .../106-libregexp-wildcards-perl_1.05-3_all.deb ...
Unpacking libregexp-wildcards-perl (1.05-3) ...
Selecting previously unselected package libsereal-decoder-perl.
Preparing to unpack .../107-libsereal-decoder-perl_5.003+ds-1_amd64.deb ...
Unpacking libsereal-decoder-perl (5.003+ds-1) ...
Selecting previously unselected package libsereal-encoder-perl.
Preparing to unpack .../108-libsereal-encoder-perl_5.003+ds-1_amd64.deb ...
Unpacking libsereal-encoder-perl (5.003+ds-1) ...
Selecting previously unselected package libsort-versions-perl.
Preparing to unpack .../109-libsort-versions-perl_1.62-3_all.deb ...
Unpacking libsort-versions-perl (1.62-3) ...
Selecting previously unselected package libxs-parse-keyword-perl.
Preparing to unpack .../110-libxs-parse-keyword-perl_0.33-1_amd64.deb ...
Unpacking libxs-parse-keyword-perl (0.33-1) ...
Selecting previously unselected package libsyntax-keyword-try-perl.
Preparing to unpack .../111-libsyntax-keyword-try-perl_0.28-1_amd64.deb ...
Unpacking libsyntax-keyword-try-perl (0.28-1) ...
Selecting previously unselected package libterm-readkey-perl.
Preparing to unpack .../112-libterm-readkey-perl_2.38-2+b1_amd64.deb ...
Unpacking libterm-readkey-perl (2.38-2+b1) ...
Selecting previously unselected package libtext-levenshteinxs-perl.
Preparing to unpack .../113-libtext-levenshteinxs-perl_0.03-5+b1_amd64.deb ...
Unpacking libtext-levenshteinxs-perl (0.03-5+b1) ...
Selecting previously unselected package libtext-markdown-discount-perl.
Preparing to unpack .../114-libtext-markdown-discount-perl_0.16-1_amd64.deb ...
Unpacking libtext-markdown-discount-perl (0.16-1) ...
Selecting previously unselected package libtext-xslate-perl:amd64.
Preparing to unpack .../115-libtext-xslate-perl_3.5.9-1+b2_amd64.deb ...
Unpacking libtext-xslate-perl:amd64 (3.5.9-1+b2) ...
Selecting previously unselected package libtime-duration-perl.
Preparing to unpack .../116-libtime-duration-perl_1.21-2_all.deb ...
Unpacking libtime-duration-perl (1.21-2) ...
Selecting previously unselected package libtime-moment-perl.
Preparing to unpack .../117-libtime-moment-perl_0.44-2+b1_amd64.deb ...
Unpacking libtime-moment-perl (0.44-2+b1) ...
Selecting previously unselected package libunicode-utf8-perl.
Preparing to unpack .../118-libunicode-utf8-perl_0.62-2_amd64.deb ...
Unpacking libunicode-utf8-perl (0.62-2) ...
Selecting previously unselected package libwww-mechanize-perl.
Preparing to unpack .../119-libwww-mechanize-perl_2.16-1_all.deb ...
Unpacking libwww-mechanize-perl (2.16-1) ...
Selecting previously unselected package libxml-namespacesupport-perl.
Preparing to unpack .../120-libxml-namespacesupport-perl_1.12-2_all.deb ...
Unpacking libxml-namespacesupport-perl (1.12-2) ...
Selecting previously unselected package libxml-sax-base-perl.
Preparing to unpack .../121-libxml-sax-base-perl_1.09-3_all.deb ...
Unpacking libxml-sax-base-perl (1.09-3) ...
Selecting previously unselected package libxml-sax-perl.
Preparing to unpack .../122-libxml-sax-perl_1.02+dfsg-3_all.deb ...
Unpacking libxml-sax-perl (1.02+dfsg-3) ...
Selecting previously unselected package libxml-libxml-perl.
Preparing to unpack .../123-libxml-libxml-perl_2.0207+dfsg+really+2.0134-1+b1_amd64.deb ...
Unpacking libxml-libxml-perl (2.0207+dfsg+really+2.0134-1+b1) ...
Selecting previously unselected package libyaml-0-2:amd64.
Preparing to unpack .../124-libyaml-0-2_0.2.5-1_amd64.deb ...
Unpacking libyaml-0-2:amd64 (0.2.5-1) ...
Selecting previously unselected package libyaml-libyaml-perl.
Preparing to unpack .../125-libyaml-libyaml-perl_0.86+ds-1_amd64.deb ...
Unpacking libyaml-libyaml-perl (0.86+ds-1) ...
Selecting previously unselected package plzip.
Preparing to unpack .../126-plzip_1.10-5_amd64.deb ...
Unpacking plzip (1.10-5) ...
Selecting previously unselected package lzop.
Preparing to unpack .../127-lzop_1.04-2_amd64.deb ...
Unpacking lzop (1.04-2) ...
Selecting previously unselected package patchutils.
Preparing to unpack .../128-patchutils_0.4.2-1_amd64.deb ...
Unpacking patchutils (0.4.2-1) ...
Selecting previously unselected package t1utils.
Preparing to unpack .../129-t1utils_1.41-4_amd64.deb ...
Unpacking t1utils (1.41-4) ...
Selecting previously unselected package unzip.
Preparing to unpack .../130-unzip_6.0-28_amd64.deb ...
Unpacking unzip (6.0-28) ...
Selecting previously unselected package lintian.
Preparing to unpack .../131-lintian_2.116.3_all.deb ...
Unpacking lintian (2.116.3) ...
Selecting previously unselected package sbuild-build-depends-lintian-dummy.
Preparing to unpack .../132-sbuild-build-depends-lintian-dummy_0.invalid.0_amd64.deb ...
Unpacking sbuild-build-depends-lintian-dummy (0.invalid.0) ...
Setting up libapt-pkg-perl (0.1.40+b2) ...
Setting up liblz1:amd64 (1.13-5) ...
Setting up libberkeleydb-perl:amd64 (0.64-2+b1) ...
Setting up plzip (1.10-5) ...
update-alternatives: using /usr/bin/lzip.plzip to provide /usr/bin/lzip (lzip) in auto mode
update-alternatives: using /usr/bin/lzip.plzip to provide /usr/bin/lzip-compressor (lzip-compressor) in auto mode
update-alternatives: using /usr/bin/lzip.plzip to provide /usr/bin/lzip-decompressor (lzip-decompressor) in auto mode
Setting up libunicode-utf8-perl (0.62-2) ...
Setting up libmouse-perl (2.5.10-1+b3) ...
Setting up libdata-messagepack-perl (1.02-1+b1) ...
Setting up libdynaloader-functions-perl (0.003-3) ...
Setting up libclass-method-modifiers-perl (2.14-1) ...
Setting up liblist-compare-perl (0.55-2) ...
Setting up libclone-perl:amd64 (0.46-1) ...
Setting up libyaml-0-2:amd64 (0.2.5-1) ...
Setting up libsub-identify-perl (0.14-3) ...
Setting up libcpanel-json-xs-perl:amd64 (4.35-1) ...
Setting up libhtml-tagset-perl (3.20-6) ...
Setting up libdevel-size-perl (0.83-2+b1) ...
Setting up unzip (6.0-28) ...
Setting up libsqlite3-0:amd64 (3.40.1-2+deb12u1) ...
Setting up liblwp-mediatypes-perl (6.04-2) ...
Setting up libyaml-libyaml-perl (0.86+ds-1) ...
Setting up libio-interactive-perl (1.023-2) ...
Setting up libtry-tiny-perl (0.31-2) ...
Setting up perl-openssl-defaults:amd64 (7+b1) ...
Setting up libmldbm-perl (2.05-4) ...
Setting up libxml-namespacesupport-perl (1.12-2) ...
Setting up liblzo2-2:amd64 (2.10-2) ...
Setting up libtime-moment-perl (0.44-2+b1) ...
Setting up libencode-locale-perl (1.05-3) ...
Setting up libassuan0:amd64 (2.5.5-5) ...
Setting up libconfig-tiny-perl (2.28-2) ...
Setting up libsereal-encoder-perl (5.003+ds-1) ...
Setting up liblist-utilsby-perl (0.12-2) ...
Setting up libnet-netmask-perl (2.0002-2) ...
Setting up libsub-install-perl (0.929-1) ...
Setting up patchutils (0.4.2-1) ...
Setting up libjson-maybexs-perl (1.004004-1) ...
Setting up libxml-sax-base-perl (1.09-3) ...
Setting up libio-string-perl (1.08-4) ...
Setting up libnetaddr-ip-perl (4.079+dfsg-2+b1) ...
Setting up libclass-data-inheritable-perl (0.08-3) ...
Setting up libxs-parse-keyword-perl (0.33-1) ...
Setting up libipc-system-simple-perl (1.30-2) ...
Setting up libnet-domain-tld-perl (1.75-3) ...
Setting up libperlio-utf8-strict-perl (0.010-1) ...
Setting up t1utils (1.41-4) ...
Setting up diffstat (1.65-1) ...
Setting up libvariable-magic-perl (0.63-1+b1) ...
Setting up libio-html-perl (1.004-3) ...
Setting up libb-hooks-op-check-perl:amd64 (0.22-2+b1) ...
Setting up ucf (3.0043+nmu1) ...
Setting up libparams-util-perl (1.102-2+b1) ...
Setting up libtime-duration-perl (1.21-2) ...
Setting up libtext-xslate-perl:amd64 (3.5.9-1+b2) ...
Setting up libsub-exporter-progressive-perl (0.001013-3) ...
Setting up libcapture-tiny-perl (0.48-2) ...
Setting up libtimedate-perl (2.3300-2) ...
Setting up libregexp-ipv6-perl (0.03-3) ...
Setting up libsub-name-perl:amd64 (0.26-2+b1) ...
Setting up libsyntax-keyword-try-perl (0.28-1) ...
Setting up libdata-validate-domain-perl (0.10-1.1) ...
Setting up libproc-processtable-perl:amd64 (0.634-1+b2) ...
Setting up libpath-tiny-perl (0.144-1) ...
Setting up lzop (1.04-2) ...
Setting up librole-tiny-perl (2.002004-1) ...
Setting up libipc-run3-perl (0.048-3) ...
Setting up libregexp-wildcards-perl (1.05-3) ...
Setting up libaliased-perl (0.34-3) ...
Setting up netbase (6.4) ...
Setting up libstrictures-perl (2.000006-1) ...
Setting up libsub-quote-perl (2.006008-1) ...
Setting up libdevel-stacktrace-perl (2.0400-2) ...
Setting up libclass-xsaccessor-perl (1.19-4+b1) ...
Setting up libsort-versions-perl (1.62-3) ...
Setting up libterm-readkey-perl (2.38-2+b1) ...
Setting up libfont-ttf-perl (1.06-2) ...
Setting up openssl (3.0.15-1~deb12u1) ...
Setting up libtext-levenshteinxs-perl (0.03-5+b1) ...
Setting up libperlio-gzip-perl (0.20-1+b1) ...
Setting up readline-common (8.2-1.3) ...
Setting up libhtml-html5-entities-perl (0.004-3) ...
Setting up libsereal-decoder-perl (5.003+ds-1) ...
Setting up libmarkdown2:amd64 (2.2.7-2) ...
Setting up liburi-perl (5.17-1) ...
Setting up iso-codes (4.15.0-1) ...
Setting up libnet-ipv6addr-perl (1.02-1) ...
Setting up libdata-validate-ip-perl (0.31-1) ...
Setting up libemail-address-xs-perl (1.05-1+b1) ...
Setting up libnet-ssleay-perl:amd64 (1.92-2+b1) ...
Setting up libhttp-date-perl (6.05-2) ...
Setting up libfile-basedir-perl (0.09-2) ...
Setting up libfile-listing-perl (6.15-1) ...
Setting up libreadline8:amd64 (8.2-1.3) ...
Setting up libnet-http-perl (6.22-1) ...
Setting up libtext-markdown-discount-perl (0.16-1) ...
Setting up libexception-class-perl (1.45-1) ...
Setting up libdevel-callchecker-perl:amd64 (0.008-2) ...
Setting up libxml-sax-perl (1.02+dfsg-3) ...
update-perl-sax-parsers: Registering Perl SAX parser XML::SAX::PurePerl with priority 10...
update-perl-sax-parsers: Updating overall Perl SAX parser modules info file...

Creating config file /etc/perl/XML/SAX/ParserDetails.ini with new version
Setting up ca-certificates (20230311) ...
Updating certificates in /etc/ssl/certs...
140 added, 0 removed; done.
Setting up libdata-validate-uri-perl (0.07-2) ...
Setting up libdata-optlist-perl (0.113-1) ...
Setting up libxml-libxml-perl (2.0207+dfsg+really+2.0134-1+b1) ...
update-perl-sax-parsers: Registering Perl SAX parser XML::LibXML::SAX::Parser with priority 50...
update-perl-sax-parsers: Registering Perl SAX parser XML::LibXML::SAX with priority 50...
update-perl-sax-parsers: Updating overall Perl SAX parser modules info file...
Replacing config file /etc/perl/XML/SAX/ParserDetails.ini with new version
Setting up libwww-robotrules-perl (6.02-1) ...
Setting up libhtml-parser-perl:amd64 (3.81-1) ...
Setting up gpgconf (2.2.40-1.1) ...
Setting up libio-socket-ssl-perl (2.081-2) ...
Setting up gpg (2.2.40-1.1) ...
Setting up libsub-exporter-perl (0.989-1) ...
Setting up libhttp-message-perl (6.44-1) ...
Setting up libhtml-form-perl (6.11-1) ...
Setting up libiterator-perl (0.03+ds1-2) ...
Setting up libhttp-negotiate-perl (6.01-2) ...
Setting up libiterator-util-perl (0.02+ds1-2) ...
Setting up libhttp-cookies-perl (6.10-1) ...
Setting up libhtml-tree-perl (5.07-3) ...
Setting up libparams-classify-perl:amd64 (0.015-2+b1) ...
Setting up libcgi-pm-perl (4.55-1) ...
Setting up libmodule-runtime-perl (0.016-2) ...
Setting up libconst-fast-perl (0.014-2) ...
Setting up libdata-dpath-perl (0.58-2) ...
Setting up libmodule-implementation-perl (0.09-2) ...
Setting up libpackage-stash-perl (0.40-1) ...
Setting up libimport-into-perl (1.002005-2) ...
Setting up libmoo-perl (2.005005-1) ...
Setting up liblist-someutils-perl (0.59-1) ...
Setting up libmoox-aliases-perl (0.001006-2) ...
Setting up libb-hooks-endofscope-perl (0.26-1) ...
Setting up libnamespace-clean-perl (0.27-2) ...
Setting up libwww-perl (6.68-1) ...
Setting up libhtml-tokeparser-simple-perl (3.16-4) ...
Setting up libwww-mechanize-perl (2.16-1) ...
Setting up liblwp-protocol-https-perl (6.10-1) ...
Setting up lintian (2.116.3) ...
Setting up sbuild-build-depends-lintian-dummy (0.invalid.0) ...
Processing triggers for libc-bin (2.36-9+deb12u9) ...
Processing triggers for man-db (2.11.2-2) ...
Not building database; man-db/auto-update is not 'true'.
Processing triggers for ca-certificates (20230311) ...
Updating certificates in /etc/ssl/certs...
0 added, 0 removed; done.
Running hooks in /etc/ca-certificates/update.d...
done.
Running lintian...
E: golang-github-teambition-rrule-go changes: bad-distribution-in-changes-file bookworm
W: golang-github-teambition-rrule-go-dev: changelog-distribution-does-not-match-changes-file unstable != bookworm [usr/share/doc/golang-github-teambition-rrule-go-dev/changelog.Debian.gz:1]
W: golang-github-teambition-rrule-go changes: distribution-and-changes-mismatch bookworm unstable

E: Lintian run failed (runtime error)

+------------------------------------------------------------------------------+
| Post Build                                                                   |
+------------------------------------------------------------------------------+


+------------------------------------------------------------------------------+
| Cleanup                                                                      |
+------------------------------------------------------------------------------+

Purging /<<BUILDDIR>>
Not cleaning session: cloned chroot in use

+------------------------------------------------------------------------------+
| Summary                                                                      |
+------------------------------------------------------------------------------+

Build Architecture: amd64
Build Type: binary
Build-Space: 28004
Build-Time: 7
Distribution: bookworm
Host Architecture: amd64
Install-Time: 14
Job: /tmp/debusine-fetch-exec-upload-o3_vhz0x/golang-github-teambition-rrule-go_1.8.1-1.dsc
Lintian: error
Machine Architecture: amd64
Package: golang-github-teambition-rrule-go
Package-Time: 34
Source-Version: 1.8.1-1
Space: 28004
Status: successful
Version: 1.8.1-1
--------------------------------------------------------------------------------
Finished at 2024-11-22T20:46:49Z
Build needed 00:00:34, 28004k disk space

Relations

Relation Direction Type Name
relates-to Source package golang-github-teambition-rrule-go_1.8.1-1
relates-to Binary package golang-github-teambition-rrule-go-dev_1.8.1-1_all
relates-to Binary packages golang-github-teambition-rrule-go_1.8.1-1

build log System build a package - 18 hours, 1 minute ago 0 minutes
BETA