>>> bcache-tools: Building main/bcache-tools 1.1-r4 (using abuild 3.16.0_rc4-r0) started Sat, 18 Oct 2025 02:57:09 +0000 >>> bcache-tools: Validating /home/buildozer/aports/main/bcache-tools/APKBUILD... >>> WARNING: bcache-tools: No maintainer >>> bcache-tools: Analyzing dependencies... >>> bcache-tools: Installing for build: build-base eudev-dev util-linux-dev linux-headers coreutils ( 1/22) Installing eudev-libs (3.2.14-r5) ( 2/22) Installing eudev-dev (3.2.14-r5) ( 3/22) Installing libeconf (0.7.10-r0) ( 4/22) Installing libblkid (2.41.2-r0) ( 5/22) Installing libuuid (2.41.2-r0) ( 6/22) Installing libfdisk (2.41.2-r0) ( 7/22) Installing sqlite-libs (3.50.4-r1) ( 8/22) Installing liblastlog2 (2.41.2-r0) ( 9/22) Installing libmount (2.41.2-r0) (10/22) Installing libsmartcols (2.41.2-r0) (11/22) Installing sqlite (3.50.4-r1) (12/22) Installing sqlite-dev (3.50.4-r1) (13/22) Installing util-linux-dev (2.41.2-r0) (14/22) Installing linux-headers (6.16.12-r0) (15/22) Installing coreutils-env (9.8-r1) (16/22) Installing coreutils-fmt (9.8-r1) (17/22) Installing coreutils-sha512sum (9.8-r1) (18/22) Installing libattr (2.5.2-r2) (19/22) Installing skalibs-libs (2.14.4.0-r0) (20/22) Installing utmps-libs (0.1.3.1-r0) (21/22) Installing coreutils (9.8-r1) (22/22) Installing .makedepends-bcache-tools (20251018.025709) busybox-1.37.0-r24.trigger: Executing script... usr_merge_nag.sh: * WARNING: The current system is not /usr-merged. You are encouraged to usr_merge_nag.sh: * migrate manually to ensure the best-possible support. See usr_merge_nag.sh: * https://alpinelinux.org/posts/2025-10-01-usr-merge.html for more details OK: 355 MiB in 124 packages >>> bcache-tools: Cleaning up srcdir >>> bcache-tools: Cleaning up pkgdir >>> bcache-tools: Cleaning up tmpdir >>> bcache-tools: Fetching https://distfiles.alpinelinux.org/distfiles/v3.23/bcache-tools-1.1.tar.gz /var/cache/distfiles/v3.23/bcache-tools-1.1.tar.gz: OK >>> bcache-tools: Fetching https://distfiles.alpinelinux.org/distfiles/v3.23/bcache-tools-1.1.tar.gz /var/cache/distfiles/v3.23/bcache-tools-1.1.tar.gz: OK >>> bcache-tools: Unpacking /var/cache/distfiles/v3.23/bcache-tools-1.1.tar.gz... cc -Os -fstack-clash-protection -Wformat -Werror=format-security -g -O2 -Wall -g `pkg-config --cflags uuid blkid smartcols` -c -o make.o make.c cc -Os -fstack-clash-protection -Wformat -Werror=format-security -g -O2 -Wall -g `pkg-config --cflags uuid blkid smartcols` -c -o crc64.o crc64.c cc -Os -fstack-clash-protection -Wformat -Werror=format-security -g -O2 -Wall -g `pkg-config --cflags uuid blkid smartcols` -c -o lib.o lib.c cc -Os -fstack-clash-protection -Wformat -Werror=format-security -g -O2 -Wall -g `pkg-config --cflags uuid blkid` -Wl,--as-needed,-O1,--sort-common probe-bcache.c `pkg-config --libs uuid blkid` -o probe-bcache cc -Os -fstack-clash-protection -Wformat -Werror=format-security -g -O2 -Wall -g -c -o bcache-register.o bcache-register.c cc -Wl,--as-needed,-O1,--sort-common bcache-register.o -o bcache-register cc -Os -fstack-clash-protection -Wformat -Werror=format-security -g -O2 -Wall -g -std=gnu99 -Wl,--as-needed,-O1,--sort-common bcache-super-show.c crc64.o `pkg-config --libs uuid` -o bcache-super-show cc -Os -fstack-clash-protection -Wformat -Werror=format-security -g -O2 -Wall -g `pkg-config --cflags uuid blkid smartcols` -Wl,--as-needed,-O1,--sort-common make-bcache.c make.o crc64.o lib.o `pkg-config --libs uuid blkid smartcols` -o make-bcache cc -Os -fstack-clash-protection -Wformat -Werror=format-security -g -O2 -Wall -g `pkg-config --cflags blkid uuid smartcols` -std=gnu99 -Wl,--as-needed,-O1,--sort-common bcache.c crc64.o lib.o make.o `pkg-config --libs blkid uuid smartcols` -o bcache bcache.c: In function 'show_bdevs_detail': bcache.c:200:39: warning: format '%lu' expects argument of type 'long unsigned int', but argument 5 has type 'uint64_t' {aka 'long long unsigned int'} [-Wformat=] 200 | printf("%s\t%s\t%s\t%lu", devs->name, devs->uuid, | ~~^ | | | long unsigned int | %llu 201 | devs->cset, devs->version); | ~~~~~~~~~~~~~ | | | uint64_t {aka long long unsigned int} bcache.c: In function 'show_bdevs': bcache.c:255:31: warning: format '%lu' expects argument of type 'long unsigned int', but argument 3 has type 'uint64_t' {aka 'long long unsigned int'} [-Wformat=] 255 | printf("%s\t%lu", devs->name, devs->version); | ~~^ ~~~~~~~~~~~~~ | | | | long unsigned int uint64_t {aka long long unsigned int} | %llu In file included from lib.h:4, from bcache.c:15: bcache.c: In function 'free_dev': list.h:41:43: warning: pointer 'dev' used after 'free' [-Wuse-after-free] 41 | const typeof(((type *)0)->member)*__mptr = (ptr); \ | ^~~~~~ list.h:241:9: note: in expansion of macro 'container_of' 241 | container_of(ptr, type, member) | ^~~~~~~~~~~~ list.h:295:20: note: in expansion of macro 'list_entry' 295 | pos = list_entry(pos->member.next, typeof(*pos), member)) | ^~~~~~~~~~ bcache.c:179:9: note: in expansion of macro 'list_for_each_entry' 179 | list_for_each_entry(dev, head, dev_list) { | ^~~~~~~~~~~~~~~~~~~ bcache.c:180:17: note: call to 'free' here 180 | free(dev); | ^~~~~~~~~ >>> bcache-tools: Entering fakeroot... install -m0755 make-bcache bcache-super-show bcache /home/buildozer/aports/main/bcache-tools/pkg/bcache-tools/usr/sbin/ install -m0755 probe-bcache bcache-register /home/buildozer/aports/main/bcache-tools/pkg/bcache-tools/usr/lib/udev/ install -m0644 69-bcache.rules /home/buildozer/aports/main/bcache-tools/pkg/bcache-tools/usr/lib/udev/rules.d/ install -m0644 -- *.8 /home/buildozer/aports/main/bcache-tools/pkg/bcache-tools/usr/share/man/man8/ install -D -m0755 initramfs/hook /home/buildozer/aports/main/bcache-tools/pkg/bcache-tools/usr/share/initramfs-tools/hooks/bcache install -D -m0755 initcpio/install /home/buildozer/aports/main/bcache-tools/pkg/bcache-tools/usr/lib/initcpio/install/bcache install -D -m0755 dracut/module-setup.sh /home/buildozer/aports/main/bcache-tools/pkg/bcache-tools/lib/dracut/modules.d/90bcache/module-setup.sh >>> bcache-tools-dbg*: Running split function dbg... >>> bcache-tools-dbg*: Preparing subpackage bcache-tools-dbg... >>> bcache-tools-dbg*: Stripping binaries >>> bcache-tools-dbg*: Running postcheck for bcache-tools-dbg >>> bcache-tools-doc*: Running split function doc... renamed 'usr/share/man' -> '/home/buildozer/aports/main/bcache-tools/pkg/bcache-tools-doc/usr/share/man' >>> bcache-tools-doc*: Preparing subpackage bcache-tools-doc... >>> bcache-tools-doc*: Running postcheck for bcache-tools-doc >>> bcache-tools*: Running postcheck for bcache-tools >>> WARNING: bcache-tools*: Packages must not put anything under /lib, use /usr/lib instead >>> WARNING: bcache-tools*: Found udev directory (/usr/lib/udev) but it's not in a -udev package >>> bcache-tools*: Preparing package bcache-tools... >>> bcache-tools*: Stripping binaries >>> bcache-tools*: Scanning shared objects >>> bcache-tools-dbg*: Scanning shared objects >>> bcache-tools-dbg*: Tracing dependencies... !bcache-tools<1.1-r4 !bcache-tools>1.1-r4 >>> bcache-tools-dbg*: Package size: 185.8 KB >>> bcache-tools-dbg*: Compressing data... >>> bcache-tools-dbg*: Create checksum... >>> bcache-tools-dbg*: Create bcache-tools-dbg-1.1-r4.apk >>> bcache-tools-doc*: Tracing dependencies... >>> bcache-tools-doc*: Package size: 920.0 B >>> bcache-tools-doc*: Compressing data... >>> bcache-tools-doc*: Create checksum... >>> bcache-tools-doc*: Create bcache-tools-doc-1.1-r4.apk >>> bcache-tools*: Tracing dependencies... so:libblkid.so.1 so:libc.musl-armhf.so.1 so:libsmartcols.so.1 so:libuuid.so.1 >>> bcache-tools*: Package size: 97.0 KB >>> bcache-tools*: Compressing data... >>> bcache-tools*: Create checksum... >>> bcache-tools*: Create bcache-tools-1.1-r4.apk >>> bcache-tools: Build complete at Sat, 18 Oct 2025 02:57:11 +0000 elapsed time 0h 0m 2s >>> bcache-tools: Cleaning up srcdir >>> bcache-tools: Cleaning up pkgdir >>> bcache-tools: Cleaning up tmpdir >>> bcache-tools: Uninstalling dependencies... ( 1/22) Purging .makedepends-bcache-tools (20251018.025709) ( 2/22) Purging eudev-dev (3.2.14-r5) ( 3/22) Purging eudev-libs (3.2.14-r5) ( 4/22) Purging linux-headers (6.16.12-r0) ( 5/22) Purging coreutils (9.8-r1) coreutils-9.8-r1.post-deinstall: Executing script... ( 6/22) Purging coreutils-env (9.8-r1) ( 7/22) Purging coreutils-fmt (9.8-r1) ( 8/22) Purging coreutils-sha512sum (9.8-r1) ( 9/22) Purging libattr (2.5.2-r2) (10/22) Purging utmps-libs (0.1.3.1-r0) (11/22) Purging util-linux-dev (2.41.2-r0) (12/22) Purging libfdisk (2.41.2-r0) (13/22) Purging liblastlog2 (2.41.2-r0) (14/22) Purging libmount (2.41.2-r0) (15/22) Purging libsmartcols (2.41.2-r0) (16/22) Purging libuuid (2.41.2-r0) (17/22) Purging libblkid (2.41.2-r0) (18/22) Purging libeconf (0.7.10-r0) (19/22) Purging skalibs-libs (2.14.4.0-r0) (20/22) Purging sqlite-dev (3.50.4-r1) (21/22) Purging sqlite-libs (3.50.4-r1) (22/22) Purging sqlite (3.50.4-r1) busybox-1.37.0-r24.trigger: Executing script... usr_merge_nag.sh: * WARNING: The current system is not /usr-merged. You are encouraged to usr_merge_nag.sh: * migrate manually to ensure the best-possible support. See usr_merge_nag.sh: * https://alpinelinux.org/posts/2025-10-01-usr-merge.html for more details OK: 342 MiB in 102 packages >>> bcache-tools: Updating the main/armhf repository index... >>> bcache-tools: Signing the index...