<86>Apr 15 04:18:30 userdel[2648485]: delete user 'rooter'
<86>Apr 15 04:18:30 userdel[2648485]: removed group 'rooter' owned by 'rooter'
<86>Apr 15 04:18:30 userdel[2648485]: removed shadow group 'rooter' owned by 'rooter'
<86>Apr 15 04:18:30 groupadd[2648543]: group added to /etc/group: name=rooter, GID=1317
<86>Apr 15 04:18:30 groupadd[2648543]: group added to /etc/gshadow: name=rooter
<86>Apr 15 04:18:30 groupadd[2648543]: new group: name=rooter, GID=1317
<86>Apr 15 04:18:30 useradd[2648588]: new user: name=rooter, UID=1317, GID=1317, home=/root, shell=/bin/bash
<86>Apr 15 04:18:30 userdel[2648651]: delete user 'builder'
<86>Apr 15 04:18:30 userdel[2648651]: removed group 'builder' owned by 'builder'
<86>Apr 15 04:18:30 userdel[2648651]: removed shadow group 'builder' owned by 'builder'
<86>Apr 15 04:18:30 groupadd[2648692]: group added to /etc/group: name=builder, GID=1318
<86>Apr 15 04:18:30 groupadd[2648692]: group added to /etc/gshadow: name=builder
<86>Apr 15 04:18:30 groupadd[2648692]: new group: name=builder, GID=1318
<86>Apr 15 04:18:30 useradd[2648717]: new user: name=builder, UID=1318, GID=1318, home=/usr/src, shell=/bin/bash
<13>Apr 15 04:18:31 rpmi: zlib-devel-1.2.13-alt1 sisyphus+309409.200.2.1 1667402045 installed
Building target platforms: i586
Building for target i586
Wrote: /usr/src/in/nosrpm/bcrypt-1.1-alt2_22.nosrc.rpm (w1.gzdio)
Installing bcrypt-1.1-alt2_22.src.rpm
Building target platforms: i586
Building for target i586
Executing(%prep): /bin/sh -e /usr/src/tmp/rpm-tmp.73004
+ umask 022
+ /bin/mkdir -p /usr/src/RPM/BUILD
+ cd /usr/src/RPM/BUILD
+ cd /usr/src/RPM/BUILD
+ rm -rf bcrypt-1.1
+ echo 'Source #0 (bcrypt-1.1.tar.gz):'
Source #0 (bcrypt-1.1.tar.gz):
+ /bin/gzip -dc /usr/src/RPM/SOURCES/bcrypt-1.1.tar.gz
+ /bin/tar -xf -
+ cd bcrypt-1.1
+ /bin/chmod -c -Rf u+rwX,go-w .
+ echo 'Patch #0 (bcrypt-fencepost.patch):'
Patch #0 (bcrypt-fencepost.patch):
+ /usr/bin/patch -p1 -b --suffix .fencepost
patching file rwfile.c
+ /usr/bin/perl -pi.orig -e 's|\/man/man1|\/share/man/man1|g' Makefile
+ exit 0
Executing(%build): /bin/sh -e /usr/src/tmp/rpm-tmp.73004
+ umask 022
+ /bin/mkdir -p /usr/src/RPM/BUILD
+ cd /usr/src/RPM/BUILD
+ cd bcrypt-1.1
+ make -j16 'CFLAGS=-pipe -frecord-gcc-switches -Wall -g -O2 -flto=auto -march=i586 -mtune=generic'
make: Entering directory '/usr/src/RPM/BUILD/bcrypt-1.1'
gcc -pipe -frecord-gcc-switches -Wall -g -O2 -flto=auto -march=i586 -mtune=generic -c blowfish.c
make: Leaving directory '/usr/src/RPM/BUILD/bcrypt-1.1'
make: Entering directory '/usr/src/RPM/BUILD/bcrypt-1.1'
gcc -pipe -frecord-gcc-switches -Wall -g -O2 -flto=auto -march=i586 -mtune=generic -c rwfile.c
make: Leaving directory '/usr/src/RPM/BUILD/bcrypt-1.1'
make: Entering directory '/usr/src/RPM/BUILD/bcrypt-1.1'
gcc -pipe -frecord-gcc-switches -Wall -g -O2 -flto=auto -march=i586 -mtune=generic -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);
      |     ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
make: Leaving directory '/usr/src/RPM/BUILD/bcrypt-1.1'
make: Entering directory '/usr/src/RPM/BUILD/bcrypt-1.1'
gcc -pipe -frecord-gcc-switches -Wall -g -O2 -flto=auto -march=i586 -mtune=generic -c endian.c
make: Leaving directory '/usr/src/RPM/BUILD/bcrypt-1.1'
make: Entering directory '/usr/src/RPM/BUILD/bcrypt-1.1'
gcc -pipe -frecord-gcc-switches -Wall -g -O2 -flto=auto -march=i586 -mtune=generic -c wrapzl.c
make: Leaving directory '/usr/src/RPM/BUILD/bcrypt-1.1'
make: Entering directory '/usr/src/RPM/BUILD/bcrypt-1.1'
gcc -pipe -frecord-gcc-switches -Wall -g -O2 -flto=auto -march=i586 -mtune=generic -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);
      |                                       ~~~~~~~~~~~~~~~^~~
make: Leaving directory '/usr/src/RPM/BUILD/bcrypt-1.1'
make: Entering directory '/usr/src/RPM/BUILD/bcrypt-1.1'
gcc -pipe -frecord-gcc-switches -Wall -g -O2 -flto=auto -march=i586 -mtune=generic -c main.c
make: Leaving directory '/usr/src/RPM/BUILD/bcrypt-1.1'
make: Entering directory '/usr/src/RPM/BUILD/bcrypt-1.1'
gcc -pipe -frecord-gcc-switches -Wall -g -O2 -flto=auto -march=i586 -mtune=generic -o bcrypt main.o blowfish.o rwfile.o keys.o wrapbf.o endian.o wrapzl.o -L/usr/local/lib -lz 
make: Leaving directory '/usr/src/RPM/BUILD/bcrypt-1.1'
+ exit 0
Executing(%install): /bin/sh -e /usr/src/tmp/rpm-tmp.71867
+ umask 022
+ /bin/mkdir -p /usr/src/RPM/BUILD
+ cd /usr/src/RPM/BUILD
+ /bin/chmod -Rf u+rwX -- /usr/src/tmp/bcrypt-buildroot
+ :
+ /bin/rm -rf -- /usr/src/tmp/bcrypt-buildroot
+ PATH=/usr/libexec/rpm-build:/usr/src/bin:/bin:/usr/bin:/usr/X11R6/bin:/usr/games
+ cd bcrypt-1.1
+ make install PREFIX=/usr/src/tmp/bcrypt-buildroot/usr
make: Entering directory '/usr/src/RPM/BUILD/bcrypt-1.1'
mkdir -p /usr/src/tmp/bcrypt-buildroot/usr/bin;\
mkdir -p /usr/src/tmp/bcrypt-buildroot/usr/share/man/man1;\
cp bcrypt /usr/src/tmp/bcrypt-buildroot/usr/bin;\
cp bcrypt.1 /usr/src/tmp/bcrypt-buildroot/usr/share/man/man1;\
chmod 755 /usr/src/tmp/bcrypt-buildroot/usr/bin/bcrypt;\
chmod 644 /usr/src/tmp/bcrypt-buildroot/usr/share/man/man1/bcrypt.1
make: Leaving directory '/usr/src/RPM/BUILD/bcrypt-1.1'
+ /usr/lib/rpm/brp-alt
Cleaning files in /usr/src/tmp/bcrypt-buildroot (auto)
Verifying and fixing files in /usr/src/tmp/bcrypt-buildroot (binconfig,pkgconfig,libtool,desktop,gnuconfig)
Checking contents of files in /usr/src/tmp/bcrypt-buildroot/ (default)
Compressing files in /usr/src/tmp/bcrypt-buildroot (auto)
Verifying ELF objects in /usr/src/tmp/bcrypt-buildroot (arch=normal,fhs=normal,lfs=relaxed,lint=relaxed,rpath=normal,stack=normal,textrel=normal,unresolved=normal)
verify-elf: WARNING: ./usr/bin/bcrypt: uses non-LFS functions: fopen lstat
Processing files: bcrypt-1.1-alt2_22
Executing(%doc): /bin/sh -e /usr/src/tmp/rpm-tmp.71867
+ umask 022
+ /bin/mkdir -p /usr/src/RPM/BUILD
+ cd /usr/src/RPM/BUILD
+ cd bcrypt-1.1
+ DOCDIR=/usr/src/tmp/bcrypt-buildroot/usr/share/doc/bcrypt-1.1
+ export DOCDIR
+ rm -rf /usr/src/tmp/bcrypt-buildroot/usr/share/doc/bcrypt-1.1
+ /bin/mkdir -p /usr/src/tmp/bcrypt-buildroot/usr/share/doc/bcrypt-1.1
+ cp -prL README /usr/src/tmp/bcrypt-buildroot/usr/share/doc/bcrypt-1.1
+ chmod -R go-w /usr/src/tmp/bcrypt-buildroot/usr/share/doc/bcrypt-1.1
+ chmod -R a+rX /usr/src/tmp/bcrypt-buildroot/usr/share/doc/bcrypt-1.1
+ cp -prL --no-dereference LICENSE /usr/src/tmp/bcrypt-buildroot/usr/share/doc/bcrypt-1.1
+ chmod -R go-w /usr/src/tmp/bcrypt-buildroot/usr/share/doc/bcrypt-1.1
+ chmod -R a+rX /usr/src/tmp/bcrypt-buildroot/usr/share/doc/bcrypt-1.1
+ exit 0
Finding Provides (using /usr/lib/rpm/find-provides)
Executing: /bin/sh -e /usr/src/tmp/rpm-tmp.4OCrW0
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.p8o96X
find-requires: running scripts (cpp,debuginfo,files,lib,pam,perl,pkgconfig,pkgconfiglib,python,python3,rpmlib,shebang,shell,static,symlinks,systemd-services)
Requires: /lib/ld-linux.so.2, libc.so.6(GLIBC_2.0), libc.so.6(GLIBC_2.1), libc.so.6(GLIBC_2.1.3), libc.so.6(GLIBC_2.3.4), libc.so.6(GLIBC_2.33), libc.so.6(GLIBC_2.34), libc.so.6(GLIBC_2.4), libz.so.1 >= set:kiYvERG5, rtld(GNU_HASH)
Requires(rpmlib): rpmlib(SetVersions)
Finding debuginfo files (using /usr/lib/rpm/find-debuginfo-files)
Executing: /bin/sh -e /usr/src/tmp/rpm-tmp.3hJJUB
Creating bcrypt-debuginfo package
Processing files: bcrypt-debuginfo-1.1-alt2_22
Finding Provides (using /usr/lib/rpm/find-provides)
Executing: /bin/sh -e /usr/src/tmp/rpm-tmp.MnrCnN
find-provides: running scripts (debuginfo)
Finding Requires (using /usr/lib/rpm/find-requires)
Executing: /bin/sh -e /usr/src/tmp/rpm-tmp.mCkb30
find-requires: running scripts (debuginfo)
Requires: bcrypt = 1.1-alt2_22, /usr/lib/debug/lib/ld-linux.so.2.debug, debug(libc.so.6), debug(libz.so.1)
Adding to bcrypt-debuginfo a strict dependency on bcrypt
Wrote: /usr/src/RPM/RPMS/i586/bcrypt-1.1-alt2_22.i586.rpm (w2.lzdio)
Wrote: /usr/src/RPM/RPMS/i586/bcrypt-debuginfo-1.1-alt2_22.i586.rpm (w2.lzdio)
0.82user 0.66system 0:05.79elapsed 25%CPU (0avgtext+0avgdata 27204maxresident)k
0inputs+0outputs (0major+164892minor)pagefaults 0swaps
1.90user 1.26system 0:11.09elapsed 28%CPU (0avgtext+0avgdata 109304maxresident)k
0inputs+0outputs (32364major+166643minor)pagefaults 0swaps
--- bcrypt-1.1-alt2_22.i586.rpm.repo	2021-07-12 09:25:14.000000000 +0000
+++ bcrypt-1.1-alt2_22.i586.rpm.hasher	2023-04-15 04:18:39.655225377 +0000
@@ -10,2 +10,4 @@
 Requires: libc.so.6(GLIBC_2.3.4)  
+Requires: libc.so.6(GLIBC_2.33)  
+Requires: libc.so.6(GLIBC_2.34)  
 Requires: libc.so.6(GLIBC_2.4)  
@@ -16,3 +18,3 @@
 Provides: bcrypt = 1.1-alt2_22:sisyphus+278265.100.1.1
-File: /usr/bin/bcrypt	100755	root:root	8959248d6df468643c1ecb09c7f85d8f	
+File: /usr/bin/bcrypt	100755	root:root	d1b2d8902b4f4518dadc54f3d9a5b53a	
 File: /usr/share/doc/bcrypt-1.1	40755	root:root		
@@ -21,2 +23,2 @@
 File: /usr/share/man/man1/bcrypt.1.xz	100644	root:root	d5e2e99eef7eafb8a38205838bc3aec3	
-RPMIdentity: bab8d5a5aadf547bea4a70657c3709a9c4543a760d8c5e7d3e54eb1c421a66ec8dd6de1c613bb6fbf1cb533c65136cad83688e8cc3c0e5a3e284dcd96865d580
+RPMIdentity: db209474f126144289e8236d8f8c5cc970e03de475ce2ee16a43b39a6f6356ca5ca3b4424cb1ab618efe53afe699fccb7b0f4215962ffa7ddac31e7e5b28d1dc
--- bcrypt-debuginfo-1.1-alt2_22.i586.rpm.repo	2021-07-12 09:25:14.000000000 +0000
+++ bcrypt-debuginfo-1.1-alt2_22.i586.rpm.hasher	2023-04-15 04:18:39.756226621 +0000
@@ -1,4 +1,4 @@
-/usr/lib/debug/.build-id/f2	40755	root:root	
-/usr/lib/debug/.build-id/f2/d461c329e8bac80a4ed72999d0dea9af39fcae	120777	root:root	../../../../bin/bcrypt
-/usr/lib/debug/.build-id/f2/d461c329e8bac80a4ed72999d0dea9af39fcae.debug	120777	root:root	../../usr/bin/bcrypt.debug
+/usr/lib/debug/.build-id/f5	40755	root:root	
+/usr/lib/debug/.build-id/f5/cea9f1cabd554e24b8373070cc4f0ba69a6e14	120777	root:root	../../../../bin/bcrypt
+/usr/lib/debug/.build-id/f5/cea9f1cabd554e24b8373070cc4f0ba69a6e14.debug	120777	root:root	../../usr/bin/bcrypt.debug
 /usr/lib/debug/usr/bin/bcrypt.debug	100644	root:root	
@@ -21,6 +21,6 @@
 Provides: bcrypt-debuginfo = 1.1-alt2_22:sisyphus+278265.100.1.1
-File: /usr/lib/debug/.build-id/f2	40755	root:root		
-File: /usr/lib/debug/.build-id/f2/d461c329e8bac80a4ed72999d0dea9af39fcae	120777	root:root		../../../../bin/bcrypt
-File: /usr/lib/debug/.build-id/f2/d461c329e8bac80a4ed72999d0dea9af39fcae.debug	120777	root:root		../../usr/bin/bcrypt.debug
-File: /usr/lib/debug/usr/bin/bcrypt.debug	100644	root:root	b28b3955a525e82a895a1ebab055bc50	
+File: /usr/lib/debug/.build-id/f5	40755	root:root		
+File: /usr/lib/debug/.build-id/f5/cea9f1cabd554e24b8373070cc4f0ba69a6e14	120777	root:root		../../../../bin/bcrypt
+File: /usr/lib/debug/.build-id/f5/cea9f1cabd554e24b8373070cc4f0ba69a6e14.debug	120777	root:root		../../usr/bin/bcrypt.debug
+File: /usr/lib/debug/usr/bin/bcrypt.debug	100644	root:root	5ecf2816eafd2627f745766e664619b9	
 File: /usr/src/debug/bcrypt-1.1	40755	root:root		
@@ -36,2 +36,2 @@
 File: /usr/src/debug/bcrypt-1.1/wrapzl.c	100644	root:root	67d5ec063e667521fef96464ad25018f	
-RPMIdentity: 00fa50bb7b33da3985726dafd97d5617fc6915897fe9b9a56b60fedc710d66d276172b11dcf8d714efb987bdd8746300bd3c333a05c7a5f4de49a08edb297a0a
+RPMIdentity: fb44d4b291414ddc1ff67a67188a6fcd80efb91bbcb21c5220e0f9349cde29d0164648e68a42eb098e96d21fb53b9b7e6a4942be790586e83b651d4ac420597a