>>> hexedit: Building testing/hexedit 1.6_git20230905-r0 (using abuild 3.12.0-r5) started Thu, 04 Apr 2024 14:57:40 +0000 >>> hexedit: Checking sanity of /home/buildozer/aports/testing/hexedit/APKBUILD... >>> hexedit: Analyzing dependencies... >>> hexedit: Installing for build: build-base autoconf ncurses-dev (1/13) Installing m4 (1.4.19-r3) (2/13) Installing libbz2 (1.0.8-r6) (3/13) Installing perl (5.38.2-r0) (4/13) Installing autoconf (2.72-r0) (5/13) Installing libformw (6.4_p20240309-r0) (6/13) Installing libmenuw (6.4_p20240309-r0) (7/13) Installing libpanelw (6.4_p20240309-r0) (8/13) Installing libncurses++ (6.4_p20240309-r0) (9/13) Installing ncurses-dev (6.4_p20240309-r0) (10/13) Installing .makedepends-hexedit (20240404.145742) (11/13) Installing perl-error (0.17029-r2) (12/13) Installing perl-git (2.44.0-r1) (13/13) Installing git-perl (2.44.0-r1) Executing busybox-1.36.1-r25.trigger OK: 305 MiB in 116 packages >>> hexedit: Cleaning up srcdir >>> hexedit: Cleaning up pkgdir >>> hexedit: Cleaning up tmpdir >>> hexedit: Fetching https://distfiles.alpinelinux.org/distfiles/edge/hexedit-3f0d6adf1636b4d7e01e014633eae8fdcdcb9570.tar.gz >>> hexedit: Fetching https://distfiles.alpinelinux.org/distfiles/edge/hexedit-3f0d6adf1636b4d7e01e014633eae8fdcdcb9570.tar.gz >>> hexedit: Checking sha512sums... hexedit-3f0d6adf1636b4d7e01e014633eae8fdcdcb9570.tar.gz: OK >>> hexedit: Unpacking /var/cache/distfiles/hexedit-3f0d6adf1636b4d7e01e014633eae8fdcdcb9570.tar.gz... checking for armv7-alpine-linux-musleabihf-gcc... gcc checking whether the C compiler works... yes checking for C compiler default output file name... a.out checking for suffix of executables... checking whether we are cross compiling... no checking for suffix of object files... o checking whether the compiler supports GNU C... yes checking whether gcc accepts -g... yes checking for gcc option to enable C11 features... none needed checking for a BSD-compatible install... /usr/bin/install -c checking for initscr in -lcurses... yes checking for keypad in -ltinfo... no checking for use_default_colors... yes checking for gcc option to enable large file support... none needed checking for grep that handles long lines and -e... /bin/grep checking for egrep... /bin/grep -E checking whether stat file-mode macros are broken... no checking for sys/wait.h that is POSIX.1 compatible... yes checking for stdio.h... yes checking for stdlib.h... yes checking for string.h... yes checking for inttypes.h... yes checking for stdint.h... yes checking for strings.h... yes checking for sys/stat.h... yes checking for sys/types.h... yes checking for unistd.h... yes checking for fcntl.h... yes checking for unistd.h... (cached) yes checking for libgen.h... yes checking for sys/mount.h... yes checking for an ANSI C-conforming const... yes checking for size_t... yes checking for memcmp... yes checking for memmem... yes checking for memrmem... no checking for memrchr... yes checking for strdup... yes checking for strerror... yes checking for basename... yes checking for gcc options needed to detect all undeclared functions... none needed checking whether dirname is declared... yes checking whether basename is declared... yes checking whether memrchr is declared... yes checking whether memmem is declared... yes checking whether memrmem is declared... no configure: creating ./config.status config.status: creating Makefile config.status: creating Makefile-build config.status: creating hexedit.1 config.status: creating config.h gcc -DHAVE_CONFIG_H -Os -fstack-clash-protection -Wformat -Werror=format-security -c hexedit.c gcc -DHAVE_CONFIG_H -Os -fstack-clash-protection -Wformat -Werror=format-security -c display.c gcc -DHAVE_CONFIG_H -Os -fstack-clash-protection -Wformat -Werror=format-security -c mark.c gcc -DHAVE_CONFIG_H -Os -fstack-clash-protection -Wformat -Werror=format-security -c page.c gcc -DHAVE_CONFIG_H -Os -fstack-clash-protection -Wformat -Werror=format-security -c file.c gcc -DHAVE_CONFIG_H -Os -fstack-clash-protection -Wformat -Werror=format-security -c interact.c gcc -DHAVE_CONFIG_H -Os -fstack-clash-protection -Wformat -Werror=format-security -c misc.c gcc -DHAVE_CONFIG_H -Os -fstack-clash-protection -Wformat -Werror=format-security -c search.c In file included from display.c:17: display.c: In function 'display': display.c:179:13: warning: format '%lX' expects argument of type 'long unsigned int', but argument 2 has type 'int' [-Wformat=] 179 | PRINTW(("%08lX", (int) (base + i))); | ^~~~~~~ ~~~~~~~~~~~~~~~~ | | | int hexedit.h:54:97: note: in definition of macro 'ATTRPRINTW' 54 | #define ATTRPRINTW(attr, a) do { if (oldattr != (attr)) attrset(attr), oldattr = (attr); printw a; } while (0) | ^ display.c:179:5: note: in expansion of macro 'PRINTW' 179 | PRINTW(("%08lX", (int) (base + i))); | ^~~~~~ display.c:179:18: note: format string is defined here 179 | PRINTW(("%08lX", (int) (base + i))); | ~~~~^ | | | long unsigned int | %08X display.c:192:14: warning: format '%i' expects argument of type 'int', but argument 2 has type 'long long int' [-Wformat=] 192 | printw("--%i%%", fsize == 0 ? 0 : 100 * (base + cursor + fsize/200) / fsize ); | ~^ ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ | | | | int long long int | %lli display.c: In function 'displayLine': display.c:204:11: warning: format '%lX' expects argument of type 'long unsigned int', but argument 2 has type 'int' [-Wformat=] 204 | PRINTW(("%08lX ", (int) (base + offset))); | ^~~~~~~~~~ ~~~~~~~~~~~~~~~~~~~~~ | | | int hexedit.h:54:97: note: in definition of macro 'ATTRPRINTW' 54 | #define ATTRPRINTW(attr, a) do { if (oldattr != (attr)) attrset(attr), oldattr = (attr); printw a; } while (0) | ^ display.c:204:3: note: in expansion of macro 'PRINTW' 204 | PRINTW(("%08lX ", (int) (base + offset))); | ^~~~~~ display.c:204:16: note: format string is defined here 204 | PRINTW(("%08lX ", (int) (base + offset))); | ~~~~^ | | | long unsigned int | %08X gcc -Wl,--as-needed,-O1,--sort-common -o hexedit hexedit.o display.o mark.o page.o file.o interact.o misc.o search.o -lcurses >>> hexedit: Entering fakeroot... /usr/bin/install -c -d -m 755 /home/buildozer/aports/testing/hexedit/pkg/hexedit/usr/bin /usr/bin/install -c -m 755 hexedit /home/buildozer/aports/testing/hexedit/pkg/hexedit/usr/bin /usr/bin/install -c -d -m 755 /home/buildozer/aports/testing/hexedit/pkg/hexedit/usr/share/man/man1 /usr/bin/install -c -m 644 hexedit.1 /home/buildozer/aports/testing/hexedit/pkg/hexedit/usr/share/man/man1 >>> hexedit-doc*: Running split function doc... >>> hexedit-doc*: Preparing subpackage hexedit-doc... >>> hexedit-doc*: Running postcheck for hexedit-doc >>> hexedit*: Running postcheck for hexedit >>> hexedit*: Preparing package hexedit... >>> hexedit*: Stripping binaries >>> hexedit-doc*: Scanning shared objects >>> hexedit*: Scanning shared objects >>> hexedit-doc*: Tracing dependencies... >>> hexedit-doc*: Package size: 24.0 KB >>> hexedit-doc*: Compressing data... >>> hexedit-doc*: Create checksum... >>> hexedit-doc*: Create hexedit-doc-1.6_git20230905-r0.apk >>> hexedit*: Tracing dependencies... so:libc.musl-armv7.so.1 so:libncursesw.so.6 >>> hexedit*: Package size: 44.0 KB >>> hexedit*: Compressing data... >>> hexedit*: Create checksum... >>> hexedit*: Create hexedit-1.6_git20230905-r0.apk >>> hexedit: Build complete at Thu, 04 Apr 2024 14:57:45 +0000 elapsed time 0h 0m 5s >>> hexedit: Cleaning up srcdir >>> hexedit: Cleaning up pkgdir >>> hexedit: Uninstalling dependencies... (1/13) Purging .makedepends-hexedit (20240404.145742) (2/13) Purging autoconf (2.72-r0) (3/13) Purging m4 (1.4.19-r3) (4/13) Purging ncurses-dev (6.4_p20240309-r0) (5/13) Purging libncurses++ (6.4_p20240309-r0) (6/13) Purging libpanelw (6.4_p20240309-r0) (7/13) Purging git-perl (2.44.0-r1) (8/13) Purging perl-git (2.44.0-r1) (9/13) Purging perl-error (0.17029-r2) (10/13) Purging perl (5.38.2-r0) (11/13) Purging libbz2 (1.0.8-r6) (12/13) Purging libformw (6.4_p20240309-r0) (13/13) Purging libmenuw (6.4_p20240309-r0) Executing busybox-1.36.1-r25.trigger OK: 270 MiB in 103 packages >>> hexedit: Updating the testing/armv7 repository index... >>> hexedit: Signing the index...