>>> light: Building community/light 1.2.2-r0 (using abuild 3.9.0-r0) started Thu, 14 Apr 2022 10:05:00 +0000 >>> light: Checking sanity of /home/buildozer/aports/community/light/APKBUILD... >>> light: Analyzing dependencies... >>> light: Installing for build: build-base autoconf automake (1/9) Installing m4 (1.4.19-r1) (2/9) Installing libbz2 (1.0.8-r1) (3/9) Installing perl (5.34.1-r0) (4/9) Installing autoconf (2.71-r0) (5/9) Installing automake (1.16.5-r0) (6/9) Installing .makedepends-light (20220414.100509) (7/9) Installing perl-error (0.17029-r1) (8/9) Installing perl-git (2.35.2-r0) (9/9) Installing git-perl (2.35.2-r0) Executing busybox-1.35.0-r8.trigger OK: 289 MiB in 97 packages >>> light: Cleaning up srcdir >>> light: Cleaning up pkgdir >>> light: Fetching https://distfiles.alpinelinux.org/distfiles/v3.16/light-1.2.2.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 >>> light: Fetching light-1.2.2.tar.gz::https://github.com/haikarainen/light/archive/v1.2.2.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 135 100 135 0 0 647 0 --:--:-- --:--:-- --:--:-- 645 100 33009 0 33009 0 0 72327 0 --:--:-- --:--:-- --:--:-- 72327 >>> light: Fetching https://distfiles.alpinelinux.org/distfiles/v3.16/light-1.2.2.tar.gz >>> light: Checking sha512sums... light-1.2.2.tar.gz: OK >>> light: Unpacking /var/cache/distfiles/v3.16/light-1.2.2.tar.gz... configure.ac:6: warning: The macro `AC_CONFIG_HEADER' is obsolete. configure.ac:6: You should run autoupdate. ./lib/autoconf/status.m4:719: AC_CONFIG_HEADER is expanded from... configure.ac:6: the top level configure.ac:11: warning: The macro `AC_HEADER_STDC' is obsolete. configure.ac:11: You should run autoupdate. ./lib/autoconf/headers.m4:704: AC_HEADER_STDC is expanded from... configure.ac:11: the top level configure.ac:9: installing './compile' configure.ac:2: installing './install-sh' configure.ac:2: installing './missing' src/Makefile.am: installing './depcomp' checking for a BSD-compatible install... /usr/bin/install -c checking whether build environment is sane... yes checking for a race-free mkdir -p... ./install-sh -c -d checking for gawk... no checking for mawk... no checking for nawk... no checking for awk... awk checking whether make sets $(MAKE)... yes checking whether make supports nested variables... yes checking whether make supports nested variables... (cached) yes 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 whether gcc understands -c and -o together... yes checking whether make supports the include directive... yes (GNU style) checking dependency style of gcc... gcc3 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 grep that handles long lines and -e... /bin/grep checking for egrep... /bin/grep -E checking for udev rules.d... /lib/udev/rules.d checking that generated files are newer than configure... done configure: creating ./config.status config.status: creating Makefile config.status: creating src/Makefile config.status: creating config.h config.status: executing depfiles commands make all-recursive make[1]: Entering directory '/home/buildozer/aports/community/light/src/light-1.2.2' Making all in src make[2]: Entering directory '/home/buildozer/aports/community/light/src/light-1.2.2/src' CC light-main.o CC light-light.o CC light-helpers.o CC impl/light-sysfs.o CC impl/light-util.o CC impl/light-razer.o light.c: In function '_light_parse_arguments': light.c:373:40: warning: format '%lu' expects argument of type 'long unsigned int *', but argument 3 has type 'uint64_t *' {aka 'long long unsigned int *'} [-Wformat=] 373 | if(sscanf(argv[optind], "%lu", &ctx->run_params.value) != 1) | ~~^ ~~~~~~~~~~~~~~~~~~~~~~ | | | | | uint64_t * {aka long long unsigned int *} | long unsigned int * | %llu helpers.c: In function 'light_file_read_uint64': helpers.c:25:22: warning: format '%lu' expects argument of type 'long unsigned int *', but argument 3 has type 'uint64_t *' {aka 'long long unsigned int *'} [-Wformat=] 25 | if(fscanf(fp, "%lu", &data) != 1) | ~~^ ~~~~~ | | | | | uint64_t * {aka long long unsigned int *} | long unsigned int * | %llu helpers.c: In function 'light_file_write_uint64': helpers.c:49:23: warning: format '%lu' expects argument of type 'long unsigned int', but argument 3 has type 'uint64_t' {aka 'long long unsigned int'} [-Wformat=] 49 | if(fprintf(fp, "%lu", val) < 0) | ~~^ ~~~ | | | | | uint64_t {aka long long unsigned int} | long unsigned int | %llu In file included from helpers.c:1: helpers.c: In function 'light_log_clamp_min': helpers.h:28:21: warning: format '%lu' expects argument of type 'long unsigned int', but argument 5 has type 'uint64_t' {aka 'long long unsigned int'} [-Wformat=] 28 | fprintf(fp, "%s:%d:" fmt "\n", __FILE__, __LINE__, ##args) | ^~~~~~~~ helpers.h:30:34: note: in expansion of macro 'LIGHT_LOG' 30 | #define LIGHT_NOTE(fmt, args...) LIGHT_LOG(LIGHT_NOTE_LEVEL, stdout, " Notice: " fmt, ##args) | ^~~~~~~~~ helpers.c:100:5: note: in expansion of macro 'LIGHT_NOTE' 100 | LIGHT_NOTE("too small value, adjusting to minimum %lu (raw)", min); | ^~~~~~~~~~ helpers.c: In function 'light_log_clamp_max': helpers.h:28:21: warning: format '%lu' expects argument of type 'long unsigned int', but argument 5 has type 'uint64_t' {aka 'long long unsigned int'} [-Wformat=] 28 | fprintf(fp, "%s:%d:" fmt "\n", __FILE__, __LINE__, ##args) | ^~~~~~~~ helpers.h:30:34: note: in expansion of macro 'LIGHT_LOG' 30 | #define LIGHT_NOTE(fmt, args...) LIGHT_LOG(LIGHT_NOTE_LEVEL, stdout, " Notice: " fmt, ##args) | ^~~~~~~~~ helpers.c:107:5: note: in expansion of macro 'LIGHT_NOTE' 107 | LIGHT_NOTE("too large value, adjusting to maximum %lu (raw)", max); | ^~~~~~~~~~ CCLD light make[2]: Leaving directory '/home/buildozer/aports/community/light/src/light-1.2.2/src' make[2]: Entering directory '/home/buildozer/aports/community/light/src/light-1.2.2' make[2]: Leaving directory '/home/buildozer/aports/community/light/src/light-1.2.2' make[1]: Leaving directory '/home/buildozer/aports/community/light/src/light-1.2.2' >>> light: Entering fakeroot... Making install in src make[1]: Entering directory '/home/buildozer/aports/community/light/src/light-1.2.2/src' make[2]: Entering directory '/home/buildozer/aports/community/light/src/light-1.2.2/src' make[2]: Nothing to be done for 'install-data-am'. .././install-sh -c -d '/home/buildozer/aports/community/light/pkg/light/usr/bin' /usr/bin/install -c light '/home/buildozer/aports/community/light/pkg/light/usr/bin' make install-exec-hook make[3]: Entering directory '/home/buildozer/aports/community/light/src/light-1.2.2/src' make[3]: Nothing to be done for 'install-exec-hook'. make[3]: Leaving directory '/home/buildozer/aports/community/light/src/light-1.2.2/src' make[2]: Leaving directory '/home/buildozer/aports/community/light/src/light-1.2.2/src' make[1]: Leaving directory '/home/buildozer/aports/community/light/src/light-1.2.2/src' make[1]: Entering directory '/home/buildozer/aports/community/light/src/light-1.2.2' make[2]: Entering directory '/home/buildozer/aports/community/light/src/light-1.2.2' make[2]: Nothing to be done for 'install-exec-am'. ./install-sh -c -d '/home/buildozer/aports/community/light/pkg/light/usr/share/doc/light' ./install-sh -c -d '/home/buildozer/aports/community/light/pkg/light/lib/udev/rules.d' ./install-sh -c -d '/home/buildozer/aports/community/light/pkg/light/usr/share/man/man1' /usr/bin/install -c -m 644 README.md COPYING ChangeLog.md '/home/buildozer/aports/community/light/pkg/light/usr/share/doc/light' /usr/bin/install -c -m 644 90-backlight.rules '/home/buildozer/aports/community/light/pkg/light/lib/udev/rules.d' /usr/bin/install -c -m 644 light.1 '/home/buildozer/aports/community/light/pkg/light/usr/share/man/man1' make[2]: Leaving directory '/home/buildozer/aports/community/light/src/light-1.2.2' make[1]: Leaving directory '/home/buildozer/aports/community/light/src/light-1.2.2' >>> light-doc*: Running split function doc... >>> light-doc*: Preparing subpackage light-doc... >>> light-doc*: Running postcheck for light-doc >>> light*: Running postcheck for light >>> light*: Preparing package light... >>> light*: Stripping binaries >>> light-doc*: Scanning shared objects >>> light*: Scanning shared objects >>> light-doc*: Tracing dependencies... >>> light-doc*: Package size: 80.0 KB >>> light-doc*: Compressing data... >>> light-doc*: Create checksum... >>> light-doc*: Create light-doc-1.2.2-r0.apk >>> light*: Tracing dependencies... so:libc.musl-armv7.so.1 >>> light*: Package size: 52.0 KB >>> light*: Compressing data... >>> light*: Create checksum... >>> light*: Create light-1.2.2-r0.apk >>> light: Build complete at Thu, 14 Apr 2022 10:05:18 +0000 elapsed time 0h 0m 18s >>> light: Cleaning up srcdir >>> light: Cleaning up pkgdir >>> light: Uninstalling dependencies... (1/9) Purging .makedepends-light (20220414.100509) (2/9) Purging autoconf (2.71-r0) (3/9) Purging m4 (1.4.19-r1) (4/9) Purging automake (1.16.5-r0) (5/9) Purging git-perl (2.35.2-r0) (6/9) Purging perl-git (2.35.2-r0) (7/9) Purging perl-error (0.17029-r1) (8/9) Purging perl (5.34.1-r0) (9/9) Purging libbz2 (1.0.8-r1) Executing busybox-1.35.0-r8.trigger OK: 255 MiB in 88 packages >>> light: Updating the community/armv7 repository index... >>> light: Signing the index...