FailedOk

th/SRPMS[OK]
th/x32[OK]
th/i686[OK]
th/x86_64[OK]

ac/SRPMS[OK]
ac/i386[OK]
ac/i586[OK]
ac/i686[OK]
ac/alpha[OK]
ac/amd64[OK]
ac/athlon[OK]
ac/ppc[OK]
ac/sparc[OK]
ac/sparc64[OK]

Advanced Search
main()
Powered by PLD Linux
(c) 2002-2026 PLD Team
$Revision: 1.37 $
Powered by PDP-11.
Your IP: 18.97.14.81

hexedit d4544a84-bbc1-4ed5-935e-10171222dc67

Status:Failed
Source URL:https://buildlogs.pld-linux.org/pld/th/x32/FAIL/hexedit,d4544a84-bbc1-4ed5-935e-10171222dc67.bz2
text/plain URL:View!
full text:View!
rpm -qa of builder:View!
Date:2026/03/03 00:16:40
Runtime:0:00:05.074111

Toc:

  • files hexedit
  • Processing files: hexedit-1.2.12-5.x32
  • doc
  • Executing(%doc): /bin/sh -e /tmp/B.yhfkp479/BUILD/tmp/rpm-tmp.owXsSj
  • files hexedit-debugsource
  • Processing files: hexedit-debugsource-1.2.12-5.x32
  • error 1
  • error: Empty %files file /tmp/B.yhfkp479/BUILD/hexedit-1.2.12-build/hexedit/debugsourcefiles.list
  • error 2
  • RPM build errors:
  • error 3
  • error: No files produced.

Content:

/usr/bin/x86_64-pld-linux-gnux32-gcc -DHAVE_CONFIG_H -O2 -fwrapv -pipe -gdwarf-4 -fno-debug-types-section -fvar-tracking-assignments -g2 -Wp,-D_FORTIFY_SOURCE=2 -fstack-protector-strong --param=ssp-buffer-size=4 -Werror=trampolines -fPIC -mtune=generic -march=x86-64 -gdwarf-4 -fno-debug-types-section -fvar-tracking-assignments -g2 -Wformat -Werror=format-security  -I/usr/include/ncurses -c file.c
/usr/bin/x86_64-pld-linux-gnux32-gcc -DHAVE_CONFIG_H -O2 -fwrapv -pipe -gdwarf-4 -fno-debug-types-section -fvar-tracking-assignments -g2 -Wp,-D_FORTIFY_SOURCE=2 -fstack-protector-strong --param=ssp-buffer-size=4 -Werror=trampolines -fPIC -mtune=generic -march=x86-64 -gdwarf-4 -fno-debug-types-section -fvar-tracking-assignments -g2 -Wformat -Werror=format-security  -I/usr/include/ncurses -c hexedit.c
/usr/bin/x86_64-pld-linux-gnux32-gcc -DHAVE_CONFIG_H -O2 -fwrapv -pipe -gdwarf-4 -fno-debug-types-section -fvar-tracking-assignments -g2 -Wp,-D_FORTIFY_SOURCE=2 -fstack-protector-strong --param=ssp-buffer-size=4 -Werror=trampolines -fPIC -mtune=generic -march=x86-64 -gdwarf-4 -fno-debug-types-section -fvar-tracking-assignments -g2 -Wformat -Werror=format-security  -I/usr/include/ncurses -c search.c
/usr/bin/x86_64-pld-linux-gnux32-gcc -DHAVE_CONFIG_H -O2 -fwrapv -pipe -gdwarf-4 -fno-debug-types-section -fvar-tracking-assignments -g2 -Wp,-D_FORTIFY_SOURCE=2 -fstack-protector-strong --param=ssp-buffer-size=4 -Werror=trampolines -fPIC -mtune=generic -march=x86-64 -gdwarf-4 -fno-debug-types-section -fvar-tracking-assignments -g2 -Wformat -Werror=format-security  -I/usr/include/ncurses -c page.c
/usr/bin/x86_64-pld-linux-gnux32-gcc -DHAVE_CONFIG_H -O2 -fwrapv -pipe -gdwarf-4 -fno-debug-types-section -fvar-tracking-assignments -g2 -Wp,-D_FORTIFY_SOURCE=2 -fstack-protector-strong --param=ssp-buffer-size=4 -Werror=trampolines -fPIC -mtune=generic -march=x86-64 -gdwarf-4 -fno-debug-types-section -fvar-tracking-assignments -g2 -Wformat -Werror=format-security  -I/usr/include/ncurses -c mark.c
/usr/bin/x86_64-pld-linux-gnux32-gcc -DHAVE_CONFIG_H -O2 -fwrapv -pipe -gdwarf-4 -fno-debug-types-section -fvar-tracking-assignments -g2 -Wp,-D_FORTIFY_SOURCE=2 -fstack-protector-strong --param=ssp-buffer-size=4 -Werror=trampolines -fPIC -mtune=generic -march=x86-64 -gdwarf-4 -fno-debug-types-section -fvar-tracking-assignments -g2 -Wformat -Werror=format-security  -I/usr/include/ncurses -c display.c
In file included from display.c:17:
display.c: In function ‘display’:
display.c:165:13: warning: format ‘%lX’ expects argument of type ‘long unsigned int’, but argument 2 has type ‘int’ [-Wformat=]
  165 |     PRINTW(("%08lX", (int) (base + i)));
      |             ^~~~~~~  ~~~~~~~~~~~~~~~~
      |                      |
      |                      int
hexedit.h:54:97: note: in definition of macro ‘ATTRPRINTW’
   54 | #define ATTRPRINTW(attr, a) do { if (oldattr != (attr)) attrset(attr), oldattr = (attr); printw a; } while (0)
      |                                                                                                 ^
display.c:165:5: note: in expansion of macro ‘PRINTW’
  165 |     PRINTW(("%08lX", (int) (base + i)));
      |     ^~~~~~
display.c:165:18: note: format string is defined here
  165 |     PRINTW(("%08lX", (int) (base + i)));
      |              ~~~~^
      |                  |
      |                  long unsigned int
      |              %08X
display.c:177:43: warning: format ‘%d’ expects argument of type ‘int’, but argument 2 has type ‘long long int’ [-Wformat=]
  177 |   if (mode == bySector) printw("--sector %d", (base + cursor) / SECTOR_SIZE);
      |                                          ~^
      |                                           |
      |                                           int
      |                                          %lld
display.c: In function ‘displayLine’:
display.c:186:11: warning: format ‘%lX’ expects argument of type ‘long unsigned int’, but argument 2 has type ‘int’ [-Wformat=]
  186 |   PRINTW(("%08lX   ", (int) (base + offset)));
      |           ^~~~~~~~~~  ~~~~~~~~~~~~~~~~~~~~~
      |                       |
      |                       int
hexedit.h:54:97: note: in definition of macro ‘ATTRPRINTW’
   54 | #define ATTRPRINTW(attr, a) do { if (oldattr != (attr)) attrset(attr), oldattr = (attr); printw a; } while (0)
      |                                                                                                 ^
display.c:186:3: note: in expansion of macro ‘PRINTW’
  186 |   PRINTW(("%08lX   ", (int) (base + offset)));
      |   ^~~~~~
display.c:186:16: note: format string is defined here
  186 |   PRINTW(("%08lX   ", (int) (base + offset)));
      |            ~~~~^
      |                |
      |                long unsigned int
      |            %08X
/usr/bin/x86_64-pld-linux-gnux32-gcc -DHAVE_CONFIG_H -O2 -fwrapv -pipe -gdwarf-4 -fno-debug-types-section -fvar-tracking-assignments -g2 -Wp,-D_FORTIFY_SOURCE=2 -fstack-protector-strong --param=ssp-buffer-size=4 -Werror=trampolines -fPIC -mtune=generic -march=x86-64 -gdwarf-4 -fno-debug-types-section -fvar-tracking-assignments -g2 -Wformat -Werror=format-security  -I/usr/include/ncurses -c interact.c
/usr/bin/x86_64-pld-linux-gnux32-gcc -Wl,--as-needed -Wl,--no-copy-dt-needed-entries -Wl,-z,relro -Wl,-z,combreloc  -o hexedit hexedit.o display.o mark.o page.o file.o interact.o misc.o search.o -lncurses
+ RPM_EC=0 
+ jobs -p
+ exit 0
Executing(%install): /bin/sh -e /tmp/B.yhfkp479/BUILD/tmp/rpm-tmp.Ihai0R
HOME=/home/users/builder
PATH=/home/users/builder/GNUstep/Tools:/bin:/usr/bin:/usr/local/bin
TMPDIR=/tmp/B.yhfkp479/BUILD/tmp
+ umask 022
+ cd /tmp/B.yhfkp479/BUILD/hexedit-1.2.12-build
+ /bin/rm '--interactive=never' -rf /tmp/B.yhfkp479/BUILD/hexedit-1.2.12-build/BUILDROOT
+ /bin/mkdir -p /tmp/B.yhfkp479/BUILD/hexedit-1.2.12-build/BUILDROOT
+ cd hexedit
+ rm -rf /tmp/B.yhfkp479/BUILD/hexedit-1.2.12-build/BUILDROOT
+ /usr/bin/make -Otarget -j28 install 'DESTDIR=/tmp/B.yhfkp479/BUILD/hexedit-1.2.12-build/BUILDROOT'
/usr/bin/install -c -d -m 755 /tmp/B.yhfkp479/BUILD/hexedit-1.2.12-build/BUILDROOT/usr/bin
/usr/bin/install -c -s -m 755 hexedit /tmp/B.yhfkp479/BUILD/hexedit-1.2.12-build/BUILDROOT/usr/bin
/usr/bin/install -c -d -m 755 /tmp/B.yhfkp479/BUILD/hexedit-1.2.12-build/BUILDROOT/usr/share/man/man1
/usr/bin/install -c -m 644 hexedit.1 /tmp/B.yhfkp479/BUILD/hexedit-1.2.12-build/BUILDROOT/usr/share/man/man1
+ /usr/bin/find-debuginfo -j28 --build-id-seed 1.2.12-5 --unique-debug-suffix -1.2.12-5.x32 --unique-debug-src-base hexedit-1.2.12-5.x32 -S debugsourcefiles.list /tmp/B.yhfkp479/BUILD/hexedit-1.2.12-build/hexedit
find-debuginfo: starting
Extracting debug info from 0 files
Creating .debug symlinks for symlinks to ELF files
find-debuginfo: done
+ __spec_install_post_strip
+ set +x
Stripping 1 ELF executables...DONE
+ __spec_install_post_chrpath
+ set +x
Remove RPATH/RUNPATH from 1 executable binaries and shared object files.
+ __spec_install_post_compress_modules
+ set +x
+ __spec_install_post_check_so
+ set +x
Searching for shared objects with unresolved symbols... DONE
+ __spec_install_post_check_tmpfiles
+ set +x
Checking /var/run <-> tmpfiles.d completeness...
 DONE
+ __spec_install_post_check_shebangs
+ set +x
Checking script shebangs...
 DONE
+ __spec_install_post_compress_docs
+ set +x
Compress man pages: /usr/share/man
+ __spec_install_post_py_hardlink
+ set +x
Reading /tmp/B.yhfkp479/BUILD/hexedit-1.2.12-build/SPECPARTS/rpm-debuginfo.specpart
Processing files: hexedit-1.2.12-5.x32
Executing(%doc): /bin/sh -e /tmp/B.yhfkp479/BUILD/tmp/rpm-tmp.owXsSj
+ umask 022
+ cd /tmp/B.yhfkp479/BUILD/hexedit-1.2.12-build
+ cd hexedit
+ DOCDIR=/tmp/B.yhfkp479/BUILD/hexedit-1.2.12-build/BUILDROOT/usr/share/doc/hexedit-1.2.12 
+ export 'LC_ALL=C.UTF-8'
+ export DOCDIR
+ test -d /tmp/B.yhfkp479/BUILD/hexedit-1.2.12-build/BUILDROOT/usr/share/doc/hexedit-1.2.12
+ /bin/mkdir -p /tmp/B.yhfkp479/BUILD/hexedit-1.2.12-build/BUILDROOT/usr/share/doc/hexedit-1.2.12
+ cp -pr /tmp/B.yhfkp479/BUILD/hexedit-1.2.12-build/hexedit/Changes -pr /tmp/B.yhfkp479/BUILD/hexedit-1.2.12-build/hexedit/TODO /tmp/B.yhfkp479/BUILD/hexedit-1.2.12-build/BUILDROOT/usr/share/doc/hexedit-1.2.12
+ RPM_EC=0 
+ jobs -p
+ exit 0
Provides: hexedit = 1.2.12-5 hexedit(x86-x32) = 1.2.12-5
Requires(rpmlib): rpmlib(CompressedFileNames) <= 3.0.4-1 rpmlib(FileDigests) <= 4.6.0-1 rpmlib(PayloadFilesHavePrefix) <= 4.0-1
Requires: libc.so.6()(x32bit) libc.so.6(GLIBC_2.16)(x32bit) libc.so.6(GLIBC_2.33)(x32bit) libc.so.6(GLIBC_2.34)(x32bit) libc.so.6(GLIBC_2.38)(x32bit) libncursesw.so.6()(x32bit) rtld(GNU_HASH)
Processing files: hexedit-debugsource-1.2.12-5.x32
error: Empty %files file /tmp/B.yhfkp479/BUILD/hexedit-1.2.12-build/hexedit/debugsourcefiles.list

RPM build errors:
    Empty %files file /tmp/B.yhfkp479/BUILD/hexedit-1.2.12-build/hexedit/debugsourcefiles.list
ended at: Tue Mar  3 00:16:40 2026, done in 0:00:05.074111
error: No files produced.
+ chmod -R u+rwX /tmp/B.yhfkp479/BUILD
+ rm -rf /tmp/B.yhfkp479/tmp /tmp/B.yhfkp479/BUILD
+ rm -rf /tmp/B.yhfkp479
Begin-PLD-Builder-Info
Build-Time: user:6.10s sys:2.42s real:6.92s (faults io:0 non-io:409672)

End-PLD-Builder-Info
[Back to list of logs] [View rpm -qa of builder]