>>> oxipng: Building community/oxipng 8.0.0-r1 (using abuild 3.11.0-r1) started Sat, 20 May 2023 01:17:00 +0000 >>> oxipng: Checking sanity of /home/buildozer/aports/community/oxipng/APKBUILD... >>> oxipng: Analyzing dependencies... >>> oxipng: Installing for build: build-base cargo cargo-auditable (1/7) Installing libffi (3.4.4-r3) (2/7) Installing libxml2 (2.11.4-r0) (3/7) Installing llvm16-libs (16.0.4-r3) (4/7) Installing rust (1.69.0-r6) (5/7) Installing cargo (1.69.0-r6) (6/7) Installing cargo-auditable (0.6.1-r1) (7/7) Installing .makedepends-oxipng (20230520.011701) Executing busybox-1.36.0-r11.trigger OK: 1119 MiB in 114 packages >>> oxipng: Cleaning up srcdir >>> oxipng: Cleaning up pkgdir >>> oxipng: Fetching https://distfiles.alpinelinux.org/distfiles/edge/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 28 49.2M 28 14.2M 0 0 8760k 0 0:00:05 0:00:01 0:00:04 8763k 37 49.2M 37 18.3M 0 0 9813k 0 0:00:05 0:00:01 0:00:04 9810k 100 49.2M 100 49.2M 0 0 17.0M 0 0:00:02 0:00:02 --:--:-- 17.0M >>> oxipng: Fetching https://distfiles.alpinelinux.org/distfiles/edge/oxipng-8.0.0.tar.gz >>> oxipng: Checking sha512sums... oxipng-8.0.0.tar.gz: OK >>> oxipng: Unpacking /var/cache/distfiles/edge/oxipng-8.0.0.tar.gz... Updating crates.io index Downloading crates ... Downloaded funty v2.0.0 Downloaded wyz v0.5.1 Downloaded libdeflater v0.11.0 Downloaded libdeflate-sys v0.11.0 Downloaded zopfli v0.7.1 Downloaded radium v0.7.0 Downloaded bitvec v1.0.1 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 rayon-core v1.10.1 Compiling crc32fast v1.3.2 Compiling log v0.4.17 Compiling adler v1.0.2 Compiling either v1.8.0 Compiling cc v1.0.78 Compiling bitflags v1.3.2 Compiling radium v0.7.0 Compiling hashbrown v0.12.3 Compiling byteorder v1.4.3 Compiling termcolor v1.1.3 Compiling crc-catalog v2.1.0 Compiling bytemuck v1.12.3 Compiling tap v1.0.1 Compiling os_str_bytes v6.4.1 Compiling once_cell v1.16.0 Compiling funty v2.0.0 Compiling typed-arena v2.0.1 Compiling color_quant v1.1.0 Compiling strsim v0.10.0 Compiling textwrap v0.16.0 Compiling adler32 v1.2.0 Compiling iter-read v0.3.1 Compiling wild v2.1.0 Compiling rustc-hash v1.1.0 Compiling miniz_oxide v0.6.2 Compiling crc v3.0.0 Compiling wyz v0.5.1 Compiling itertools v0.10.5 Compiling thread_local v1.1.4 Compiling rgb v0.8.34 Compiling clap_lex v0.2.4 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 crossbeam-channel v0.5.6 Compiling flate2 v1.0.25 Compiling crossbeam-deque v0.8.2 Compiling bitvec v1.0.1 Compiling num_cpus v1.15.0 Compiling atty v0.2.14 Compiling filetime v0.2.19 Compiling png v0.17.7 Compiling libdeflate-sys v0.11.0 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) Finished release [optimized] target(s) in 54.56s 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 log v0.4.17 Compiling either v1.8.0 Compiling adler v1.0.2 Compiling bitflags v1.3.2 Compiling radium v0.7.0 Compiling hashbrown v0.12.3 Compiling once_cell v1.16.0 Compiling tap v1.0.1 Compiling crc-catalog v2.1.0 Compiling byteorder v1.4.3 Compiling bytemuck v1.12.3 Compiling termcolor v1.1.3 Compiling os_str_bytes v6.4.1 Compiling adler32 v1.2.0 Compiling typed-arena v2.0.1 Compiling color_quant v1.1.0 Compiling funty v2.0.0 Compiling textwrap v0.16.0 Compiling iter-read v0.3.1 Compiling strsim v0.10.0 Compiling wild v2.1.0 Compiling rustc-hash v1.1.0 Compiling miniz_oxide v0.6.2 Compiling crc v3.0.0 Compiling wyz v0.5.1 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 bitvec v1.0.1 Compiling crossbeam-deque v0.8.2 Compiling png v0.17.7 Compiling num_cpus v1.15.0 Compiling libdeflate-sys v0.11.0 Compiling atty v0.2.14 Compiling stderrlog v0.5.4 Compiling filetime v0.2.19 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 58.03s Running unittests src/lib.rs (target/debug/deps/oxipng-b6a7744eb0d383c5) 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-3d154400c6ab1e12) 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-08da5051389e2984) running 66 tests test filter_1_for_palette_1 ... ok test filter_0_for_palette_2 ... ok test filter_2_for_palette_1 ... ok test filter_0_for_palette_1 ... ok test filter_2_for_palette_2 ... ok test filter_1_for_palette_2 ... ok test filter_3_for_palette_1 ... ok test filter_1_for_palette_4 ... 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_grayscale_8 ... ok test filter_2_for_grayscale_8 ... ok test filter_0_for_grayscale_16 ... ok test filter_3_for_palette_2 ... ok test filter_0_for_grayscale_alpha_8 ... ok test filter_2_for_grayscale_16 ... ok test filter_3_for_grayscale_8 ... ok test filter_1_for_grayscale_16 ... ok test filter_3_for_grayscale_16 ... ok test filter_4_for_palette_1 ... ok test filter_3_for_palette_4 ... ok test filter_1_for_grayscale_alpha_8 ... ok test filter_4_for_palette_2 ... ok test filter_0_for_grayscale_alpha_16 ... ok test filter_2_for_grayscale_alpha_8 ... ok test filter_3_for_grayscale_alpha_8 ... ok test filter_1_for_grayscale_alpha_16 ... ok test filter_0_for_rgb_8 ... ok test filter_4_for_grayscale_8 ... ok test filter_4_for_palette_4 ... ok test filter_2_for_grayscale_alpha_16 ... ok test filter_5_for_palette_1 ... ok test filter_3_for_grayscale_alpha_16 ... ok test filter_5_for_palette_2 ... ok test filter_4_for_grayscale_16 ... ok test filter_0_for_rgba_8 ... ok test filter_2_for_rgb_8 ... ok test filter_5_for_palette_4 ... ok test filter_1_for_rgb_8 ... ok test filter_5_for_grayscale_8 ... ok test filter_4_for_grayscale_alpha_8 ... ok test filter_5_for_grayscale_16 ... ok test filter_0_for_rgb_16 ... ok test filter_1_for_rgba_8 ... ok test filter_3_for_rgb_8 ... ok test filter_4_for_grayscale_alpha_16 ... ok test filter_5_for_grayscale_alpha_8 ... ok test filter_5_for_grayscale_alpha_16 ... ok test filter_4_for_rgb_8 ... ok test filter_2_for_rgba_8 ... ok test filter_0_for_rgba_16 ... ok test filter_1_for_rgb_16 ... ok test filter_3_for_rgba_8 ... ok test filter_2_for_rgb_16 ... ok test filter_5_for_rgb_8 ... ok test filter_4_for_rgba_8 ... ok test filter_5_for_rgba_8 ... ok test filter_2_for_rgba_16 ... ok test filter_3_for_rgb_16 ... ok test filter_1_for_rgba_16 ... ok test filter_4_for_rgb_16 ... ok test filter_3_for_rgba_16 ... ok test filter_5_for_rgb_16 ... ok test filter_4_for_rgba_16 ... ok test filter_5_for_rgba_16 ... ok test result: ok. 66 passed; 0 failed; 0 ignored; 0 measured; 0 filtered out; finished in 1.82s Running tests/flags.rs (target/debug/deps/flags-e9dd9667c5ea558c) running 13 tests test interlacing_1_to_0_small_files ... ok test interlacing_0_to_1_small_files ... ok test strip_headers_all ... ok test strip_headers_safe ... ok test strip_headers_list ... ok test strip_headers_none ... ok test preserve_attrs ... ok test verbose_mode ... ok test interlacing_1_to_0 ... 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 21.34s Running tests/interlaced.rs (target/debug/deps/interlaced-811510ed3aa57836) running 55 tests test interlaced_palette_2_should_be_palette_2 ... ok test interlaced_grayscale_8_should_be_grayscale_8 ... ok test interlaced_palette_4_should_be_palette_1 ... ok test interlaced_palette_1_should_be_palette_1 ... ok test interlaced_grayscale_16_should_be_grayscale_16 ... ok test interlaced_palette_2_should_be_palette_1 ... ok test interlaced_grayscale_alpha_8_should_be_grayscale_alpha_8 ... ok test interlaced_grayscale_alpha_16_should_be_grayscale_alpha_16 ... ok test interlaced_palette_8_should_be_palette_8 ... ok test interlaced_palette_8_should_be_palette_1 ... ok test interlaced_palette_8_should_be_palette_2 ... ok test interlaced_rgb_8_should_be_palette_1 ... ok test interlaced_grayscale_alpha_8_should_be_grayscale_8 ... ok test interlaced_rgb_16_should_be_palette_2 ... ok test interlaced_palette_8_should_be_palette_4 ... ok test interlaced_rgb_8_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_grayscale_16_should_be_grayscale_8 ... ok test interlaced_rgb_16_should_be_palette_4 ... ok test interlaced_grayscale_alpha_16_should_be_grayscale_8 ... ok test interlaced_palette_4_should_be_palette_2 ... ok test interlaced_rgb_8_should_be_rgb_8 ... ok test interlaced_small_files ... ok test interlaced_rgb_16_should_be_rgb_16 ... ok test interlaced_rgb_16_should_be_palette_1 ... ok test interlaced_rgb_8_should_be_palette_4 ... ok test interlaced_rgba_16_should_be_palette_1 ... ok test interlaced_rgba_8_should_be_palette_2 ... ok test interlaced_rgba_8_should_be_palette_1 ... ok test interlaced_rgba_16_should_be_grayscale_16 ... ok test interlaced_rgba_16_should_be_palette_2 ... ok test interlaced_rgba_8_should_be_palette_4 ... ok test interlaced_rgb_8_should_be_palette_8 ... ok test interlaced_grayscale_alpha_16_should_be_grayscale_16 ... ok test interlaced_rgb_16_should_be_palette_8 ... ok test interlaced_rgba_16_should_be_palette_4 ... ok test interlaced_rgba_8_should_be_palette_8 ... ok test interlaced_rgb_16_should_be_grayscale_16 ... ok test interlaced_rgba_8_should_be_grayscale_8 ... ok test interlaced_grayscale_alpha_16_should_be_grayscale_alpha_8 ... ok test interlaced_rgba_16_should_be_grayscale_8 ... ok test interlaced_rgba_16_should_be_grayscale_alpha_16 ... ok test interlaced_rgb_16_should_be_grayscale_8 ... ok test interlaced_rgba_8_should_be_grayscale_alpha_8 ... ok test interlaced_rgba_16_should_be_grayscale_alpha_8 ... ok test interlaced_rgba_16_should_be_palette_8 ... ok test interlaced_rgb_16_should_be_rgb_8 ... ok test interlaced_rgba_8_should_be_rgb_8 ... ok test interlaced_rgba_8_should_be_rgba_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 2.84s Running tests/interlacing.rs (target/debug/deps/interlacing-8d9613c0b624baf8) running 12 tests test deinterlace_palette_1 ... ok test deinterlace_palette_2 ... ok test interlace_palette_2 ... ok test interlace_palette_1 ... ok test deinterlace_palette_4 ... ok test interlace_palette_4 ... ok test deinterlace_palette_8 ... ok test interlace_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.27s Running tests/lib.rs (target/debug/deps/lib-25cb5f33f7b76f7e) running 7 tests test optimize_corrupted ... ok test optimize_apng ... ok test optimize_from_memory_corrupted ... ok test optimize_from_memory_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.03s Running tests/reduction.rs (target/debug/deps/reduction-33ba3836ce0721c8) running 71 tests test grayscale_alpha_8_reduce_alpha ... ok test palette_2_should_be_palette_1 ... ok test palette_4_should_be_palette_1 ... ok test grayscale_4_should_be_grayscale_1 ... ok test grayscale_8_should_be_grayscale_8 ... ok test palette_8_should_be_palette_1 ... ok test palette_4_should_be_palette_2 ... ok test grayscale_8_should_be_grayscale_2 ... ok test grayscale_16_should_be_grayscale_16 ... ok test grayscale_alpha_16_reduce_alpha ... ok test grayscale_alpha_8_should_be_grayscale_alpha_8 ... ok test palette_1_should_be_palette_1 ... ok test palette_8_should_be_palette_4 ... ok test grayscale_alpha_16_should_be_grayscale_alpha_16 ... ok test grayscale_8_should_be_grayscale_4 ... ok test grayscale_16_should_be_grayscale_8 ... ok test palette_8_should_be_palette_2 ... ok test grayscale_8_should_be_grayscale_1 ... ok test grayscale_2_should_be_grayscale_1 ... ok test grayscale_4_should_be_grayscale_2 ... ok test rgb_8_should_be_palette_1 ... ok test rgb_8_should_be_palette_2 ... ok test rgb_16_should_be_palette_1 ... ok test palette_should_be_reduced_with_dupes ... ok test rgb_8_should_be_palette_4 ... ok test grayscale_alpha_8_should_be_grayscale_trns_8 ... ok test rgba_16_reduce_alpha ... ok test palette_should_be_reduced_with_both ... ok test palette_8_should_be_palette_8 ... ok test grayscale_alpha_16_should_be_grayscale_8 ... ok test palette_2_should_be_palette_2 ... ok test palette_4_should_be_palette_4 ... ok test rgba_8_reduce_alpha ... ok test rgb_16_should_be_palette_2 ... ok test palette_should_be_reduced_with_unused ... ok test rgb_16_should_be_palette_4 ... ok test rgb_8_should_be_rgb_8 ... ok test grayscale_alpha_16_should_be_grayscale_16 ... ok test rgba_16_should_be_palette_1 ... ok test small_files ... ok test grayscale_alpha_16_should_be_grayscale_trns_16 ... ok test rgba_8_should_be_palette_2 ... ok test rgba_8_should_be_palette_1 ... ok test rgb_16_should_be_rgb_16 ... ok test rgba_16_should_be_palette_2 ... ok test grayscale_alpha_8_should_be_grayscale_8 ... ok test rgb_16_should_be_grayscale_8 ... ok test rgba_8_should_be_palette_4 ... ok test rgb_8_should_be_palette_8 ... ok test rgba_16_should_be_grayscale_8 ... ok test rgb_8_should_be_grayscale_8 ... ok test rgba_16_should_be_palette_4 ... ok test rgb_16_should_be_palette_8 ... ok test rgb_16_should_be_rgb_8 ... ok test rgba_8_should_be_grayscale_8 ... ok test rgba_16_should_be_grayscale_16 ... ok test grayscale_alpha_16_should_be_grayscale_alpha_8 ... ok test rgba_16_should_be_grayscale_alpha_8 ... ok test rgba_16_should_be_palette_8 ... ok test rgb_16_should_be_grayscale_16 ... ok test rgba_8_should_be_palette_8 ... ok test rgba_16_should_be_grayscale_alpha_16 ... ok test rgba_8_should_be_grayscale_alpha_8 ... ok test rgba_16_should_be_rgba_16 ... ok test rgba_16_should_be_rgb_8 ... ok test rgba_8_should_be_rgba_8 ... ok test rgba_8_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_16 ... ok test rgba_16_should_be_rgb_trns_16 ... ok test result: ok. 71 passed; 0 failed; 0 ignored; 0 measured; 0 filtered out; finished in 2.11s Running tests/regression.rs (target/debug/deps/regression-12ddcd4a9280c504) running 30 tests test issue_175 ... ok test issue_92_filter_0 ... ok test issue_140 ... ok test issue_92_filter_5 ... ok test issue_52_06 ... ok test issue_80 ... ok test issue_52_04 ... ok test issue_182 ... ok test issue_171 ... ok test issue_52_03 ... ok test issue_42 ... ok test issue_159 ... ok test issue_52_01 ... ok test issue_52_05 ... ok test issue_52_02 ... ok test issue_56 ... ok test issue_113 ... ok test issue_60 ... ok test issue_82 ... ok test issue_89 ... ok test issue_129 ... ok test issue_426_02 ... ok test issue_58 ... ok test issue_426_01 ... ok test issue_59 ... ok test issue_29 ... ok test issue_195 ... 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 14.97s Running tests/strategies.rs (target/debug/deps/strategies-0648990fd730a0c6) 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.16s 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: 892.0 KB >>> oxipng*: Compressing data... >>> oxipng*: Create checksum... >>> oxipng*: Create oxipng-8.0.0-r1.apk >>> oxipng: Build complete at Sat, 20 May 2023 01:19:54 +0000 elapsed time 0h 2m 54s >>> oxipng: Cleaning up srcdir >>> oxipng: Cleaning up pkgdir >>> oxipng: Uninstalling dependencies... (1/7) Purging .makedepends-oxipng (20230520.011701) (2/7) Purging cargo (1.69.0-r6) (3/7) Purging rust (1.69.0-r6) (4/7) Purging cargo-auditable (0.6.1-r1) (5/7) Purging llvm16-libs (16.0.4-r3) (6/7) Purging libffi (3.4.4-r3) (7/7) Purging libxml2 (2.11.4-r0) Executing busybox-1.36.0-r11.trigger OK: 372 MiB in 107 packages >>> oxipng: Updating the community/x86 repository index... >>> oxipng: Signing the index...