>>> oxipng: Building community/oxipng 8.0.0-r0 (using abuild 3.11.0_rc13-r0) started Sat, 22 Apr 2023 00:09:01 +0000 >>> oxipng: Checking sanity of /home/buildozer/aports/community/oxipng/APKBUILD... >>> oxipng: Analyzing dependencies... >>> oxipng: Installing for build: build-base cargo (1/7) Installing libffi (3.4.4-r2) (2/7) Installing xz-libs (5.4.2-r1) (3/7) Installing libxml2 (2.10.4-r2) (4/7) Installing llvm15-libs (15.0.7-r5) (5/7) Installing rust (1.69.0-r2) (6/7) Installing cargo (1.69.0-r2) (7/7) Installing .makedepends-oxipng (20230422.000902) Executing busybox-1.36.0-r7.trigger OK: 1107 MiB in 105 packages >>> oxipng: Cleaning up srcdir >>> oxipng: Cleaning up pkgdir >>> oxipng: Fetching https://distfiles.alpinelinux.org/distfiles/v3.18/oxipng-8.0.0.tar.gz % 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 146 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0 curl: (22) The requested URL returned error: 404 >>> oxipng: Fetching https://github.com/shssoichiro/oxipng/archive/v8.0.0/oxipng-8.0.0.tar.gz % 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 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0 100 13071 0 13071 0 0 29329 0 --:--:-- --:--:-- --:--:-- 29329 100 17.6M 0 17.6M 0 0 12.4M 0 --:--:-- 0:00:01 --:--:-- 18.0M 100 35.8M 0 35.8M 0 0 14.7M 0 --:--:-- 0:00:02 --:--:-- 18.0M 100 49.2M 0 49.2M 0 0 15.7M 0 --:--:-- 0:00:03 --:--:-- 18.3M >>> oxipng: Fetching https://distfiles.alpinelinux.org/distfiles/v3.18/oxipng-8.0.0.tar.gz >>> oxipng: Checking sha512sums... oxipng-8.0.0.tar.gz: OK >>> oxipng: Unpacking /var/cache/distfiles/v3.18/oxipng-8.0.0.tar.gz... Updating crates.io index Downloading crates ... Downloaded tap v1.0.1 Downloaded funty v2.0.0 Downloaded wild v2.1.0 Downloaded adler32 v1.2.0 Downloaded wyz v0.5.1 Downloaded bitvec v1.0.1 Downloaded libdeflate-sys v0.11.0 Downloaded stderrlog v0.5.4 Downloaded zopfli v0.7.1 Downloaded typed-arena v2.0.1 Downloaded libdeflater v0.11.0 Downloaded radium v0.7.0 Downloaded iter-read v0.3.1 Compiling autocfg v1.1.0 Compiling cfg-if v1.0.0 Compiling libc v0.2.139 Compiling crossbeam-utils v0.8.14 Compiling scopeguard v1.1.0 Compiling crc32fast v1.3.2 Compiling rayon-core v1.10.1 Compiling either v1.8.0 Compiling cc v1.0.78 Compiling adler v1.0.2 Compiling log v0.4.17 Compiling bitflags v1.3.2 Compiling radium v0.7.0 Compiling tap v1.0.1 Compiling crc-catalog v2.1.0 Compiling bytemuck v1.12.3 Compiling os_str_bytes v6.4.1 Compiling once_cell v1.16.0 Compiling termcolor v1.1.3 Compiling byteorder v1.4.3 Compiling hashbrown v0.12.3 Compiling typed-arena v2.0.1 Compiling textwrap v0.16.0 Compiling adler32 v1.2.0 Compiling iter-read v0.3.1 Compiling funty v2.0.0 Compiling color_quant v1.1.0 Compiling strsim v0.10.0 Compiling rustc-hash v1.1.0 Compiling wild v2.1.0 Compiling miniz_oxide v0.6.2 Compiling crc v3.0.0 Compiling wyz v0.5.1 Compiling thread_local v1.1.4 Compiling itertools v0.10.5 Compiling rgb v0.8.34 Compiling clap_lex v0.2.4 Compiling zopfli v0.7.1 Compiling memoffset v0.7.1 Compiling crossbeam-epoch v0.9.13 Compiling num-traits v0.2.15 Compiling num-integer v0.1.45 Compiling num-rational v0.4.1 Compiling indexmap v1.9.2 Compiling crossbeam-channel v0.5.6 Compiling flate2 v1.0.25 Compiling crossbeam-deque v0.8.2 Compiling bitvec v1.0.1 Compiling png v0.17.7 Compiling num_cpus v1.15.0 Compiling atty v0.2.14 Compiling filetime v0.2.19 Compiling stderrlog v0.5.4 Compiling libdeflate-sys v0.11.0 Compiling rayon v1.6.1 Compiling image v0.24.5 Compiling clap v3.2.23 Compiling libdeflater v0.11.0 Compiling oxipng v8.0.0 (/home/buildozer/aports/community/oxipng/src/oxipng-8.0.0) warning: unnecessary parentheses around index expression --> src/reduction/mod.rs:161:46 | 161 | byte_map[byte] = palette_map[(byte & 0x0F)].unwrap_or(0) | ^ ^ | = note: `#[warn(unused_parens)]` on by default help: remove these parentheses | 161 - byte_map[byte] = palette_map[(byte & 0x0F)].unwrap_or(0) 161 + byte_map[byte] = palette_map[byte & 0x0F].unwrap_or(0) | warning: unnecessary parentheses around index expression --> src/reduction/mod.rs:162:36 | 162 | | (palette_map[(byte >> 4)].unwrap_or(0) << 4); | ^ ^ | help: remove these parentheses | 162 - | (palette_map[(byte >> 4)].unwrap_or(0) << 4); 162 + | (palette_map[byte >> 4].unwrap_or(0) << 4); | warning: unnecessary parentheses around index expression --> src/reduction/mod.rs:167:46 | 167 | byte_map[byte] = palette_map[(byte & 0x03)].unwrap_or(0) | ^ ^ | help: remove these parentheses | 167 - byte_map[byte] = palette_map[(byte & 0x03)].unwrap_or(0) 167 + byte_map[byte] = palette_map[byte & 0x03].unwrap_or(0) | warning: unnecessary parentheses around index expression --> src/reduction/mod.rs:168:36 | 168 | | (palette_map[((byte >> 2) & 0x03)].unwrap_or(0) << 2) | ^ ^ | help: remove these parentheses | 168 - | (palette_map[((byte >> 2) & 0x03)].unwrap_or(0) << 2) 168 + | (palette_map[(byte >> 2) & 0x03].unwrap_or(0) << 2) | warning: unnecessary parentheses around index expression --> src/reduction/mod.rs:169:36 | 169 | | (palette_map[((byte >> 4) & 0x03)].unwrap_or(0) << 4) | ^ ^ | help: remove these parentheses | 169 - | (palette_map[((byte >> 4) & 0x03)].unwrap_or(0) << 4) 169 + | (palette_map[(byte >> 4) & 0x03].unwrap_or(0) << 4) | warning: unnecessary parentheses around index expression --> src/reduction/mod.rs:170:36 | 170 | | (palette_map[(byte >> 6)].unwrap_or(0) << 6); | ^ ^ | help: remove these parentheses | 170 - | (palette_map[(byte >> 6)].unwrap_or(0) << 6); 170 + | (palette_map[byte >> 6].unwrap_or(0) << 6); | warning: `oxipng` (lib) generated 6 warnings (run `cargo fix --lib -p oxipng` to apply 6 suggestions) Finished release [optimized] target(s) in 53.65s Compiling autocfg v1.1.0 Compiling cfg-if v1.0.0 Compiling libc v0.2.139 Compiling crossbeam-utils v0.8.14 Compiling scopeguard v1.1.0 Compiling rayon-core v1.10.1 Compiling crc32fast v1.3.2 Compiling cc v1.0.78 Compiling either v1.8.0 Compiling adler v1.0.2 Compiling log v0.4.17 Compiling bitflags v1.3.2 Compiling radium v0.7.0 Compiling os_str_bytes v6.4.1 Compiling tap v1.0.1 Compiling byteorder v1.4.3 Compiling hashbrown v0.12.3 Compiling once_cell v1.16.0 Compiling crc-catalog v2.1.0 Compiling bytemuck v1.12.3 Compiling termcolor v1.1.3 Compiling iter-read v0.3.1 Compiling funty v2.0.0 Compiling color_quant v1.1.0 Compiling adler32 v1.2.0 Compiling strsim v0.10.0 Compiling typed-arena v2.0.1 Compiling textwrap v0.16.0 Compiling wild v2.1.0 Compiling rustc-hash v1.1.0 Compiling miniz_oxide v0.6.2 Compiling wyz v0.5.1 Compiling crc v3.0.0 Compiling itertools v0.10.5 Compiling thread_local v1.1.4 Compiling clap_lex v0.2.4 Compiling rgb v0.8.34 Compiling memoffset v0.7.1 Compiling crossbeam-epoch v0.9.13 Compiling num-traits v0.2.15 Compiling num-integer v0.1.45 Compiling indexmap v1.9.2 Compiling num-rational v0.4.1 Compiling zopfli v0.7.1 Compiling flate2 v1.0.25 Compiling crossbeam-channel v0.5.6 Compiling crossbeam-deque v0.8.2 Compiling bitvec v1.0.1 Compiling png v0.17.7 Compiling libdeflate-sys v0.11.0 Compiling num_cpus v1.15.0 Compiling atty v0.2.14 Compiling filetime v0.2.19 Compiling stderrlog v0.5.4 Compiling rayon v1.6.1 Compiling image v0.24.5 Compiling clap v3.2.23 Compiling libdeflater v0.11.0 Compiling oxipng v8.0.0 (/home/buildozer/aports/community/oxipng/src/oxipng-8.0.0) warning: unnecessary parentheses around index expression --> src/reduction/mod.rs:161:46 | 161 | byte_map[byte] = palette_map[(byte & 0x0F)].unwrap_or(0) | ^ ^ | = note: `#[warn(unused_parens)]` on by default help: remove these parentheses | 161 - byte_map[byte] = palette_map[(byte & 0x0F)].unwrap_or(0) 161 + byte_map[byte] = palette_map[byte & 0x0F].unwrap_or(0) | warning: unnecessary parentheses around index expression --> src/reduction/mod.rs:162:36 | 162 | | (palette_map[(byte >> 4)].unwrap_or(0) << 4); | ^ ^ | help: remove these parentheses | 162 - | (palette_map[(byte >> 4)].unwrap_or(0) << 4); 162 + | (palette_map[byte >> 4].unwrap_or(0) << 4); | warning: unnecessary parentheses around index expression --> src/reduction/mod.rs:167:46 | 167 | byte_map[byte] = palette_map[(byte & 0x03)].unwrap_or(0) | ^ ^ | help: remove these parentheses | 167 - byte_map[byte] = palette_map[(byte & 0x03)].unwrap_or(0) 167 + byte_map[byte] = palette_map[byte & 0x03].unwrap_or(0) | warning: unnecessary parentheses around index expression --> src/reduction/mod.rs:168:36 | 168 | | (palette_map[((byte >> 2) & 0x03)].unwrap_or(0) << 2) | ^ ^ | help: remove these parentheses | 168 - | (palette_map[((byte >> 2) & 0x03)].unwrap_or(0) << 2) 168 + | (palette_map[(byte >> 2) & 0x03].unwrap_or(0) << 2) | warning: unnecessary parentheses around index expression --> src/reduction/mod.rs:169:36 | 169 | | (palette_map[((byte >> 4) & 0x03)].unwrap_or(0) << 4) | ^ ^ | help: remove these parentheses | 169 - | (palette_map[((byte >> 4) & 0x03)].unwrap_or(0) << 4) 169 + | (palette_map[(byte >> 4) & 0x03].unwrap_or(0) << 4) | warning: unnecessary parentheses around index expression --> src/reduction/mod.rs:170:36 | 170 | | (palette_map[(byte >> 6)].unwrap_or(0) << 6); | ^ ^ | help: remove these parentheses | 170 - | (palette_map[(byte >> 6)].unwrap_or(0) << 6); 170 + | (palette_map[byte >> 6].unwrap_or(0) << 6); | warning: `oxipng` (lib) generated 6 warnings (run `cargo fix --lib -p oxipng` to apply 6 suggestions) warning: `oxipng` (lib test) generated 6 warnings (6 duplicates) Finished test [optimized + debuginfo] target(s) in 1m 00s Running unittests src/lib.rs (target/debug/deps/oxipng-81034ba7508c17c5) running 0 tests test result: ok. 0 passed; 0 failed; 0 ignored; 0 measured; 0 filtered out; finished in 0.00s Running unittests src/main.rs (target/debug/deps/oxipng-bd3380ed6de3cfe9) running 0 tests test result: ok. 0 passed; 0 failed; 0 ignored; 0 measured; 0 filtered out; finished in 0.00s Running tests/filters.rs (target/debug/deps/filters-188f71f12de0f299) running 66 tests test filter_0_for_palette_1 ... ok test filter_2_for_palette_1 ... ok test filter_1_for_palette_1 ... ok test filter_0_for_palette_2 ... ok test filter_1_for_palette_2 ... ok test filter_2_for_palette_2 ... ok test filter_3_for_palette_1 ... ok test filter_0_for_grayscale_8 ... ok test filter_0_for_palette_4 ... ok test filter_2_for_palette_4 ... ok test filter_1_for_palette_4 ... ok test filter_1_for_grayscale_8 ... ok test filter_3_for_palette_2 ... ok test filter_2_for_grayscale_8 ... ok test filter_1_for_grayscale_16 ... ok test filter_0_for_grayscale_alpha_8 ... ok test filter_2_for_grayscale_16 ... ok test filter_0_for_grayscale_16 ... ok test filter_3_for_grayscale_8 ... ok test filter_3_for_grayscale_16 ... ok test filter_4_for_palette_1 ... ok test filter_4_for_palette_2 ... ok test filter_3_for_palette_4 ... ok test filter_0_for_grayscale_alpha_16 ... ok test filter_2_for_grayscale_alpha_8 ... ok test filter_1_for_grayscale_alpha_8 ... ok test filter_4_for_grayscale_8 ... ok test filter_1_for_grayscale_alpha_16 ... ok test filter_3_for_grayscale_alpha_8 ... ok test filter_2_for_grayscale_alpha_16 ... ok test filter_4_for_palette_4 ... ok test filter_3_for_grayscale_alpha_16 ... ok test filter_5_for_palette_1 ... ok test filter_4_for_grayscale_16 ... ok test filter_5_for_palette_2 ... ok test filter_0_for_rgb_8 ... ok test filter_1_for_rgb_8 ... ok test filter_5_for_palette_4 ... ok test filter_2_for_rgb_8 ... ok test filter_5_for_grayscale_8 ... ok test filter_0_for_rgba_8 ... ok test filter_4_for_grayscale_alpha_8 ... ok test filter_5_for_grayscale_16 ... ok test filter_4_for_grayscale_alpha_16 ... ok test filter_3_for_rgb_8 ... ok test filter_0_for_rgb_16 ... ok test filter_1_for_rgba_8 ... ok test filter_5_for_grayscale_alpha_8 ... ok test filter_2_for_rgba_8 ... ok test filter_4_for_rgb_8 ... ok test filter_5_for_grayscale_alpha_16 ... ok test filter_3_for_rgba_8 ... ok test filter_1_for_rgb_16 ... ok test filter_2_for_rgb_16 ... ok test filter_5_for_rgb_8 ... ok test filter_0_for_rgba_16 ... ok test filter_4_for_rgba_8 ... ok test filter_3_for_rgb_16 ... ok test filter_5_for_rgba_8 ... ok test filter_4_for_rgb_16 ... ok test filter_1_for_rgba_16 ... ok test filter_3_for_rgba_16 ... ok test filter_2_for_rgba_16 ... ok test filter_5_for_rgb_16 ... ok test filter_5_for_rgba_16 ... ok test filter_4_for_rgba_16 ... ok test result: ok. 66 passed; 0 failed; 0 ignored; 0 measured; 0 filtered out; finished in 2.16s Running tests/flags.rs (target/debug/deps/flags-4065c202e8c96451) running 13 tests test interlacing_1_to_0_small_files ... ok test interlacing_0_to_1_small_files ... ok test preserve_attrs ... ok test strip_headers_list ... ok test verbose_mode ... ok test strip_headers_none ... ok test strip_headers_all ... ok test interlacing_1_to_0 ... ok test strip_headers_safe ... ok test fix_errors ... ok test interlacing_0_to_1 ... ok test interlaced_0_to_1_other_filter_mode ... ok test zopfli_mode ... ok test result: ok. 13 passed; 0 failed; 0 ignored; 0 measured; 0 filtered out; finished in 23.08s Running tests/interlaced.rs (target/debug/deps/interlaced-4bb3d6d68ac0e2ee) running 55 tests test interlaced_palette_2_should_be_palette_2 ... ok test interlaced_palette_1_should_be_palette_1 ... ok test interlaced_palette_4_should_be_palette_1 ... ok test interlaced_grayscale_16_should_be_grayscale_16 ... ok test interlaced_grayscale_alpha_8_should_be_grayscale_alpha_8 ... ok test interlaced_palette_8_should_be_palette_2 ... ok test interlaced_palette_8_should_be_palette_4 ... ok test interlaced_grayscale_alpha_16_should_be_grayscale_alpha_16 ... ok test interlaced_palette_8_should_be_palette_1 ... ok test interlaced_palette_4_should_be_palette_2 ... ok test interlaced_palette_4_should_be_palette_4 ... ok test interlaced_rgb_8_should_be_grayscale_8 ... ok test interlaced_rgb_8_should_be_palette_4 ... ok test interlaced_rgb_8_should_be_palette_1 ... ok test interlaced_grayscale_alpha_8_should_be_grayscale_8 ... ok test interlaced_grayscale_8_should_be_grayscale_8 ... ok test interlaced_rgb_16_should_be_palette_1 ... ok test interlaced_rgb_8_should_be_rgb_8 ... ok test interlaced_rgb_8_should_be_palette_2 ... ok test interlaced_rgb_16_should_be_grayscale_8 ... ok test interlaced_rgba_16_should_be_palette_2 ... ok test interlaced_rgb_16_should_be_rgb_16 ... ok test interlaced_palette_2_should_be_palette_1 ... ok test interlaced_small_files ... ok test interlaced_rgb_8_should_be_palette_8 ... ok test interlaced_palette_8_should_be_palette_8 ... ok test interlaced_rgba_16_should_be_palette_1 ... ok test interlaced_rgb_16_should_be_palette_2 ... ok test interlaced_rgb_16_should_be_palette_4 ... ok test interlaced_grayscale_alpha_16_should_be_grayscale_8 ... ok test interlaced_rgb_16_should_be_grayscale_16 ... ok test interlaced_grayscale_16_should_be_grayscale_8 ... ok test interlaced_rgba_16_should_be_palette_4 ... ok test interlaced_rgb_16_should_be_palette_8 ... ok test interlaced_rgba_16_should_be_grayscale_8 ... ok test interlaced_rgba_8_should_be_palette_1 ... ok test interlaced_rgba_16_should_be_palette_8 ... ok test interlaced_rgba_8_should_be_palette_2 ... ok test interlaced_grayscale_alpha_16_should_be_grayscale_16 ... ok test interlaced_rgba_8_should_be_grayscale_8 ... ok test interlaced_rgba_16_should_be_grayscale_16 ... ok test interlaced_rgba_8_should_be_palette_4 ... ok test interlaced_grayscale_alpha_16_should_be_grayscale_alpha_8 ... ok test interlaced_rgba_8_should_be_palette_8 ... ok test interlaced_rgba_16_should_be_grayscale_alpha_16 ... ok test interlaced_rgba_16_should_be_grayscale_alpha_8 ... ok test interlaced_rgb_16_should_be_rgb_8 ... ok test interlaced_rgba_8_should_be_grayscale_alpha_8 ... ok test interlaced_rgba_8_should_be_rgba_8 ... ok test interlaced_rgba_8_should_be_rgb_8 ... ok test interlaced_rgba_16_should_be_rgb_8 ... ok test interlaced_rgba_16_should_be_rgba_16 ... ok test interlaced_rgba_16_should_be_rgba_8 ... ok test interlaced_rgba_16_should_be_rgb_16 ... ok test interlaced_odd_width ... ok test result: ok. 55 passed; 0 failed; 0 ignored; 0 measured; 0 filtered out; finished in 3.30s Running tests/interlacing.rs (target/debug/deps/interlacing-d172d11f06bf6e93) running 12 tests test deinterlace_palette_1 ... ok test interlace_palette_1 ... ok test interlace_palette_2 ... ok test deinterlace_palette_2 ... ok test deinterlace_palette_4 ... ok test interlace_palette_4 ... ok test interlace_palette_8 ... ok test deinterlace_palette_8 ... ok test deinterlace_rgb_8 ... ok test interlace_rgb_8 ... ok test deinterlace_rgb_16 ... ok test interlace_rgb_16 ... ok test result: ok. 12 passed; 0 failed; 0 ignored; 0 measured; 0 filtered out; finished in 1.25s Running tests/lib.rs (target/debug/deps/lib-6a9490b3f9d7a9d6) running 7 tests test optimize_corrupted ... ok test optimize_from_memory_apng ... ok test optimize_from_memory_corrupted ... ok test optimize_apng ... ok test optimize_from_memory ... ok test optimize ... ok test optimize_srgb_icc ... ok test result: ok. 7 passed; 0 failed; 0 ignored; 0 measured; 0 filtered out; finished in 0.02s Running tests/reduction.rs (target/debug/deps/reduction-5da9345e93f43751) running 71 tests test palette_2_should_be_palette_2 ... ok test palette_1_should_be_palette_1 ... ok test grayscale_8_should_be_grayscale_8 ... ok test palette_2_should_be_palette_1 ... ok test grayscale_alpha_16_reduce_alpha ... ok test palette_4_should_be_palette_4 ... ok test grayscale_16_should_be_grayscale_16 ... ok test grayscale_8_should_be_grayscale_1 ... ok test palette_8_should_be_palette_4 ... ok test grayscale_alpha_8_reduce_alpha ... ok test palette_4_should_be_palette_1 ... ok test grayscale_alpha_8_should_be_grayscale_alpha_8 ... ok test grayscale_4_should_be_grayscale_2 ... ok test grayscale_alpha_16_should_be_grayscale_alpha_16 ... ok test grayscale_2_should_be_grayscale_1 ... ok test palette_4_should_be_palette_2 ... ok test palette_should_be_reduced_with_dupes ... ok test palette_8_should_be_palette_1 ... ok test grayscale_4_should_be_grayscale_1 ... ok test palette_8_should_be_palette_2 ... ok test palette_8_should_be_palette_8 ... ok test rgb_16_should_be_palette_1 ... ok test grayscale_8_should_be_grayscale_2 ... ok test grayscale_8_should_be_grayscale_4 ... ok test rgba_16_reduce_alpha ... ok test palette_should_be_reduced_with_both ... ok test rgb_8_should_be_palette_4 ... ok test grayscale_alpha_8_should_be_grayscale_8 ... ok test rgb_16_should_be_palette_2 ... ok test palette_should_be_reduced_with_unused ... ok test grayscale_alpha_16_should_be_grayscale_8 ... ok test rgb_16_should_be_palette_8 ... ok test rgb_16_should_be_grayscale_8 ... ok test rgba_8_reduce_alpha ... ok test grayscale_alpha_16_should_be_grayscale_trns_16 ... ok test grayscale_alpha_16_should_be_grayscale_alpha_8 ... ok test rgb_8_should_be_rgb_8 ... ok test rgb_16_should_be_grayscale_16 ... ok test rgb_8_should_be_palette_1 ... ok test small_files ... ok test rgb_8_should_be_palette_2 ... ok test grayscale_alpha_16_should_be_grayscale_16 ... ok test rgb_16_should_be_rgb_16 ... ok test rgb_16_should_be_palette_4 ... ok test grayscale_16_should_be_grayscale_8 ... ok test rgba_16_should_be_palette_1 ... ok test rgba_8_should_be_palette_2 ... ok test rgb_8_should_be_palette_8 ... ok test rgb_8_should_be_grayscale_8 ... ok test grayscale_alpha_8_should_be_grayscale_trns_8 ... ok test rgba_8_should_be_palette_1 ... ok test rgba_16_should_be_palette_2 ... ok test rgba_8_should_be_grayscale_8 ... ok test rgba_8_should_be_palette_4 ... ok test rgb_16_should_be_rgb_8 ... ok test rgba_8_should_be_palette_8 ... ok test rgba_16_should_be_grayscale_8 ... ok test rgba_16_should_be_palette_8 ... ok test rgba_16_should_be_grayscale_16 ... ok test rgba_16_should_be_palette_4 ... ok test rgba_8_should_be_rgba_8 ... ok test rgba_8_should_be_grayscale_alpha_8 ... ok test rgba_16_should_be_grayscale_alpha_8 ... ok test rgba_16_should_be_grayscale_alpha_16 ... ok test rgba_8_should_be_rgb_8 ... ok test rgba_16_should_be_rgba_16 ... ok test rgba_16_should_be_rgb_8 ... ok test rgba_8_should_be_rgb_trns_8 ... ok test rgba_16_should_be_rgba_8 ... ok test rgba_16_should_be_rgb_trns_16 ... ok test rgba_16_should_be_rgb_16 ... ok test result: ok. 71 passed; 0 failed; 0 ignored; 0 measured; 0 filtered out; finished in 2.40s Running tests/regression.rs (target/debug/deps/regression-523d525c6084ca72) running 30 tests test issue_42 ... ok test issue_175 ... ok test issue_171 ... ok test issue_92_filter_5 ... ok test issue_92_filter_0 ... ok test issue_140 ... ok test issue_52_05 ... ok test issue_52_03 ... ok test issue_52_01 ... ok test issue_52_06 ... ok test issue_89 ... ok test issue_159 ... ok test issue_56 ... ok test issue_182 ... ok test issue_60 ... ok test issue_82 ... ok test issue_80 ... ok test issue_58 ... ok test issue_113 ... ok test issue_426_02 ... ok test issue_52_04 ... ok test issue_52_02 ... ok test issue_426_01 ... ok test issue_129 ... ok test issue_59 ... ok test issue_195 ... ok test issue_29 ... ok test issue_153 ... ok test issue_141 ... ok test issue_133 ... ok test result: ok. 30 passed; 0 failed; 0 ignored; 0 measured; 0 filtered out; finished in 15.38s Running tests/strategies.rs (target/debug/deps/strategies-3ca553d8015d51ae) running 5 tests test filter_bigent ... ok test filter_brute ... ok test filter_entropy ... ok test filter_bigrams ... ok test filter_minsum ... ok test result: ok. 5 passed; 0 failed; 0 ignored; 0 measured; 0 filtered out; finished in 1.21s Doc-tests oxipng warning: unnecessary parentheses around index expression --> /home/buildozer/aports/community/oxipng/src/oxipng-8.0.0/src/reduction/mod.rs:161:46 | 161 | byte_map[byte] = palette_map[(byte & 0x0F)].unwrap_or(0) | ^ ^ | = note: `#[warn(unused_parens)]` on by default help: remove these parentheses | 161 - byte_map[byte] = palette_map[(byte & 0x0F)].unwrap_or(0) 161 + byte_map[byte] = palette_map[byte & 0x0F].unwrap_or(0) | warning: unnecessary parentheses around index expression --> /home/buildozer/aports/community/oxipng/src/oxipng-8.0.0/src/reduction/mod.rs:162:36 | 162 | | (palette_map[(byte >> 4)].unwrap_or(0) << 4); | ^ ^ | help: remove these parentheses | 162 - | (palette_map[(byte >> 4)].unwrap_or(0) << 4); 162 + | (palette_map[byte >> 4].unwrap_or(0) << 4); | warning: unnecessary parentheses around index expression --> /home/buildozer/aports/community/oxipng/src/oxipng-8.0.0/src/reduction/mod.rs:167:46 | 167 | byte_map[byte] = palette_map[(byte & 0x03)].unwrap_or(0) | ^ ^ | help: remove these parentheses | 167 - byte_map[byte] = palette_map[(byte & 0x03)].unwrap_or(0) 167 + byte_map[byte] = palette_map[byte & 0x03].unwrap_or(0) | warning: unnecessary parentheses around index expression --> /home/buildozer/aports/community/oxipng/src/oxipng-8.0.0/src/reduction/mod.rs:168:36 | 168 | | (palette_map[((byte >> 2) & 0x03)].unwrap_or(0) << 2) | ^ ^ | help: remove these parentheses | 168 - | (palette_map[((byte >> 2) & 0x03)].unwrap_or(0) << 2) 168 + | (palette_map[(byte >> 2) & 0x03].unwrap_or(0) << 2) | warning: unnecessary parentheses around index expression --> /home/buildozer/aports/community/oxipng/src/oxipng-8.0.0/src/reduction/mod.rs:169:36 | 169 | | (palette_map[((byte >> 4) & 0x03)].unwrap_or(0) << 4) | ^ ^ | help: remove these parentheses | 169 - | (palette_map[((byte >> 4) & 0x03)].unwrap_or(0) << 4) 169 + | (palette_map[(byte >> 4) & 0x03].unwrap_or(0) << 4) | warning: unnecessary parentheses around index expression --> /home/buildozer/aports/community/oxipng/src/oxipng-8.0.0/src/reduction/mod.rs:170:36 | 170 | | (palette_map[(byte >> 6)].unwrap_or(0) << 6); | ^ ^ | help: remove these parentheses | 170 - | (palette_map[(byte >> 6)].unwrap_or(0) << 6); 170 + | (palette_map[byte >> 6].unwrap_or(0) << 6); | warning: 6 warnings emitted running 0 tests test result: ok. 0 passed; 0 failed; 0 ignored; 0 measured; 0 filtered out; finished in 0.00s >>> oxipng: Entering fakeroot... >>> oxipng*: Running postcheck for oxipng >>> oxipng*: Preparing package oxipng... >>> oxipng*: Stripping binaries >>> oxipng*: Scanning shared objects >>> oxipng*: Tracing dependencies... so:libc.musl-x86.so.1 so:libgcc_s.so.1 >>> oxipng*: Package size: 896.0 KB >>> oxipng*: Compressing data... >>> oxipng*: Create checksum... >>> oxipng*: Create oxipng-8.0.0-r0.apk >>> oxipng: Build complete at Sat, 22 Apr 2023 00:12:00 +0000 elapsed time 0h 2m 59s >>> oxipng: Cleaning up srcdir >>> oxipng: Cleaning up pkgdir >>> oxipng: Uninstalling dependencies... (1/7) Purging .makedepends-oxipng (20230422.000902) (2/7) Purging cargo (1.69.0-r2) (3/7) Purging rust (1.69.0-r2) (4/7) Purging llvm15-libs (15.0.7-r5) (5/7) Purging libffi (3.4.4-r2) (6/7) Purging libxml2 (2.10.4-r2) (7/7) Purging xz-libs (5.4.2-r1) Executing busybox-1.36.0-r7.trigger OK: 373 MiB in 98 packages >>> oxipng: Updating the community/x86 repository index... >>> oxipng: Signing the index...