<86>Mar 19 04:05:37 userdel[3264450]: delete user 'rooter' <86>Mar 19 04:05:37 userdel[3264450]: removed group 'rooter' owned by 'rooter' <86>Mar 19 04:05:37 userdel[3264450]: removed shadow group 'rooter' owned by 'rooter' <86>Mar 19 04:05:37 groupadd[3264484]: group added to /etc/group: name=rooter, GID=1347 <86>Mar 19 04:05:37 groupadd[3264484]: group added to /etc/gshadow: name=rooter <86>Mar 19 04:05:37 groupadd[3264484]: new group: name=rooter, GID=1347 <86>Mar 19 04:05:37 useradd[3264504]: new user: name=rooter, UID=1347, GID=1347, home=/root, shell=/bin/bash <86>Mar 19 04:05:37 userdel[3264532]: delete user 'builder' <86>Mar 19 04:05:37 userdel[3264532]: removed group 'builder' owned by 'builder' <86>Mar 19 04:05:37 userdel[3264532]: removed shadow group 'builder' owned by 'builder' <86>Mar 19 04:05:37 groupadd[3264553]: group added to /etc/group: name=builder, GID=1348 <86>Mar 19 04:05:37 groupadd[3264553]: group added to /etc/gshadow: name=builder <86>Mar 19 04:05:37 groupadd[3264553]: new group: name=builder, GID=1348 <86>Mar 19 04:05:37 useradd[3264567]: new user: name=builder, UID=1348, GID=1348, home=/usr/src, shell=/bin/bash /usr/src/in/srpm/inputpipe-0.0.0-alt1.svn11919.qa1.src.rpm: The use of such a license name is ambiguous: GPL Building target platforms: x86_64 Building for target x86_64 Wrote: /usr/src/in/nosrpm/inputpipe-0.0.0-alt1.svn11919.qa1.nosrc.rpm (w1.gzdio) Installing inputpipe-0.0.0-alt1.svn11919.qa1.src.rpm Building target platforms: x86_64 Building for target x86_64 Executing(%prep): /bin/sh -e /usr/src/tmp/rpm-tmp.14854 + umask 022 + /bin/mkdir -p /usr/src/RPM/BUILD + cd /usr/src/RPM/BUILD + cd /usr/src/RPM/BUILD + rm -rf inputpipe-0.0.0 + echo 'Source #0 (inputpipe-0.0.0.tar):' Source #0 (inputpipe-0.0.0.tar): + /bin/tar -xf /usr/src/RPM/SOURCES/inputpipe-0.0.0.tar + cd inputpipe-0.0.0 + /bin/chmod -c -Rf u+rwX,go-w . + exit 0 Executing(%build): /bin/sh -e /usr/src/tmp/rpm-tmp.14854 + umask 022 + /bin/mkdir -p /usr/src/RPM/BUILD + cd /usr/src/RPM/BUILD + cd inputpipe-0.0.0 + make -j16 make: Entering directory '/usr/src/RPM/BUILD/inputpipe-0.0.0' cc -I uinput -I src -g -c -o src/packet.o src/packet.c src/packet.c: In function 'packet_socket_delete': src/packet.c:94:5: warning: implicit declaration of function 'close'; did you mean 'pclose'? [-Wimplicit-function-declaration] 94 | close(self->read_fd); | ^~~~~ | pclose src/packet.c: In function 'packet_socket_flush': src/packet.c:129:3: warning: implicit declaration of function 'write'; did you mean 'fwrite'? [-Wimplicit-function-declaration] 129 | write(self->write_fd, self->write_buffer.data, size); | ^~~~~ | fwrite src/packet.c:132:3: warning: implicit declaration of function 'fsync' [-Wimplicit-function-declaration] 132 | fsync(self->write_fd); | ^~~~~ make: Leaving directory '/usr/src/RPM/BUILD/inputpipe-0.0.0' make: Entering directory '/usr/src/RPM/BUILD/inputpipe-0.0.0' cc -I uinput -I src -g -c -o src/server.o src/server.c src/server.c: In function 'client_delete': src/server.c:190:5: warning: implicit declaration of function 'close'; did you mean 'pclose'? [-Wimplicit-function-declaration] 190 | close(self->uinput_fd); | ^~~~~ | pclose src/server.c: In function 'client_poll': src/server.c:210:9: warning: implicit declaration of function 'read'; did you mean 'fread'? [-Wimplicit-function-declaration] 210 | if (read(self->uinput_fd, &ev, sizeof(ev)) == sizeof(ev)) | ^~~~ | fread src/server.c: In function 'client_received_packet': src/server.c:269:7: warning: implicit declaration of function 'write'; did you mean 'fwrite'? [-Wimplicit-function-declaration] 269 | write(self->uinput_fd, &ev, sizeof(ev)); | ^~~~~ | fwrite src/server.c: In function 'main': src/server.c:753:25: warning: implicit declaration of function 'atoi' [-Wimplicit-function-declaration] 753 | config_tcp_port = atoi(optarg); | ^~~~ make: Leaving directory '/usr/src/RPM/BUILD/inputpipe-0.0.0' make: Entering directory '/usr/src/RPM/BUILD/inputpipe-0.0.0' cc -I uinput -I src -g -c -o src/client.o src/client.c src/client.c: In function 'server_new': src/client.c:166:18: warning: implicit declaration of function 'atoi' [-Wimplicit-function-declaration] 166 | self->port = atoi(p+1); | ^~~~ src/client.c:181:5: warning: implicit declaration of function 'close'; did you mean 'pclose'? [-Wimplicit-function-declaration] 181 | close(fd); | ^~~~~ | pclose src/client.c: In function 'evdev_send_event': src/client.c:361:12: warning: implicit declaration of function 'read'; did you mean 'fread'? [-Wimplicit-function-declaration] 361 | retval = read(self->fd, &ev, sizeof(ev)); | ^~~~ | fread src/client.c: In function 'connection_received_packet': src/client.c:525:9: warning: implicit declaration of function 'write'; did you mean 'fwrite'? [-Wimplicit-function-declaration] 525 | write(self->evdev.fd, &ev, sizeof(ev)); | ^~~~~ | fwrite src/client.c: In function 'event_loop': src/client.c:692:7: warning: implicit declaration of function 'exit' [-Wimplicit-function-declaration] 692 | exit(1); | ^~~~ src/client.c:46:1: note: include '' or provide a declaration of 'exit' 45 | #include "packet.h" +++ |+#include 46 | src/client.c:692:7: warning: incompatible implicit declaration of built-in function 'exit' [-Wbuiltin-declaration-mismatch] 692 | exit(1); | ^~~~ src/client.c:692:7: note: include '' or provide a declaration of 'exit' src/client.c: In function 'hotplug_poll': src/client.c:724:5: warning: incompatible implicit declaration of built-in function 'exit' [-Wbuiltin-declaration-mismatch] 724 | exit(1); | ^~~~ src/client.c:724:5: note: include '' or provide a declaration of 'exit' src/client.c: In function 'led_name_to_number': src/client.c:845:3: warning: incompatible implicit declaration of built-in function 'exit' [-Wbuiltin-declaration-mismatch] 845 | exit(1); | ^~~~ src/client.c:845:3: note: include '' or provide a declaration of 'exit' make: Leaving directory '/usr/src/RPM/BUILD/inputpipe-0.0.0' make: Entering directory '/usr/src/RPM/BUILD/inputpipe-0.0.0' cc -o inputpipe-server src/packet.o src/server.o make: Leaving directory '/usr/src/RPM/BUILD/inputpipe-0.0.0' make: Entering directory '/usr/src/RPM/BUILD/inputpipe-0.0.0' cc -o inputpipe-client src/packet.o src/client.o make: Leaving directory '/usr/src/RPM/BUILD/inputpipe-0.0.0' + exit 0 Executing(%install): /bin/sh -e /usr/src/tmp/rpm-tmp.14854 + umask 022 + /bin/mkdir -p /usr/src/RPM/BUILD + cd /usr/src/RPM/BUILD + /bin/chmod -Rf u+rwX -- /usr/src/tmp/inputpipe-buildroot + : + /bin/rm -rf -- /usr/src/tmp/inputpipe-buildroot + PATH=/usr/libexec/rpm-build:/usr/src/bin:/bin:/usr/bin:/usr/X11R6/bin:/usr/games + cd inputpipe-0.0.0 + mkdir -p /usr/src/tmp/inputpipe-buildroot/usr/bin + make 'INSTALL=/usr/libexec/rpm-build/install -p' INSTDIR=/usr/src/tmp/inputpipe-buildroot/usr/bin install make: Entering directory '/usr/src/RPM/BUILD/inputpipe-0.0.0' /usr/libexec/rpm-build/install -p inputpipe-server /usr/src/tmp/inputpipe-buildroot/usr/bin/inputpipe-server /usr/libexec/rpm-build/install -p inputpipe-client /usr/src/tmp/inputpipe-buildroot/usr/bin/inputpipe-client make: Leaving directory '/usr/src/RPM/BUILD/inputpipe-0.0.0' + /usr/lib/rpm/brp-alt Cleaning files in /usr/src/tmp/inputpipe-buildroot (auto) Verifying and fixing files in /usr/src/tmp/inputpipe-buildroot (binconfig,pkgconfig,libtool,desktop,gnuconfig) Checking contents of files in /usr/src/tmp/inputpipe-buildroot/ (default) Compressing files in /usr/src/tmp/inputpipe-buildroot (auto) Verifying ELF objects in /usr/src/tmp/inputpipe-buildroot (arch=normal,fhs=normal,lfs=relaxed,lint=relaxed,rpath=normal,stack=normal,textrel=normal,unresolved=normal) Processing files: inputpipe-server-0.0.0-alt1.svn11919.qa1 Finding Provides (using /usr/lib/rpm/find-provides) Executing: /bin/sh -e /usr/src/tmp/rpm-tmp.yMVlK8 find-provides: running scripts (debuginfo,lib,pam,perl,pkgconfig,python,python3,shell) Finding Requires (using /usr/lib/rpm/find-requires) Executing: /bin/sh -e /usr/src/tmp/rpm-tmp.t9h2gq find-requires: running scripts (cpp,debuginfo,files,lib,pam,perl,pkgconfig,pkgconfiglib,python,python3,rpmlib,shebang,shell,static,symlinks,systemd-services) Requires: /lib64/ld-linux-x86-64.so.2, libc.so.6(GLIBC_2.14)(64bit), libc.so.6(GLIBC_2.2.5)(64bit), libc.so.6(GLIBC_2.34)(64bit), libc.so.6(GLIBC_2.4)(64bit), rtld(GNU_HASH) Finding debuginfo files (using /usr/lib/rpm/find-debuginfo-files) Executing: /bin/sh -e /usr/src/tmp/rpm-tmp.36WiY1 Creating inputpipe-server-debuginfo package Processing files: inputpipe-client-0.0.0-alt1.svn11919.qa1 Finding Provides (using /usr/lib/rpm/find-provides) Executing: /bin/sh -e /usr/src/tmp/rpm-tmp.4Tqoue find-provides: running scripts (debuginfo,lib,pam,perl,pkgconfig,python,python3,shell) Finding Requires (using /usr/lib/rpm/find-requires) Executing: /bin/sh -e /usr/src/tmp/rpm-tmp.4EeOrN find-requires: running scripts (cpp,debuginfo,files,lib,pam,perl,pkgconfig,pkgconfiglib,python,python3,rpmlib,shebang,shell,static,symlinks,systemd-services) Requires: /lib64/ld-linux-x86-64.so.2, libc.so.6(GLIBC_2.14)(64bit), libc.so.6(GLIBC_2.2.5)(64bit), libc.so.6(GLIBC_2.34)(64bit), libc.so.6(GLIBC_2.4)(64bit), rtld(GNU_HASH) Finding debuginfo files (using /usr/lib/rpm/find-debuginfo-files) Executing: /bin/sh -e /usr/src/tmp/rpm-tmp.sG4tuP Creating inputpipe-client-debuginfo package Processing files: inputpipe-server-debuginfo-0.0.0-alt1.svn11919.qa1 Finding Provides (using /usr/lib/rpm/find-provides) Executing: /bin/sh -e /usr/src/tmp/rpm-tmp.x4VdWw find-provides: running scripts (debuginfo) Finding Requires (using /usr/lib/rpm/find-requires) Executing: /bin/sh -e /usr/src/tmp/rpm-tmp.PY4rS7 find-requires: running scripts (debuginfo) Requires: inputpipe-server = 0.0.0-alt1.svn11919.qa1, /usr/lib/debug/lib64/ld-linux-x86-64.so.2.debug, debug64(libc.so.6) Processing files: inputpipe-client-debuginfo-0.0.0-alt1.svn11919.qa1 Finding Provides (using /usr/lib/rpm/find-provides) Executing: /bin/sh -e /usr/src/tmp/rpm-tmp.7SDg5J find-provides: running scripts (debuginfo) Finding Requires (using /usr/lib/rpm/find-requires) Executing: /bin/sh -e /usr/src/tmp/rpm-tmp.A3w8Ak find-requires: running scripts (debuginfo) Requires: inputpipe-client = 0.0.0-alt1.svn11919.qa1, /usr/lib/debug/lib64/ld-linux-x86-64.so.2.debug, debug64(libc.so.6) Wrote: /usr/src/RPM/RPMS/x86_64/inputpipe-server-0.0.0-alt1.svn11919.qa1.x86_64.rpm (w2.lzdio) Wrote: /usr/src/RPM/RPMS/x86_64/inputpipe-client-0.0.0-alt1.svn11919.qa1.x86_64.rpm (w2.lzdio) Wrote: /usr/src/RPM/RPMS/x86_64/inputpipe-server-debuginfo-0.0.0-alt1.svn11919.qa1.x86_64.rpm (w2.lzdio) Wrote: /usr/src/RPM/RPMS/x86_64/inputpipe-client-debuginfo-0.0.0-alt1.svn11919.qa1.x86_64.rpm (w2.lzdio) 0.56user 0.68system 0:10.58elapsed 11%CPU (0avgtext+0avgdata 27000maxresident)k 0inputs+0outputs (0major+245965minor)pagefaults 0swaps /.out/inputpipe-server-0.0.0-alt1.svn11919.qa1.x86_64.rpm: The use of such a license name is ambiguous: GPL /.out/inputpipe-client-0.0.0-alt1.svn11919.qa1.x86_64.rpm: The use of such a license name is ambiguous: GPL /.out/inputpipe-server-debuginfo-0.0.0-alt1.svn11919.qa1.x86_64.rpm: The use of such a license name is ambiguous: GPL /.out/inputpipe-client-debuginfo-0.0.0-alt1.svn11919.qa1.x86_64.rpm: The use of such a license name is ambiguous: GPL 0.58user 0.85system 0:13.71elapsed 10%CPU (0avgtext+0avgdata 12372maxresident)k 0inputs+0outputs (0major+96861minor)pagefaults 0swaps --- inputpipe-client-0.0.0-alt1.svn11919.qa1.x86_64.rpm.repo 2013-04-18 10:25:27.000000000 +0000 +++ inputpipe-client-0.0.0-alt1.svn11919.qa1.x86_64.rpm.hasher 2023-03-19 04:05:48.997736181 +0000 @@ -4,2 +4,3 @@ Requires: libc.so.6(GLIBC_2.2.5)(64bit) +Requires: libc.so.6(GLIBC_2.34)(64bit) Requires: libc.so.6(GLIBC_2.4)(64bit) @@ -8,3 +9,3 @@ Provides: inputpipe-client = 0.0.0-alt1.svn11919.qa1 -File: /usr/bin/inputpipe-client 100755 root:root d1d813aeb9a90163ecf63b7dac7d7826 -RPMIdentity: e7483ffdd5bac58acf558071e8a5b6de1f43d62ae2e2c338c97c656e1e29076ee4117dd602471d64e6a4eca62154a8925f3f49fdb39fc1c38541bdb099f2e791 +File: /usr/bin/inputpipe-client 100755 root:root 2768e6167003a507efc1ff447f83cb75 +RPMIdentity: 05350698052926231ad70868fbde13e4a99e2cf308b972a2e718a6cae948788ded5b9a00a741f6991bc55d239283b431204bddd382f6c60817e35bc9915dd8fc --- inputpipe-client-debuginfo-0.0.0-alt1.svn11919.qa1.x86_64.rpm.repo 2013-04-18 10:25:27.000000000 +0000 +++ inputpipe-client-debuginfo-0.0.0-alt1.svn11919.qa1.x86_64.rpm.hasher 2023-03-19 04:05:49.087737706 +0000 @@ -1,4 +1,4 @@ -/usr/lib/debug/.build-id/b2 40755 root:root -/usr/lib/debug/.build-id/b2/e0dcb6481ff43271e74dd97e0309b11b4ce19d 120777 root:root ../../../../bin/inputpipe-client -/usr/lib/debug/.build-id/b2/e0dcb6481ff43271e74dd97e0309b11b4ce19d.debug 120777 root:root ../../usr/bin/inputpipe-client.debug +/usr/lib/debug/.build-id/34 40755 root:root +/usr/lib/debug/.build-id/34/8e8e7a024ababe4388b9830c21c91cd2048fba 120777 root:root ../../../../bin/inputpipe-client +/usr/lib/debug/.build-id/34/8e8e7a024ababe4388b9830c21c91cd2048fba.debug 120777 root:root ../../usr/bin/inputpipe-client.debug /usr/lib/debug/usr/bin/inputpipe-client.debug 100644 root:root @@ -17,6 +17,6 @@ Provides: inputpipe-client-debuginfo = 0.0.0-alt1.svn11919.qa1 -File: /usr/lib/debug/.build-id/b2 40755 root:root -File: /usr/lib/debug/.build-id/b2/e0dcb6481ff43271e74dd97e0309b11b4ce19d 120777 root:root ../../../../bin/inputpipe-client -File: /usr/lib/debug/.build-id/b2/e0dcb6481ff43271e74dd97e0309b11b4ce19d.debug 120777 root:root ../../usr/bin/inputpipe-client.debug -File: /usr/lib/debug/usr/bin/inputpipe-client.debug 100644 root:root 8dd75ac0681a422e574020f317455e2f +File: /usr/lib/debug/.build-id/34 40755 root:root +File: /usr/lib/debug/.build-id/34/8e8e7a024ababe4388b9830c21c91cd2048fba 120777 root:root ../../../../bin/inputpipe-client +File: /usr/lib/debug/.build-id/34/8e8e7a024ababe4388b9830c21c91cd2048fba.debug 120777 root:root ../../usr/bin/inputpipe-client.debug +File: /usr/lib/debug/usr/bin/inputpipe-client.debug 100644 root:root 13a64b5548c45409eaee36f44e3bad30 File: /usr/src/debug/inputpipe-0.0.0 40755 root:root @@ -29,2 +29,2 @@ File: /usr/src/debug/inputpipe-0.0.0/uinput/input.h 100644 root:root 89583c7869fd1f325855dd1de1896fdb -RPMIdentity: 3cb1538ba102f43c2d7fc3360656ba66e249fbd40cc39778d430a28134b23f55fa8bbefdaa5b38ce95a683be1aba0c3b3ebae268d5a6ec4cf32212420a99f11d +RPMIdentity: d3bce2b8cc621575445c47a7d5a81c2972e21c4598ace8c250318faeff0ab019d71521c4de688fbdd384d22e9509441926b6f336d6b342b201dc21a1ea722c4c --- inputpipe-server-0.0.0-alt1.svn11919.qa1.x86_64.rpm.repo 2013-04-18 10:25:27.000000000 +0000 +++ inputpipe-server-0.0.0-alt1.svn11919.qa1.x86_64.rpm.hasher 2023-03-19 04:05:49.169739096 +0000 @@ -4,2 +4,3 @@ Requires: libc.so.6(GLIBC_2.2.5)(64bit) +Requires: libc.so.6(GLIBC_2.34)(64bit) Requires: libc.so.6(GLIBC_2.4)(64bit) @@ -8,3 +9,3 @@ Provides: inputpipe-server = 0.0.0-alt1.svn11919.qa1 -File: /usr/bin/inputpipe-server 100755 root:root cf388cc9b39121d63cca8d5f6d9202ca -RPMIdentity: da37f4708d2cdb669d511c3d0eafba6e6eb7688568afb5adaa5e612e296e66e1abf3c64be38d8568102fdd76ce936b17653696b08ff85ca8069d632ca453dbe1 +File: /usr/bin/inputpipe-server 100755 root:root f23071e4773a8d152d315cad3d558d06 +RPMIdentity: d1a2137b5ece01f041d680730e694bb346eacb926a90984f0d5c7ede6ae66925c372f00276031bab6b70f7f239342d3812680fb81d2da9f1decd0e6e503a4c68 --- inputpipe-server-debuginfo-0.0.0-alt1.svn11919.qa1.x86_64.rpm.repo 2013-04-18 10:25:27.000000000 +0000 +++ inputpipe-server-debuginfo-0.0.0-alt1.svn11919.qa1.x86_64.rpm.hasher 2023-03-19 04:05:49.256740570 +0000 @@ -1,4 +1,4 @@ -/usr/lib/debug/.build-id/66 40755 root:root -/usr/lib/debug/.build-id/66/623cfe5e40d56892cdf2e90d8862d56e281d2e 120777 root:root ../../../../bin/inputpipe-server -/usr/lib/debug/.build-id/66/623cfe5e40d56892cdf2e90d8862d56e281d2e.debug 120777 root:root ../../usr/bin/inputpipe-server.debug +/usr/lib/debug/.build-id/8e 40755 root:root +/usr/lib/debug/.build-id/8e/b0a12cc2c9fbe9f2f891fa5316d846556ac05c 120777 root:root ../../../../bin/inputpipe-server +/usr/lib/debug/.build-id/8e/b0a12cc2c9fbe9f2f891fa5316d846556ac05c.debug 120777 root:root ../../usr/bin/inputpipe-server.debug /usr/lib/debug/usr/bin/inputpipe-server.debug 100644 root:root @@ -18,6 +18,6 @@ Provides: inputpipe-server-debuginfo = 0.0.0-alt1.svn11919.qa1 -File: /usr/lib/debug/.build-id/66 40755 root:root -File: /usr/lib/debug/.build-id/66/623cfe5e40d56892cdf2e90d8862d56e281d2e 120777 root:root ../../../../bin/inputpipe-server -File: /usr/lib/debug/.build-id/66/623cfe5e40d56892cdf2e90d8862d56e281d2e.debug 120777 root:root ../../usr/bin/inputpipe-server.debug -File: /usr/lib/debug/usr/bin/inputpipe-server.debug 100644 root:root ba18c866c941040713d6991d2844f868 +File: /usr/lib/debug/.build-id/8e 40755 root:root +File: /usr/lib/debug/.build-id/8e/b0a12cc2c9fbe9f2f891fa5316d846556ac05c 120777 root:root ../../../../bin/inputpipe-server +File: /usr/lib/debug/.build-id/8e/b0a12cc2c9fbe9f2f891fa5316d846556ac05c.debug 120777 root:root ../../usr/bin/inputpipe-server.debug +File: /usr/lib/debug/usr/bin/inputpipe-server.debug 100644 root:root f0269e90f0b7cda1397928a0663a7895 File: /usr/src/debug/inputpipe-0.0.0 40755 root:root @@ -31,2 +31,2 @@ File: /usr/src/debug/inputpipe-0.0.0/uinput/uinput.h 100644 root:root 71b9e9d37f04a40ee35cdb53c6982d3d -RPMIdentity: 581b0566585acb399e8d3d276fb5d80e0a8ab003bfada3d11a9a127108b7ecf7de94e16a197b290307e9c6e7103d0ace1bfec655ab0964c94bf379bc2f1060be +RPMIdentity: 2923a07d3ceabaf314def9073d47fe564a082cfde3a21e824ee297fe8e96a084dc1da1a6b208e3d8cb5fe89a045750b7b495b49ca1f168d4ac418a20963c43de