+ exec + rm -rf /rpmbuild + mkdir -p /rpmbuild + su -c 'rpmbuild -ba /builddir/build/SPECS/AntTweakBar.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.REC9Wm + umask 022 + cd /builddir/build/BUILD + cd /builddir/build/BUILD + rm -rf AntTweakBar + /usr/bin/unzip -qq /builddir/build/SOURCES/AntTweakBar_116.zip + STATUS=0 + '[' 0 -ne 0 ']' + cd AntTweakBar + /usr/bin/chmod -Rf a+rX,u+w,g-w,o-w . + iconv --from=iso-8859-1 --to=utf8 ./License.txt + touch -r ./License.txt ./License.txt.utf8 + mv ./License.txt.utf8 ./License.txt + sed 's|\r||g' ./examples/TwSimpleGLUT.c + touch -r ./examples/TwSimpleGLUT.c ./TwSimpleGLUT.c + mv ./TwSimpleGLUT.c ./examples/TwSimpleGLUT.c + find Readme.txt License.txt src examples include -type f -print0 + xargs -0 chmod 0644 + find Readme.txt License.txt src examples include -type f -print0 + xargs -0 sed -i 's|\r||g' + exit 0 Executing(%build): /bin/sh -e /var/tmp/rpm-tmp.jpzB2o + umask 022 + cd /builddir/build/BUILD + cd AntTweakBar + cd src + make -j4 'CXXCFG=-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 ' ===== Compile TwColors.cpp ===== ===== Compile TwFonts.cpp ===== gcc -c -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 -Wall -fPIC -fno-strict-aliasing -D_UNIX -D__PLACEMENT_NEW_INLINE -I../include -I/usr/local/include -I/usr/X11R6/include -I/usr/include -o TwColors.o TwColors.cpp ===== Compile TwOpenGL.cpp ===== gcc -c -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 -Wall -fPIC -fno-strict-aliasing -D_UNIX -D__PLACEMENT_NEW_INLINE -I../include -I/usr/local/include -I/usr/X11R6/include -I/usr/include -o TwFonts.o TwFonts.cpp ===== Compile TwOpenGLCore.cpp ===== gcc -c -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 -Wall -fPIC -fno-strict-aliasing -D_UNIX -D__PLACEMENT_NEW_INLINE -I../include -I/usr/local/include -I/usr/X11R6/include -I/usr/include -o TwOpenGL.o TwOpenGL.cpp gcc -c -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 -Wall -fPIC -fno-strict-aliasing -D_UNIX -D__PLACEMENT_NEW_INLINE -I../include -I/usr/local/include -I/usr/X11R6/include -I/usr/include -o TwOpenGLCore.o TwOpenGLCore.cpp TwColors.cpp: In function 'void ColorRGBToHLSf(float, float, float, float*, float*, float*)': TwColors.cpp:22:5: warning: this 'if' clause does not guard... [-Wmisleading-indentation] if(_R>0) r = _R; if(r>1) r = 1; ^~ TwColors.cpp:22:22: note: ...this statement, but the latter is misleadingly indented as if it were guarded by the 'if' if(_R>0) r = _R; if(r>1) r = 1; ^~ TwColors.cpp:23:5: warning: this 'if' clause does not guard... [-Wmisleading-indentation] if(_G>0) g = _G; if(g>1) g = 1; ^~ TwColors.cpp:23:22: note: ...this statement, but the latter is misleadingly indented as if it were guarded by the 'if' if(_G>0) g = _G; if(g>1) g = 1; ^~ TwColors.cpp:24:5: warning: this 'if' clause does not guard... [-Wmisleading-indentation] if(_B>0) b = _B; if(b>1) b = 1; ^~ TwColors.cpp:24:22: note: ...this statement, but the latter is misleadingly indented as if it were guarded by the 'if' if(_B>0) b = _B; if(b>1) b = 1; ^~ TwColors.cpp: In function 'void ColorHLSToRGBf(float, float, float, float*, float*, float*)': TwColors.cpp:109:5: warning: this 'if' clause does not guard... [-Wmisleading-indentation] if(_Hue>0) rh = _Hue; if(rh>360) rh = 360; ^~ TwColors.cpp:109:41: note: ...this statement, but the latter is misleadingly indented as if it were guarded by the 'if' if(_Hue>0) rh = _Hue; if(rh>360) rh = 360; ^~ TwColors.cpp:110:5: warning: this 'if' clause does not guard... [-Wmisleading-indentation] if(_Light>0) rl = _Light; if(rl>1) rl = 1; ^~ TwColors.cpp:110:41: note: ...this statement, but the latter is misleadingly indented as if it were guarded by the 'if' if(_Light>0) rl = _Light; if(rl>1) rl = 1; ^~ TwColors.cpp:111:5: warning: this 'if' clause does not guard... [-Wmisleading-indentation] if(_Saturation>0) rs = _Saturation; if(rs>1) rs = 1; ^~ TwColors.cpp:111:41: note: ...this statement, but the latter is misleadingly indented as if it were guarded by the 'if' if(_Saturation>0) rs = _Saturation; if(rs>1) rs = 1; ^~ ===== Compile TwBar.cpp ===== gcc -c -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 -Wall -fPIC -fno-strict-aliasing -D_UNIX -D__PLACEMENT_NEW_INLINE -I../include -I/usr/local/include -I/usr/X11R6/include -I/usr/include -o TwBar.o TwBar.cpp ===== Compile TwMgr.cpp ===== gcc -c -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 -Wall -fPIC -fno-strict-aliasing -D_UNIX -D__PLACEMENT_NEW_INLINE -I../include -I/usr/local/include -I/usr/X11R6/include -I/usr/include -o TwMgr.o TwMgr.cpp ===== Compile TwPrecomp.cpp ===== gcc -c -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 -Wall -fPIC -fno-strict-aliasing -D_UNIX -D__PLACEMENT_NEW_INLINE -I../include -I/usr/local/include -I/usr/X11R6/include -I/usr/include -o TwPrecomp.o TwPrecomp.cpp ===== Compile LoadOGL.cpp ===== gcc -c -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 -Wall -fPIC -fno-strict-aliasing -D_UNIX -D__PLACEMENT_NEW_INLINE -I../include -I/usr/local/include -I/usr/X11R6/include -I/usr/include -o LoadOGL.o LoadOGL.cpp ===== Compile LoadOGLCore.cpp ===== gcc -c -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 -Wall -fPIC -fno-strict-aliasing -D_UNIX -D__PLACEMENT_NEW_INLINE -I../include -I/usr/local/include -I/usr/X11R6/include -I/usr/include -o LoadOGLCore.o LoadOGLCore.cpp ===== Compile TwEventGLFW.c ===== gcc -c -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 -Wall -fPIC -fno-strict-aliasing -D_UNIX -D__PLACEMENT_NEW_INLINE -I../include -I/usr/local/include -I/usr/X11R6/include -I/usr/include -o TwEventGLFW.o TwEventGLFW.c ===== Compile TwEventGLUT.c ===== gcc -c -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 -Wall -fPIC -fno-strict-aliasing -D_UNIX -D__PLACEMENT_NEW_INLINE -I../include -I/usr/local/include -I/usr/X11R6/include -I/usr/include -o TwEventGLUT.o TwEventGLUT.c ===== Compile TwEventSDL.c ===== gcc -c -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 -Wall -fPIC -fno-strict-aliasing -D_UNIX -D__PLACEMENT_NEW_INLINE -I../include -I/usr/local/include -I/usr/X11R6/include -I/usr/include -o TwEventSDL.o TwEventSDL.c ===== Compile TwEventSDL12.c ===== gcc -c -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 -Wall -fPIC -fno-strict-aliasing -D_UNIX -D__PLACEMENT_NEW_INLINE -I../include -I/usr/local/include -I/usr/X11R6/include -I/usr/include -o TwEventSDL12.o TwEventSDL12.c ===== Compile TwEventSDL13.c ===== gcc -c -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 -Wall -fPIC -fno-strict-aliasing -D_UNIX -D__PLACEMENT_NEW_INLINE -I../include -I/usr/local/include -I/usr/X11R6/include -I/usr/include -o TwEventSDL13.o TwEventSDL13.c ===== Compile TwEventSFML.cpp ===== gcc -c -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 -Wall -fPIC -fno-strict-aliasing -D_UNIX -D__PLACEMENT_NEW_INLINE -I../include -I/usr/local/include -I/usr/X11R6/include -I/usr/include -o TwEventSFML.o TwEventSFML.cpp ===== Compile TwEventX11.c ===== gcc -c -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 -Wall -fPIC -fno-strict-aliasing -D_UNIX -D__PLACEMENT_NEW_INLINE -I../include -I/usr/local/include -I/usr/X11R6/include -I/usr/include -o TwEventX11.o TwEventX11.c ===== Link AntTweakBar ===== gcc -shared -Wl,-soname,libAntTweakBar.so.1 -o ../lib/libAntTweakBar.so TwColors.o TwFonts.o TwOpenGL.o TwOpenGLCore.o TwBar.o TwMgr.o TwPrecomp.o LoadOGL.o LoadOGLCore.o TwEventGLFW.o TwEventGLUT.o TwEventSDL.o TwEventSDL12.o TwEventSDL13.o TwEventSFML.o TwEventX11.o ln -sf ../lib/libAntTweakBar.so ../lib/libAntTweakBar.so.1 ar cqs ../lib/libAntTweakBar.a TwColors.o TwFonts.o TwOpenGL.o TwOpenGLCore.o TwBar.o TwMgr.o TwPrecomp.o LoadOGL.o LoadOGLCore.o TwEventGLFW.o TwEventGLUT.o TwEventSDL.o TwEventSDL12.o TwEventSDL13.o TwEventSFML.o TwEventX11.o + exit 0 Executing(%install): /bin/sh -e /var/tmp/rpm-tmp.1b4pG2 + umask 022 + cd /builddir/build/BUILD + '[' /builddir/build/BUILDROOT/AntTweakBar-1.16-7.fc28.riscv64 '!=' / ']' + rm -rf /builddir/build/BUILDROOT/AntTweakBar-1.16-7.fc28.riscv64 ++ dirname /builddir/build/BUILDROOT/AntTweakBar-1.16-7.fc28.riscv64 + mkdir -p /builddir/build/BUILDROOT + mkdir /builddir/build/BUILDROOT/AntTweakBar-1.16-7.fc28.riscv64 + cd AntTweakBar + rm -rf /builddir/build/BUILDROOT/AntTweakBar-1.16-7.fc28.riscv64 + install -m 644 -D include/AntTweakBar.h /builddir/build/BUILDROOT/AntTweakBar-1.16-7.fc28.riscv64//usr/include/AntTweakBar.h + install -m 755 -D lib/libAntTweakBar.so /builddir/build/BUILDROOT/AntTweakBar-1.16-7.fc28.riscv64//usr/lib64/libAntTweakBar.so.1.0.0 + ln -s /usr/lib64/libAntTweakBar.so.1.0.0 /builddir/build/BUILDROOT/AntTweakBar-1.16-7.fc28.riscv64//usr/lib64/libAntTweakBar.so.1 + ln -s /usr/lib64/libAntTweakBar.so.1.0.0 /builddir/build/BUILDROOT/AntTweakBar-1.16-7.fc28.riscv64//usr/lib64/libAntTweakBar.so + /usr/lib/rpm/check-buildroot + /usr/lib/rpm/redhat/brp-ldconfig /sbin/ldconfig: Warning: ignoring configuration file that cannot be opened: /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: AntTweakBar-1.16-7.fc28.riscv64 Executing(%doc): /bin/sh -e /var/tmp/rpm-tmp.h3V8wl + umask 022 + cd /builddir/build/BUILD + cd AntTweakBar + DOCDIR=/builddir/build/BUILDROOT/AntTweakBar-1.16-7.fc28.riscv64/usr/share/doc/AntTweakBar + export LC_ALL=C + LC_ALL=C + export DOCDIR + /usr/bin/mkdir -p /builddir/build/BUILDROOT/AntTweakBar-1.16-7.fc28.riscv64/usr/share/doc/AntTweakBar + cp -pr Readme.txt /builddir/build/BUILDROOT/AntTweakBar-1.16-7.fc28.riscv64/usr/share/doc/AntTweakBar + cp -pr License.txt /builddir/build/BUILDROOT/AntTweakBar-1.16-7.fc28.riscv64/usr/share/doc/AntTweakBar + exit 0 Provides: AntTweakBar = 1.16-7.fc28 AntTweakBar(riscv-64) = 1.16-7.fc28 libAntTweakBar.so.1()(64bit) Requires(interp): /sbin/ldconfig /sbin/ldconfig Requires(rpmlib): rpmlib(CompressedFileNames) <= 3.0.4-1 rpmlib(FileDigests) <= 4.6.0-1 rpmlib(PayloadFilesHavePrefix) <= 4.0-1 Requires(post): /sbin/ldconfig Requires(postun): /sbin/ldconfig Requires: ld-linux-riscv64-lp64d.so.1()(64bit) ld-linux-riscv64-lp64d.so.1(GLIBC_2.27)(64bit) libc.so.6()(64bit) libc.so.6(GLIBC_2.27)(64bit) libgcc_s.so.1()(64bit) libgcc_s.so.1(GCC_3.0)(64bit) rtld(GNU_HASH) Processing files: AntTweakBar-devel-1.16-7.fc28.riscv64 Executing(%doc): /bin/sh -e /var/tmp/rpm-tmp.NX9XYy + umask 022 + cd /builddir/build/BUILD + cd AntTweakBar + DOCDIR=/builddir/build/BUILDROOT/AntTweakBar-1.16-7.fc28.riscv64/usr/share/doc/AntTweakBar-devel + export LC_ALL=C + LC_ALL=C + export DOCDIR + /usr/bin/mkdir -p /builddir/build/BUILDROOT/AntTweakBar-1.16-7.fc28.riscv64/usr/share/doc/AntTweakBar-devel + cp -pr examples/TwAdvanced1.cpp /builddir/build/BUILDROOT/AntTweakBar-1.16-7.fc28.riscv64/usr/share/doc/AntTweakBar-devel + cp -pr examples/TwSimpleGLFW.c /builddir/build/BUILDROOT/AntTweakBar-1.16-7.fc28.riscv64/usr/share/doc/AntTweakBar-devel + cp -pr examples/TwSimpleGLUT.c /builddir/build/BUILDROOT/AntTweakBar-1.16-7.fc28.riscv64/usr/share/doc/AntTweakBar-devel + cp -pr examples/TwSimpleSDL.c /builddir/build/BUILDROOT/AntTweakBar-1.16-7.fc28.riscv64/usr/share/doc/AntTweakBar-devel + cp -pr examples/TwString.cpp /builddir/build/BUILDROOT/AntTweakBar-1.16-7.fc28.riscv64/usr/share/doc/AntTweakBar-devel + exit 0 Provides: AntTweakBar-devel = 1.16-7.fc28 AntTweakBar-devel(riscv-64) = 1.16-7.fc28 Requires(rpmlib): rpmlib(CompressedFileNames) <= 3.0.4-1 rpmlib(FileDigests) <= 4.6.0-1 rpmlib(PayloadFilesHavePrefix) <= 4.0-1 Checking for unpackaged file(s): /usr/lib/rpm/check-files /builddir/build/BUILDROOT/AntTweakBar-1.16-7.fc28.riscv64 Wrote: /builddir/build/SRPMS/AntTweakBar-1.16-7.fc28.src.rpm Wrote: /builddir/build/RPMS/riscv64/AntTweakBar-1.16-7.fc28.riscv64.rpm Wrote: /builddir/build/RPMS/riscv64/AntTweakBar-devel-1.16-7.fc28.riscv64.rpm Executing(%clean): /bin/sh -e /var/tmp/rpm-tmp.RfrZTj + umask 022 + cd /builddir/build/BUILD + cd AntTweakBar + rm -rf /builddir/build/BUILDROOT/AntTweakBar-1.16-7.fc28.riscv64 + exit 0 + touch /buildok + cleanup + set +e + sync + sleep 5 + sync + poweroff Terminated ++ cleanup ++ set +e ++ sync Terminated +++ cleanup +++ set +e +++ sync +++ sleep 5 +++ sync +++ poweroff