<86>Dec 4 14:34:02 userdel[2323223]: delete user 'rooter' <86>Dec 4 14:34:02 userdel[2323223]: removed group 'rooter' owned by 'rooter' <86>Dec 4 14:34:02 userdel[2323223]: removed shadow group 'rooter' owned by 'rooter' <86>Dec 4 14:34:02 groupadd[2323235]: group added to /etc/group: name=rooter, GID=645 <86>Dec 4 14:34:02 groupadd[2323235]: group added to /etc/gshadow: name=rooter <86>Dec 4 14:34:02 groupadd[2323235]: new group: name=rooter, GID=645 <86>Dec 4 14:34:02 useradd[2323239]: new user: name=rooter, UID=645, GID=645, home=/root, shell=/bin/bash <86>Dec 4 14:34:02 userdel[2323247]: delete user 'builder' <86>Dec 4 14:34:02 userdel[2323247]: removed group 'builder' owned by 'builder' <86>Dec 4 14:34:02 userdel[2323247]: removed shadow group 'builder' owned by 'builder' <86>Dec 4 14:34:02 groupadd[2323255]: group added to /etc/group: name=builder, GID=646 <86>Dec 4 14:34:02 groupadd[2323255]: group added to /etc/gshadow: name=builder <86>Dec 4 14:34:02 groupadd[2323255]: new group: name=builder, GID=646 <86>Dec 4 14:34:02 useradd[2323261]: new user: name=builder, UID=646, GID=646, home=/usr/src, shell=/bin/bash /usr/src/in/srpm/hnb-1.9.18-alt1.qa1.src.rpm: The use of such a license name is ambiguous: GPL <13>Dec 4 14:34:04 rpmi: libtinfo-devel-6.2.20201107-alt1 sisyphus+261749.100.1.1 1605292929 installed <13>Dec 4 14:34:04 rpmi: libncurses-devel-6.2.20201107-alt1 sisyphus+261749.100.1.1 1605292929 installed Building target platforms: i586 Building for target i586 Wrote: /usr/src/in/nosrpm/hnb-1.9.18-alt1.qa1.nosrc.rpm Installing hnb-1.9.18-alt1.qa1.src.rpm Building target platforms: i586 Building for target i586 Executing(%prep): /bin/sh -e /usr/src/tmp/rpm-tmp.30606 + umask 022 + /bin/mkdir -p /usr/src/RPM/BUILD + cd /usr/src/RPM/BUILD + cd /usr/src/RPM/BUILD + rm -rf hnb-1.9.18 + echo 'Source #0 (hnb-1.9.18.tar.gz):' Source #0 (hnb-1.9.18.tar.gz): + /bin/gzip -dc /usr/src/RPM/SOURCES/hnb-1.9.18.tar.gz + /bin/tar -xf - + cd hnb-1.9.18 + /bin/chmod -c -Rf u+rwX,go-w . + exit 0 Executing(%build): /bin/sh -e /usr/src/tmp/rpm-tmp.30606 + umask 022 + /bin/mkdir -p /usr/src/RPM/BUILD + cd /usr/src/RPM/BUILD + cd hnb-1.9.18 + make make: Entering directory '/usr/src/RPM/BUILD/hnb-1.9.18' (cd src;make) make[1]: Entering directory '/usr/src/RPM/BUILD/hnb-1.9.18/src' (cd libcli;make libcli.a) make[2]: Entering directory '/usr/src/RPM/BUILD/hnb-1.9.18/src/libcli' cc -Wall -c -o cli.o cli.c cc -Wall -c -o cli_history.o cli_history.c cc -Wall -c -o cli_tokenize.o cli_tokenize.c cli_tokenize.c: In function 'argv_tokenize': cli_tokenize.c:222:40: warning: pointer targets in passing argument 1 of 'cli_getstring' differ in signedness [-Wpointer-sign] 222 | total_length+=strlen(cli_getstring(varname)); | ^~~~~~~ | | | unsigned char * cli_tokenize.c:83:27: note: expected 'char *' but argument is of type 'unsigned char *' 83 | char *cli_getstring(char *variable); | ~~~~~~^~~~~~~~ cli_tokenize.c:272:33: warning: pointer targets in passing argument 1 of 'cli_getstring' differ in signedness [-Wpointer-sign] 272 | strcpy(output,cli_getstring(varname)); | ^~~~~~~ | | | unsigned char * cli_tokenize.c:83:27: note: expected 'char *' but argument is of type 'unsigned char *' 83 | char *cli_getstring(char *variable); | ~~~~~~^~~~~~~~ cli_tokenize.c:273:34: warning: pointer targets in passing argument 1 of 'cli_getstring' differ in signedness [-Wpointer-sign] 273 | output+=strlen(cli_getstring(varname)); | ^~~~~~~ | | | unsigned char * cli_tokenize.c:83:27: note: expected 'char *' but argument is of type 'unsigned char *' 83 | char *cli_getstring(char *variable); | ~~~~~~^~~~~~~~ ar rc libcli.a cli*.o make[2]: Leaving directory '/usr/src/RPM/BUILD/hnb-1.9.18/src/libcli' cc -c -I.. -Ilibcli -DHAVE_CONFIG_H -Wall -pedantic -g -o actions.o actions.c cc -c -I.. -Ilibcli -DHAVE_CONFIG_H -Wall -pedantic -g -o autosave.o autosave.c cc -c -I.. -Ilibcli -DHAVE_CONFIG_H -Wall -pedantic -g -o cal.o cal.c cc -c -I.. -Ilibcli -DHAVE_CONFIG_H -Wall -pedantic -g -o cli_macro.o cli_macro.c cc -c -I.. -Ilibcli -DHAVE_CONFIG_H -Wall -pedantic -g -o clipboard.o clipboard.c cc -c -I.. -Ilibcli -DHAVE_CONFIG_H -Wall -pedantic -g -o evilloop.o evilloop.c cc -c -I.. -Ilibcli -DHAVE_CONFIG_H -Wall -pedantic -g -o expanded.o expanded.c expanded.c: In function 'cmd_expand': expanded.c:36:14: warning: implicit declaration of function 'strlen' [-Wimplicit-function-declaration] 36 | inputbuf[strlen (inputbuf) + 1] = 0; | ^~~~~~ expanded.c:36:14: warning: incompatible implicit declaration of built-in function 'strlen' expanded.c:28:1: note: include '' or provide a declaration of 'strlen' 27 | #include "ui_binding.h" +++ |+#include 28 | expanded.c:42:14: warning: implicit declaration of function 'strcmp' [-Wimplicit-function-declaration] 42 | } else if((!strcmp(argv[1],"-a"))||(!strcmp(argv[1],"--all"))){ | ^~~~~~ expanded.c: In function 'cmd_collapse': expanded.c:60:14: warning: incompatible implicit declaration of built-in function 'strlen' 60 | inputbuf[strlen (inputbuf) + 1] = 0; | ^~~~~~ expanded.c:60:14: note: include '' or provide a declaration of 'strlen' cc -c -I.. -Ilibcli -DHAVE_CONFIG_H -Wall -pedantic -g -o file.o file.c cc -c -I.. -Ilibcli -DHAVE_CONFIG_H -Wall -pedantic -g -o file_ascii.o file_ascii.c cc -c -I.. -Ilibcli -DHAVE_CONFIG_H -Wall -pedantic -g -o file_binary.o file_binary.c cc -c -I.. -Ilibcli -DHAVE_CONFIG_H -Wall -pedantic -g -o file_help.o file_help.c file_help.c: In function 'export_help': file_help.c:50:32: warning: variable 'lastlevel' set but not used [-Wunused-but-set-variable] 50 | int level, flags, startlevel, lastlevel, cnt; | ^~~~~~~~~ cc -c -I.. -Ilibcli -DHAVE_CONFIG_H -Wall -pedantic -g -o file_hnb.o file_hnb.c cc -c -I.. -Ilibcli -DHAVE_CONFIG_H -Wall -pedantic -g -o file_html.o file_html.c file_html.c: In function 'export_html': file_html.c:60:13: warning: variable 'flags' set but not used [-Wunused-but-set-variable] 60 | int level, flags, startlevel, lastlevel, cnt; | ^~~~~ cc -c -I.. -Ilibcli -DHAVE_CONFIG_H -Wall -pedantic -g -o file_opml.o file_opml.c cc -c -I.. -Ilibcli -DHAVE_CONFIG_H -Wall -pedantic -g -o file_ps.o file_ps.c file_ps.c: In function 'export_ps': file_ps.c:84:2: warning: string length '5113' is greater than the length '4095' ISO C99 compilers are required to support [-Woverlength-strings] 84 | fprintf (file, "%%!PS %% all files must open with this header\n\ | ^~~~~~~ cc -c -I.. -Ilibcli -DHAVE_CONFIG_H -Wall -pedantic -g -o file_xml.o file_xml.c file_xml.c: In function 'xml_export_nodes': file_xml.c:79:6: warning: variable 'flags' set but not used [-Wunused-but-set-variable] 79 | int flags; | ^~~~~ cc -c -I.. -Ilibcli -DHAVE_CONFIG_H -Wall -pedantic -g -o hnb.o hnb.c hnb.c: In function 'main': hnb.c:319:29: warning: '%s' directive writing up to 4095 bytes into a region of size between 3961 and 4088 [-Wformat-overflow=] 319 | sprintf (buf, "import_%s %s", prefs.format, file_to_load); | ^~ ~~~~~~~~~~~~ hnb.c:319:4: note: 'sprintf' output between 9 and 4231 bytes into a destination of size 4096 319 | sprintf (buf, "import_%s %s", prefs.format, file_to_load); | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ hnb.c:317:33: warning: '%s' directive writing up to 4095 bytes into a region of size 4082 [-Wformat-overflow=] 317 | sprintf (buf, "import_binary %s", file_to_load); | ^~ ~~~~~~~~~~~~ hnb.c:317:4: note: 'sprintf' output between 15 and 4110 bytes into a destination of size 4096 317 | sprintf (buf, "import_binary %s", file_to_load); | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ make[1]: Circular init_subsystems.c <- init_subsystems.c dependency dropped. echo "/* this file is autogenerated, do not edit */">init_subsystems.c cat *.c | grep "^\!init_" | sort | sed -e "s/^\!/void /g">>init_subsystems.c echo "">>init_subsystems.c echo "void init_subsystems(){">>init_subsystems.c cat *.c | grep "^\!init_" | sort | sed -e "s/^\!/ /g">>init_subsystems.c echo "}">>init_subsystems.c cc -c -I.. -Ilibcli -DHAVE_CONFIG_H -Wall -pedantic -g -o init_subsystems.o init_subsystems.c cc -c -I.. -Ilibcli -DHAVE_CONFIG_H -Wall -pedantic -g -o node.o node.c cc -c -I.. -Ilibcli -DHAVE_CONFIG_H -Wall -pedantic -g -o path.o path.c cc -c -I.. -Ilibcli -DHAVE_CONFIG_H -Wall -pedantic -g -o prefs.o prefs.c prefs.c: In function 'write_default_prefs': prefs.c:89:3: warning: string length '15444' is greater than the length '4095' ISO C99 compilers are required to support [-Woverlength-strings] 89 | ); | ^ cc -c -I.. -Ilibcli -DHAVE_CONFIG_H -Wall -pedantic -g -o query.o query.c cc -c -I.. -Ilibcli -DHAVE_CONFIG_H -Wall -pedantic -g -o search.o search.c cc -c -I.. -Ilibcli -DHAVE_CONFIG_H -Wall -pedantic -g -o spell.o spell.c spell.c: In function 'spell_node': spell.c:52:28: warning: '%s' directive writing up to 31 bytes into a region of size between 0 and 254 [-Wformat-overflow=] 52 | sprintf (commandline, "%s %s", spell_command, tempfilename); | ^~ ~~~~~~~~~~~~ spell.c:52:2: note: 'sprintf' output between 2 and 287 bytes into a destination of size 255 52 | sprintf (commandline, "%s %s", spell_command, tempfilename); | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ cc -c -I.. -Ilibcli -DHAVE_CONFIG_H -Wall -pedantic -g -o statcmds.o statcmds.c cc -c -I.. -Ilibcli -DHAVE_CONFIG_H -Wall -pedantic -g -o state.o state.c cc -c -I.. -Ilibcli -DHAVE_CONFIG_H -Wall -pedantic -g -o tokenizer.o tokenizer.c cc -c -I.. -Ilibcli -DHAVE_CONFIG_H -Wall -pedantic -g -o tree.o tree.c tree.c: In function 'node_swap': tree.c:385:22: warning: variable 'Bright' set but not used [-Wunused-but-set-variable] 385 | Node *Bup, *Bleft, *Bright, *Bdown; | ^~~~~~ tree.c:384:22: warning: variable 'Aright' set but not used [-Wunused-but-set-variable] 384 | Node *Aup, *Aleft, *Aright, *Adown; | ^~~~~~ cc -c -I.. -Ilibcli -DHAVE_CONFIG_H -Wall -pedantic -g -o tree_misc.o tree_misc.c cc -c -I.. -Ilibcli -DHAVE_CONFIG_H -Wall -pedantic -g -o tree_sort.o tree_sort.c cc -c -I.. -Ilibcli -DHAVE_CONFIG_H -Wall -pedantic -g -o tree_todo.o tree_todo.c cc -c -I.. -Ilibcli -DHAVE_CONFIG_H -Wall -pedantic -g -o ui.o ui.c cc -c -I.. -Ilibcli -DHAVE_CONFIG_H -Wall -pedantic -g -o ui_binding.o ui_binding.c ui_binding.c:398:12: warning: 'dummy_cmd' defined but not used [-Wunused-function] 398 | static int dummy_cmd (int argc, char **argv, void *data) | ^~~~~~~~~ cc -c -I.. -Ilibcli -DHAVE_CONFIG_H -Wall -pedantic -g -o ui_cli.o ui_cli.c cc -c -I.. -Ilibcli -DHAVE_CONFIG_H -Wall -pedantic -g -o ui_draw.o ui_draw.c cc -c -I.. -Ilibcli -DHAVE_CONFIG_H -Wall -pedantic -g -o ui_edit.o ui_edit.c cc -c -I.. -Ilibcli -DHAVE_CONFIG_H -Wall -pedantic -g -o ui_menu.o ui_menu.c cc -c -I.. -Ilibcli -DHAVE_CONFIG_H -Wall -pedantic -g -o ui_overlay.o ui_overlay.c cc -c -I.. -Ilibcli -DHAVE_CONFIG_H -Wall -pedantic -g -o ui_style.o ui_style.c cc -c -I.. -Ilibcli -DHAVE_CONFIG_H -Wall -pedantic -g -o util_string.o util_string.c cc -c -I.. -Ilibcli -DHAVE_CONFIG_H -Wall -pedantic -g -o xml_tok.o xml_tok.c cc -o hnb actions.o autosave.o cal.o cli_macro.o clipboard.o evilloop.o expanded.o file.o file_ascii.o file_binary.o file_help.o file_hnb.o file_html.o file_opml.o file_ps.o file_xml.o hnb.o init_subsystems.o node.o path.o prefs.o query.o search.o spell.o statcmds.o state.o tokenizer.o tree.o tree_misc.o tree_sort.o tree_todo.o ui.o ui_binding.o ui_cli.o ui_draw.o ui_edit.o ui_menu.o ui_overlay.o ui_style.o util_string.o xml_tok.o -lncurses libcli/libcli.a -I.. -Ilibcli -DHAVE_CONFIG_H -Wall -pedantic -g /usr/bin/ld.default: ui_draw.o:/usr/src/RPM/BUILD/hnb-1.9.18/src/ui_draw.c:42: multiple definition of `nodes_above'; ui.o:/usr/src/RPM/BUILD/hnb-1.9.18/src/ui.c:35: first defined here /usr/bin/ld.default: ui_draw.o:/usr/src/RPM/BUILD/hnb-1.9.18/src/ui_draw.c:43: multiple definition of `active_line'; ui.o:/usr/src/RPM/BUILD/hnb-1.9.18/src/ui.c:36: first defined here /usr/bin/ld.default: ui_draw.o:/usr/src/RPM/BUILD/hnb-1.9.18/src/ui_draw.c:44: multiple definition of `nodes_below'; ui.o:/usr/src/RPM/BUILD/hnb-1.9.18/src/ui.c:37: first defined here collect2: error: ld returned 1 exit status make[1]: *** [Makefile:11: hnb] Error 1 make[1]: Leaving directory '/usr/src/RPM/BUILD/hnb-1.9.18/src' make: *** [Makefile:3: src/hnb] Error 2 make: Leaving directory '/usr/src/RPM/BUILD/hnb-1.9.18' error: Bad exit status from /usr/src/tmp/rpm-tmp.30606 (%build) RPM build errors: Bad exit status from /usr/src/tmp/rpm-tmp.30606 (%build) Command exited with non-zero status 1 1.91user 0.35system 0:02.26elapsed 100%CPU (0avgtext+0avgdata 24796maxresident)k 0inputs+0outputs (0major+149684minor)pagefaults 0swaps hsh-rebuild: rebuild of `hnb-1.9.18-alt1.qa1.src.rpm' failed. Command exited with non-zero status 1 4.93user 2.33system 0:07.04elapsed 103%CPU (0avgtext+0avgdata 109256maxresident)k 0inputs+0outputs (0major+371690minor)pagefaults 0swaps