D: [iurt_root_command] chroot
Building target platforms: armv7hl
Building for target armv7hl
Installing /home/iurt/rpmbuild/SRPMS/@2195163:bcrypt-1.1-7.mga10.src.rpm
Executing(%mkbuilddir): /bin/sh -e /home/iurt/rpmbuild/tmp/rpm-tmp.vRv7dS
Executing(%prep): /bin/sh -e /home/iurt/rpmbuild/tmp/rpm-tmp.z9jPLM
+ umask 022
+ cd /home/iurt/rpmbuild/BUILD/bcrypt-1.1-build
+ '[' 1 -eq 1 ']'
+ '[' 1 -eq 1 ']'
+ '[' 1 -eq 1 ']'
+ cd /home/iurt/rpmbuild/BUILD/bcrypt-1.1-build
+ rm -rf bcrypt-1.1
+ /usr/lib/rpm/rpmuncompress -x /home/iurt/rpmbuild/SOURCES/bcrypt-1.1.tar.gz
+ STATUS=0
+ '[' 0 -ne 0 ']'
+ cd bcrypt-1.1
+ /usr/bin/chmod -Rf a+rX,u+w,g-w,o-w .
+ sed -i.orig -e 's|${PREFIX}/man/man1|${PREFIX}/share/man/man1|g' Makefile
+ RPM_EC=0
++ jobs -p
+ exit 0
Executing(%build): /bin/sh -e /home/iurt/rpmbuild/tmp/rpm-tmp.pp1yRO
+ umask 022
+ cd /home/iurt/rpmbuild/BUILD/bcrypt-1.1-build
+ CFLAGS='-O2 -g -pipe -Wformat -Werror=format-security -Wp,-U_FORTIFY_SOURCE,-D_FORTIFY_SOURCE=3 -specs=/usr/lib/rpm/redhat/redhat-hardened-cc1 -fstack-protector-strong -march=armv7-a -mfpu=vfpv3-d16 -mtune=generic-armv7-a -mabi=aapcs-linux -mfloat-abi=hard'
+ export CFLAGS
+ CXXFLAGS='-O2 -g -pipe -Wformat -Werror=format-security -Wp,-U_FORTIFY_SOURCE,-D_FORTIFY_SOURCE=3 -specs=/usr/lib/rpm/redhat/redhat-hardened-cc1 -fstack-protector-strong -march=armv7-a -mfpu=vfpv3-d16 -mtune=generic-armv7-a -mabi=aapcs-linux -mfloat-abi=hard'
+ export CXXFLAGS
+ FFLAGS='-O2 -g -pipe -Wformat -Werror=format-security -Wp,-U_FORTIFY_SOURCE,-D_FORTIFY_SOURCE=3 -specs=/usr/lib/rpm/redhat/redhat-hardened-cc1 -fstack-protector-strong -march=armv7-a -mfpu=vfpv3-d16 -mtune=generic-armv7-a -mabi=aapcs-linux -mfloat-abi=hard '
+ export FFLAGS
+ FCFLAGS='-O2 -g -pipe -Wformat -Werror=format-security -Wp,-U_FORTIFY_SOURCE,-D_FORTIFY_SOURCE=3 -specs=/usr/lib/rpm/redhat/redhat-hardened-cc1 -fstack-protector-strong -march=armv7-a -mfpu=vfpv3-d16 -mtune=generic-armv7-a -mabi=aapcs-linux -mfloat-abi=hard '
+ export FCFLAGS
+ VALAFLAGS=-g
+ export VALAFLAGS
+ RUSTFLAGS='-Copt-level=3 -Cdebuginfo=2 -Ccodegen-units=1 -Cstrip=none --cap-lints=warn'
+ export RUSTFLAGS
+ LDFLAGS='-Wl,--as-needed -Wl,--no-undefined -Wl,-z,relro -Wl,-z,now -Wl,-O1 -Wl,--build-id=sha1 -Wl,--enable-new-dtags -specs=/usr/lib/rpm/redhat/redhat-hardened-ld'
+ export LDFLAGS
+ LT_SYS_LIBRARY_PATH=/usr/lib:
+ export LT_SYS_LIBRARY_PATH
+ CC=gcc
+ export CC
+ CXX=g++
+ export CXX
+ cd bcrypt-1.1
+ '[' 1 -eq 1 ']'
+ '[' 1 -eq 1 ']'
+ /usr/bin/make -O -j4 V=1 VERBOSE=1 'CFLAGS=-O2 -g -pipe -Wformat -Werror=format-security -Wp,-U_FORTIFY_SOURCE,-D_FORTIFY_SOURCE=3 -specs=/usr/lib/rpm/redhat/redhat-hardened-cc1 -fstack-protector-strong -march=armv7-a -mfpu=vfpv3-d16 -mtune=generic-armv7-a -mabi=aapcs-linux -mfloat-abi=hard -Wall'
gcc -O2 -g -pipe -Wformat -Werror=format-security -Wp,-U_FORTIFY_SOURCE,-D_FORTIFY_SOURCE=3 -specs=/usr/lib/rpm/redhat/redhat-hardened-cc1 -fstack-protector-strong -march=armv7-a -mfpu=vfpv3-d16 -mtune=generic-armv7-a -mabi=aapcs-linux -mfloat-abi=hard -Wall -c blowfish.c
gcc -O2 -g -pipe -Wformat -Werror=format-security -Wp,-U_FORTIFY_SOURCE,-D_FORTIFY_SOURCE=3 -specs=/usr/lib/rpm/redhat/redhat-hardened-cc1 -fstack-protector-strong -march=armv7-a -mfpu=vfpv3-d16 -mtune=generic-armv7-a -mabi=aapcs-linux -mfloat-abi=hard -Wall -c keys.c
keys.c: In function 'mutateKey':
keys.c:88:23: warning: pointer targets in passing argument 2 of 'Blowfish_Init' differ in signedness [-Wpointer-sign]
   88 |   Blowfish_Init(&ctx, *key, strlen(*key));
      |                       ^~~~
      |                       |
      |                       char *
In file included from functions.h:11,
                 from keys.c:12:
blowfish.h:15:54: note: expected 'unsigned char *' but argument is of type 'char *'
   15 | void Blowfish_Init(BLOWFISH_CTX *ctx, unsigned char *key, int keyLen);
      |                                       ~~~~~~~~~~~~~~~^~~
keys.c: In function 'getkey':
keys.c:32:3: warning: ignoring return value of 'fgets' declared with attribute 'warn_unused_result' [-Wunused-result]
   32 |   fgets(key, MAXKEYBYTES + 1, stdin);
      |   ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
keys.c:39:5: warning: ignoring return value of 'fgets' declared with attribute 'warn_unused_result' [-Wunused-result]
   39 |     fgets(key, MAXKEYBYTES + 1, stdin);
      |     ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
keys.c:55:5: warning: ignoring return value of 'fgets' declared with attribute 'warn_unused_result' [-Wunused-result]
   55 |     fgets(key2, MAXKEYBYTES + 1, stdin);
      |     ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
gcc -O2 -g -pipe -Wformat -Werror=format-security -Wp,-U_FORTIFY_SOURCE,-D_FORTIFY_SOURCE=3 -specs=/usr/lib/rpm/redhat/redhat-hardened-cc1 -fstack-protector-strong -march=armv7-a -mfpu=vfpv3-d16 -mtune=generic-armv7-a -mabi=aapcs-linux -mfloat-abi=hard -Wall -c rwfile.c
gcc -O2 -g -pipe -Wformat -Werror=format-security -Wp,-U_FORTIFY_SOURCE,-D_FORTIFY_SOURCE=3 -specs=/usr/lib/rpm/redhat/redhat-hardened-cc1 -fstack-protector-strong -march=armv7-a -mfpu=vfpv3-d16 -mtune=generic-armv7-a -mabi=aapcs-linux -mfloat-abi=hard -Wall -c main.c
gcc -O2 -g -pipe -Wformat -Werror=format-security -Wp,-U_FORTIFY_SOURCE,-D_FORTIFY_SOURCE=3 -specs=/usr/lib/rpm/redhat/redhat-hardened-cc1 -fstack-protector-strong -march=armv7-a -mfpu=vfpv3-d16 -mtune=generic-armv7-a -mabi=aapcs-linux -mfloat-abi=hard -Wall -c endian.c
gcc -O2 -g -pipe -Wformat -Werror=format-security -Wp,-U_FORTIFY_SOURCE,-D_FORTIFY_SOURCE=3 -specs=/usr/lib/rpm/redhat/redhat-hardened-cc1 -fstack-protector-strong -march=armv7-a -mfpu=vfpv3-d16 -mtune=generic-armv7-a -mabi=aapcs-linux -mfloat-abi=hard -Wall -c wrapzl.c
gcc -O2 -g -pipe -Wformat -Werror=format-security -Wp,-U_FORTIFY_SOURCE,-D_FORTIFY_SOURCE=3 -specs=/usr/lib/rpm/redhat/redhat-hardened-cc1 -fstack-protector-strong -march=armv7-a -mfpu=vfpv3-d16 -mtune=generic-armv7-a -mabi=aapcs-linux -mfloat-abi=hard -Wall -c wrapbf.c
wrapbf.c: In function 'BFEncrypt':
wrapbf.c:31:24: warning: pointer targets in passing argument 2 of 'Blowfish_Init' differ in signedness [-Wpointer-sign]
   31 |   Blowfish_Init (&ctx, key, MAXKEYBYTES);
      |                        ^~~
      |                        |
      |                        char *
In file included from functions.h:11,
                 from wrapbf.c:12:
blowfish.h:15:54: note: expected 'unsigned char *' but argument is of type 'char *'
   15 | void Blowfish_Init(BLOWFISH_CTX *ctx, unsigned char *key, int keyLen);
      |                                       ~~~~~~~~~~~~~~~^~~
wrapbf.c: In function 'BFDecrypt':
wrapbf.c:84:24: warning: pointer targets in passing argument 2 of 'Blowfish_Init' differ in signedness [-Wpointer-sign]
   84 |   Blowfish_Init (&ctx, mykey, MAXKEYBYTES);
      |                        ^~~~~
      |                        |
      |                        char *
blowfish.h:15:54: note: expected 'unsigned char *' but argument is of type 'char *'
   15 | void Blowfish_Init(BLOWFISH_CTX *ctx, unsigned char *key, int keyLen);
      |                                       ~~~~~~~~~~~~~~~^~~
gcc -O2 -g -pipe -Wformat -Werror=format-security -Wp,-U_FORTIFY_SOURCE,-D_FORTIFY_SOURCE=3 -specs=/usr/lib/rpm/redhat/redhat-hardened-cc1 -fstack-protector-strong -march=armv7-a -mfpu=vfpv3-d16 -mtune=generic-armv7-a -mabi=aapcs-linux -mfloat-abi=hard -Wall -o bcrypt main.o blowfish.o rwfile.o keys.o wrapbf.o endian.o wrapzl.o -L/usr/local/lib -lz 
+ RPM_EC=0
++ jobs -p
+ exit 0
Executing(%install): /bin/sh -e /home/iurt/rpmbuild/tmp/rpm-tmp.woA72i
+ umask 022
+ cd /home/iurt/rpmbuild/BUILD/bcrypt-1.1-build
+ '[' 1 -eq 1 ']'
+ '[' /home/iurt/rpmbuild/BUILD/bcrypt-1.1-build/BUILDROOT '!=' / ']'
+ rm -rf /home/iurt/rpmbuild/BUILD/bcrypt-1.1-build/BUILDROOT
++ dirname /home/iurt/rpmbuild/BUILD/bcrypt-1.1-build/BUILDROOT
+ mkdir -p /home/iurt/rpmbuild/BUILD/bcrypt-1.1-build
+ mkdir /home/iurt/rpmbuild/BUILD/bcrypt-1.1-build/BUILDROOT
+ CFLAGS='-O2 -g -pipe -Wformat -Werror=format-security -Wp,-U_FORTIFY_SOURCE,-D_FORTIFY_SOURCE=3 -specs=/usr/lib/rpm/redhat/redhat-hardened-cc1 -fstack-protector-strong -march=armv7-a -mfpu=vfpv3-d16 -mtune=generic-armv7-a -mabi=aapcs-linux -mfloat-abi=hard'
+ export CFLAGS
+ CXXFLAGS='-O2 -g -pipe -Wformat -Werror=format-security -Wp,-U_FORTIFY_SOURCE,-D_FORTIFY_SOURCE=3 -specs=/usr/lib/rpm/redhat/redhat-hardened-cc1 -fstack-protector-strong -march=armv7-a -mfpu=vfpv3-d16 -mtune=generic-armv7-a -mabi=aapcs-linux -mfloat-abi=hard'
+ export CXXFLAGS
+ FFLAGS='-O2 -g -pipe -Wformat -Werror=format-security -Wp,-U_FORTIFY_SOURCE,-D_FORTIFY_SOURCE=3 -specs=/usr/lib/rpm/redhat/redhat-hardened-cc1 -fstack-protector-strong -march=armv7-a -mfpu=vfpv3-d16 -mtune=generic-armv7-a -mabi=aapcs-linux -mfloat-abi=hard '
+ export FFLAGS
+ FCFLAGS='-O2 -g -pipe -Wformat -Werror=format-security -Wp,-U_FORTIFY_SOURCE,-D_FORTIFY_SOURCE=3 -specs=/usr/lib/rpm/redhat/redhat-hardened-cc1 -fstack-protector-strong -march=armv7-a -mfpu=vfpv3-d16 -mtune=generic-armv7-a -mabi=aapcs-linux -mfloat-abi=hard '
+ export FCFLAGS
+ VALAFLAGS=-g
+ export VALAFLAGS
+ RUSTFLAGS='-Copt-level=3 -Cdebuginfo=2 -Ccodegen-units=1 -Cstrip=none --cap-lints=warn'
+ export RUSTFLAGS
+ LDFLAGS='-Wl,--as-needed -Wl,--no-undefined -Wl,-z,relro -Wl,-z,now -Wl,-O1 -Wl,--build-id=sha1 -Wl,--enable-new-dtags -specs=/usr/lib/rpm/redhat/redhat-hardened-ld'
+ export LDFLAGS
+ LT_SYS_LIBRARY_PATH=/usr/lib:
+ export LT_SYS_LIBRARY_PATH
+ CC=gcc
+ export CC
+ CXX=g++
+ export CXX
+ cd bcrypt-1.1
+ '[' 1 -eq 1 ']'
+ echo 'warning: %makeinstall is deprecated, try %make_install instead'
warning: %makeinstall is deprecated, try %make_install instead
+ /usr/bin/make prefix=/home/iurt/rpmbuild/BUILD/bcrypt-1.1-build/BUILDROOT/usr exec_prefix=/home/iurt/rpmbuild/BUILD/bcrypt-1.1-build/BUILDROOT/usr bindir=/home/iurt/rpmbuild/BUILD/bcrypt-1.1-build/BUILDROOT/usr/bin sbindir=/home/iurt/rpmbuild/BUILD/bcrypt-1.1-build/BUILDROOT/usr/sbin sysconfdir=/home/iurt/rpmbuild/BUILD/bcrypt-1.1-build/BUILDROOT/etc datadir=/home/iurt/rpmbuild/BUILD/bcrypt-1.1-build/BUILDROOT/usr/share includedir=/home/iurt/rpmbuild/BUILD/bcrypt-1.1-build/BUILDROOT/usr/include libdir=/home/iurt/rpmbuild/BUILD/bcrypt-1.1-build/BUILDROOT/usr/lib libexecdir=/home/iurt/rpmbuild/BUILD/bcrypt-1.1-build/BUILDROOT/usr/libexec localstatedir=/home/iurt/rpmbuild/BUILD/bcrypt-1.1-build/BUILDROOT/var sharedstatedir=/home/iurt/rpmbuild/BUILD/bcrypt-1.1-build/BUILDROOT/var/lib mandir=/home/iurt/rpmbuild/BUILD/bcrypt-1.1-build/BUILDROOT/usr/share/man infodir=/home/iurt/rpmbuild/BUILD/bcrypt-1.1-build/BUILDROOT/usr/share/info install PREFIX=/home/iurt/rpmbuild/BUILD/bcrypt-1.1-build/BUILDROOT/usr
mkdir -p /home/iurt/rpmbuild/BUILD/bcrypt-1.1-build/BUILDROOT/usr/bin;\
mkdir -p /home/iurt/rpmbuild/BUILD/bcrypt-1.1-build/BUILDROOT/usr/share/man/man1;\
cp bcrypt /home/iurt/rpmbuild/BUILD/bcrypt-1.1-build/BUILDROOT/usr/bin;\
cp bcrypt.1 /home/iurt/rpmbuild/BUILD/bcrypt-1.1-build/BUILDROOT/usr/share/man/man1;\
chmod 755 /home/iurt/rpmbuild/BUILD/bcrypt-1.1-build/BUILDROOT/usr/bin/bcrypt;\
chmod 644 /home/iurt/rpmbuild/BUILD/bcrypt-1.1-build/BUILDROOT/usr/share/man/man1/bcrypt.1
+ /usr/bin/find-debuginfo -j4 --strict-build-id -m -i --build-id-seed 1.1-7.mga10 --unique-debug-suffix -1.1-7.mga10.arm --unique-debug-src-base bcrypt-1.1-7.mga10.arm --run-dwz --dwz-low-mem-die-limit 10000000 --dwz-max-die-limit 50000000 -S debugsourcefiles.list /home/iurt/rpmbuild/BUILD/bcrypt-1.1-build/bcrypt-1.1
find-debuginfo: starting

Extracting debug info from 1 files
DWARF-compressing 1 files
sepdebugcrcfix: Updated 1 CRC32s, 0 CRC32s did match.
Creating .debug symlinks for symlinks to ELF files
Copying sources found by 'debugedit -l' to /usr/src/debug/bcrypt-1.1-7.mga10.arm
find-debuginfo: done
+ /usr/lib/rpm/check-buildroot
+ '[' -n '' ']'
+ /usr/share/spec-helper/clean_files
+ '[' -n '' ']'
+ /usr/share/spec-helper/compress_files .xz
+ '[' -n '' ']'
+ /usr/share/spec-helper/relink_symlinks
+ '[' -n '' ']'
+ /usr/share/spec-helper/clean_perl
+ '[' -n '' ']'
+ /usr/share/spec-helper/lib_symlinks
+ '[' -n '' ']'
+ /usr/share/spec-helper/gprintify
+ '[' -n '' ']'
+ /usr/share/spec-helper/fix_mo
+ '[' -n '' ']'
+ /usr/share/spec-helper/fix_pamd
+ '[' -n '' ']'
+ /usr/share/spec-helper/remove_info_dir
+ '[' -n '' ']'
+ /usr/share/spec-helper/fix_eol
+ '[' -n '' ']'
+ /usr/share/spec-helper/check_desktop_files
+ '[' -n '' ']'
+ /usr/share/spec-helper/check_elf_files
+ /usr/lib/rpm/check-rpaths
+ /usr/lib/rpm/brp-remove-la-files
+ /usr/lib/rpm/redhat/brp-mangle-shebangs
+ env -u SOURCE_DATE_EPOCH /usr/lib/rpm/redhat/brp-python-bytecompile '' 1 0 -j4
+ /usr/lib/rpm/redhat/brp-python-hardlink
Reading /home/iurt/rpmbuild/BUILD/bcrypt-1.1-build/SPECPARTS/rpm-debuginfo.specpart
Processing files: bcrypt-1.1-7.mga10.armv7hl
Executing(%doc): /bin/sh -e /home/iurt/rpmbuild/tmp/rpm-tmp.qyrIkw
+ umask 022
+ cd /home/iurt/rpmbuild/BUILD/bcrypt-1.1-build
+ cd bcrypt-1.1
+ DOCDIR=/home/iurt/rpmbuild/BUILD/bcrypt-1.1-build/BUILDROOT/usr/share/doc/bcrypt
+ export LC_ALL=C
+ LC_ALL=C
+ export DOCDIR
+ /usr/bin/mkdir -p /home/iurt/rpmbuild/BUILD/bcrypt-1.1-build/BUILDROOT/usr/share/doc/bcrypt
+ cp -pr /home/iurt/rpmbuild/BUILD/bcrypt-1.1-build/bcrypt-1.1/README /home/iurt/rpmbuild/BUILD/bcrypt-1.1-build/BUILDROOT/usr/share/doc/bcrypt
+ cp -pr /home/iurt/rpmbuild/BUILD/bcrypt-1.1-build/bcrypt-1.1/LICENSE /home/iurt/rpmbuild/BUILD/bcrypt-1.1-build/BUILDROOT/usr/share/doc/bcrypt
+ RPM_EC=0
++ jobs -p
+ exit 0
Provides: bcrypt = 1.1-7.mga10 bcrypt(armv7hl-32) = 1.1-7.mga10
Requires(rpmlib): rpmlib(CompressedFileNames) <= 3.0.4-1 rpmlib(FileDigests) <= 4.6.0-1 rpmlib(PayloadFilesHavePrefix) <= 4.0-1
Requires: ld-linux-armhf.so.3 ld-linux-armhf.so.3(GLIBC_2.4) libc.so.6 libc.so.6(GLIBC_2.33) libc.so.6(GLIBC_2.34) libc.so.6(GLIBC_2.38) libc.so.6(GLIBC_2.4) libz.so.1
Processing files: bcrypt-debugsource-1.1-7.mga10.armv7hl
Provides: bcrypt-debugsource = 1.1-7.mga10 bcrypt-debugsource(armv7hl-32) = 1.1-7.mga10
Requires(rpmlib): rpmlib(CompressedFileNames) <= 3.0.4-1 rpmlib(FileDigests) <= 4.6.0-1 rpmlib(PayloadFilesHavePrefix) <= 4.0-1
Processing files: bcrypt-debuginfo-1.1-7.mga10.armv7hl
Provides: bcrypt-debuginfo = 1.1-7.mga10 bcrypt-debuginfo(armv7hl-32) = 1.1-7.mga10 debuginfo(build-id) = 04f52fb689ad58126bafb308f9fb5a0b928bb31f
Requires(rpmlib): rpmlib(CompressedFileNames) <= 3.0.4-1 rpmlib(FileDigests) <= 4.6.0-1 rpmlib(PayloadFilesHavePrefix) <= 4.0-1
Recommends: bcrypt-debugsource(armv7hl-32) = 1.1-7.mga10
Checking for unpackaged file(s): /usr/lib/rpm/check-files /home/iurt/rpmbuild/BUILD/bcrypt-1.1-build/BUILDROOT
Wrote: /home/iurt/rpmbuild/RPMS/armv7hl/bcrypt-1.1-7.mga10.armv7hl.rpm
Wrote: /home/iurt/rpmbuild/RPMS/armv7hl/bcrypt-debugsource-1.1-7.mga10.armv7hl.rpm
Wrote: /home/iurt/rpmbuild/RPMS/armv7hl/bcrypt-debuginfo-1.1-7.mga10.armv7hl.rpm
Executing(rmbuild): /bin/sh -e /home/iurt/rpmbuild/tmp/rpm-tmp.oOEdxi
+ umask 022
+ cd /home/iurt/rpmbuild/BUILD/bcrypt-1.1-build
+ test -d /home/iurt/rpmbuild/BUILD/bcrypt-1.1-build
+ /usr/bin/chmod -Rf a+rX,u+w,g-w,o-w /home/iurt/rpmbuild/BUILD/bcrypt-1.1-build
+ rm -rf /home/iurt/rpmbuild/BUILD/bcrypt-1.1-build
+ RPM_EC=0
++ jobs -p
+ exit 0
D: [iurt_root_command] Success!