<86>Sep 9 00:34:57 userdel[1485281]: delete user 'rooter' <86>Sep 9 00:34:57 userdel[1485281]: removed group 'rooter' owned by 'rooter' <86>Sep 9 00:34:57 groupadd[1485302]: group added to /etc/group: name=rooter, GID=915 <86>Sep 9 00:34:57 groupadd[1485302]: group added to /etc/gshadow: name=rooter <86>Sep 9 00:34:57 groupadd[1485302]: new group: name=rooter, GID=915 <86>Sep 9 00:34:57 useradd[1485324]: new user: name=rooter, UID=915, GID=915, home=/root, shell=/bin/bash <86>Sep 9 00:34:57 userdel[1485351]: delete user 'builder' <86>Sep 9 00:34:57 userdel[1485351]: removed group 'builder' owned by 'builder' <86>Sep 9 00:34:57 groupadd[1485376]: group added to /etc/group: name=builder, GID=916 <86>Sep 9 00:34:57 groupadd[1485376]: group added to /etc/gshadow: name=builder <86>Sep 9 00:34:57 groupadd[1485376]: new group: name=builder, GID=916 <86>Sep 9 00:34:57 useradd[1485396]: new user: name=builder, UID=916, GID=916, home=/usr/src, shell=/bin/bash <13>Sep 9 00:34:58 rpmi: zlib-devel-1.2.12-alt3 sisyphus+304986.100.1.1 1660039929 installed Building target platforms: x86_64 Building for target x86_64 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: x86_64 Building for target x86_64 Executing(%prep): /bin/sh -e /usr/src/tmp/rpm-tmp.3580 + 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.3580 + 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 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 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 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 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 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 -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 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 -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.1695 + 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_22 Executing(%doc): /bin/sh -e /usr/src/tmp/rpm-tmp.1695 + 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.nnydec 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.aGuO8F 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.0HDfES 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.7JJwdw find-provides: running scripts (debuginfo) Finding Requires (using /usr/lib/rpm/find-requires) Executing: /bin/sh -e /usr/src/tmp/rpm-tmp.LOQEQT find-requires: running scripts (debuginfo) Requires: bcrypt = 1.1-alt2_22, /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_22.x86_64.rpm (w2.lzdio) Wrote: /usr/src/RPM/RPMS/x86_64/bcrypt-debuginfo-1.1-alt2_22.x86_64.rpm (w2.lzdio) 0.64user 0.57system 0:05.73elapsed 21%CPU (0avgtext+0avgdata 32552maxresident)k 0inputs+0outputs (0major+183050minor)pagefaults 0swaps 1.77user 1.34system 0:10.42elapsed 29%CPU (0avgtext+0avgdata 105744maxresident)k 256inputs+0outputs (30856major+153751minor)pagefaults 0swaps --- bcrypt-1.1-alt2_22.x86_64.rpm.repo 2021-07-12 09:25:15.000000000 +0000 +++ bcrypt-1.1-alt2_22.x86_64.rpm.hasher 2022-09-09 00:35:06.022015159 +0000 @@ -9,2 +9,4 @@ Requires: libc.so.6(GLIBC_2.3.4)(64bit) +Requires: libc.so.6(GLIBC_2.33)(64bit) +Requires: libc.so.6(GLIBC_2.34)(64bit) Requires: libc.so.6(GLIBC_2.4)(64bit) @@ -15,3 +17,3 @@ Provides: bcrypt = 1.1-alt2_22:sisyphus+278265.100.1.1 -File: /usr/bin/bcrypt 100755 root:root 0d52adb1e58a5c06e00118c70a2cdacb +File: /usr/bin/bcrypt 100755 root:root 9c101fabdbbbc13c8cf3260b54b0f3c2 File: /usr/share/doc/bcrypt-1.1 40755 root:root @@ -20,2 +22,2 @@ File: /usr/share/man/man1/bcrypt.1.xz 100644 root:root d5e2e99eef7eafb8a38205838bc3aec3 -RPMIdentity: 01fe4470a8111a7f0ced307f94ea303be194536311512989b14040b0ce6ed6ae5a414dc424dca11d438425ab9b4115a134a89732204788cac82a91d203049902 +RPMIdentity: 17a8a13d1a3931e492e8787f90a9ba3e93f67916d387829f8bc6441702432a239e8c8aff0cc8ea5e2e1cebc4febe7606ff1fea5e78bac716c15e325a3f4c6391 --- bcrypt-debuginfo-1.1-alt2_22.x86_64.rpm.repo 2021-07-12 09:25:15.000000000 +0000 +++ bcrypt-debuginfo-1.1-alt2_22.x86_64.rpm.hasher 2022-09-09 00:35:06.128016449 +0000 @@ -1,4 +1,4 @@ -/usr/lib/debug/.build-id/c9 40755 root:root -/usr/lib/debug/.build-id/c9/e15ba090380d4cad804718c32b6cd609ba8f02 120777 root:root ../../../../bin/bcrypt -/usr/lib/debug/.build-id/c9/e15ba090380d4cad804718c32b6cd609ba8f02.debug 120777 root:root ../../usr/bin/bcrypt.debug +/usr/lib/debug/.build-id/31 40755 root:root +/usr/lib/debug/.build-id/31/2dfb35deca6e7fd6917f2c8a70c6d7c7132c9e 120777 root:root ../../../../bin/bcrypt +/usr/lib/debug/.build-id/31/2dfb35deca6e7fd6917f2c8a70c6d7c7132c9e.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/c9 40755 root:root -File: /usr/lib/debug/.build-id/c9/e15ba090380d4cad804718c32b6cd609ba8f02 120777 root:root ../../../../bin/bcrypt -File: /usr/lib/debug/.build-id/c9/e15ba090380d4cad804718c32b6cd609ba8f02.debug 120777 root:root ../../usr/bin/bcrypt.debug -File: /usr/lib/debug/usr/bin/bcrypt.debug 100644 root:root 68d566ed600ac6a7b8db68c897037b3d +File: /usr/lib/debug/.build-id/31 40755 root:root +File: /usr/lib/debug/.build-id/31/2dfb35deca6e7fd6917f2c8a70c6d7c7132c9e 120777 root:root ../../../../bin/bcrypt +File: /usr/lib/debug/.build-id/31/2dfb35deca6e7fd6917f2c8a70c6d7c7132c9e.debug 120777 root:root ../../usr/bin/bcrypt.debug +File: /usr/lib/debug/usr/bin/bcrypt.debug 100644 root:root f2b6d96df2b67aba10b65a24279d7521 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: 50b68ce637cf0dc56265a72178a4cacf19cf2fc70214d4b095872951855507d90922541e87af6e430e5c56d783eb82192e4ef24f648d5c014b052e8cfdccb98a +RPMIdentity: cd1f6070373e2a260470b0381861812939f89f0ab5eefffd96ac67da2cff869506e4a0edfbe10fa304879b63ae273218fd1e5859c2d9eadac8efc0162dac5a8c