+ exec + rm -rf /rpmbuild + mkdir -p /rpmbuild + su -c 'rpmbuild -ba /builddir/build/SPECS/node.spec --define "debug_package %{nil}" --undefine _annotated_build --define "_missing_doc_files_terminate_build %{nil}" --define "_emacs_sitestartdir /usr/share/emacs/site-lisp/site-start.d" --define "_emacs_sitelispdir /usr/share/emacs/site-lisp" --nocheck ' mockbuild Executing(%prep): /bin/sh -e /var/tmp/rpm-tmp.ohzF4j + umask 022 + cd /builddir/build/BUILD + cd /builddir/build/BUILD + rm -rf node-0.3.2 + /usr/bin/gzip -dc /builddir/build/SOURCES/node-0.3.2.tar.gz + /usr/bin/tar -xof - + STATUS=0 + '[' 0 -ne 0 ']' + cd node-0.3.2 + /usr/bin/chmod -Rf a+rX,u+w,g-w,o-w . + echo 'Patch #0 (node-0.3.2-conf.patch):' Patch #0 (node-0.3.2-conf.patch): + /usr/bin/patch --no-backup-if-mismatch -p1 -b --suffix .conf --fuzz=0 patching file configure + echo 'Patch #1 (node-0.3.2-rose.patch):' Patch #1 (node-0.3.2-rose.patch): + /usr/bin/patch --no-backup-if-mismatch -p1 -b --suffix .rose --fuzz=0 patching file node.c + echo 'Patch #2 (node-0.3.2-install.patch):' Patch #2 (node-0.3.2-install.patch): + /usr/bin/patch --no-backup-if-mismatch -p1 -b --suffix .install --fuzz=0 patching file Makefile + exit 0 Executing(%build): /bin/sh -e /var/tmp/rpm-tmp.jlNx8Q + umask 022 + cd /builddir/build/BUILD + cd node-0.3.2 + sh configure Your machine architecture is ... riscv64 Checking man directory... /usr/share/man Checking for the existence of the Zlib headers... /usr/include/zlib.h Creating Makefile.include Creating config.h Configuration successful + make -j4 -e 'CFLAGS=-O2 -g -pipe -Wall -Werror=format-security -Wp,-D_FORTIFY_SOURCE=2 -Wp,-D_GLIBCXX_ASSERTIONS -fexceptions -fstack-protector-strong -grecord-gcc-switches -specs=/usr/lib/rpm/redhat/redhat-hardened-cc1 ' gcc -O2 -g -pipe -Wall -Werror=format-security -Wp,-D_FORTIFY_SOURCE=2 -Wp,-D_GLIBCXX_ASSERTIONS -fexceptions -fstack-protector-strong -grecord-gcc-switches -specs=/usr/lib/rpm/redhat/redhat-hardened-cc1 -c user.c gcc -O2 -g -pipe -Wall -Werror=format-security -Wp,-D_FORTIFY_SOURCE=2 -Wp,-D_GLIBCXX_ASSERTIONS -fexceptions -fstack-protector-strong -grecord-gcc-switches -specs=/usr/lib/rpm/redhat/redhat-hardened-cc1 -c util.c gcc -O2 -g -pipe -Wall -Werror=format-security -Wp,-D_FORTIFY_SOURCE=2 -Wp,-D_GLIBCXX_ASSERTIONS -fexceptions -fstack-protector-strong -grecord-gcc-switches -specs=/usr/lib/rpm/redhat/redhat-hardened-cc1 -c nodeusers.c gcc -O2 -g -pipe -Wall -Werror=format-security -Wp,-D_FORTIFY_SOURCE=2 -Wp,-D_GLIBCXX_ASSERTIONS -fexceptions -fstack-protector-strong -grecord-gcc-switches -specs=/usr/lib/rpm/redhat/redhat-hardened-cc1 -c node.c In file included from util.c:12:0: node.h:119:13: warning: conflicting types for built-in function 'log' [-Wbuiltin-declaration-mismatch] extern void log(int, const char *, ...); ^~~ In file included from node.c:19:0: node.h:119:13: warning: conflicting types for built-in function 'log' [-Wbuiltin-declaration-mismatch] extern void log(int, const char *, ...); ^~~ In file included from user.c:13:0: node.h:119:13: warning: conflicting types for built-in function 'log' [-Wbuiltin-declaration-mismatch] extern void log(int, const char *, ...); ^~~ node.c: In function 'main': node.c:114:60: warning: pointer targets in passing argument 3 of 'getpeername' differ in signedness [-Wpointer-sign] if (getpeername(STDOUT_FILENO, (struct sockaddr *)&saddr, &slen) == -1) { ^ In file included from node.c:8:0: /usr/include/sys/socket.h:130:12: note: expected 'socklen_t * restrict {aka unsigned int * restrict}' but argument is of type 'int *' extern int getpeername (int __fd, __SOCKADDR_ARG __addr, ^~~~~~~~~~~ node.c:126:65: warning: pointer targets in passing argument 3 of 'getsockname' differ in signedness [-Wpointer-sign] if (getsockname(STDOUT_FILENO, (struct sockaddr *)&saddr.sax, &slen) == -1) { ^ In file included from node.c:8:0: /usr/include/sys/socket.h:116:12: note: expected 'socklen_t * restrict {aka unsigned int * restrict}' but argument is of type 'int *' extern int getsockname (int __fd, __SOCKADDR_ARG __addr, ^~~~~~~~~~~ node.c:137:65: warning: pointer targets in passing argument 3 of 'getsockname' differ in signedness [-Wpointer-sign] if (getsockname(STDOUT_FILENO, (struct sockaddr *)&saddr.sax, &slen) == -1) { ^ In file included from node.c:8:0: /usr/include/sys/socket.h:116:12: note: expected 'socklen_t * restrict {aka unsigned int * restrict}' but argument is of type 'int *' extern int getsockname (int __fd, __SOCKADDR_ARG __addr, ^~~~~~~~~~~ In file included from nodeusers.c:14:0: node.h:119:13: warning: conflicting types for built-in function 'log' [-Wbuiltin-declaration-mismatch] extern void log(int, const char *, ...); ^~~ util.c: In function 'print_dl': util.c:181:28: warning: '%s' directive writing up to 31 bytes into a region of size between 24 and 55 [-Wformat-overflow=] sprintf(buf, "%s on port %s", u->dl_name, u->dl_port); ^~ In file included from /usr/include/stdio.h:861:0, from util.c:2: /usr/include/bits/stdio2.h:36:10: note: '__builtin___sprintf_chk' output between 10 and 72 bytes into a destination of size 64 return __builtin___sprintf_chk (__s, __USE_FORTIFY_LEVEL - 1, ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ __bos (__s), __fmt, __va_arg_pack ()); ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ gcc -O2 -g -pipe -Wall -Werror=format-security -Wp,-D_FORTIFY_SOURCE=2 -Wp,-D_GLIBCXX_ASSERTIONS -fexceptions -fstack-protector-strong -grecord-gcc-switches -specs=/usr/lib/rpm/redhat/redhat-hardened-cc1 -c cmdparse.c gcc -O2 -g -pipe -Wall -Werror=format-security -Wp,-D_FORTIFY_SOURCE=2 -Wp,-D_GLIBCXX_ASSERTIONS -fexceptions -fstack-protector-strong -grecord-gcc-switches -specs=/usr/lib/rpm/redhat/redhat-hardened-cc1 -c config.c gcc -O2 -g -pipe -Wall -Werror=format-security -Wp,-D_FORTIFY_SOURCE=2 -Wp,-D_GLIBCXX_ASSERTIONS -fexceptions -fstack-protector-strong -grecord-gcc-switches -specs=/usr/lib/rpm/redhat/redhat-hardened-cc1 -c command.c gcc -O2 -g -pipe -Wall -Werror=format-security -Wp,-D_FORTIFY_SOURCE=2 -Wp,-D_GLIBCXX_ASSERTIONS -fexceptions -fstack-protector-strong -grecord-gcc-switches -specs=/usr/lib/rpm/redhat/redhat-hardened-cc1 -c gateway.c In file included from cmdparse.c:9:0: node.h:119:13: warning: conflicting types for built-in function 'log' [-Wbuiltin-declaration-mismatch] extern void log(int, const char *, ...); ^~~ In file included from config.c:12:0: node.h:119:13: warning: conflicting types for built-in function 'log' [-Wbuiltin-declaration-mismatch] extern void log(int, const char *, ...); ^~~ In file included from command.c:21:0: node.h:119:13: warning: conflicting types for built-in function 'log' [-Wbuiltin-declaration-mismatch] extern void log(int, const char *, ...); ^~~ In file included from gateway.c:25:0: node.h:119:13: warning: conflicting types for built-in function 'log' [-Wbuiltin-declaration-mismatch] extern void log(int, const char *, ...); ^~~ gateway.c: In function 'connect_to': gateway.c:295:47: warning: pointer targets in passing argument 5 of 'getsockopt' differ in signedness [-Wpointer-sign] getsockopt(fd, SOL_SOCKET, SO_ERROR, &ret, &retlen); ^ In file included from gateway.c:9:0: /usr/include/sys/socket.h:208:12: note: expected 'socklen_t * restrict {aka unsigned int * restrict}' but argument is of type 'int *' extern int getsockopt (int __fd, int __level, int __optname, ^~~~~~~~~~ gateway.c: In function 'do_ping': gateway.c:775:68: warning: pointer targets in passing argument 6 of 'recvfrom' differ in signedness [-Wpointer-sign] if ((len = recvfrom(fd, buf, 256, 0, (struct sockaddr *)&from, &salen)) == -1) { ^ In file included from /usr/include/sys/socket.h:269:0, from gateway.c:9: /usr/include/bits/socket2.h:64:1: note: expected 'socklen_t * restrict {aka unsigned int * restrict}' but argument is of type 'int *' recvfrom (int __fd, void *__restrict __buf, size_t __n, int __flags, ^~~~~~~~ gateway.c:782:19: warning: pointer targets in passing argument 1 of 'check_icmp' differ in signedness [-Wpointer-sign] if (check_icmp(buf, len, &from, calc_rtt(tv2, tv1))) ^~~ gateway.c:643:12: note: expected 'char *' but argument is of type 'unsigned char *' static int check_icmp(char *buf, int len, struct sockaddr_in *from, long rtt) ^~~~~~~~~~ gcc -O2 -g -pipe -Wall -Werror=format-security -Wp,-D_FORTIFY_SOURCE=2 -Wp,-D_GLIBCXX_ASSERTIONS -fexceptions -fstack-protector-strong -grecord-gcc-switches -specs=/usr/lib/rpm/redhat/redhat-hardened-cc1 -c extcmd.c gateway.c: In function 'connect_to': gateway.c:33:20: warning: '%d' directive writing between 1 and 11 bytes into a region of size between 0 and 9 [-Wformat-overflow=] sprintf(out, "%s-%d", in, 15 - atoi(cp + 1)); ^~ In file included from /usr/include/stdio.h:861:0, from gateway.c:1: /usr/include/bits/stdio2.h:36:10: note: '__builtin___sprintf_chk' output between 3 and 22 bytes into a destination of size 10 return __builtin___sprintf_chk (__s, __USE_FORTIFY_LEVEL - 1, ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ __bos (__s), __fmt, __va_arg_pack ()); ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ gateway.c:36:19: warning: '-15' directive writing 3 bytes into a region of size between 1 and 10 [-Wformat-overflow=] sprintf(out, "%s-15", in); ^~~ In file included from /usr/include/stdio.h:861:0, from gateway.c:1: /usr/include/bits/stdio2.h:36:10: note: '__builtin___sprintf_chk' output between 4 and 13 bytes into a destination of size 10 return __builtin___sprintf_chk (__s, __USE_FORTIFY_LEVEL - 1, ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ __bos (__s), __fmt, __va_arg_pack ()); ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ gcc -O2 -g -pipe -Wall -Werror=format-security -Wp,-D_FORTIFY_SOURCE=2 -Wp,-D_GLIBCXX_ASSERTIONS -fexceptions -fstack-protector-strong -grecord-gcc-switches -specs=/usr/lib/rpm/redhat/redhat-hardened-cc1 -c sysinfo.c In file included from extcmd.c:16:0: node.h:119:13: warning: conflicting types for built-in function 'log' [-Wbuiltin-declaration-mismatch] extern void log(int, const char *, ...); ^~~ extcmd.c: In function 'pipe_extcmd': extcmd.c:86:3: warning: ignoring return value of 'setgid', declared with attribute warn_unused_result [-Wunused-result] setgid(cmdp->gid); ^~~~~~~~~~~~~~~~~ extcmd.c:87:3: warning: ignoring return value of 'setuid', declared with attribute warn_unused_result [-Wunused-result] setuid(cmdp->uid); ^~~~~~~~~~~~~~~~~ extcmd.c: In function 'norm_extcmd': extcmd.c:35:3: warning: ignoring return value of 'setgid', declared with attribute warn_unused_result [-Wunused-result] setgid(cmdp->gid); ^~~~~~~~~~~~~~~~~ extcmd.c:36:3: warning: ignoring return value of 'setuid', declared with attribute warn_unused_result [-Wunused-result] setuid(cmdp->uid); ^~~~~~~~~~~~~~~~~ In file included from sysinfo.c:8:0: node.h:119:13: warning: conflicting types for built-in function 'log' [-Wbuiltin-declaration-mismatch] extern void log(int, const char *, ...); ^~~ gcc -O2 -g -pipe -Wall -Werror=format-security -Wp,-D_FORTIFY_SOURCE=2 -Wp,-D_GLIBCXX_ASSERTIONS -fexceptions -fstack-protector-strong -grecord-gcc-switches -specs=/usr/lib/rpm/redhat/redhat-hardened-cc1 -c ipc.c gcc -o nodeusers user.o util.o nodeusers.o -lax25 -lax25io -lz In file included from ipc.c:10:0: node.h:119:13: warning: conflicting types for built-in function 'log' [-Wbuiltin-declaration-mismatch] extern void log(int, const char *, ...); ^~~ gcc -o node user.o util.o node.o cmdparse.o config.o command.o gateway.o extcmd.o sysinfo.o ipc.o -lax25 -lax25io -lz + exit 0 Executing(%install): /bin/sh -e /var/tmp/rpm-tmp.QuhMjl + umask 022 + cd /builddir/build/BUILD + '[' /builddir/build/BUILDROOT/node-0.3.2-22.fc28.riscv64 '!=' / ']' + rm -rf /builddir/build/BUILDROOT/node-0.3.2-22.fc28.riscv64 ++ dirname /builddir/build/BUILDROOT/node-0.3.2-22.fc28.riscv64 + mkdir -p /builddir/build/BUILDROOT + mkdir /builddir/build/BUILDROOT/node-0.3.2-22.fc28.riscv64 + cd node-0.3.2 + rm -rf /builddir/build/BUILDROOT/node-0.3.2-22.fc28.riscv64 + mkdir -p /builddir/build/BUILDROOT/node-0.3.2-22.fc28.riscv64/usr/sbin + mkdir -p /builddir/build/BUILDROOT/node-0.3.2-22.fc28.riscv64/var/lib/ax25 + mkdir -p /builddir/build/BUILDROOT/node-0.3.2-22.fc28.riscv64/usr/share/man/man1 /builddir/build/BUILDROOT/node-0.3.2-22.fc28.riscv64/usr/share/man/man5 /builddir/build/BUILDROOT/node-0.3.2-22.fc28.riscv64/usr/share/man/man8 + make ETC_DIR=/builddir/build/BUILDROOT/node-0.3.2-22.fc28.riscv64/etc/ax25 SBIN_DIR=/builddir/build/BUILDROOT/node-0.3.2-22.fc28.riscv64/usr/sbin LIB_DIR=/builddir/build/BUILDROOT/node-0.3.2-22.fc28.riscv64/usr/share MAN_DIR=/builddir/build/BUILDROOT/node-0.3.2-22.fc28.riscv64/usr/share/man VAR_DIR=/builddir/build/BUILDROOT/node-0.3.2-22.fc28.riscv64/var/lib/ax25 install installconf install -m 755 node /builddir/build/BUILDROOT/node-0.3.2-22.fc28.riscv64/usr/sbin install -m 755 nodeusers /builddir/build/BUILDROOT/node-0.3.2-22.fc28.riscv64/usr/sbin install -m 644 man/nodeusers.1 /builddir/build/BUILDROOT/node-0.3.2-22.fc28.riscv64/usr/share/man/man1 install -m 644 man/node.conf.5 /builddir/build/BUILDROOT/node-0.3.2-22.fc28.riscv64/usr/share/man/man5 install -m 644 man/node.perms.5 /builddir/build/BUILDROOT/node-0.3.2-22.fc28.riscv64/usr/share/man/man5 install -m 644 man/node.8 /builddir/build/BUILDROOT/node-0.3.2-22.fc28.riscv64/usr/share/man/man8 install -m 755 -d /builddir/build/BUILDROOT/node-0.3.2-22.fc28.riscv64/usr/share/ax25/node/help install -m 644 etc/help/*.hlp /builddir/build/BUILDROOT/node-0.3.2-22.fc28.riscv64/usr/share/ax25/node/help install -m 755 -d /builddir/build/BUILDROOT/node-0.3.2-22.fc28.riscv64/var/lib/ax25/node install -m 644 etc/loggedin /builddir/build/BUILDROOT/node-0.3.2-22.fc28.riscv64/var/lib/ax25/node install -m 755 -d /builddir/build/BUILDROOT/node-0.3.2-22.fc28.riscv64/etc/ax25 install -m 600 etc/node.conf /builddir/build/BUILDROOT/node-0.3.2-22.fc28.riscv64/etc/ax25 install -m 600 etc/node.perms /builddir/build/BUILDROOT/node-0.3.2-22.fc28.riscv64/etc/ax25 install -m 600 etc/node.motd /builddir/build/BUILDROOT/node-0.3.2-22.fc28.riscv64/etc/ax25 + mkdir -p /builddir/build/BUILDROOT/node-0.3.2-22.fc28.riscv64/etc/xinetd.d + install -m 644 /builddir/build/SOURCES/node.xinetd /builddir/build/BUILDROOT/node-0.3.2-22.fc28.riscv64/etc/xinetd.d/node + mv /builddir/build/BUILDROOT/node-0.3.2-22.fc28.riscv64/usr/sbin/node /builddir/build/BUILDROOT/node-0.3.2-22.fc28.riscv64/usr/sbin/ax25-node + mv /builddir/build/BUILDROOT/node-0.3.2-22.fc28.riscv64/usr/share/man/man8/node.8 /builddir/build/BUILDROOT/node-0.3.2-22.fc28.riscv64/usr/share/man/man8/ax25-node.8 + /usr/lib/rpm/check-buildroot + /usr/lib/rpm/redhat/brp-ldconfig /sbin/ldconfig: Warning: ignoring configuration file that cannot be opened: /builddir/build/BUILDROOT/node-0.3.2-22.fc28.riscv64/etc/ld.so.conf: No such file or directory + /usr/lib/rpm/brp-compress + /usr/lib/rpm/brp-strip /usr/bin/strip + /usr/lib/rpm/brp-strip-comment-note /usr/bin/strip /usr/bin/objdump + /usr/lib/rpm/brp-strip-static-archive /usr/bin/strip + /usr/lib/rpm/brp-python-bytecompile /usr/bin/python 1 + /usr/lib/rpm/brp-python-hardlink + /usr/lib/rpm/redhat/brp-mangle-shebangs Processing files: node-0.3.2-22.fc28.riscv64 Executing(%doc): /bin/sh -e /var/tmp/rpm-tmp.ZGbStl + umask 022 + cd /builddir/build/BUILD + cd node-0.3.2 + DOCDIR=/builddir/build/BUILDROOT/node-0.3.2-22.fc28.riscv64/usr/share/doc/node + export LC_ALL=C + LC_ALL=C + export DOCDIR + /usr/bin/mkdir -p /builddir/build/BUILDROOT/node-0.3.2-22.fc28.riscv64/usr/share/doc/node + cp -pr AUTHORS /builddir/build/BUILDROOT/node-0.3.2-22.fc28.riscv64/usr/share/doc/node + cp -pr COPYING /builddir/build/BUILDROOT/node-0.3.2-22.fc28.riscv64/usr/share/doc/node + cp -pr HISTORY /builddir/build/BUILDROOT/node-0.3.2-22.fc28.riscv64/usr/share/doc/node + cp -pr README /builddir/build/BUILDROOT/node-0.3.2-22.fc28.riscv64/usr/share/doc/node + exit 0 Provides: config(node) = 0.3.2-22.fc28 node = 0.3.2-22.fc28 node(riscv-64) = 0.3.2-22.fc28 Requires(interp): /bin/sh /bin/sh Requires(rpmlib): rpmlib(CompressedFileNames) <= 3.0.4-1 rpmlib(FileDigests) <= 4.6.0-1 rpmlib(PayloadFilesHavePrefix) <= 4.0-1 Requires(post): /bin/sh Requires(postun): /bin/sh Requires: ld-linux-riscv64-lp64d.so.1()(64bit) ld-linux-riscv64-lp64d.so.1(GLIBC_2.27)(64bit) libax25.so.1()(64bit) libax25io.so.1()(64bit) libc.so.6()(64bit) libc.so.6(GLIBC_2.27)(64bit) libz.so.1()(64bit) rtld(GNU_HASH) Checking for unpackaged file(s): /usr/lib/rpm/check-files /builddir/build/BUILDROOT/node-0.3.2-22.fc28.riscv64 Wrote: /builddir/build/SRPMS/node-0.3.2-22.fc28.src.rpm Wrote: /builddir/build/RPMS/riscv64/node-0.3.2-22.fc28.riscv64.rpm Executing(%clean): /bin/sh -e /var/tmp/rpm-tmp.ZfamBW + umask 022 + cd /builddir/build/BUILD + cd node-0.3.2 + rm -rf /builddir/build/BUILDROOT/node-0.3.2-22.fc28.riscv64 + exit 0 + touch /buildok + cleanup + set +e + sync + sleep 5 + sync + poweroff Terminated ++ cleanup ++ set +e ++ sync ++ sleep 5 Terminated +++ cleanup +++ set +e +++ sync +++ sleep 5 +++ sync +++ poweroff