+ exec
+ rm -rf /rpmbuild
+ mkdir -p /rpmbuild
+ su -c 'rpmbuild -ba /builddir/build/SPECS/spasm-ng.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.KYjBUk
+ umask 022
+ cd /builddir/build/BUILD
+ cd /builddir/build/BUILD
+ rm -rf spasm-ng-0.5-beta.2
+ /usr/bin/gzip -dc /builddir/build/SOURCES/spasm-ng-0.5-beta.2.tar.gz
+ /usr/bin/tar -xof -
+ STATUS=0
+ '[' 0 -ne 0 ']'
+ cd spasm-ng-0.5-beta.2
+ /usr/bin/chmod -Rf a+rX,u+w,g-w,o-w .
+ rm -rf inc/
+ rm -rf lib/
+ rm gmp.h
+ exit 0
Executing(%build): /bin/sh -e /var/tmp/rpm-tmp.YAKzVr
+ umask 022
+ cd /builddir/build/BUILD
+ cd spasm-ng-0.5-beta.2
+ LDFLAGS='-Wl,-z,relro  -specs=/usr/lib/rpm/redhat/redhat-hardened-ld'
+ CXXFLAGS='-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 '
+ make -j4
g++ -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  -DUSE_REUSABLES -DUNIXVER -DUSE_BUILTIN_FCREATE -c main.cpp
g++ -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  -DUSE_REUSABLES -DUNIXVER -DUSE_BUILTIN_FCREATE -c opcodes.cpp
g++ -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  -DUSE_REUSABLES -DUNIXVER -DUSE_BUILTIN_FCREATE -c pass_one.cpp
g++ -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  -DUSE_REUSABLES -DUNIXVER -DUSE_BUILTIN_FCREATE -c pass_two.cpp
g++ -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  -DUSE_REUSABLES -DUNIXVER -DUSE_BUILTIN_FCREATE -c utils.cpp
pass_one.cpp: In function 'char* handle_opcode_or_macro(char*)':
pass_one.cpp:319:17: warning: enum constant in boolean context [-Wint-in-bool-context]
    if (MODE_EZ80) {
                 ^
pass_one.cpp: In function 'char* match_opcode_args(char*, char**, char**, opcode*, instr**)':
pass_one.cpp:596:10: warning: unused variable 'test' [-Wunused-variable]
     BOOL test = read_expr (&curr_arg_file, trash_buf, ",");
          ^~~~
main.cpp: In function 'int run_assembly()':
main.cpp:107:9: warning: ignoring return value of 'char* getcwd(char*, size_t)', declared with attribute warn_unused_result [-Wunused-result]
   getcwd(temp_path, sizeof (temp_path));
   ~~~~~~^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
g++ -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  -DUSE_REUSABLES -DUNIXVER -DUSE_BUILTIN_FCREATE -c export.cpp
g++ -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  -DUSE_REUSABLES -DUNIXVER -DUSE_BUILTIN_FCREATE -c preop.cpp
g++ -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  -DUSE_REUSABLES -DUNIXVER -DUSE_BUILTIN_FCREATE -c directive.cpp
utils.cpp: In function 'char* parse_args(const char*, define_t*, list_t**)':
utils.cpp:289:15: warning: unused variable 'label' [-Wunused-variable]
      label_t *label = search_labels(define->name);
               ^~~~~
utils.cpp: In function 'char* replace_literal_args(const char*, define_t*, list_t**)':
utils.cpp:317:6: warning: unused variable 'totalLen' [-Wunused-variable]
  int totalLen = strlen(ptr);
      ^~~~~~~~
utils.cpp: In function 'bool line_has_word(char*, const char*, int)':
utils.cpp:373:30: warning: comparison between signed and unsigned integer expressions [-Wsign-compare]
  if (strnlen (ptr, word_len) == word_len && !strncasecmp (ptr, word, word_len)) {
      ~~~~~~~~~~~~~~~~~~~~~~~~^~~~~~~~~~~
utils.cpp: In function 'char* get_file_contents(const char*)':
utils.cpp:695:7: warning: ignoring return value of 'size_t fread(void*, size_t, size_t, FILE*)', declared with attribute warn_unused_result [-Wunused-result]
  fread(buffer, 1, sizeof(utf8_endian_mark), file);
  ~~~~~^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
utils.cpp: At global scope:
utils.cpp:16:13: warning: 'void destroy_char_value(label_t*)' defined but not used [-Wunused-function]
 static void destroy_char_value (label_t *label) {
             ^~~~~~~~~~~~~~~~~~
export.cpp: In function 'void write_file(const unsigned char*, int, const char*)':
export.cpp:122:23: warning: comparison between signed and unsigned integer expressions [-Wsign-compare]
   for (type = 0; type < ARRAYSIZE(extensions); type++) {
export.cpp:142:7: warning: unused variable 'error' [-Wunused-variable]
   int error = errno;
       ^~~~~
export.cpp: In function 'void makeapp(const unsigned char*, DWORD, FILE*, const char*)':
export.cpp:304:16: warning: comparison between signed and unsigned integer expressions [-Wsign-compare]
  for (i = 0; i < hleng; i++) fputc(header8xk[i], outfile);
                ^
preop.cpp: In function 'char* do_if(char*, int)':
preop.cpp:649:8: warning: unused variable 'endif' [-Wunused-variable]
  char *endif = skip_until (ptr, NULL, 1, "#endif");
        ^~~~~
g++ -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  -DUSE_REUSABLES -DUNIXVER -DUSE_BUILTIN_FCREATE -c console.cpp
directive.cpp: In function 'char* handle_directive(const char*)':
directive.cpp:160:10: warning: this 'for' clause does not guard... [-Wmisleading-indentation]
          for (j = instr->instr_size - 1; j >= 0; j--)
          ^~~
directive.cpp:165:4: note: ...this statement, but the latter is misleadingly indented as if it were guarded by the 'for'
    if (!read_expr (&ptr, word, " \t")) goto addinstr_fail;
    ^~
directive.cpp:437:14: warning: comparison between signed and unsigned integer expressions [-Wsign-compare]
    if (value > program_counter && (value - program_counter > output_buf_size - (out_ptr - output_contents)))
        ~~~~~~^~~~~~~~~~~~~~~~~
directive.cpp:439:19: warning: comparison between signed and unsigned integer expressions [-Wsign-compare]
    else if (value < program_counter && (value - (int) program_counter + (out_ptr - output_contents) < 0))
             ~~~~~~^~~~~~~~~~~~~~~~~
directive.cpp:25:8: warning: unused variable 'name' [-Wunused-variable]
  char *name;
        ^~~~
directive.cpp: In function 'char* parse_emit_string(const char*, ES_TYPE, void*)':
directive.cpp:565:12: warning: enumeration value 'ES_NONE' not handled in switch [-Wswitch]
     switch (type) 
            ^
directive.cpp:611:12: warning: enumeration value 'ES_FCREATE' not handled in switch [-Wswitch]
     switch (type) 
            ^
directive.cpp:611:12: warning: enumeration value 'ES_NONE' not handled in switch [-Wswitch]
directive.cpp:718:13: warning: enumeration value 'ES_BYTE' not handled in switch [-Wswitch]
      switch (type)
             ^
directive.cpp:718:13: warning: enumeration value 'ES_WORD' not handled in switch [-Wswitch]
directive.cpp:718:13: warning: enumeration value 'ES_LONG' not handled in switch [-Wswitch]
directive.cpp:718:13: warning: enumeration value 'ES_NONE' not handled in switch [-Wswitch]
export.cpp: In function 'void makeprgm(const unsigned char*, int, FILE*, const char*, calc_type)':
export.cpp:452:14: warning: 'lastSlash' may be used uninitialized in this function [-Wmaybe-uninitialized]
   namestring = strdup (lastSlash);
   ~~~~~~~~~~~^~~~~~~~~~~~~~~~~~~~
directive.cpp:736:29: warning: 'session' may be used uninitialized in this function [-Wmaybe-uninitialized]
      ReplaySPASMErrorSession(session);
      ~~~~~~~~~~~~~~~~~~~~~~~^~~~~~~~~
g++ -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  -DUSE_REUSABLES -DUNIXVER -DUSE_BUILTIN_FCREATE -c expand_buf.cpp
g++ -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  -DUSE_REUSABLES -DUNIXVER -DUSE_BUILTIN_FCREATE -c hash.cpp
g++ -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  -DUSE_REUSABLES -DUNIXVER -DUSE_BUILTIN_FCREATE -c list.cpp
g++ -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  -DUSE_REUSABLES -DUNIXVER -DUSE_BUILTIN_FCREATE -c parser.cpp
expand_buf.cpp: In function 'expand_buf* eb_init(size_t)':
expand_buf.cpp:16:16: warning: comparison between signed and unsigned integer expressions [-Wsign-compare]
  if (init_size == -1) init_size = 64;
      ~~~~~~~~~~^~~~~
expand_buf.cpp: In function 'int eb_insert(expand_buf*, int, const char*, size_t)':
expand_buf.cpp:49:13: warning: comparison between signed and unsigned integer expressions [-Wsign-compare]
  if (length == -1)
      ~~~~~~~^~~~~
expand_buf.cpp: In function 'void eb_overwrite(expand_buf*, int, const char*, size_t)':
expand_buf.cpp:92:13: warning: comparison between signed and unsigned integer expressions [-Wsign-compare]
  if (length == -1)
      ~~~~~~~^~~~~
g++ -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  -DUSE_REUSABLES -DUNIXVER -DUSE_BUILTIN_FCREATE -c storage.cpp
g++ -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  -DUSE_REUSABLES -DUNIXVER -DUSE_BUILTIN_FCREATE -c errors.cpp
g++ -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  -DUSE_REUSABLES -DUNIXVER -DUSE_BUILTIN_FCREATE -c bitmap.cpp
parser.cpp: In function 'const char* parse_num_full(const char*, int*, int)':
parser.cpp:599:21: warning: comparison between signed and unsigned integer expressions [-Wsign-compare]
   for (int i = 0; i < ARRAYSIZE(MathDefs); i++)
g++ -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  -DUSE_REUSABLES -DUNIXVER -DUSE_BUILTIN_FCREATE -c modp_ascii.cpp
errors.cpp: In function 'void EndSPASMErrorSession(int)':
errors.cpp:229:25: warning: unused variable 'old_list' [-Wunused-variable]
  list_t *pPrev = NULL, *old_list = NULL;
                         ^~~~~~~~
errors.cpp: In function 'void SetLastSPASMProblem(DWORD, bool, va_list)':
errors.cpp:333:20: warning: comparison between signed and unsigned integer expressions [-Wsign-compare]
  for (int i = 0; i < ARRAYSIZE(g_ErrorCodes); i++)
bitmap.cpp: In function 'void handle_bitmap_internal(FILE*, const RECT*, const BITMAPFILEHEADER*, const BITMAPINFOHEADER*, LPRGBQUAD)':
bitmap.cpp:203:40: warning: comparison between signed and unsigned integer expressions [-Wsign-compare]
  if ((value = parse_f("__BM_INV_RGB")) != -1) {
      ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~^~~~~
bitmap.cpp:166:14: warning: unused variable 'biImageSize' [-Wunused-variable]
  const DWORD biImageSize = (_DW(bf->bfSize) - _DW(bf->bfOffBits));
              ^~~~~~~~~~~
bitmap.cpp: In function 'void handle_bitmap(FILE*)':
bitmap.cpp:377:46: warning: comparison between signed and unsigned integer expressions [-Wsign-compare]
  if (last_label != NULL && last_label->value == program_counter) {
                            ~~~~~~~~~~~~~~~~~~^~~~~~~~~~~~~~~~~~
g++ -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  -DUSE_REUSABLES -DUNIXVER -DUSE_BUILTIN_FCREATE -c opcodes_ez80.cpp
bitmap.cpp: In function 'bool IsFileBitmap(FILE*)':
bitmap.cpp:148:8: warning: ignoring return value of 'size_t fread(void*, size_t, size_t, FILE*)', declared with attribute warn_unused_result [-Wunused-result]
  fread (&bf, sizeof (BITMAPFILEHEADER), 1, file);
  ~~~~~~^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
bitmap.cpp: In function 'void handle_bitmap(FILE*)':
bitmap.cpp:353:8: warning: ignoring return value of 'size_t fread(void*, size_t, size_t, FILE*)', declared with attribute warn_unused_result [-Wunused-result]
  fread (&bf, sizeof (BITMAPFILEHEADER), 1, file);
  ~~~~~~^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
bitmap.cpp:355:8: warning: ignoring return value of 'size_t fread(void*, size_t, size_t, FILE*)', declared with attribute warn_unused_result [-Wunused-result]
  fread (&bi, sizeof (BITMAPINFOHEADER), 1, file);
  ~~~~~~^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
bitmap.cpp:370:7: warning: ignoring return value of 'size_t fread(void*, size_t, size_t, FILE*)', declared with attribute warn_unused_result [-Wunused-result]
  fread(bmiColors, sizeof(RGBQUAD), nColors, file);
  ~~~~~^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
bitmap.cpp: In function 'void handle_bitmap_internal(FILE*, const RECT*, const BITMAPFILEHEADER*, const BITMAPINFOHEADER*, LPRGBQUAD)':
bitmap.cpp:178:8: warning: ignoring return value of 'size_t fread(void*, size_t, size_t, FILE*)', declared with attribute warn_unused_result [-Wunused-result]
  fread ((BYTE *) pBits, biScanWidth * (r->bottom - r->top), 1, file);
  ~~~~~~^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
bitmap.cpp: In function 'void handle_bitmap(FILE*)':
bitmap.cpp:338:6: warning: '%d' directive writing between 1 and 10 bytes into a region of size 8 [-Wformat-overflow=]
 void handle_bitmap(FILE *file)
      ^~~~~~~~~~~~~
bitmap.cpp:338:6: note: directive argument in the range [1, 2147483647]
In file included from /usr/include/stdio.h:862:0,
                 from stdafx.h:72,
                 from bitmap.cpp:1:
/usr/include/bits/stdio2.h:34:43: note: '__builtin___sprintf_chk' output between 2 and 11 bytes into a destination of size 8
       __bos (__s), __fmt, __va_arg_pack ());
                                           ^
g++ -o spasm main.o opcodes.o pass_one.o pass_two.o utils.o export.o preop.o directive.o console.o expand_buf.o hash.o list.o parser.o storage.o errors.o bitmap.o modp_ascii.o opcodes_ez80.o -Wl,-z,relro  -specs=/usr/lib/rpm/redhat/redhat-hardened-ld -lc -lm -lgmp -lcrypto
+ exit 0
Executing(%install): /bin/sh -e /var/tmp/rpm-tmp.zhBVtO
+ umask 022
+ cd /builddir/build/BUILD
+ '[' /builddir/build/BUILDROOT/spasm-ng-0.5-0.4.beta.2.fc28.riscv64 '!=' / ']'
+ rm -rf /builddir/build/BUILDROOT/spasm-ng-0.5-0.4.beta.2.fc28.riscv64
++ dirname /builddir/build/BUILDROOT/spasm-ng-0.5-0.4.beta.2.fc28.riscv64
+ mkdir -p /builddir/build/BUILDROOT
+ mkdir /builddir/build/BUILDROOT/spasm-ng-0.5-0.4.beta.2.fc28.riscv64
+ cd spasm-ng-0.5-beta.2
+ mkdir -p /builddir/build/BUILDROOT/spasm-ng-0.5-0.4.beta.2.fc28.riscv64/usr/bin
+ cp -p spasm /builddir/build/BUILDROOT/spasm-ng-0.5-0.4.beta.2.fc28.riscv64/usr/bin
+ /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: spasm-ng-0.5-0.4.beta.2.fc28.riscv64
Executing(%doc): /bin/sh -e /var/tmp/rpm-tmp.wSd1ZM
+ umask 022
+ cd /builddir/build/BUILD
+ cd spasm-ng-0.5-beta.2
+ DOCDIR=/builddir/build/BUILDROOT/spasm-ng-0.5-0.4.beta.2.fc28.riscv64/usr/share/doc/spasm-ng
+ export LC_ALL=C
+ LC_ALL=C
+ export DOCDIR
+ /usr/bin/mkdir -p /builddir/build/BUILDROOT/spasm-ng-0.5-0.4.beta.2.fc28.riscv64/usr/share/doc/spasm-ng
+ cp -pr README.md /builddir/build/BUILDROOT/spasm-ng-0.5-0.4.beta.2.fc28.riscv64/usr/share/doc/spasm-ng
+ exit 0
Executing(%license): /bin/sh -e /var/tmp/rpm-tmp.oeJ2b0
+ umask 022
+ cd /builddir/build/BUILD
+ cd spasm-ng-0.5-beta.2
+ LICENSEDIR=/builddir/build/BUILDROOT/spasm-ng-0.5-0.4.beta.2.fc28.riscv64/usr/share/licenses/spasm-ng
+ export LC_ALL=C
+ LC_ALL=C
+ export LICENSEDIR
+ /usr/bin/mkdir -p /builddir/build/BUILDROOT/spasm-ng-0.5-0.4.beta.2.fc28.riscv64/usr/share/licenses/spasm-ng
+ cp -pr LICENSE /builddir/build/BUILDROOT/spasm-ng-0.5-0.4.beta.2.fc28.riscv64/usr/share/licenses/spasm-ng
+ exit 0
Provides: bundled(stringencoders) = 2011.08.20 spasm-ng = 0.5-0.4.beta.2.fc28 spasm-ng(riscv-64) = 0.5-0.4.beta.2.fc28
Requires(rpmlib): rpmlib(CompressedFileNames) <= 3.0.4-1 rpmlib(FileDigests) <= 4.6.0-1 rpmlib(PayloadFilesHavePrefix) <= 4.0-1
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) libcrypto.so.1.1()(64bit) libcrypto.so.1.1(OPENSSL_1_1_0)(64bit) libgcc_s.so.1()(64bit) libgmp.so.10()(64bit) libm.so.6()(64bit) libm.so.6(GLIBC_2.27)(64bit) libstdc++.so.6()(64bit) libstdc++.so.6(CXXABI_1.3.9)(64bit) libstdc++.so.6(GLIBCXX_3.4)(64bit) rtld(GNU_HASH)
Checking for unpackaged file(s): /usr/lib/rpm/check-files /builddir/build/BUILDROOT/spasm-ng-0.5-0.4.beta.2.fc28.riscv64
Wrote: /builddir/build/SRPMS/spasm-ng-0.5-0.4.beta.2.fc28.src.rpm
Wrote: /builddir/build/RPMS/riscv64/spasm-ng-0.5-0.4.beta.2.fc28.riscv64.rpm
Executing(%clean): /bin/sh -e /var/tmp/rpm-tmp.lVAx0I
+ umask 022
+ cd /builddir/build/BUILD
+ cd spasm-ng-0.5-beta.2
+ /usr/bin/rm -rf /builddir/build/BUILDROOT/spasm-ng-0.5-0.4.beta.2.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