>>> py3-slidge-style-parser: Building testing/py3-slidge-style-parser 0.1.7-r0 (using abuild 3.13.0-r3) started Wed, 31 Jul 2024 13:15:10 +0000 >>> py3-slidge-style-parser: Checking sanity of /home/buildozer/aports/testing/py3-slidge-style-parser/APKBUILD... >>> py3-slidge-style-parser: Analyzing dependencies... >>> py3-slidge-style-parser: Installing for build: build-base cargo py3-gpep517 py3-maturin py3-pytest (1/34) Installing libffi (3.4.6-r0) (2/34) Installing xz-libs (5.6.2-r0) (3/34) Installing libxml2 (2.12.8-r0) (4/34) Installing llvm18-libs (18.1.8-r0) (5/34) Installing rust (1.80.0-r0) (6/34) Installing cargo (1.80.0-r0) (7/34) Installing libbz2 (1.0.8-r6) (8/34) Installing gdbm (1.24-r0) (9/34) Installing mpdecimal (4.0.0-r0) (10/34) Installing libpanelw (6.5_p20240601-r0) (11/34) Installing sqlite-libs (3.46.0-r0) (12/34) Installing python3 (3.12.3-r1) (13/34) Installing python3-pycache-pyc0 (3.12.3-r1) (14/34) Installing pyc (3.12.3-r1) (15/34) Installing py3-installer-pyc (0.7.0-r2) (16/34) Installing py3-gpep517-pyc (16-r0) (17/34) Installing python3-pyc (3.12.3-r1) (18/34) Installing py3-installer (0.7.0-r2) (19/34) Installing py3-gpep517 (16-r0) (20/34) Installing maturin (1.5.1-r0) (21/34) Installing py3-maturin (1.5.1-r0) (22/34) Installing py3-iniconfig (2.0.0-r1) (23/34) Installing py3-iniconfig-pyc (2.0.0-r1) (24/34) Installing py3-parsing (3.1.2-r1) (25/34) Installing py3-parsing-pyc (3.1.2-r1) (26/34) Installing py3-packaging (24.1-r0) (27/34) Installing py3-packaging-pyc (24.1-r0) (28/34) Installing py3-pluggy (1.5.0-r0) (29/34) Installing py3-pluggy-pyc (1.5.0-r0) (30/34) Installing py3-py (1.11.0-r3) (31/34) Installing py3-py-pyc (1.11.0-r3) (32/34) Installing py3-pytest (8.3.2-r0) (33/34) Installing py3-pytest-pyc (8.3.2-r0) (34/34) Installing .makedepends-py3-slidge-style-parser (20240731.131511) Executing busybox-1.36.1-r31.trigger OK: 631 MiB in 137 packages >>> py3-slidge-style-parser: Cleaning up srcdir >>> py3-slidge-style-parser: Cleaning up pkgdir >>> py3-slidge-style-parser: Cleaning up tmpdir >>> py3-slidge-style-parser: Fetching https://distfiles.alpinelinux.org/distfiles/edge/slidge_style_parser-0.1.7.tar.gz Connecting to distfiles.alpinelinux.org (172.105.82.32:443) saving to '/var/cache/distfiles/edge/slidge_style_parser-0.1.7.tar.gz.part' slidge_style_parser- 100% |********************************| 23778 0:00:00 ETA '/var/cache/distfiles/edge/slidge_style_parser-0.1.7.tar.gz.part' saved >>> py3-slidge-style-parser: Fetching https://distfiles.alpinelinux.org/distfiles/edge/slidge_style_parser-0.1.7.tar.gz >>> py3-slidge-style-parser: Checking sha512sums... slidge_style_parser-0.1.7.tar.gz: OK >>> py3-slidge-style-parser: Unpacking /var/cache/distfiles/edge/slidge_style_parser-0.1.7.tar.gz... Downloading crates ... Downloaded pyo3-macros v0.18.3 Downloaded unindent v0.1.11 Downloaded pyo3-build-config v0.18.3 Downloaded pyo3-macros-backend v0.18.3 Downloaded pyo3-ffi v0.18.3 Downloaded pyo3 v0.18.3 2024-07-31 13:15:13,875 gpep517 INFO Building wheel via backend maturin Running `maturin pep517 build-wheel -i /usr/bin/python3 --compatibility off --frozen` 📦 Including license file "/home/buildozer/aports/testing/py3-slidge-style-parser/src/slidge_style_parser-0.1.7/LICENSE" 🔗 Found pyo3 bindings 🐍 Found CPython 3.12 at /usr/bin/python3 📡 Using build options features from pyproject.toml Compiling target-lexicon v0.12.15 Compiling autocfg v1.3.0 Compiling once_cell v1.19.0 Compiling proc-macro2 v1.0.86 Compiling libc v0.2.155 Compiling unicode-ident v1.0.12 Compiling syn v1.0.109 Compiling parking_lot_core v0.9.10 Compiling cfg-if v1.0.0 Compiling scopeguard v1.2.0 Compiling smallvec v1.13.2 Compiling indoc v1.0.9 Compiling unindent v0.1.11 Compiling lock_api v0.4.12 Compiling memoffset v0.8.0 Compiling quote v1.0.36 Compiling pyo3-build-config v0.18.3 Compiling parking_lot v0.12.3 Compiling pyo3-ffi v0.18.3 Compiling pyo3 v0.18.3 Compiling pyo3-macros-backend v0.18.3 Compiling pyo3-macros v0.18.3 Compiling slidge-style-parser v0.1.7 (/home/buildozer/aports/testing/py3-slidge-style-parser/src/slidge_style_parser-0.1.7) warning: call to `.clone()` on a reference in this situation does nothing --> src/matrix.rs:24:14 | 24 | #[pyfunction] | ______________^ 25 | | pub fn format_for_matrix(body: String, mentions: Option>) -> PyResult { 26 | | let mut chars: Vec = body.chars().collect(); 27 | | if chars.len() < 1 { ... | 36 | | let opening_tag = if keyword == "```language" { 37 | | DUAL_TAGS.iter().find(|&&(k, _)| k == keyword).unwrap().1.0.clone() | |___________________________________________________________________________________^ help: remove this redundant call | = note: the type `str` does not implement `Clone`, so calling `clone` on `&str` copies the reference, which does not do anything and can be removed = note: `#[warn(noop_method_call)]` on by default warning: call to `.clone()` on a reference in this situation does nothing --> src/matrix.rs:24:14 | 24 | #[pyfunction] | ______________^ 25 | | pub fn format_for_matrix(body: String, mentions: Option>) -> PyResult { 26 | | let mut chars: Vec = body.chars().collect(); 27 | | if chars.len() < 1 { ... | 41 | | } else { 42 | | DUAL_TAGS.iter().find(|&&(k, _)| k == keyword).unwrap().1.0.clone().to_owned() | |___________________________________________________________________________________^ help: remove this redundant call | = note: the type `str` does not implement `Clone`, so calling `clone` on `&str` copies the reference, which does not do anything and can be removed warning: call to `.clone()` on a reference in this situation does nothing --> src/matrix.rs:24:14 | 24 | #[pyfunction] | ______________^ 25 | | pub fn format_for_matrix(body: String, mentions: Option>) -> PyResult { 26 | | let mut chars: Vec = body.chars().collect(); 27 | | if chars.len() < 1 { ... | 44 | | tags.push((start, opening_tag, remove_start)); 45 | | tags.push((end, DUAL_TAGS.iter().find(|&&(k, _)| k == keyword).unwrap().1.1.clone().to_owned(), remove_end)); | |_______________________________________________________________________________________________^ help: remove this redundant call | = note: the type `str` does not implement `Clone`, so calling `clone` on `&str` copies the reference, which does not do anything and can be removed warning: `slidge-style-parser` (lib) generated 3 warnings (run `cargo fix --lib -p slidge-style-parser` to apply 3 suggestions) Finished `release` profile [optimized] target(s) in 26.73s 📦 Built wheel for CPython 3.12 to /home/buildozer/aports/testing/py3-slidge-style-parser/src/slidge_style_parser-0.1.7/target/wheels/slidge_style_parser-0.1.7-cp312-cp312-linux_armv8l.whl /home/buildozer/aports/testing/py3-slidge-style-parser/src/slidge_style_parser-0.1.7/target/wheels/slidge_style_parser-0.1.7-cp312-cp312-linux_armv8l.whl 2024-07-31 13:15:40,866 gpep517 INFO The backend produced .dist/slidge_style_parser-0.1.7-cp312-cp312-linux_armv8l.whl slidge_style_parser-0.1.7-cp312-cp312-linux_armv8l.whl ============================= test session starts ============================== platform linux -- Python 3.12.3, pytest-8.3.2, pluggy-1.5.0 rootdir: /home/buildozer/aports/testing/py3-slidge-style-parser/src/slidge_style_parser-0.1.7 configfile: pyproject.toml collected 19 items tests/test_matrix.py .......... [ 52%] tests/test_telegram.py ......... [100%] ============================== 19 passed in 0.13s ============================== >>> py3-slidge-style-parser: Entering fakeroot... >>> py3-slidge-style-parser-pyc*: Running split function pyc... '/home/buildozer/aports/testing/py3-slidge-style-parser/pkg/py3-slidge-style-parser/usr/lib/python3.12/site-packages/slidge_style_parser/__pycache__' -> '/home/buildozer/aports/testing/py3-slidge-style-parser/pkg/py3-slidge-style-parser-pyc/usr/lib/python3.12/site-packages/slidge_style_parser/__pycache__' >>> py3-slidge-style-parser-pyc*: Preparing subpackage py3-slidge-style-parser-pyc... >>> py3-slidge-style-parser-pyc*: Running postcheck for py3-slidge-style-parser-pyc >>> py3-slidge-style-parser*: Running postcheck for py3-slidge-style-parser >>> py3-slidge-style-parser*: Preparing package py3-slidge-style-parser... >>> py3-slidge-style-parser*: Stripping binaries >>> py3-slidge-style-parser-pyc*: Scanning shared objects >>> py3-slidge-style-parser*: Scanning shared objects >>> py3-slidge-style-parser-pyc*: Tracing dependencies... python3~3.12 >>> py3-slidge-style-parser-pyc*: Package size: 32.0 KB >>> py3-slidge-style-parser-pyc*: Compressing data... >>> py3-slidge-style-parser-pyc*: Create checksum... >>> py3-slidge-style-parser-pyc*: Create py3-slidge-style-parser-pyc-0.1.7-r0.apk >>> py3-slidge-style-parser*: Tracing dependencies... python3~3.12 so:libc.musl-armhf.so.1 so:libgcc_s.so.1 >>> py3-slidge-style-parser*: Package size: 444.0 KB >>> py3-slidge-style-parser*: Compressing data... >>> py3-slidge-style-parser*: Create checksum... >>> py3-slidge-style-parser*: Create py3-slidge-style-parser-0.1.7-r0.apk >>> py3-slidge-style-parser: Build complete at Wed, 31 Jul 2024 13:15:41 +0000 elapsed time 0h 0m 31s >>> py3-slidge-style-parser: Cleaning up srcdir >>> py3-slidge-style-parser: Cleaning up pkgdir >>> py3-slidge-style-parser: Uninstalling dependencies... (1/34) Purging .makedepends-py3-slidge-style-parser (20240731.131511) (2/34) Purging cargo (1.80.0-r0) (3/34) Purging rust (1.80.0-r0) (4/34) Purging py3-gpep517-pyc (16-r0) (5/34) Purging py3-gpep517 (16-r0) (6/34) Purging py3-installer-pyc (0.7.0-r2) (7/34) Purging py3-installer (0.7.0-r2) (8/34) Purging py3-maturin (1.5.1-r0) (9/34) Purging maturin (1.5.1-r0) (10/34) Purging py3-pytest-pyc (8.3.2-r0) (11/34) Purging py3-pytest (8.3.2-r0) (12/34) Purging py3-iniconfig-pyc (2.0.0-r1) (13/34) Purging py3-iniconfig (2.0.0-r1) (14/34) Purging py3-packaging-pyc (24.1-r0) (15/34) Purging py3-packaging (24.1-r0) (16/34) Purging py3-parsing-pyc (3.1.2-r1) (17/34) Purging py3-parsing (3.1.2-r1) (18/34) Purging py3-pluggy-pyc (1.5.0-r0) (19/34) Purging py3-pluggy (1.5.0-r0) (20/34) Purging py3-py-pyc (1.11.0-r3) (21/34) Purging py3-py (1.11.0-r3) (22/34) Purging python3-pyc (3.12.3-r1) (23/34) Purging python3-pycache-pyc0 (3.12.3-r1) (24/34) Purging pyc (3.12.3-r1) (25/34) Purging python3 (3.12.3-r1) (26/34) Purging gdbm (1.24-r0) (27/34) Purging libbz2 (1.0.8-r6) (28/34) Purging libpanelw (6.5_p20240601-r0) (29/34) Purging llvm18-libs (18.1.8-r0) (30/34) Purging mpdecimal (4.0.0-r0) (31/34) Purging sqlite-libs (3.46.0-r0) (32/34) Purging libffi (3.4.6-r0) (33/34) Purging libxml2 (2.12.8-r0) (34/34) Purging xz-libs (5.6.2-r0) Executing busybox-1.36.1-r31.trigger OK: 315 MiB in 103 packages >>> py3-slidge-style-parser: Updating the testing/armhf repository index... >>> py3-slidge-style-parser: Signing the index...