24.4 MiB | (pruned after 90 days) |
view log » | |
flutter | view log » |
configure | view log » |
build | view log » |
analyze | view log » |
deploy | view log » |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 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 |
[#1140536] 2024/01/30 20:57:37 Booting image archlinux (default) on port 22632 [#1140536] 2024/01/30 20:57:38 Waiting for guest to settle [#1140536] 2024/01/30 20:57:46 Sending tasks [#1140536] 2024/01/30 20:57:48 Sending build environment [#1140536] 2024/01/30 20:57:49 Sending secrets [#1140536] 2024/01/30 20:57:49 Resolving secret 77c7956b-003e-44f7-bb5c-2944b2047654 [#1140536] 2024/01/30 20:57:50 Resolving secret 6d21b97d-cd64-4490-b325-acf8b05a542f [#1140536] 2024/01/30 20:57:50 Resolving secret 431b0b53-2af2-441b-b879-86c5913bab4d [#1140536] 2024/01/30 20:57:51 Resolving secret 4e454305-057f-44c3-9a4e-eeb74d54545b [#1140536] 2024/01/30 20:57:52 Resolving secret a76ea4e0-b264-4b32-b701-7cadf78b3230 [#1140536] 2024/01/30 20:57:53 Installing packages Warning: Permanently added '[localhost]:22632' (ED25519) to the list of known hosts. :: Synchronizing package databases... core downloading... extra downloading... multilib downloading... warning: archlinux-keyring-20231222-1 is up to date -- skipping there is nothing to do Warning: Permanently added '[localhost]:22632' (ED25519) to the list of known hosts. linux: ignoring package upgrade (6.6.10.arch1-1 => 6.7.2.arch1-1) mkinitcpio: ignoring package upgrade (37.1-2 => 37.3-1) Resolving dependencies... Checking package conflicts... installing core/iana-etc (20231117-1 -> 20231228-1) installing core/filesystem (2023.09.18-1 -> 2024.01.19-1) installing core/acl (2.3.1-3 -> 2.3.2-1) installing core/attr (2.5.1-3 -> 2.5.2-1) installing core/readline (8.2.007-1 -> 8.2.010-1) installing core/bash (5.2.021-1 -> 5.2.026-2) installing core/audit (3.1.2-1 -> 4.0-1) installing core/pam (1.5.3-3 -> 1.6.0-3) installing core/coreutils (9.4-2 -> 9.4-3) installing core/xz (5.4.5-1 -> 5.4.6-1) installing core/zlib (1:1.3-2 -> 1:1.3.1-1) installing core/systemd-libs (255.2-2 -> 255.3-1) installing core/ca-certificates-mozilla (3.96.1-1 -> 3.97-1) installing core/device-mapper (2.03.22-2 -> 2.03.23-1) installing core/cryptsetup (2.6.1-3 -> 2.7.0-1) installing core/shadow (4.14.2-1 -> 4.14.3-1) installing core/libseccomp (2.5.5-1 -> 2.5.5-2) installing core/fakeroot (1.32.2-1 -> 1.33-1) installing core/glib2 (2.78.3-1 -> 2.78.4-1) installing core/gnutls (3.8.2-1 -> 3.8.3-1) installing core/sqlite (3.44.2-2 -> 3.45.0-1) installing core/libnghttp2 (1.58.0-1 -> 1.59.0-1) installing core/gnupg (2.4.3-2 -> 2.4.4-1) installing core/iputils (20231222-2 -> 20240117-1) installing core/libxml2 (2.12.3-1 -> 2.12.4-1) installing core/licenses (20231215-1 -> 20240115-1) installing extra/mercurial (6.6.1-4 -> 6.6.2-1) installing core/systemd (255.2-2 -> 255.3-1) installing core/systemd-sysvcompat (255.2-2 -> 255.3-1) Download Size: 37.25 M Installed Size: 168.90 M Size Delta: 454.02 K Downloading packages... (1/1) systemd-255.3-1-x86_64.pkg.tar.zst (0) gnutls-3.8.3-1-x86_64.pkg.tar.zst (2891752/2891752) 100% (2/5) mercurial-6.6.2-1-x86_64.pkg.tar.zst (0) glib2-2.78.4-1-x86_64.pkg.tar.zst (4005726/4005726) 100% (3/5) coreutils-9.4-3-x86_64.pkg.tar.zst (2918016/2918016) 100% coreutils-9.4-3-x86_64.pkg.tar.zst (2918016/2918016) 100% (4/5) glib2-2.78.4-1-x86_64.pkg.tar.zst.sig (0) gnutls-3.8.3-1-x86_64.pkg.tar.zst.sig (310/310) 100% (1/4) systemd-255.3-1-x86_64.pkg.tar.zst (2063737/8479503) 24% glib2-2.78.4-1-x86_64.pkg.tar.zst.sig (119/119) 100% (2/4) mercurial-6.6.2-1-x86_64.pkg.tar.zst (2226634/6118862) 36% systemd-255.3-1-x86_64.pkg.tar.zst (8479503/8479503) 100% (3/5) gnupg-2.4.4-1-x86_64.pkg.tar.zst (48168/2831767) 1% mercurial-6.6.2-1-x86_64.pkg.tar.zst (6118862/6118862) 100% (4/5) systemd-255.3-1-x86_64.pkg.tar.zst.sig (0) coreutils-9.4-3-x86_64.pkg.tar.zst.sig (310/310) 100% (1/4) gnupg-2.4.4-1-x86_64.pkg.tar.zst (1702952/2831767) 60% gnupg-2.4.4-1-x86_64.pkg.tar.zst (2831767/2831767) 100% (2/5) systemd-255.3-1-x86_64.pkg.tar.zst.sig (0) systemd-255.3-1-x86_64.pkg.tar.zst.sig (119/119) 100% (3/4) sqlite-3.45.0-1-x86_64.pkg.tar.zst (0) bash-5.2.026-2-x86_64.pkg.tar.zst (1898729/1898729) 100% (4/5) shadow-4.14.3-1-x86_64.pkg.tar.zst (0) gnupg-2.4.4-1-x86_64.pkg.tar.zst.sig (119/119) 100% (1/4) mercurial-6.6.2-1-x86_64.pkg.tar.zst.sig (0) sqlite-3.45.0-1-x86_64.pkg.tar.zst (1745771/1745771) 100% (2/5) shadow-4.14.3-1-x86_64.pkg.tar.zst (0) mercurial-6.6.2-1-x86_64.pkg.tar.zst.sig (566/566) 100% (3/4) systemd-libs-255.3-1-x86_64.pkg.tar.zst (0) shadow-4.14.3-1-x86_64.pkg.tar.zst (1207779/1207779) 100% (4/5) pam-1.6.0-3-x86_64.pkg.tar.zst (0) bash-5.2.026-2-x86_64.pkg.tar.zst.sig (310/310) 100% (1/4) systemd-libs-255.3-1-x86_64.pkg.tar.zst (0) systemd-libs-255.3-1-x86_64.pkg.tar.zst (1133466/1133466) 100% (2/5) pam-1.6.0-3-x86_64.pkg.tar.zst (0) pam-1.6.0-3-x86_64.pkg.tar.zst (935824/935824) 100% (3/5) libxml2-2.12.4-1-x86_64.pkg.tar.zst (0) sqlite-3.45.0-1-x86_64.pkg.tar.zst.sig (310/310) 100% (4/4) pam-1.6.0-3-x86_64.pkg.tar.zst.sig (0) shadow-4.14.3-1-x86_64.pkg.tar.zst.sig (119/119) 100% (1/4) libxml2-2.12.4-1-x86_64.pkg.tar.zst (0) libxml2-2.12.4-1-x86_64.pkg.tar.zst (863844/863844) 100% (2/5) pam-1.6.0-3-x86_64.pkg.tar.zst.sig (0) systemd-libs-255.3-1-x86_64.pkg.tar.zst.sig (119/119) 100% (3/4) xz-5.4.6-1-x86_64.pkg.tar.zst (0) pam-1.6.0-3-x86_64.pkg.tar.zst.sig (310/310) 100% (4/4) iana-etc-20231228-1-any.pkg.tar.zst (0) cryptsetup-2.7.0-1-x86_64.pkg.tar.zst (773115/773115) 100% (5/5) cryptsetup-2.7.0-1-x86_64.pkg.tar.zst.sig (0) xz-5.4.6-1-x86_64.pkg.tar.zst (628653/628653) 100% (1/5) libxml2-2.12.4-1-x86_64.pkg.tar.zst.sig (0) libxml2-2.12.4-1-x86_64.pkg.tar.zst.sig (119/119) 100% (2/4) audit-4.0-1-x86_64.pkg.tar.zst (0) iana-etc-20231228-1-any.pkg.tar.zst (409088/409088) 100% (3/5) xz-5.4.6-1-x86_64.pkg.tar.zst.sig (0) cryptsetup-2.7.0-1-x86_64.pkg.tar.zst.sig (119/119) 100% (4/4) iana-etc-20231228-1-any.pkg.tar.zst.sig (0) audit-4.0-1-x86_64.pkg.tar.zst (396502/396502) 100% (5/5) audit-4.0-1-x86_64.pkg.tar.zst.sig (0) xz-5.4.6-1-x86_64.pkg.tar.zst.sig (119/119) 100% (1/4) ca-certificates-mozilla-3.97-1-x86_64.pkg.tar.zst (0) ca-certificates-mozilla-3.97-1-x86_64.pkg.tar.zst (373088/373088) 100% (2/5) readline-8.2.010-1-x86_64.pkg.tar.zst (0) iana-etc-20231228-1-any.pkg.tar.zst.sig (310/310) 100% (3/4) device-mapper-2.03.23-1-x86_64.pkg.tar.zst (0) readline-8.2.010-1-x86_64.pkg.tar.zst (331212/331212) 100% (4/5) acl-2.3.2-1-x86_64.pkg.tar.zst (0) audit-4.0-1-x86_64.pkg.tar.zst.sig (119/119) 100% (1/4) device-mapper-2.03.23-1-x86_64.pkg.tar.zst (289611/289611) 100% device-mapper-2.03.23-1-x86_64.pkg.tar.zst (289611/289611) 100% (2/4) acl-2.3.2-1-x86_64.pkg.tar.zst (0) ca-certificates-mozilla-3.97-1-x86_64.pkg.tar.zst.sig (119/119) 100% (3/4) device-mapper-2.03.23-1-x86_64.pkg.tar.zst.sig (0) acl-2.3.2-1-x86_64.pkg.tar.zst (141091/141091) 100% (4/5) licenses-20240115-1-any.pkg.tar.zst (0) device-mapper-2.03.23-1-x86_64.pkg.tar.zst.sig (119/119) 100% (1/4) readline-8.2.010-1-x86_64.pkg.tar.zst.sig (0) readline-8.2.010-1-x86_64.pkg.tar.zst.sig (310/310) 100% (2/4) licenses-20240115-1-any.pkg.tar.zst (0) iputils-20240117-1-x86_64.pkg.tar.zst (127224/127224) 100% (3/5) libnghttp2-1.59.0-1-x86_64.pkg.tar.zst (0) licenses-20240115-1-any.pkg.tar.zst (105695/105695) 100% (4/5) iputils-20240117-1-x86_64.pkg.tar.zst.sig (0) acl-2.3.2-1-x86_64.pkg.tar.zst.sig (119/119) 100% (1/4) libnghttp2-1.59.0-1-x86_64.pkg.tar.zst (0) libnghttp2-1.59.0-1-x86_64.pkg.tar.zst (98741/98741) 100% (2/5) iputils-20240117-1-x86_64.pkg.tar.zst.sig (0) iputils-20240117-1-x86_64.pkg.tar.zst.sig (310/310) 100% (3/4) libseccomp-2.5.5-2-x86_64.pkg.tar.zst (0) zlib-1:1.3.1-1-x86_64.pkg.tar.zst (94797/94797) 100% (4/5) fakeroot-1.33-1-x86_64.pkg.tar.zst (0) licenses-20240115-1-any.pkg.tar.zst.sig (119/119) 100% (1/4) libseccomp-2.5.5-2-x86_64.pkg.tar.zst (0) libseccomp-2.5.5-2-x86_64.pkg.tar.zst (90897/90897) 100% (2/5) fakeroot-1.33-1-x86_64.pkg.tar.zst (0) libnghttp2-1.59.0-1-x86_64.pkg.tar.zst.sig (119/119) 100% (3/4) attr-2.5.2-1-x86_64.pkg.tar.zst (0) fakeroot-1.33-1-x86_64.pkg.tar.zst (78471/78471) 100% (4/5) filesystem-2024.01.19-1-any.pkg.tar.zst (0) attr-2.5.2-1-x86_64.pkg.tar.zst (70054/70054) 100% (5/5) attr-2.5.2-1-x86_64.pkg.tar.zst.sig (0) libseccomp-2.5.5-2-x86_64.pkg.tar.zst.sig (310/310) 100% (1/4) zlib-1:1.3.1-1-x86_64.pkg.tar.zst.sig (0) filesystem-2024.01.19-1-any.pkg.tar.zst (14795/14795) 100% (2/5) fakeroot-1.33-1-x86_64.pkg.tar.zst.sig (0) fakeroot-1.33-1-x86_64.pkg.tar.zst.sig (119/119) 100% (3/4) systemd-sysvcompat-255.3-1-x86_64.pkg.tar.zst (0) attr-2.5.2-1-x86_64.pkg.tar.zst.sig (119/119) 100% (1/3) zlib-1:1.3.1-1-x86_64.pkg.tar.zst.sig (0) systemd-sysvcompat-255.3-1-x86_64.pkg.tar.zst (6238/6238) 100% (2/3) filesystem-2024.01.19-1-any.pkg.tar.zst.sig (0) filesystem-2024.01.19-1-any.pkg.tar.zst.sig (119/119) 100% (1/2) zlib-1:1.3.1-1-x86_64.pkg.tar.zst.sig (0) zlib-1:1.3.1-1-x86_64.pkg.tar.zst.sig (566/566) 100% (1/1) systemd-sysvcompat-255.3-1-x86_64.pkg.tar.zst.sig (0) systemd-sysvcompat-255.3-1-x86_64.pkg.tar.zst.sig (119/119) 100% checking keys in keyring (0/29) 0% checking keys in keyring (1/29) 3% checking keys in keyring (2/29) 6% checking keys in keyring (3/29) 10% checking keys in keyring (4/29) 13% checking keys in keyring (5/29) 17% checking keys in keyring (6/29) 20% checking keys in keyring (7/29) 24% checking keys in keyring (8/29) 27% checking keys in keyring (9/29) 31% checking keys in keyring (10/29) 34% checking keys in keyring (11/29) 37% checking keys in keyring (12/29) 41% checking keys in keyring (13/29) 44% checking keys in keyring (14/29) 48% checking keys in keyring (15/29) 51% checking keys in keyring (16/29) 55% checking keys in keyring (17/29) 58% checking keys in keyring (18/29) 62% checking keys in keyring (19/29) 65% checking keys in keyring (20/29) 68% checking keys in keyring (21/29) 72% checking keys in keyring (22/29) 75% checking keys in keyring (23/29) 79% checking keys in keyring (24/29) 82% checking keys in keyring (25/29) 86% checking keys in keyring (26/29) 89% checking keys in keyring (27/29) 93% checking keys in keyring (28/29) 96% checking keys in keyring (29/29) 100% checking package integrity (0/29) 0% checking package integrity (1/29) 1% checking package integrity (5/29) 2% checking package integrity (6/29) 7% checking package integrity (7/29) 8% checking package integrity (8/29) 10% checking package integrity (9/29) 18% checking package integrity (10/29) 19% checking package integrity (11/29) 20% checking package integrity (12/29) 22% checking package integrity (13/29) 23% checking package integrity (14/29) 24% checking package integrity (15/29) 26% checking package integrity (16/29) 29% checking package integrity (18/29) 30% checking package integrity (19/29) 40% checking package integrity (20/29) 47% checking package integrity (21/29) 52% checking package integrity (23/29) 59% checking package integrity (24/29) 60% checking package integrity (25/29) 62% checking package integrity (27/29) 78% checking package integrity (28/29) 99% checking package integrity (29/29) 100% loading package files (0/29) 0% loading package files (1/29) 1% loading package files (5/29) 2% loading package files (6/29) 7% loading package files (7/29) 8% loading package files (8/29) 10% loading package files (9/29) 18% loading package files (10/29) 19% loading package files (11/29) 20% loading package files (12/29) 22% loading package files (13/29) 23% loading package files (14/29) 24% loading package files (15/29) 26% loading package files (16/29) 29% loading package files (18/29) 30% loading package files (19/29) 40% loading package files (20/29) 47% loading package files (21/29) 52% loading package files (23/29) 59% loading package files (24/29) 60% loading package files (25/29) 62% loading package files (27/29) 78% loading package files (28/29) 99% loading package files (29/29) 100% checking for file conflicts (0/29) 0% checking for file conflicts (1/29) 3% checking for file conflicts (2/29) 6% checking for file conflicts (3/29) 10% checking for file conflicts (4/29) 13% checking for file conflicts (5/29) 17% checking for file conflicts (6/29) 20% checking for file conflicts (7/29) 24% checking for file conflicts (8/29) 27% checking for file conflicts (9/29) 31% checking for file conflicts (10/29) 34% checking for file conflicts (11/29) 37% checking for file conflicts (12/29) 41% checking for file conflicts (13/29) 44% checking for file conflicts (14/29) 48% checking for file conflicts (15/29) 51% checking for file conflicts (16/29) 55% checking for file conflicts (17/29) 58% checking for file conflicts (18/29) 62% checking for file conflicts (19/29) 65% checking for file conflicts (20/29) 68% checking for file conflicts (21/29) 72% checking for file conflicts (22/29) 75% checking for file conflicts (23/29) 79% checking for file conflicts (24/29) 82% checking for file conflicts (25/29) 86% checking for file conflicts (26/29) 89% checking for file conflicts (27/29) 93% checking for file conflicts (28/29) 96% checking for file conflicts (29/29) 100% Starting transaction... upgrading iana-etc (1/29) 0% upgrading iana-etc (1/29) 6% upgrading iana-etc (1/29) 16% upgrading iana-etc (1/29) 100% upgrading filesystem (2/29) 0% upgrading filesystem (2/29) 100% :: /etc/passwd installed as /etc/passwd.pacnew upgrading acl (3/29) 0% upgrading acl (3/29) 29% upgrading acl (3/29) 50% upgrading acl (3/29) 87% upgrading acl (3/29) 100% upgrading attr (4/29) 0% upgrading attr (4/29) 58% upgrading attr (4/29) 93% upgrading attr (4/29) 100% upgrading readline (5/29) 0% upgrading readline (5/29) 12% upgrading readline (5/29) 24% upgrading readline (5/29) 51% upgrading readline (5/29) 71% upgrading readline (5/29) 98% upgrading readline (5/29) 100% upgrading bash (6/29) 0% upgrading bash (6/29) 2% upgrading bash (6/29) 26% upgrading bash (6/29) 27% upgrading bash (6/29) 28% upgrading bash (6/29) 29% upgrading bash (6/29) 30% upgrading bash (6/29) 31% upgrading bash (6/29) 32% upgrading bash (6/29) 38% upgrading bash (6/29) 39% upgrading bash (6/29) 40% upgrading bash (6/29) 44% upgrading bash (6/29) 49% upgrading bash (6/29) 57% upgrading bash (6/29) 58% upgrading bash (6/29) 59% upgrading bash (6/29) 61% upgrading bash (6/29) 62% upgrading bash (6/29) 63% upgrading bash (6/29) 64% upgrading bash (6/29) 65% upgrading bash (6/29) 67% upgrading bash (6/29) 69% upgrading bash (6/29) 70% upgrading bash (6/29) 71% upgrading bash (6/29) 72% upgrading bash (6/29) 73% upgrading bash (6/29) 74% upgrading bash (6/29) 75% upgrading bash (6/29) 76% upgrading bash (6/29) 77% upgrading bash (6/29) 78% upgrading bash (6/29) 79% upgrading bash (6/29) 81% upgrading bash (6/29) 82% upgrading bash (6/29) 84% upgrading bash (6/29) 85% upgrading bash (6/29) 86% upgrading bash (6/29) 88% upgrading bash (6/29) 89% upgrading bash (6/29) 90% upgrading bash (6/29) 91% upgrading bash (6/29) 92% upgrading bash (6/29) 94% upgrading bash (6/29) 99% upgrading bash (6/29) 100% upgrading audit (7/29) 0% upgrading audit (7/29) 12% upgrading audit (7/29) 22% upgrading audit (7/29) 33% upgrading audit (7/29) 43% upgrading audit (7/29) 49% upgrading audit (7/29) 59% upgrading audit (7/29) 76% upgrading audit (7/29) 90% upgrading audit (7/29) 100% directory permissions differ on /var/log/audit/ filesystem: 700 package: 755 upgrading pam (8/29) 0% upgrading pam (8/29) 6% upgrading pam (8/29) 8% upgrading pam (8/29) 12% upgrading pam (8/29) 14% upgrading pam (8/29) 16% upgrading pam (8/29) 19% upgrading pam (8/29) 20% upgrading pam (8/29) 22% upgrading pam (8/29) 26% upgrading pam (8/29) 33% upgrading pam (8/29) 40% upgrading pam (8/29) 47% upgrading pam (8/29) 63% upgrading pam (8/29) 66% upgrading pam (8/29) 67% upgrading pam (8/29) 68% upgrading pam (8/29) 69% upgrading pam (8/29) 70% upgrading pam (8/29) 71% upgrading pam (8/29) 72% upgrading pam (8/29) 73% upgrading pam (8/29) 76% upgrading pam (8/29) 77% upgrading pam (8/29) 79% upgrading pam (8/29) 81% upgrading pam (8/29) 83% upgrading pam (8/29) 90% upgrading pam (8/29) 99% upgrading pam (8/29) 100% upgrading coreutils (9/29) 0% upgrading coreutils (9/29) 1% upgrading coreutils (9/29) 2% upgrading coreutils (9/29) 3% upgrading coreutils (9/29) 4% upgrading coreutils (9/29) 6% upgrading coreutils (9/29) 7% upgrading coreutils (9/29) 8% upgrading coreutils (9/29) 9% upgrading coreutils (9/29) 11% upgrading coreutils (9/29) 12% upgrading coreutils (9/29) 13% upgrading coreutils (9/29) 14% upgrading coreutils (9/29) 15% upgrading coreutils (9/29) 16% upgrading coreutils (9/29) 17% upgrading coreutils (9/29) 18% upgrading coreutils (9/29) 19% upgrading coreutils (9/29) 20% upgrading coreutils (9/29) 21% upgrading coreutils (9/29) 22% upgrading coreutils (9/29) 23% upgrading coreutils (9/29) 24% upgrading coreutils (9/29) 25% upgrading coreutils (9/29) 26% upgrading coreutils (9/29) 27% upgrading coreutils (9/29) 28% upgrading coreutils (9/29) 29% upgrading coreutils (9/29) 30% upgrading coreutils (9/29) 34% upgrading coreutils (9/29) 38% upgrading coreutils (9/29) 40% upgrading coreutils (9/29) 42% upgrading coreutils (9/29) 44% upgrading coreutils (9/29) 46% upgrading coreutils (9/29) 48% upgrading coreutils (9/29) 50% upgrading coreutils (9/29) 51% upgrading coreutils (9/29) 52% upgrading coreutils (9/29) 55% upgrading coreutils (9/29) 57% upgrading coreutils (9/29) 58% upgrading coreutils (9/29) 60% upgrading coreutils (9/29) 61% upgrading coreutils (9/29) 62% upgrading coreutils (9/29) 63% upgrading coreutils (9/29) 65% upgrading coreutils (9/29) 67% upgrading coreutils (9/29) 68% upgrading coreutils (9/29) 69% upgrading coreutils (9/29) 70% upgrading coreutils (9/29) 72% upgrading coreutils (9/29) 74% upgrading coreutils (9/29) 76% upgrading coreutils (9/29) 77% upgrading coreutils (9/29) 79% upgrading coreutils (9/29) 81% upgrading coreutils (9/29) 82% upgrading coreutils (9/29) 83% upgrading coreutils (9/29) 85% upgrading coreutils (9/29) 86% upgrading coreutils (9/29) 87% upgrading coreutils (9/29) 88% upgrading coreutils (9/29) 90% upgrading coreutils (9/29) 92% upgrading coreutils (9/29) 94% upgrading coreutils (9/29) 95% upgrading coreutils (9/29) 98% upgrading coreutils (9/29) 100% upgrading xz (10/29) 0% upgrading xz (10/29) 8% upgrading xz (10/29) 13% upgrading xz (10/29) 15% upgrading xz (10/29) 24% upgrading xz (10/29) 32% upgrading xz (10/29) 36% upgrading xz (10/29) 38% upgrading xz (10/29) 40% upgrading xz (10/29) 41% upgrading xz (10/29) 43% upgrading xz (10/29) 44% upgrading xz (10/29) 46% upgrading xz (10/29) 52% upgrading xz (10/29) 56% upgrading xz (10/29) 58% upgrading xz (10/29) 61% upgrading xz (10/29) 64% upgrading xz (10/29) 75% upgrading xz (10/29) 89% upgrading xz (10/29) 100% upgrading zlib (11/29) 0% upgrading zlib (11/29) 43% upgrading zlib (11/29) 95% upgrading zlib (11/29) 100% upgrading systemd-libs (12/29) 0% upgrading systemd-libs (12/29) 4% upgrading systemd-libs (12/29) 6% upgrading systemd-libs (12/29) 14% upgrading systemd-libs (12/29) 26% upgrading systemd-libs (12/29) 30% upgrading systemd-libs (12/29) 40% upgrading systemd-libs (12/29) 67% upgrading systemd-libs (12/29) 70% upgrading systemd-libs (12/29) 72% upgrading systemd-libs (12/29) 76% upgrading systemd-libs (12/29) 80% upgrading systemd-libs (12/29) 85% upgrading systemd-libs (12/29) 89% upgrading systemd-libs (12/29) 93% upgrading systemd-libs (12/29) 98% upgrading systemd-libs (12/29) 99% upgrading systemd-libs (12/29) 100% upgrading ca-certificates-mozilla (13/29) 0% upgrading ca-certificates-mozilla (13/29) 15% upgrading ca-certificates-mozilla (13/29) 100% upgrading device-mapper (14/29) 0% upgrading device-mapper (14/29) 16% upgrading device-mapper (14/29) 31% upgrading device-mapper (14/29) 42% upgrading device-mapper (14/29) 56% upgrading device-mapper (14/29) 90% upgrading device-mapper (14/29) 100% upgrading cryptsetup (15/29) 0% upgrading cryptsetup (15/29) 7% upgrading cryptsetup (15/29) 11% upgrading cryptsetup (15/29) 15% upgrading cryptsetup (15/29) 19% upgrading cryptsetup (15/29) 52% upgrading cryptsetup (15/29) 56% upgrading cryptsetup (15/29) 60% upgrading cryptsetup (15/29) 62% upgrading cryptsetup (15/29) 64% upgrading cryptsetup (15/29) 66% upgrading cryptsetup (15/29) 68% upgrading cryptsetup (15/29) 72% upgrading cryptsetup (15/29) 74% upgrading cryptsetup (15/29) 76% upgrading cryptsetup (15/29) 80% upgrading cryptsetup (15/29) 83% upgrading cryptsetup (15/29) 93% upgrading cryptsetup (15/29) 100% upgrading shadow (16/29) 0% upgrading shadow (16/29) 5% upgrading shadow (16/29) 7% upgrading shadow (16/29) 8% upgrading shadow (16/29) 10% upgrading shadow (16/29) 12% upgrading shadow (16/29) 13% upgrading shadow (16/29) 14% upgrading shadow (16/29) 16% upgrading shadow (16/29) 18% upgrading shadow (16/29) 21% upgrading shadow (16/29) 22% upgrading shadow (16/29) 25% upgrading shadow (16/29) 27% upgrading shadow (16/29) 29% upgrading shadow (16/29) 31% upgrading shadow (16/29) 32% upgrading shadow (16/29) 34% upgrading shadow (16/29) 36% upgrading shadow (16/29) 37% upgrading shadow (16/29) 39% upgrading shadow (16/29) 40% upgrading shadow (16/29) 42% upgrading shadow (16/29) 44% upgrading shadow (16/29) 45% upgrading shadow (16/29) 47% upgrading shadow (16/29) 48% upgrading shadow (16/29) 50% upgrading shadow (16/29) 55% upgrading shadow (16/29) 63% upgrading shadow (16/29) 69% upgrading shadow (16/29) 77% upgrading shadow (16/29) 84% upgrading shadow (16/29) 92% upgrading shadow (16/29) 99% upgrading shadow (16/29) 100% upgrading libseccomp (17/29) 0% upgrading libseccomp (17/29) 36% upgrading libseccomp (17/29) 81% upgrading libseccomp (17/29) 100% upgrading fakeroot (18/29) 0% upgrading fakeroot (18/29) 52% upgrading fakeroot (18/29) 100% upgrading glib2 (19/29) 0% upgrading glib2 (19/29) 1% upgrading glib2 (19/29) 2% upgrading glib2 (19/29) 3% upgrading glib2 (19/29) 4% upgrading glib2 (19/29) 5% upgrading glib2 (19/29) 6% upgrading glib2 (19/29) 7% upgrading glib2 (19/29) 8% upgrading glib2 (19/29) 9% upgrading glib2 (19/29) 10% upgrading glib2 (19/29) 31% upgrading glib2 (19/29) 40% upgrading glib2 (19/29) 54% upgrading glib2 (19/29) 58% upgrading glib2 (19/29) 62% upgrading glib2 (19/29) 64% upgrading glib2 (19/29) 65% upgrading glib2 (19/29) 66% upgrading glib2 (19/29) 67% upgrading glib2 (19/29) 68% upgrading glib2 (19/29) 69% upgrading glib2 (19/29) 70% upgrading glib2 (19/29) 71% upgrading glib2 (19/29) 72% upgrading glib2 (19/29) 73% upgrading glib2 (19/29) 74% upgrading glib2 (19/29) 75% upgrading glib2 (19/29) 76% upgrading glib2 (19/29) 77% upgrading glib2 (19/29) 78% upgrading glib2 (19/29) 79% upgrading glib2 (19/29) 80% upgrading glib2 (19/29) 81% upgrading glib2 (19/29) 82% upgrading glib2 (19/29) 83% upgrading glib2 (19/29) 84% upgrading glib2 (19/29) 85% upgrading glib2 (19/29) 86% upgrading glib2 (19/29) 87% upgrading glib2 (19/29) 88% upgrading glib2 (19/29) 89% upgrading glib2 (19/29) 90% upgrading glib2 (19/29) 91% upgrading glib2 (19/29) 92% upgrading glib2 (19/29) 93% upgrading glib2 (19/29) 94% upgrading glib2 (19/29) 95% upgrading glib2 (19/29) 96% upgrading glib2 (19/29) 97% upgrading glib2 (19/29) 98% upgrading glib2 (19/29) 100% upgrading gnutls (20/29) 0% upgrading gnutls (20/29) 3% upgrading gnutls (20/29) 6% upgrading gnutls (20/29) 7% upgrading gnutls (20/29) 9% upgrading gnutls (20/29) 10% upgrading gnutls (20/29) 11% upgrading gnutls (20/29) 12% upgrading gnutls (20/29) 13% upgrading gnutls (20/29) 41% upgrading gnutls (20/29) 45% upgrading gnutls (20/29) 47% upgrading gnutls (20/29) 48% upgrading gnutls (20/29) 52% upgrading gnutls (20/29) 57% upgrading gnutls (20/29) 61% upgrading gnutls (20/29) 62% upgrading gnutls (20/29) 63% upgrading gnutls (20/29) 64% upgrading gnutls (20/29) 67% upgrading gnutls (20/29) 69% upgrading gnutls (20/29) 72% upgrading gnutls (20/29) 74% upgrading gnutls (20/29) 76% upgrading gnutls (20/29) 79% upgrading gnutls (20/29) 81% upgrading gnutls (20/29) 83% upgrading gnutls (20/29) 85% upgrading gnutls (20/29) 88% upgrading gnutls (20/29) 90% upgrading gnutls (20/29) 92% upgrading gnutls (20/29) 95% upgrading gnutls (20/29) 97% upgrading gnutls (20/29) 99% upgrading gnutls (20/29) 100% upgrading sqlite (21/29) 0% upgrading sqlite (21/29) 3% upgrading sqlite (21/29) 41% upgrading sqlite (21/29) 46% upgrading sqlite (21/29) 48% upgrading sqlite (21/29) 53% upgrading sqlite (21/29) 77% upgrading sqlite (21/29) 84% upgrading sqlite (21/29) 100% upgrading libnghttp2 (22/29) 0% upgrading libnghttp2 (22/29) 24% upgrading libnghttp2 (22/29) 49% upgrading libnghttp2 (22/29) 100% upgrading gnupg (23/29) 0% upgrading gnupg (23/29) 2% upgrading gnupg (23/29) 8% upgrading gnupg (23/29) 9% upgrading gnupg (23/29) 27% upgrading gnupg (23/29) 30% upgrading gnupg (23/29) 33% upgrading gnupg (23/29) 35% upgrading gnupg (23/29) 37% upgrading gnupg (23/29) 38% upgrading gnupg (23/29) 39% upgrading gnupg (23/29) 45% upgrading gnupg (23/29) 47% upgrading gnupg (23/29) 49% upgrading gnupg (23/29) 50% upgrading gnupg (23/29) 51% upgrading gnupg (23/29) 52% upgrading gnupg (23/29) 53% upgrading gnupg (23/29) 60% upgrading gnupg (23/29) 61% upgrading gnupg (23/29) 62% upgrading gnupg (23/29) 63% upgrading gnupg (23/29) 64% upgrading gnupg (23/29) 69% upgrading gnupg (23/29) 71% upgrading gnupg (23/29) 73% upgrading gnupg (23/29) 74% upgrading gnupg (23/29) 75% upgrading gnupg (23/29) 76% upgrading gnupg (23/29) 78% upgrading gnupg (23/29) 79% upgrading gnupg (23/29) 81% upgrading gnupg (23/29) 82% upgrading gnupg (23/29) 83% upgrading gnupg (23/29) 84% upgrading gnupg (23/29) 85% upgrading gnupg (23/29) 87% upgrading gnupg (23/29) 89% upgrading gnupg (23/29) 90% upgrading gnupg (23/29) 91% upgrading gnupg (23/29) 92% upgrading gnupg (23/29) 94% upgrading gnupg (23/29) 95% upgrading gnupg (23/29) 99% upgrading gnupg (23/29) 100% upgrading iputils (24/29) 0% upgrading iputils (24/29) 38% upgrading iputils (24/29) 57% upgrading iputils (24/29) 77% upgrading iputils (24/29) 88% upgrading iputils (24/29) 100% upgrading libxml2 (25/29) 0% upgrading libxml2 (25/29) 4% upgrading libxml2 (25/29) 7% upgrading libxml2 (25/29) 9% upgrading libxml2 (25/29) 11% upgrading libxml2 (25/29) 16% upgrading libxml2 (25/29) 77% upgrading libxml2 (25/29) 86% upgrading libxml2 (25/29) 89% upgrading libxml2 (25/29) 91% upgrading libxml2 (25/29) 99% upgrading libxml2 (25/29) 100% upgrading licenses (26/29) 0% upgrading licenses (26/29) 31% upgrading licenses (26/29) 45% upgrading licenses (26/29) 46% upgrading licenses (26/29) 54% upgrading licenses (26/29) 69% upgrading licenses (26/29) 72% upgrading licenses (26/29) 77% upgrading licenses (26/29) 81% upgrading licenses (26/29) 85% upgrading licenses (26/29) 93% upgrading licenses (26/29) 100% upgrading mercurial (27/29) 0% upgrading mercurial (27/29) 1% upgrading mercurial (27/29) 2% upgrading mercurial (27/29) 3% upgrading mercurial (27/29) 4% upgrading mercurial (27/29) 5% upgrading mercurial (27/29) 6% upgrading mercurial (27/29) 7% upgrading mercurial (27/29) 8% upgrading mercurial (27/29) 9% upgrading mercurial (27/29) 10% upgrading mercurial (27/29) 11% upgrading mercurial (27/29) 12% upgrading mercurial (27/29) 13% upgrading mercurial (27/29) 14% upgrading mercurial (27/29) 15% upgrading mercurial (27/29) 16% upgrading mercurial (27/29) 17% upgrading mercurial (27/29) 18% upgrading mercurial (27/29) 19% upgrading mercurial (27/29) 20% upgrading mercurial (27/29) 21% upgrading mercurial (27/29) 22% upgrading mercurial (27/29) 23% upgrading mercurial (27/29) 24% upgrading mercurial (27/29) 25% upgrading mercurial (27/29) 26% upgrading mercurial (27/29) 27% upgrading mercurial (27/29) 28% upgrading mercurial (27/29) 29% upgrading mercurial (27/29) 30% upgrading mercurial (27/29) 31% upgrading mercurial (27/29) 33% upgrading mercurial (27/29) 34% upgrading mercurial (27/29) 35% upgrading mercurial (27/29) 36% upgrading mercurial (27/29) 37% upgrading mercurial (27/29) 38% upgrading mercurial (27/29) 39% upgrading mercurial (27/29) 40% upgrading mercurial (27/29) 41% upgrading mercurial (27/29) 42% upgrading mercurial (27/29) 43% upgrading mercurial (27/29) 44% upgrading mercurial (27/29) 45% upgrading mercurial (27/29) 46% upgrading mercurial (27/29) 47% upgrading mercurial (27/29) 48% upgrading mercurial (27/29) 49% upgrading mercurial (27/29) 50% upgrading mercurial (27/29) 51% upgrading mercurial (27/29) 52% upgrading mercurial (27/29) 53% upgrading mercurial (27/29) 54% upgrading mercurial (27/29) 55% upgrading mercurial (27/29) 56% upgrading mercurial (27/29) 57% upgrading mercurial (27/29) 58% upgrading mercurial (27/29) 59% upgrading mercurial (27/29) 60% upgrading mercurial (27/29) 61% upgrading mercurial (27/29) 62% upgrading mercurial (27/29) 63% upgrading mercurial (27/29) 64% upgrading mercurial (27/29) 65% upgrading mercurial (27/29) 66% upgrading mercurial (27/29) 67% upgrading mercurial (27/29) 70% upgrading mercurial (27/29) 74% upgrading mercurial (27/29) 77% upgrading mercurial (27/29) 78% upgrading mercurial (27/29) 79% upgrading mercurial (27/29) 80% upgrading mercurial (27/29) 81% upgrading mercurial (27/29) 82% upgrading mercurial (27/29) 83% upgrading mercurial (27/29) 84% upgrading mercurial (27/29) 85% upgrading mercurial (27/29) 86% upgrading mercurial (27/29) 87% upgrading mercurial (27/29) 88% upgrading mercurial (27/29) 89% upgrading mercurial (27/29) 90% upgrading mercurial (27/29) 91% upgrading mercurial (27/29) 92% upgrading mercurial (27/29) 93% upgrading mercurial (27/29) 96% upgrading mercurial (27/29) 98% upgrading mercurial (27/29) 99% upgrading mercurial (27/29) 100% upgrading systemd (28/29) 0% upgrading systemd (28/29) 1% upgrading systemd (28/29) 2% upgrading systemd (28/29) 3% upgrading systemd (28/29) 4% upgrading systemd (28/29) 5% upgrading systemd (28/29) 6% upgrading systemd (28/29) 7% upgrading systemd (28/29) 8% upgrading systemd (28/29) 9% upgrading systemd (28/29) 11% upgrading systemd (28/29) 12% upgrading systemd (28/29) 13% upgrading systemd (28/29) 15% upgrading systemd (28/29) 16% upgrading systemd (28/29) 19% upgrading systemd (28/29) 20% upgrading systemd (28/29) 21% upgrading systemd (28/29) 22% upgrading systemd (28/29) 30% upgrading systemd (28/29) 47% upgrading systemd (28/29) 48% upgrading systemd (28/29) 49% upgrading systemd (28/29) 50% upgrading systemd (28/29) 51% upgrading systemd (28/29) 52% upgrading systemd (28/29) 53% upgrading systemd (28/29) 54% upgrading systemd (28/29) 55% upgrading systemd (28/29) 56% upgrading systemd (28/29) 61% upgrading systemd (28/29) 62% upgrading systemd (28/29) 63% upgrading systemd (28/29) 66% upgrading systemd (28/29) 67% upgrading systemd (28/29) 68% upgrading systemd (28/29) 73% upgrading systemd (28/29) 74% upgrading systemd (28/29) 78% upgrading systemd (28/29) 80% upgrading systemd (28/29) 81% upgrading systemd (28/29) 82% upgrading systemd (28/29) 85% upgrading systemd (28/29) 86% upgrading systemd (28/29) 87% upgrading systemd (28/29) 88% upgrading systemd (28/29) 89% upgrading systemd (28/29) 91% upgrading systemd (28/29) 92% upgrading systemd (28/29) 93% upgrading systemd (28/29) 95% upgrading systemd (28/29) 96% upgrading systemd (28/29) 97% upgrading systemd (28/29) 98% upgrading systemd (28/29) 99% directory permissions differ on /usr/share/polkit-1/rules.d/ filesystem: 750 package: 755 upgrading systemd (28/29) 100% upgrading systemd-sysvcompat (29/29) 0% upgrading systemd-sysvcompat (29/29) 100% Running post-transaction hooks... (1/13) Running 20-systemd-sysusers.hook (Creating system user accounts...) (2/13) Running 30-systemd-catalog.hook (Updating journal message catalog...) (3/13) Running 30-systemd-daemon-reload-system.hook (Reloading system manager configuration...) (4/13) Running 30-systemd-daemon-reload-user.hook (Reloading user manager configuration...) (5/13) Running 30-systemd-hwdb.hook (Updating udev hardware database...) (6/13) Running 30-systemd-sysctl.hook (Applying kernel sysctl settings...) (7/13) Running 30-systemd-tmpfiles.hook (Creating temporary files...) (8/13) Running 30-systemd-udev-reload.hook (Reloading device manager configuration...) (9/13) Running 30-systemd-update.hook (Arming ConditionNeedsUpdate...) (10/13) Running 40-update-ca-trust.hook (Rebuilding certificate stores...) (11/13) Running 90-mkinitcpio-install.hook (Updating linux initcpios...) ==> Building image from preset: /etc/mkinitcpio.d/linux.preset: 'default' ==> Using default configuration file: '/etc/mkinitcpio.conf' -> -k /boot/vmlinuz-linux -g /boot/initramfs-linux.img --microcode /boot/*-ucode.img ==> Starting build: '6.6.10-arch1-1' -> Running build hook: [base] -> Running build hook: [udev] -> Running build hook: [autodetect] -> Running build hook: [modconf] -> Running build hook: [block] -> Running build hook: [filesystems] -> Running build hook: [keyboard] -> Running build hook: [fsck] ==> Generating module dependencies ==> Creating zstd-compressed initcpio image: '/boot/initramfs-linux.img' ==> Image generation successful ==> Building image from preset: /etc/mkinitcpio.d/linux.preset: 'fallback' ==> Using default configuration file: '/etc/mkinitcpio.conf' -> -k /boot/vmlinuz-linux -g /boot/initramfs-linux-fallback.img -S autodetect --microcode /boot/*-ucode.img ==> Starting build: '6.6.10-arch1-1' -> Running build hook: [base] -> Running build hook: [udev] -> Running build hook: [modconf] -> Running build hook: [block] ==> WARNING: Possibly missing firmware for module: 'cxgb4' ==> WARNING: Possibly missing firmware for module: 'csiostor' ==> WARNING: Possibly missing firmware for module: 'qla1280' ==> WARNING: Possibly missing firmware for module: 'qed' ==> WARNING: Possibly missing firmware for module: 'qla2xxx' ==> WARNING: Possibly missing firmware for module: 'aic94xx' ==> WARNING: Possibly missing firmware for module: 'wd719x' ==> WARNING: Possibly missing firmware for module: 'bfa' ==> WARNING: Possibly missing firmware for module: 'cxgb3' ==> WARNING: Possibly missing firmware for module: 'advansys' ==> WARNING: Possibly missing firmware for module: 'isci' ==> WARNING: Possibly missing firmware for module: 'xhci_pci' ==> WARNING: Possibly missing firmware for module: 'ums_eneub6250' -> Running build hook: [filesystems] -> Running build hook: [keyboard] -> Running build hook: [fsck] ==> Generating module dependencies ==> Creating zstd-compressed initcpio image: '/boot/initramfs-linux-fallback.img' ==> Image generation successful (12/13) Running dbus-reload.hook (Reloading system bus configuration...) (13/13) Running texinfo-install.hook (Updating the info directory file...) Warning: Permanently added '[localhost]:22632' (ED25519) to the list of known hosts. AUR Explicit (4): android-sdk-platform-tools-34.0.5-2, android-sdk-build-tools-r34.0.0-2, android-sdk-26.1.1-2, android-sdk-cmdline-tools-latest-12.0-1 Sync Explicit (2): unzip-6.0-20, jdk17-openjdk-17.0.10.u7-1 Sync Dependency (8): lib32-glibc-2.38-7, libx11-1.8.7-1, libxrender-0.9.11-1, libxext-1.3.5-1, freetype2-2.13.2-1, lib32-gcc-libs-13.2.1-3, libxtst-1.2.4-1, fontconfig-2:2.15.0-2 :: (1/4) Downloaded PKGBUILD: android-sdk-cmdline-tools-latest :: (2/4) Downloaded PKGBUILD: android-sdk :: (3/4) Downloaded PKGBUILD: android-sdk-build-tools :: (4/4) Downloaded PKGBUILD: android-sdk-platform-tools 4 android-sdk (Build Files Exist) 3 android-sdk-cmdline-tools-latest (Build Files Exist) 2 android-sdk-platform-tools (Build Files Exist) 1 android-sdk-build-tools (Build Files Exist) ==> Packages to cleanBuild? ==> [N]one [A]ll [Ab]ort [I]nstalled [No]tInstalled or (1 2 3, 1-3, ^4) ==> 4 android-sdk-platform-tools (Build Files Exist) 3 android-sdk-build-tools (Build Files Exist) 2 android-sdk (Build Files Exist) 1 android-sdk-cmdline-tools-latest (Build Files Exist) ==> Diffs to show? ==> [N]one [A]ll [Ab]ort [I]nstalled [No]tInstalled or (1 2 3, 1-3, ^4) ==> ==> Making package: android-sdk-platform-tools 34.0.5-2 (Tue Jan 30 20:58:07 2024) ==> Retrieving sources... -> Downloading platform-tools_r34.0.5-linux.zip... % Total % Received % Xferd Average Speed Time Time Time Current Dload Upload Total Spent Left Speed 0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0 100 6184k 100 6184k 0 0 79.7M 0 --:--:-- --:--:-- --:--:-- 80.5M -> Found adb.service -> Found license.html -> Found package.xml ==> WARNING: Skipping verification of source file PGP signatures. ==> Validating source files with sha1sums... platform-tools_r34.0.5-linux.zip ... Passed adb.service ... Passed license.html ... Passed package.xml ... Passed ==> Making package: android-sdk-build-tools r34.0.0-2 (Tue Jan 30 20:58:08 2024) ==> Retrieving sources... -> Downloading build-tools_r34-linux.zip... % Total % Received % Xferd Average Speed Time Time Time Current Dload Upload Total Spent Left Speed 0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0 67 58.3M 67 39.2M 0 0 130M 0 --:--:-- --:--:-- --:--:-- 130M 100 58.3M 100 58.3M 0 0 135M 0 --:--:-- --:--:-- --:--:-- 135M -> Found package.xml ==> WARNING: Skipping verification of source file PGP signatures. ==> Validating source files with sha512sums... build-tools_r34-linux.zip ... Passed package.xml ... Passed ==> Making package: android-sdk 26.1.1-2 (Tue Jan 30 20:58:09 2024) ==> Retrieving sources... -> Downloading sdk-tools-linux-4333796.zip... % Total % Received % Xferd Average Speed Time Time Time Current Dload Upload Total Spent Left Speed 0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0 7 147M 7 11.2M 0 0 91.2M 0 0:00:01 --:--:-- 0:00:01 90.7M 98 147M 98 144M 0 0 128M 0 0:00:01 0:00:01 --:--:-- 128M 100 147M 100 147M 0 0 129M 0 0:00:01 0:00:01 --:--:-- 129M -> Found android-sdk.sh -> Found android-sdk.csh -> Found android-sdk.conf -> Found license.html ==> WARNING: Skipping verification of source file PGP signatures. ==> Validating source files with sha1sums... sdk-tools-linux-4333796.zip ... Passed android-sdk.sh ... Passed android-sdk.csh ... Passed android-sdk.conf ... Passed license.html ... Passed ==> Making package: android-sdk-cmdline-tools-latest 12.0-1 (Tue Jan 30 20:58:11 2024) ==> Retrieving sources... -> Downloading commandlinetools-linux-11076708_latest.zip... % Total % Received % Xferd Average Speed Time Time Time Current Dload Upload Total Spent Left Speed 0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0 24 146M 24 35.2M 0 0 122M 0 0:00:01 --:--:-- 0:00:01 122M 100 146M 100 146M 0 0 137M 0 0:00:01 0:00:01 --:--:-- 137M -> Found android-sdk-cmdline-tools-latest.sh -> Found android-sdk-cmdline-tools-latest.csh -> Found package.xml ==> WARNING: Skipping verification of source file PGP signatures. ==> Validating source files with sha1sums... commandlinetools-linux-11076708_latest.zip ... Passed android-sdk-cmdline-tools-latest.sh ... Passed android-sdk-cmdline-tools-latest.csh ... Passed package.xml ... Passed :: (1/4) Parsing SRCINFO: android-sdk-cmdline-tools-latest :: (2/4) Parsing SRCINFO: android-sdk-platform-tools :: (3/4) Parsing SRCINFO: android-sdk-build-tools :: (4/4) Parsing SRCINFO: android-sdk resolving dependencies... looking for conflicting packages... warning: dependency cycle detected: warning: harfbuzz will be installed before its freetype2 dependency Packages (32) giflib-5.2.1-2 graphite-1:1.3.14-3 harfbuzz-8.3.0-2 hicolor-icon-theme-0.17-3 java-environment-common-3-5 java-runtime-common-3-5 jbigkit-2.1-7 jre17-openjdk-17.0.10.u7-1 jre17-openjdk-headless-17.0.10.u7-1 lcms2-2.16-1 libjpeg-turbo-3.0.2-2 libnet-2:1.3-1 libpng-1.6.41-1 libtiff-4.6.0-2 libxau-1.0.11-2 libxcb-1.16-1 libxdmcp-1.1.4-2 libxfixes-6.0.1-1 libxi-1.8.1-1 nspr-4.35-2 nss-3.97-1 xcb-proto-1.16.0-1 xorgproto-2023.2-1 fontconfig-2:2.15.0-2 freetype2-2.13.2-1 jdk17-openjdk-17.0.10.u7-1 lib32-gcc-libs-13.2.1-3 lib32-glibc-2.38-7 libx11-1.8.7-1 libxext-1.3.5-1 libxrender-0.9.11-1 libxtst-1.2.4-1 Total Download Size: 316.61 MiB Total Installed Size: 590.82 MiB :: Proceed with installation? [Y/n] :: Retrieving packages... jdk17-openjdk-17.0.10.u7-1-x86_64 downloading... jre17-openjdk-headless-17.0.10.u7-1-x86_64 downloading... lib32-gcc-libs-13.2.1-3-x86_64 downloading... lib32-glibc-2.38-7-x86_64 downloading... libx11-1.8.7-1-x86_64 downloading... nss-3.97-1-x86_64 downloading... libxcb-1.16-1-x86_64 downloading... harfbuzz-8.3.0-2-x86_64 downloading... libtiff-4.6.0-2-x86_64 downloading... libjpeg-turbo-3.0.2-2-x86_64 downloading... freetype2-2.13.2-1-x86_64 downloading... fontconfig-2:2.15.0-2-x86_64 downloading... libnet-2:1.3-1-x86_64 downloading... libpng-1.6.41-1-x86_64 downloading... xorgproto-2023.2-1-any downloading... lcms2-2.16-1-x86_64 downloading... nspr-4.35-2-x86_64 downloading... jre17-openjdk-17.0.10.u7-1-x86_64 downloading... libxi-1.8.1-1-x86_64 downloading... xcb-proto-1.16.0-1-any downloading... libxext-1.3.5-1-x86_64 downloading... graphite-1:1.3.14-3-x86_64 downloading... giflib-5.2.1-2-x86_64 downloading... jbigkit-2.1-7-x86_64 downloading... libxrender-0.9.11-1-x86_64 downloading... libxtst-1.2.4-1-x86_64 downloading... libxdmcp-1.1.4-2-x86_64 downloading... libxfixes-6.0.1-1-x86_64 downloading... libxau-1.0.11-2-x86_64 downloading... hicolor-icon-theme-0.17-3-any downloading... java-runtime-common-3-5-any downloading... java-environment-common-3-5-any downloading... checking keyring... checking package integrity... loading package files... checking for file conflicts... checking available disk space... :: Processing package changes... installing lib32-glibc... installing lib32-gcc-libs... installing xcb-proto... installing xorgproto... installing libxdmcp... installing libxau... installing libxcb... installing libx11... installing libxrender... installing libxext... installing libpng... installing graphite... Optional dependencies for graphite graphite-docs: Documentation installing harfbuzz... Optional dependencies for harfbuzz harfbuzz-utils: utilities installing freetype2... installing fontconfig... Creating fontconfig configuration... Rebuilding fontconfig cache... installing java-runtime-common... For the complete set of Java binaries to be available in your PATH, you need to re-login or source /etc/profile.d/jre.sh Please note that this package does not support forcing JAVA_HOME as former package java-common did installing nspr... installing nss... installing libjpeg-turbo... Optional dependencies for libjpeg-turbo java-runtime>11: for TurboJPEG Java wrapper [pending] installing jbigkit... installing libtiff... Optional dependencies for libtiff freeglut: for using tiffgt installing lcms2... installing libnet... installing jre17-openjdk-headless... Optional dependencies for jre17-openjdk-headless java-rhino: for some JavaScript support installing giflib... installing jre17-openjdk... when you use a non-reparenting window manager, set _JAVA_AWT_WM_NONREPARENTING=1 in /etc/profile.d/jre.sh Optional dependencies for jre17-openjdk alsa-lib: for basic sound support gtk2: for the Gtk+ 2 look and feel - desktop usage gtk3: for the Gtk+ 3 look and feel - desktop usage installing java-environment-common... installing hicolor-icon-theme... installing jdk17-openjdk... installing libxfixes... installing libxi... installing libxtst... :: Running post-transaction hooks... (1/3) Arming ConditionNeedsUpdate... (2/3) Updating fontconfig configuration... (3/3) Updating fontconfig cache... resolving dependencies... looking for conflicting packages... Packages (1) unzip-6.0-20 Total Download Size: 0.14 MiB Total Installed Size: 0.30 MiB :: Proceed with installation? [Y/n] :: Retrieving packages... unzip-6.0-20-x86_64 downloading... checking keyring... checking package integrity... loading package files... checking for file conflicts... checking available disk space... :: Processing package changes... installing unzip... :: Running post-transaction hooks... (1/1) Arming ConditionNeedsUpdate... ==> Making package: android-sdk-cmdline-tools-latest 12.0-1 (Tue Jan 30 20:58:17 2024) ==> Checking runtime dependencies... ==> Checking buildtime dependencies... ==> Retrieving sources... -> Found commandlinetools-linux-11076708_latest.zip -> Found android-sdk-cmdline-tools-latest.sh -> Found android-sdk-cmdline-tools-latest.csh -> Found package.xml ==> Validating source files with sha1sums... commandlinetools-linux-11076708_latest.zip ... Passed android-sdk-cmdline-tools-latest.sh ... Passed android-sdk-cmdline-tools-latest.csh ... Passed package.xml ... Passed ==> Removing existing $srcdir/ directory... ==> Extracting sources... -> Extracting commandlinetools-linux-11076708_latest.zip with bsdtar ==> Sources are ready. ==> Making package: android-sdk-cmdline-tools-latest 12.0-1 (Tue Jan 30 20:58:19 2024) ==> Checking runtime dependencies... ==> Checking buildtime dependencies... ==> WARNING: Using existing $srcdir/ tree ==> Entering fakeroot environment... ==> Starting package()... ==> Tidying install... -> Removing libtool files... -> Purging unwanted files... -> Removing static library files... -> Stripping unneeded symbols from binaries and libraries... -> Compressing man and info pages... ==> Checking for packaging issues... ==> Creating package "android-sdk-cmdline-tools-latest"... -> Generating .PKGINFO file... -> Generating .BUILDINFO file... -> Adding install file... -> Generating .MTREE file... -> Compressing package... ==> Leaving fakeroot environment. ==> Finished making: android-sdk-cmdline-tools-latest 12.0-1 (Tue Jan 30 20:58:21 2024) ==> Cleaning up... ==> Making package: android-sdk-platform-tools 34.0.5-2 (Tue Jan 30 20:58:21 2024) ==> Checking runtime dependencies... ==> Checking buildtime dependencies... ==> Retrieving sources... -> Found platform-tools_r34.0.5-linux.zip -> Found adb.service -> Found license.html -> Found package.xml ==> Validating source files with sha1sums... platform-tools_r34.0.5-linux.zip ... Passed adb.service ... Passed license.html ... Passed package.xml ... Passed ==> Removing existing $srcdir/ directory... ==> Extracting sources... -> Extracting platform-tools_r34.0.5-linux.zip with bsdtar ==> Sources are ready. ==> Making package: android-sdk-platform-tools 34.0.5-2 (Tue Jan 30 20:58:22 2024) ==> Checking runtime dependencies... ==> Checking buildtime dependencies... ==> WARNING: Using existing $srcdir/ tree ==> Entering fakeroot environment... ==> Starting package()... ==> Tidying install... -> Removing libtool files... -> Purging unwanted files... -> Removing static library files... -> Stripping unneeded symbols from binaries and libraries... -> Compressing man and info pages... ==> Checking for packaging issues... ==> Creating package "android-sdk-platform-tools"... -> Generating .PKGINFO file... -> Generating .BUILDINFO file... -> Adding install file... -> Generating .MTREE file... -> Compressing package... ==> Leaving fakeroot environment. ==> Finished making: android-sdk-platform-tools 34.0.5-2 (Tue Jan 30 20:58:23 2024) ==> Cleaning up... ==> Making package: android-sdk-build-tools r34.0.0-2 (Tue Jan 30 20:58:24 2024) ==> Checking runtime dependencies... ==> Checking buildtime dependencies... ==> Retrieving sources... -> Found build-tools_r34-linux.zip -> Found package.xml ==> Validating source files with sha512sums... build-tools_r34-linux.zip ... Passed package.xml ... Passed ==> Removing existing $srcdir/ directory... ==> Extracting sources... -> Extracting build-tools_r34-linux.zip with bsdtar ==> Sources are ready. ==> Making package: android-sdk-build-tools r34.0.0-2 (Tue Jan 30 20:58:25 2024) ==> Checking runtime dependencies... ==> Checking buildtime dependencies... ==> WARNING: Using existing $srcdir/ tree ==> Entering fakeroot environment... ==> Starting package()... ==> Tidying install... -> Removing libtool files... -> Purging unwanted files... -> Removing static library files... -> Compressing man and info pages... ==> Checking for packaging issues... ==> Creating package "android-sdk-build-tools"... -> Generating .PKGINFO file... -> Generating .BUILDINFO file... -> Generating .MTREE file... -> Compressing package... ==> Leaving fakeroot environment. ==> Finished making: android-sdk-build-tools r34.0.0-2 (Tue Jan 30 20:58:27 2024) ==> Cleaning up... ==> Making package: android-sdk 26.1.1-2 (Tue Jan 30 20:58:28 2024) ==> Checking runtime dependencies... ==> Checking buildtime dependencies... ==> Retrieving sources... -> Found sdk-tools-linux-4333796.zip -> Found android-sdk.sh -> Found android-sdk.csh -> Found android-sdk.conf -> Found license.html ==> Validating source files with sha1sums... sdk-tools-linux-4333796.zip ... Passed android-sdk.sh ... Passed android-sdk.csh ... Passed android-sdk.conf ... Passed license.html ... Passed ==> Removing existing $srcdir/ directory... ==> Extracting sources... -> Extracting sdk-tools-linux-4333796.zip with bsdtar ==> Sources are ready. ==> Making package: android-sdk 26.1.1-2 (Tue Jan 30 20:58:30 2024) ==> Checking runtime dependencies... ==> Checking buildtime dependencies... ==> WARNING: Using existing $srcdir/ tree ==> Entering fakeroot environment... ==> Starting package()... ==> Tidying install... -> Removing libtool files... -> Purging unwanted files... -> Removing static library files... -> Stripping unneeded symbols from binaries and libraries... -> Compressing man and info pages... ==> Checking for packaging issues... ==> Creating package "android-sdk"... -> Generating .PKGINFO file... -> Generating .BUILDINFO file... -> Adding install file... -> Generating .MTREE file... -> Compressing package... ==> Leaving fakeroot environment. ==> Finished making: android-sdk 26.1.1-2 (Tue Jan 30 20:58:40 2024) ==> Cleaning up... loading packages... resolving dependencies... looking for conflicting packages... Packages (4) android-sdk-26.1.1-2 android-sdk-build-tools-r34.0.0-2 android-sdk-cmdline-tools-latest-12.0-1 android-sdk-platform-tools-34.0.5-2 Total Installed Size: 477.26 MiB :: Proceed with installation? [Y/n] checking keyring... checking package integrity... loading package files... checking for file conflicts... checking available disk space... :: Processing package changes... installing android-sdk-cmdline-tools-latest... You need to source /etc/profile or relogin to add Android SDK Command-line Tools (latest) to your path. Optional dependencies for android-sdk-cmdline-tools-latest android-sdk-platform-tools: adb, aapt, aidl, dexdump and dx [pending] android-udev: udev rules for Android devices installing android-sdk-platform-tools... You need to source /etc/profile or relogin to add the Android SDK platform tools to your path. installing android-sdk-build-tools... Optional dependencies for android-sdk-build-tools lib32-gcc-libs [installed] lib32-zlib java-runtime [installed] installing android-sdk... You need to source /etc/profile or relogin to add the Android SDK tools to your path. Optional dependencies for android-sdk android-emulator: emulator has become standalone since 25.3.0 android-sdk-platform-tools: adb, aapt, aidl, dexdump and dx [installed] android-udev: udev rules for Android devices :: Running post-transaction hooks... (1/2) Reloading system manager configuration... (2/2) Arming ConditionNeedsUpdate... [#1140536] 2024/01/30 20:58:41 Cloning repositories Cloning into 'goguma'... + cd goguma + git checkout -q 5353d37eb380a949beb81e66d475d0990a26ad76 + cd goguma + git submodule update --init --recursive [#1140536] 2024/01/30 20:58:43 Running task flutter [#1140536] 2024/01/30 20:59:47 Running task configure [#1140536] 2024/01/30 20:59:58 Running task build [#1140536] 2024/01/30 21:05:01 Running task analyze [#1140536] 2024/01/30 21:05:15 Running task deploy [#1140536] 2024/01/30 21:05:21 Uploading goguma/build/app/outputs/flutter-apk/app-release.apk [#1140536] 2024/01/30 21:05:22 https://s3.sr.ht/builds.sr.ht/artifacts/~emersion/1140536/378040c460149fe4/app-release.apk |
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 |
+ git clone --depth=1 --branch=stable https://github.com/flutter/flutter.git Cloning into 'flutter'... + export PATH=/usr/local/sbin:/usr/local/bin:/usr/bin:/home/build/flutter/bin + PATH=/usr/local/sbin:/usr/local/bin:/usr/bin:/home/build/flutter/bin + echo PATH=/usr/local/sbin:/usr/local/bin:/usr/bin:/home/build/flutter/bin + flutter precache --android Downloading Linux x64 Dart SDK from Flutter engine f40e976bedff57e69e1b3d89a7c2a3c617a03dad... % Total % Received % Xferd Average Speed Time Time Time Current Dload Upload Total Spent Left Speed 0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0 0 208M 0 47848 0 0 219k 0 0:16:12 --:--:-- 0:16:12 219k 18 208M 18 37.6M 0 0 31.2M 0 0:00:06 0:00:01 0:00:05 31.2M 38 208M 38 80.5M 0 0 36.5M 0 0:00:05 0:00:02 0:00:03 36.5M 59 208M 59 124M 0 0 38.7M 0 0:00:05 0:00:03 0:00:02 38.7M 80 208M 80 167M 0 0 39.9M 0 0:00:05 0:00:04 0:00:01 39.9M 100 208M 100 208M 0 0 40.5M 0 0:00:05 0:00:05 --:--:-- 42.3M Building flutter tool... Resolving dependencies... Got dependencies. Downloading Material fonts... 230ms Downloading Gradle Wrapper... 8ms Downloading android-arm-profile/linux-x64 tools... 204ms Downloading android-arm-release/linux-x64 tools... 195ms Downloading android-arm64-profile/linux-x64 tools... 193ms Downloading android-arm64-release/linux-x64 tools... 181ms Downloading android-x64-profile/linux-x64 tools... 186ms Downloading android-x64-release/linux-x64 tools... 180ms Downloading android-x86 tools... 921ms Downloading android-x64 tools... 607ms Downloading android-arm tools... 1,116ms Downloading android-arm-profile tools... 138ms Downloading android-arm-release tools... 93ms Downloading android-arm64 tools... 2,458ms Downloading android-arm64-profile tools... 155ms Downloading android-arm64-release tools... 106ms Downloading android-x64-profile tools... 152ms Downloading android-x64-release tools... 112ms Downloading android-x86-jit-release tools... 287ms Downloading package sky_engine... 29ms Downloading flutter_patched_sdk tools... 73ms Downloading flutter_patched_sdk_product tools... 74ms Downloading linux-x64 tools... 1,724ms Downloading linux-x64/font-subset tools... 144ms + sudo chown -R build /opt/android-sdk + flutter doctor --android-licenses + yes Warning: Observed package id 'cmdline-tools;latest' in inconsistent location '/opt/android-sdk/cmdline-tools' (Expected '/opt/android-sdk/cmdline-tools/latest') Warning: Observed package id 'cmdline-tools;latest' in inconsistent location '/opt/android-sdk/cmdline-tools' (Expected '/opt/android-sdk/cmdline-tools/latest') + flutter doctor -v [✓] Flutter (Channel stable, 3.16.9, on Arch Linux 6.6.10-arch1-1, locale en_US) • Flutter version 3.16.9 on channel stable at /home/build/flutter • Upstream repository https://github.com/flutter/flutter.git • Framework revision 41456452f2 (5 days ago), 2024-01-25 10:06:23 -0800 • Engine revision f40e976bed • Dart version 3.2.6 • DevTools version 2.28.5 [!] Android toolchain - develop for Android devices • Android SDK at /opt/android-sdk ✗ Unable to locate Android SDK. Install Android Studio from: https://developer.android.com/studio/index.html On first launch it will assist you in installing the Android SDK components. (or visit https://flutter.dev/docs/get-started/install/linux#android-setup for detailed instructions). If the Android SDK has been installed to a custom location, please use `flutter config --android-sdk` to update to that location. ✗ No valid Android SDK platforms found in /opt/android-sdk/platforms. Directory was empty. • Try re-installing or updating your Android SDK, visit https://flutter.dev/docs/get-started/install/linux#android-setup for detailed instructions. [✗] Chrome - develop for the web (Cannot find Chrome executable at google-chrome) ! Cannot find Chrome. Try setting CHROME_EXECUTABLE to a Chrome executable. [✗] Linux toolchain - develop for Linux desktop ✗ clang++ is required for Linux development. It is likely available from your distribution (e.g.: apt install clang), or can be downloaded from https://releases.llvm.org/ ✗ CMake is required for Linux development. It is likely available from your distribution (e.g.: apt install cmake), or can be downloaded from https://cmake.org/download/ ✗ ninja is required for Linux development. It is likely available from your distribution (e.g.: apt install ninja-build), or can be downloaded from https://github.com/ninja-build/ninja/releases • pkg-config version 2.1.0 ✗ GTK 3.0 development libraries are required for Linux development. They are likely available from your distribution (e.g.: apt install libgtk-3-dev) [!] Android Studio (not installed) • Android Studio not found; download from https://developer.android.com/studio/index.html (or visit https://flutter.dev/docs/get-started/install/linux#android-setup for detailed instructions). [✓] Connected device (1 available) • Linux (desktop) • linux • linux-x64 • Arch Linux 6.6.10-arch1-1 [✓] Network resources • All expected network resources are available. ! Doctor found issues in 4 categories. |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 |
+ cd goguma + ln -s /home/build/keystore.properties android/keystore.properties + ln -s /home/build/keystore.jks android/keystore.jks + flutter pub get Resolving dependencies... ffi 2.1.0 (2.1.2 available) geolocator_android 4.5.0 (4.5.1 available) js 0.6.7 (0.7.0 available) matcher 0.12.16 (0.12.16+1 available) material_color_utilities 0.5.0 (0.8.0 available) meta 1.10.0 (1.11.0 available) path 1.8.3 (1.9.0 available) sentry 7.15.0 (7.16.0 available) test_api 0.6.1 (0.7.0 available) web 0.3.0 (0.4.2 available) Got dependencies! 10 packages have newer versions incompatible with dependency constraints. Try `flutter pub outdated` for more information. + flutter pub run tool/gen_main.dart --firebase /home/build/google-services.json lib/main_generated.dart |
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 |
+ cd goguma ++ git describe --abbrev=0 + tag=v0.6.0 ++ git rev-parse --short=12 HEAD + hash=5353d37eb380 + build_name=0.6.0-dev+5353d37eb380.firebase ++ git rev-list --first-parent --count origin/master + build_number=1005 ++ cat /home/build/sentry-dsn.txt + sentry_dsn=https://9298d02d8794449e85471d537831bd18@app.glitchtip.com/2381 + flutter build apk --build-name=0.6.0-dev+5353d37eb380.firebase --build-number=1005 --target=lib/main_generated.dart --android-project-arg=firebase=true --dart-define=SENTRY_DSN=https://9298d02d8794449e85471d537831bd18@app.glitchtip.com/2381 --dart-define=SENTRY_ENVIRONMENT=nightly --dart-define=SENTRY_RELEASE=0.6.0-dev+5353d37eb380.firebase Running Gradle task 'assembleRelease'... Warning: The plugin unifiedpush_android requires Android SDK version 34. For more information about build configuration, see https://docs.flutter.dev/deployment/android#reviewing-the-gradle-build-configuration. Warning: Observed package id 'cmdline-tools;latest' in inconsistent location '/opt/android-sdk/cmdline-tools' (Expected '/opt/android-sdk/cmdline-tools/latest') Warning: Observed package id 'cmdline-tools;latest' in inconsistent location '/opt/android-sdk/cmdline-tools' (Expected '/opt/android-sdk/cmdline-tools/latest') Checking the license for package NDK (Side by side) 23.1.7779620 in /opt/android-sdk/licenses License for package NDK (Side by side) 23.1.7779620 accepted. Preparing "Install NDK (Side by side) 23.1.7779620 (revision: 23.1.7779620)". "Install NDK (Side by side) 23.1.7779620 (revision: 23.1.7779620)" ready. Installing NDK (Side by side) 23.1.7779620 in /opt/android-sdk/ndk/23.1.7779620 "Install NDK (Side by side) 23.1.7779620 (revision: 23.1.7779620)" complete. "Install NDK (Side by side) 23.1.7779620 (revision: 23.1.7779620)" finished. Warning: Observed package id 'cmdline-tools;latest' in inconsistent location '/opt/android-sdk/cmdline-tools' (Expected '/opt/android-sdk/cmdline-tools/latest') Warning: Observed package id 'cmdline-tools;latest' in inconsistent location '/opt/android-sdk/cmdline-tools' (Expected '/opt/android-sdk/cmdline-tools/latest') Checking the license for package CMake 3.22.1 in /opt/android-sdk/licenses License for package CMake 3.22.1 accepted. Preparing "Install CMake 3.22.1 (revision: 3.22.1)". "Install CMake 3.22.1 (revision: 3.22.1)" ready. Installing CMake 3.22.1 in /opt/android-sdk/cmake/3.22.1 "Install CMake 3.22.1 (revision: 3.22.1)" complete. "Install CMake 3.22.1 (revision: 3.22.1)" finished. Warning: Observed package id 'cmdline-tools;latest' in inconsistent location '/opt/android-sdk/cmdline-tools' (Expected '/opt/android-sdk/cmdline-tools/latest') One or more plugins require a higher Android SDK version. Fix this issue by adding the following to /home/build/goguma/android/app/build.gradle: android { compileSdkVersion 34 ... } Checking the license for package Android SDK Build-Tools 30.0.3 in /opt/android-sdk/licenses License for package Android SDK Build-Tools 30.0.3 accepted. Preparing "Install Android SDK Build-Tools 30.0.3 (revision: 30.0.3)". "Install Android SDK Build-Tools 30.0.3 (revision: 30.0.3)" ready. Installing Android SDK Build-Tools 30.0.3 in /opt/android-sdk/build-tools/30.0.3 "Install Android SDK Build-Tools 30.0.3 (revision: 30.0.3)" complete. "Install Android SDK Build-Tools 30.0.3 (revision: 30.0.3)" finished. Checking the license for package Android SDK Platform 33 in /opt/android-sdk/licenses License for package Android SDK Platform 33 accepted. Preparing "Install Android SDK Platform 33 (revision: 3)". "Install Android SDK Platform 33 (revision: 3)" ready. Installing Android SDK Platform 33 in /opt/android-sdk/platforms/android-33 "Install Android SDK Platform 33 (revision: 3)" complete. "Install Android SDK Platform 33 (revision: 3)" finished. Checking the license for package Android SDK Platform 31 in /opt/android-sdk/licenses License for package Android SDK Platform 31 accepted. Preparing "Install Android SDK Platform 31 (revision: 1)". "Install Android SDK Platform 31 (revision: 1)" ready. Installing Android SDK Platform 31 in /opt/android-sdk/platforms/android-31 "Install Android SDK Platform 31 (revision: 1)" complete. "Install Android SDK Platform 31 (revision: 1)" finished. Checking the license for package Android SDK Platform 34 in /opt/android-sdk/licenses License for package Android SDK Platform 34 accepted. Preparing "Install Android SDK Platform 34 (revision: 2)". "Install Android SDK Platform 34 (revision: 2)" ready. Installing Android SDK Platform 34 in /opt/android-sdk/platforms/android-34 "Install Android SDK Platform 34 (revision: 2)" complete. "Install Android SDK Platform 34 (revision: 2)" finished. Note: Some input files use or override a deprecated API. Note: Recompile with -Xlint:deprecation for details. Note: /home/build/.pub-cache/hosted/pub.dev/firebase_messaging-14.7.10/android/src/main/java/io/flutter/plugins/firebase/messaging/FlutterFirebaseMessagingPlugin.java uses unchecked or unsafe operations. Note: Recompile with -Xlint:unchecked for details. Font asset "MaterialIcons-Regular.otf" was tree-shaken, reducing it from 1645184 to 5668 bytes (99.7% reduction). Tree-shaking can be disabled by providing the --no-tree-shake-icons flag when building your app. Running Gradle task 'assembleRelease'... 301.6s ✓ Built build/app/outputs/flutter-apk/app-release.apk (24.4MB). |
1 2 3 4 |
+ cd goguma + flutter analyze --no-fatal-infos Analyzing goguma... No issues found! (ran in 12.4s) |
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 |
+ cd goguma ++ git rev-parse origin/master ++ git rev-parse HEAD + '[' 5353d37eb380a949beb81e66d475d0990a26ad76 = 5353d37eb380a949beb81e66d475d0990a26ad76 ']' ++ git rev-list --first-parent --count origin/master + build_number=1005 + ssh_opts='-o StrictHostKeyChecking=no' + ssh_host=deploy@sheeta.emersion.fr + scp -o StrictHostKeyChecking=no build/app/outputs/flutter-apk/app-release.apk deploy@sheeta.emersion.fr:fdroid-goguma-nightly/repo/goguma-1005.apk Warning: Permanently added 'sheeta.emersion.fr' (ED25519) to the list of known hosts. + ssh -o StrictHostKeyChecking=no deploy@sheeta.emersion.fr 'cd fdroid-goguma-nightly && (ls -t repo/*.apk | tail -n +5 | xargs -r rm --) && fdroid update' 2024-01-30 22:05:16,763 WARNING: unsafe permissions on 'config.yml' (should be 0600)! 2024-01-30 22:05:16,765 WARNING: repo_icon "repo/icons/icon.png" does not exist! Check "config.yml". 2024-01-30 22:05:18,013 WARNING: Found "1701865753000.json" graphic without metadata for app "repo"! 2024-01-30 22:05:18,014 WARNING: Found "1701870664000.json" graphic without metadata for app "repo"! 2024-01-30 22:05:18,014 WARNING: Found "1701871887000.json" graphic without metadata for app "repo"! 2024-01-30 22:05:18,014 WARNING: Found "1702294383000.json" graphic without metadata for app "repo"! 2024-01-30 22:05:18,014 WARNING: Found "1702295231000.json" graphic without metadata for app "repo"! 2024-01-30 22:05:18,014 WARNING: Found "1702306283000.json" graphic without metadata for app "repo"! 2024-01-30 22:05:18,014 WARNING: Found "1702306512000.json" graphic without metadata for app "repo"! 2024-01-30 22:05:18,014 WARNING: Found "1702546629000.json" graphic without metadata for app "repo"! 2024-01-30 22:05:18,014 WARNING: Found "1703193509000.json" graphic without metadata for app "repo"! 2024-01-30 22:05:18,014 WARNING: Found "1706182255000.json" graphic without metadata for app "repo"! 2024-01-30 22:05:18,014 WARNING: Found "icon.png" graphic without metadata for app "repo"! 2024-01-30 22:05:18,015 WARNING: Found "categories.txt" graphic without metadata for app "repo"! 2024-01-30 22:05:18,015 WARNING: Found "entry.jar" graphic without metadata for app "repo"! 2024-01-30 22:05:18,015 WARNING: Found "entry.json" graphic without metadata for app "repo"! 2024-01-30 22:05:18,015 WARNING: Found "goguma-1000.apk" graphic without metadata for app "repo"! 2024-01-30 22:05:18,015 WARNING: Found "goguma-1001.apk" graphic without metadata for app "repo"! 2024-01-30 22:05:18,015 WARNING: Found "goguma-1004.apk" graphic without metadata for app "repo"! 2024-01-30 22:05:18,015 WARNING: Found "goguma-1005.apk" graphic without metadata for app "repo"! 2024-01-30 22:05:18,015 WARNING: Found "index-v1.jar" graphic without metadata for app "repo"! 2024-01-30 22:05:18,015 WARNING: Found "index-v1.json" graphic without metadata for app "repo"! 2024-01-30 22:05:18,015 WARNING: Found "index-v2.json" graphic without metadata for app "repo"! 2024-01-30 22:05:18,015 WARNING: Found "index.css" graphic without metadata for app "repo"! 2024-01-30 22:05:18,015 WARNING: Found "index.html" graphic without metadata for app "repo"! 2024-01-30 22:05:18,015 WARNING: Found "index.jar" graphic without metadata for app "repo"! 2024-01-30 22:05:18,015 WARNING: Found "index.png" graphic without metadata for app "repo"! 2024-01-30 22:05:18,016 WARNING: Found "index.xml" graphic without metadata for app "repo"! 2024-01-30 22:05:18,016 WARNING: Found "deploy.json" graphic without metadata for app "repo"! 2024-01-30 22:05:18,016 WARNING: Found "running.json" graphic without metadata for app "repo"! 2024-01-30 22:05:18,016 WARNING: Found "update.json" graphic without metadata for app "repo"! 2024-01-30 22:05:18,523 INFO: Creating signed index with this key (SHA256): 2024-01-30 22:05:18,523 INFO: AC C8 CF ED DF 58 C5 90 D0 21 FC F3 75 34 A5 4F 59 19 E0 26 D7 A8 33 3A A0 1C 1A BB 3D 34 E6 8D 2024-01-30 22:05:19,430 WARNING: repo_icon "repo/icons/icon.png" does not exist, generating placeholder. 2024-01-30 22:05:21,376 INFO: Finished |