<86>Dec 12 00:47:00 userdel[780332]: delete user 'rooter'
<86>Dec 12 00:47:00 userdel[780332]: removed group 'rooter' owned by 'rooter'
<86>Dec 12 00:47:00 userdel[780332]: removed shadow group 'rooter' owned by 'rooter'
<86>Dec 12 00:47:00 groupadd[780360]: group added to /etc/group: name=rooter, GID=1853
<86>Dec 12 00:47:00 groupadd[780360]: group added to /etc/gshadow: name=rooter
<86>Dec 12 00:47:00 groupadd[780360]: new group: name=rooter, GID=1853
<86>Dec 12 00:47:00 useradd[780387]: new user: name=rooter, UID=1853, GID=1853, home=/root, shell=/bin/bash, from=none
<86>Dec 12 00:47:00 userdel[780429]: delete user 'builder'
<86>Dec 12 00:47:00 userdel[780429]: removed group 'builder' owned by 'builder'
<86>Dec 12 00:47:00 userdel[780429]: removed shadow group 'builder' owned by 'builder'
<86>Dec 12 00:47:00 groupadd[780473]: group added to /etc/group: name=builder, GID=1854
<86>Dec 12 00:47:00 groupadd[780473]: group added to /etc/gshadow: name=builder
<86>Dec 12 00:47:00 groupadd[780473]: new group: name=builder, GID=1854
<86>Dec 12 00:47:00 useradd[780514]: new user: name=builder, UID=1854, GID=1854, home=/usr/src, shell=/bin/bash, from=none
<13>Dec 12 00:47:03 rpmi: zlib-devel-1.2.13-alt1 sisyphus+309409.200.2.1 1667402043 installed
Building target platforms: x86_64
Building for target x86_64
Wrote: /usr/src/in/nosrpm/bcrypt-1.1-alt2_32.nosrc.rpm (w1.gzdio)
Installing bcrypt-1.1-alt2_32.src.rpm
Building target platforms: x86_64
Building for target x86_64
Executing(%prep): /bin/sh -e /usr/src/tmp/rpm-tmp.37202
+ 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.37202
+ 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'
make: Entering directory '/usr/src/RPM/BUILD/bcrypt-1.1'
gcc -pipe -frecord-gcc-switches -Wall -g -O2 -flto=auto -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 -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 -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 -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 -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 -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 -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 -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.61460
+ 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)
Processing files: bcrypt-1.1-alt2_32
Executing(%doc): /bin/sh -e /usr/src/tmp/rpm-tmp.61460
+ 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.XdKZvI
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.CHt8RV
find-requires: running scripts (cpp,debuginfo,files,lib,pam,perl,pkgconfig,pkgconfiglib,python,python3,rpmlib,shebang,shell,static,symlinks,systemd-services)
Requires: /lib64/ld-linux-x86-64.so.2, libc.so.6(GLIBC_2.14)(64bit), libc.so.6(GLIBC_2.2.5)(64bit), libc.so.6(GLIBC_2.3.4)(64bit), libc.so.6(GLIBC_2.33)(64bit), libc.so.6(GLIBC_2.34)(64bit), libc.so.6(GLIBC_2.4)(64bit), libz.so.1()(64bit) >= 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.DHla6n
Creating bcrypt-debuginfo package
Processing files: bcrypt-debuginfo-1.1-alt2_32
Finding Provides (using /usr/lib/rpm/find-provides)
Executing: /bin/sh -e /usr/src/tmp/rpm-tmp.4sxia2
find-provides: running scripts (debuginfo)
Finding Requires (using /usr/lib/rpm/find-requires)
Executing: /bin/sh -e /usr/src/tmp/rpm-tmp.8qd01D
find-requires: running scripts (debuginfo)
Requires: bcrypt = 1.1-alt2_32, /usr/lib/debug/lib64/ld-linux-x86-64.so.2.debug, debug64(libc.so.6), debug64(libz.so.1)
Adding to bcrypt-debuginfo a strict dependency on bcrypt
Wrote: /usr/src/RPM/RPMS/x86_64/bcrypt-1.1-alt2_32.x86_64.rpm (w2.lzdio)
Wrote: /usr/src/RPM/RPMS/x86_64/bcrypt-debuginfo-1.1-alt2_32.x86_64.rpm (w2.lzdio)
0.76user 0.69system 0:05.74elapsed 25%CPU (0avgtext+0avgdata 33300maxresident)k
0inputs+0outputs (0major+185118minor)pagefaults 0swaps
3.39user 1.29system 0:12.48elapsed 37%CPU (0avgtext+0avgdata 128816maxresident)k
0inputs+0outputs (0major+205982minor)pagefaults 0swaps
--- bcrypt-1.1-alt2_32.x86_64.rpm.repo	2023-04-20 18:59:00.000000000 +0000
+++ bcrypt-1.1-alt2_32.x86_64.rpm.hasher	2023-12-12 00:47:11.339045847 +0000
@@ -17,3 +17,3 @@
 Provides: bcrypt = 1.1-alt2_32:sisyphus+318937.100.1.1
-File: /usr/bin/bcrypt	100755	root:root	77aaa0428f380c6083f0cd48527a565b	
+File: /usr/bin/bcrypt	100755	root:root	6cc0a45efb1c4fa117eb12ac2374fa45	
 File: /usr/share/doc/bcrypt-1.1	40755	root:root		
@@ -22,2 +22,2 @@
 File: /usr/share/man/man1/bcrypt.1.xz	100644	root:root	d5e2e99eef7eafb8a38205838bc3aec3	
-RPMIdentity: 4286c0aaeea3d4d9222b689be8c21325178d88ab1aa1bab9f5ef29f0b48625eef428478ea8a43243c8fd915201718a942cdb546aecbed0d0589bce26f4c160b1
+RPMIdentity: d6aa6e379357c48ebb05fee66a22791a4e7f3c506e265d21c6a69f440a479704eb73f3a4ad9bd9d04939152b46a2f37a5a73010713093c68105bfdf13c85ffdc
--- bcrypt-debuginfo-1.1-alt2_32.x86_64.rpm.repo	2023-04-20 18:59:00.000000000 +0000
+++ bcrypt-debuginfo-1.1-alt2_32.x86_64.rpm.hasher	2023-12-12 00:47:11.421046906 +0000
@@ -1,4 +1,4 @@
-/usr/lib/debug/.build-id/70	40755	root:root	
-/usr/lib/debug/.build-id/70/289608fa00ddd8fad935a8cbb65b358842a3e5	120777	root:root	../../../../bin/bcrypt
-/usr/lib/debug/.build-id/70/289608fa00ddd8fad935a8cbb65b358842a3e5.debug	120777	root:root	../../usr/bin/bcrypt.debug
+/usr/lib/debug/.build-id/b6	40755	root:root	
+/usr/lib/debug/.build-id/b6/df77b768885014533b6ac6106e068598c2dbd5	120777	root:root	../../../../bin/bcrypt
+/usr/lib/debug/.build-id/b6/df77b768885014533b6ac6106e068598c2dbd5.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_32:sisyphus+318937.100.1.1
-File: /usr/lib/debug/.build-id/70	40755	root:root		
-File: /usr/lib/debug/.build-id/70/289608fa00ddd8fad935a8cbb65b358842a3e5	120777	root:root		../../../../bin/bcrypt
-File: /usr/lib/debug/.build-id/70/289608fa00ddd8fad935a8cbb65b358842a3e5.debug	120777	root:root		../../usr/bin/bcrypt.debug
-File: /usr/lib/debug/usr/bin/bcrypt.debug	100644	root:root	c1d0babe8fe52b9574a563ff47704ec6	
+File: /usr/lib/debug/.build-id/b6	40755	root:root		
+File: /usr/lib/debug/.build-id/b6/df77b768885014533b6ac6106e068598c2dbd5	120777	root:root		../../../../bin/bcrypt
+File: /usr/lib/debug/.build-id/b6/df77b768885014533b6ac6106e068598c2dbd5.debug	120777	root:root		../../usr/bin/bcrypt.debug
+File: /usr/lib/debug/usr/bin/bcrypt.debug	100644	root:root	8a3953da9245ee258bff27b68bb99eba	
 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: 69c0f811a847ab15654d0c16ec93c225c1681ce39288956a3c3e4921cd804544e5114a515ebb0d0802cb967867c89c741b5b91554045f865e9de640ab7e268dd
+RPMIdentity: d4b6ea6239a53c4539f7479f78e1a4a89ad298c361eb266b4cc50f5a0fca8e587965cf4d7e7a9d9e55694b976fa62dbfb3251f5b589c148a29f6bc9c4386ce4e