<86>Aug 15 08:08:50 userdel[2887732]: delete user 'rooter'
<86>Aug 15 08:08:50 groupadd[2887749]: group added to /etc/group: name=rooter, GID=654
<86>Aug 15 08:08:50 groupadd[2887749]: new group: name=rooter, GID=654
<86>Aug 15 08:08:50 useradd[2887770]: new user: name=rooter, UID=654, GID=654, home=/root, shell=/bin/bash
<86>Aug 15 08:08:50 userdel[2887787]: delete user 'builder'
<86>Aug 15 08:08:50 groupadd[2887803]: group added to /etc/group: name=builder, GID=655
<86>Aug 15 08:08:50 groupadd[2887803]: new group: name=builder, GID=655
<86>Aug 15 08:08:50 useradd[2887849]: new user: name=builder, UID=655, GID=655, home=/usr/src, shell=/bin/bash
<13>Aug 15 08:08:53 rpmi: rpm-macros-make-0.1-alt1 1299442795 installed
Building target platforms: x86_64
Building for target x86_64
Wrote: /usr/src/in/nosrpm/jam-2.6-alt1.nosrc.rpm (w1.gzdio)
Installing jam-2.6-alt1.src.rpm
Building target platforms: x86_64
Building for target x86_64
Executing(%prep): /bin/sh -e /usr/src/tmp/rpm-tmp.92124
+ umask 022
+ /bin/mkdir -p /usr/src/RPM/BUILD
+ cd /usr/src/RPM/BUILD
+ cd /usr/src/RPM/BUILD
+ rm -rf jam
+ echo 'Source #0 (jam-2.6.tar.bz2):'
Source #0 (jam-2.6.tar.bz2):
+ /bin/tar -xf -
+ /bin/bzip2 -dc /usr/src/RPM/SOURCES/jam-2.6.tar.bz2
+ cd jam
+ /bin/chmod -c -Rf u+rwX,go-w .
+ exit 0
Executing(%build): /bin/sh -e /usr/src/tmp/rpm-tmp.92124
+ umask 022
+ /bin/mkdir -p /usr/src/RPM/BUILD
+ cd /usr/src/RPM/BUILD
+ cd jam
+ CFLAGS='-pipe -frecord-gcc-switches -Wall -g -O2'
+ export CFLAGS
+ CXXFLAGS='-pipe -frecord-gcc-switches -Wall -g -O2'
+ export CXXFLAGS
+ FFLAGS='-pipe -frecord-gcc-switches -Wall -g -O2'
+ export FFLAGS
+ make
make: Entering directory '/usr/src/RPM/BUILD/jam'
cc -o ./jam0 -pipe -frecord-gcc-switches -Wall -g -O2 builtins.c command.c compile.c execas400.c execunix.c execvms.c expand.c filent.c fileos2.c fileunix.c filevms.c glob.c hash.c headers.c jam.c jambase.c jamgram.c lists.c make.c make1.c newstr.c option.c parse.c pathunix.c pathvms.c regexp.c rules.c scan.c search.c timestamp.c variable.c 
execunix.c: In function 'execcmd':
execunix.c:289:13: warning: implicit declaration of function 'vfork' [-Wimplicit-function-declaration]
  if ((pid = vfork()) == 0)
             ^~~~~
execunix.c:293:6: warning: implicit declaration of function 'execvp' [-Wimplicit-function-declaration]
      execvp( argv[0], (char **)argv );
      ^~~~~~
execunix.c:294:6: warning: implicit declaration of function '_exit' [-Wimplicit-function-declaration]
      _exit(127);
      ^~~~~
execunix.c:294:6: warning: incompatible implicit declaration of built-in function '_exit'
execunix.c: In function 'execwait':
execunix.c:334:15: warning: implicit declaration of function 'wait'; did you mean 'exit'? [-Wimplicit-function-declaration]
  while( ( w = wait( &status ) ) == -1 && errno == EINTR )
               ^~~~
               exit
expand.c: In function 'var_expand':
expand.c:211:7: warning: suggest parentheses around assignment used as truth value [-Wparentheses]
   if( colon = strchr( varname, MAGIC_COLON ) )
       ^~~~~
expand.c:221:7: warning: suggest parentheses around assignment used as truth value [-Wparentheses]
   if( bracket = strchr( varname, MAGIC_LEFT ) )
       ^~~~~~~
expand.c:225:11: warning: suggest parentheses around assignment used as truth value [-Wparentheses]
       if( dash = strchr( bracket + 1, '-' ) )
           ^~~~
expand.c: In function 'var_edit_parse':
expand.c:451:15: warning: suggest parentheses around assignment used as truth value [-Wparentheses]
      else if( p = strchr( mods, MAGIC_COLON ) )
               ^
fileunix.c: In function 'file_dirscan':
fileunix.c:143:9: warning: suggest parentheses around assignment used as truth value [-Wparentheses]
  while( dirent = readdir( d ) )
         ^~~~~~
fileunix.c: In function 'file_archscan':
fileunix.c:204:6: warning: implicit declaration of function 'read'; did you mean 'fread'? [-Wimplicit-function-declaration]
  if( read( fd, buf, SARMAG ) != SARMAG ||
      ^~~~
      fread
fileunix.c:207:6: warning: implicit declaration of function 'close'; did you mean 'pclose'? [-Wimplicit-function-declaration]
      close( fd );
      ^~~~~
      pclose
fileunix.c:259:3: warning: implicit declaration of function 'lseek'; did you mean 'fseek'? [-Wimplicit-function-declaration]
   lseek(fd, offset + SARHDR, 0);
   ^~~~~
   fseek
hash.c: In function 'hashstat':
hash.c:242:7: warning: suggest parentheses around assignment used as truth value [-Wparentheses]
   if( here = ( *tab++ != (ITEM *)0 ) )
       ^~~~
headers.c: In function 'headers':
headers.c:56:8: warning: unused variable 'hdrcache' [-Wunused-variable]
  LIST *hdrcache;
        ^~~~~~~~
jam.c:169:1: warning: return type defaults to 'int' [-Wimplicit-int]
 main( int argc, char **argv, char **arg_environ )
 ^~~~
jam.c: In function 'main':
jam.c:236:14: warning: suggest parentheses around assignment used as truth value [-Wparentheses]
  for( n = 0; s = getoptval( optv, 'd', n ); n++ )
              ^
jam.c:320:14: warning: suggest parentheses around assignment used as truth value [-Wparentheses]
  for( n = 0; s = getoptval( optv, 's', n ); n++ )
              ^
jam.c:334:14: warning: suggest parentheses around assignment used as truth value [-Wparentheses]
  for( n = 0; s = getoptval( optv, 'f', n ); n++ )
              ^
jam.c:344:14: warning: suggest parentheses around assignment used as truth value [-Wparentheses]
  for( n = 0; s = getoptval( optv, 't', n ); n++ )
              ^
jam.c:349:6: warning: suggest parentheses around assignment used as truth value [-Wparentheses]
  if( s = getoptval( optv, 'o', 0 ) )
      ^
jamgram.c:7:1: warning: 'yyrcsid' defined but not used [-Wunused-const-variable=]
 yyrcsid[] = "$FreeBSD: src/usr.bin/yacc/skeleton.c,v 1.37 2003/02/12 18:03:55 davidc Exp $";
 ^~~~~~~
lists.c: In function 'list_printq':
lists.c:193:13: warning: suggest parentheses around assignment used as truth value [-Wparentheses]
      while( p = (char *)memchr( op, '"',  ep - op ) )
             ^
make.c: In function 'make0':
make.c:256:41: warning: array subscript has type 'char' [-Wchar-subscripts]
    spaces( depth ), t->name, target_bind[ t->binding ] );
                                         ^
make.c:484:20: warning: array subscript has type 'char' [-Wchar-subscripts]
   flag, target_fate[ t->fate ],
                    ^
make.c:490:33: warning: array subscript has type 'char' [-Wchar-subscripts]
   printf( "%s %s\n", target_fate[ t->fate ], t->name );
                                 ^
make.c:179:15: warning: unused variable 'd' [-Wunused-variable]
  TARGETS *c, *d, *incs;
               ^
make1.c: In function 'make1d':
make1.c:392:8: warning: implicit declaration of function 'unlink'; did you mean 'unix'? [-Wimplicit-function-declaration]
   if( !unlink( targets->string ) )
        ^~~~~~
        unix
make1.c: In function 'make1cmds':
make1.c:432:15: warning: unused variable 'cmd' [-Wunused-variable]
      CMD     *cmd;
               ^~~
parse.c: In function 'parse_make':
parse.c:102:20: warning: implicit declaration of function 'yylineno'; did you mean 'yylineo'? [-Wimplicit-function-declaration]
      p->yylineno = yylineno();
                    ^~~~~~~~
                    yylineo
pathunix.c: In function 'path_parse':
pathunix.c:114:9: warning: suggest parentheses around assignment used as truth value [-Wparentheses]
  while( q = (char *)memchr( q, '.', end - q ) )
         ^
regexp.c: In function 'reg':
regexp.c:349:10: warning: 'parno' may be used uninitialized in this function [-Wmaybe-uninitialized]
  ender = regnode((paren) ? CLOSE+parno : END);
          ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
rules.c: In function 'targetchain':
rules.c:188:11: warning: unused variable 'c' [-Wunused-variable]
  TARGETS *c;
           ^
rules.c: In function 'copysettings':
rules.c:300:23: warning: unused variable 'v' [-Wunused-variable]
  SETTINGS *head = 0, *v;
                       ^
search.c: In function 'search':
search.c:37:6: warning: suggest parentheses around assignment used as truth value [-Wparentheses]
  if( varlist = var_get( "LOCATE" ) )
      ^~~~~~~
search.c:51:11: warning: suggest parentheses around assignment used as truth value [-Wparentheses]
  else if( varlist = var_get( "SEARCH" ) )
           ^~~~~~~
variable.c: In function 'var_defines':
variable.c:86:10: warning: suggest parentheses around assignment used as truth value [-Wparentheses]
      if( val = strchr( *e, '=' ) )
          ^~~
variable.c:110:22: warning: suggest parentheses around assignment used as truth value [-Wparentheses]
   for( pp = val + 1; p = strchr( pp, split ); pp = p + 1 )
                      ^
variable.c: In function 'var_string':
variable.c:197:11: warning: suggest parentheses around assignment used as truth value [-Wparentheses]
       if( l = list_next( l ) )
           ^
./jam0
...found 144 target(s)...
...updating 31 target(s)...
MkDir1 bin.linuxx86_64 
Cc bin.linuxx86_64/builtins.o 
Cc bin.linuxx86_64/command.o 
Cc bin.linuxx86_64/compile.o 
Cc bin.linuxx86_64/execunix.o 
execunix.c: In function 'execcmd':
execunix.c:289:13: warning: implicit declaration of function 'vfork' [-Wimplicit-function-declaration]
  if ((pid = vfork()) == 0)
             ^~~~~
execunix.c:293:6: warning: implicit declaration of function 'execvp' [-Wimplicit-function-declaration]
      execvp( argv[0], (char **)argv );
      ^~~~~~
execunix.c:294:6: warning: implicit declaration of function '_exit' [-Wimplicit-function-declaration]
      _exit(127);
      ^~~~~
execunix.c:294:6: warning: incompatible implicit declaration of built-in function '_exit'
execunix.c: In function 'execwait':
execunix.c:334:15: warning: implicit declaration of function 'wait'; did you mean 'exit'? [-Wimplicit-function-declaration]
  while( ( w = wait( &status ) ) == -1 && errno == EINTR )
               ^~~~
               exit
Cc bin.linuxx86_64/fileunix.o 
fileunix.c: In function 'file_archscan':
fileunix.c:204:6: warning: implicit declaration of function 'read'; did you mean 'fread'? [-Wimplicit-function-declaration]
  if( read( fd, buf, SARMAG ) != SARMAG ||
      ^~~~
      fread
fileunix.c:207:6: warning: implicit declaration of function 'close'; did you mean 'pclose'? [-Wimplicit-function-declaration]
      close( fd );
      ^~~~~
      pclose
fileunix.c:259:3: warning: implicit declaration of function 'lseek'; did you mean 'fseek'? [-Wimplicit-function-declaration]
   lseek(fd, offset + SARHDR, 0);
   ^~~~~
   fseek
Cc bin.linuxx86_64/pathunix.o 
Cc bin.linuxx86_64/jamgram.o 
Cc bin.linuxx86_64/expand.o 
Cc bin.linuxx86_64/glob.o 
Cc bin.linuxx86_64/hash.o 
Cc bin.linuxx86_64/headers.o 
Cc bin.linuxx86_64/lists.o 
Cc bin.linuxx86_64/make.o 
Cc bin.linuxx86_64/make1.o 
make1.c: In function 'make1d':
make1.c:392:8: warning: implicit declaration of function 'unlink'; did you mean 'unix'? [-Wimplicit-function-declaration]
   if( !unlink( targets->string ) )
        ^~~~~~
        unix
Cc bin.linuxx86_64/newstr.o 
Cc bin.linuxx86_64/option.o 
Cc bin.linuxx86_64/parse.o 
parse.c: In function 'parse_make':
parse.c:102:20: warning: implicit declaration of function 'yylineno'; did you mean 'yylineo'? [-Wimplicit-function-declaration]
      p->yylineno = yylineno();
                    ^~~~~~~~
                    yylineo
Cc bin.linuxx86_64/regexp.o 
Cc bin.linuxx86_64/rules.o 
Cc bin.linuxx86_64/scan.o 
Cc bin.linuxx86_64/search.o 
Cc bin.linuxx86_64/timestamp.o 
Cc bin.linuxx86_64/variable.o 
Archive bin.linuxx86_64/libjam.a 
ar: creating bin.linuxx86_64/libjam.a
Ranlib bin.linuxx86_64/libjam.a 
Cc bin.linuxx86_64/mkjambase.o 
mkjambase.c:27:1: warning: return type defaults to 'int' [-Wimplicit-int]
 main( int argc, char **argv, char **envp )
 ^~~~
Link bin.linuxx86_64/mkjambase 
Chmod1 bin.linuxx86_64/mkjambase 
Cc bin.linuxx86_64/jam.o 
jam.c:169:1: warning: return type defaults to 'int' [-Wimplicit-int]
 main( int argc, char **argv, char **arg_environ )
 ^~~~
GenFile1 jambase.c 
Cc bin.linuxx86_64/jambase.o 
Link bin.linuxx86_64/jam 
Chmod1 bin.linuxx86_64/jam 
...updated 31 target(s)...
make: Leaving directory '/usr/src/RPM/BUILD/jam'
+ exit 0
Executing(%install): /bin/sh -e /usr/src/tmp/rpm-tmp.46378
+ umask 022
+ /bin/mkdir -p /usr/src/RPM/BUILD
+ cd /usr/src/RPM/BUILD
+ /bin/chmod -Rf u+rwX -- /usr/src/tmp/jam-buildroot
+ :
+ /bin/rm -rf -- /usr/src/tmp/jam-buildroot
+ PATH=/usr/libexec/rpm-build:/usr/src/bin:/bin:/usr/bin:/usr/X11R6/bin:/usr/games
+ cd jam
+ mkdir -p /usr/src/tmp/jam-buildroot/usr/bin
+ ./jam0 -sBINDIR=/usr/src/tmp/jam-buildroot/usr/bin -sCCFLAGS=-g -sOPTIM=-O2 install
...found 146 target(s)...
...updating 1 target(s)...
Install /usr/src/tmp/jam-buildroot/usr/bin/jam 
Chmod1 /usr/src/tmp/jam-buildroot/usr/bin/jam 
...updated 1 target(s)...
+ /usr/lib/rpm/brp-alt
Cleaning files in /usr/src/tmp/jam-buildroot (auto)
Verifying and fixing files in /usr/src/tmp/jam-buildroot (binconfig,pkgconfig,libtool,desktop,gnuconfig)
Checking contents of files in /usr/src/tmp/jam-buildroot/ (default)
Compressing files in /usr/src/tmp/jam-buildroot (auto)
056-debuginfo.brp: WARNING: debuginfo without debug sources.
Verifying ELF objects in /usr/src/tmp/jam-buildroot (arch=normal,fhs=normal,lfs=relaxed,lint=relaxed,rpath=normal,stack=normal,textrel=normal,unresolved=normal)
Hardlinking identical .pyc and .pyo files
Processing files: jam-2.6-alt1
Executing(%doc): /bin/sh -e /usr/src/tmp/rpm-tmp.60246
+ umask 022
+ /bin/mkdir -p /usr/src/RPM/BUILD
+ cd /usr/src/RPM/BUILD
+ cd jam
+ DOCDIR=/usr/src/tmp/jam-buildroot/usr/share/doc/jam-2.6
+ export DOCDIR
+ rm -rf /usr/src/tmp/jam-buildroot/usr/share/doc/jam-2.6
+ /bin/mkdir -p /usr/src/tmp/jam-buildroot/usr/share/doc/jam-2.6
+ cp -prL README RELNOTES Porting Jam.html Jambase.html Jamfile.html /usr/src/tmp/jam-buildroot/usr/share/doc/jam-2.6
+ chmod -R go-w /usr/src/tmp/jam-buildroot/usr/share/doc/jam-2.6
+ chmod -R a+rX /usr/src/tmp/jam-buildroot/usr/share/doc/jam-2.6
+ exit 0
Finding Provides (using /usr/lib/rpm/find-provides)
Executing: /bin/sh -e /usr/src/tmp/rpm-tmp.IymnHc
find-provides: running scripts (debuginfo,lib,pam,perl,pkgconfig,python,shell)
Finding Requires (using /usr/lib/rpm/find-requires)
Executing: /bin/sh -e /usr/src/tmp/rpm-tmp.4F47CA
find-requires: running scripts (cpp,debuginfo,files,lib,pam,perl,pkgconfig,pkgconfiglib,python,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)(64bit), libc.so.6(GLIBC_2.4)(64bit), libc.so.6(GLIBC_2.7)(64bit), rtld(GNU_HASH)
Conflicts: boost-jam
Finding debuginfo files (using /usr/lib/rpm/find-debuginfo-files)
Executing: /bin/sh -e /usr/src/tmp/rpm-tmp.669hi2
Creating jam-debuginfo package
Processing files: jam-debuginfo-2.6-alt1
Finding Provides (using /usr/lib/rpm/find-provides)
Executing: /bin/sh -e /usr/src/tmp/rpm-tmp.CvkMhx
find-provides: running scripts (debuginfo)
Finding Requires (using /usr/lib/rpm/find-requires)
Executing: /bin/sh -e /usr/src/tmp/rpm-tmp.AkjJQ5
find-requires: running scripts (debuginfo)
Requires: jam = 2.6-alt1, /usr/lib/debug/lib64/ld-linux-x86-64.so.2.debug, debug64(libc.so.6)
Wrote: /usr/src/RPM/RPMS/x86_64/jam-2.6-alt1.x86_64.rpm (w2.lzdio)
Wrote: /usr/src/RPM/RPMS/x86_64/jam-debuginfo-2.6-alt1.x86_64.rpm (w2.lzdio)
5.46user 0.92system 0:15.90elapsed 40%CPU (0avgtext+0avgdata 33364maxresident)k
0inputs+0outputs (0major+406481minor)pagefaults 0swaps
10.37user 2.96system 0:27.63elapsed 48%CPU (0avgtext+0avgdata 118228maxresident)k
8inputs+0outputs (0major+712234minor)pagefaults 0swaps
--- jam-2.6-alt1.x86_64.rpm.repo	2014-09-08 06:31:19.000000000 +0000
+++ jam-2.6-alt1.x86_64.rpm.hasher	2021-08-15 08:09:15.227840152 +0000
@@ -18,3 +18,3 @@
 Conflicts: boost-jam  
-File: /usr/bin/jam	100711	root:root	5ba10756fb3cf9a4f5adac695c135f00	
+File: /usr/bin/jam	100711	root:root	91f7757c552167352019c26fc5c92600	
 File: /usr/share/doc/jam-2.6	40755	root:root		
@@ -26,2 +26,2 @@
 File: /usr/share/doc/jam-2.6/RELNOTES	100644	root:root	9021579eef0859c6ac543ce4a6925d80	
-RPMIdentity: 627c76dec9ad36eead7743dae7f79459dbefbe9c8b5a4c61f8dcf06dc26ea032824cce01fc062946fc566bd40d7de352ef42b6c999d995f554d7e696f6633253
+RPMIdentity: 66c89d7e8f7aaa487af5502290bfd41af7f30f7b03e98d40a9623855e473a500ea85a15c57b23d3067bec37d585c4dc9283d4e18928c15fb8bfcce6a337c8a40
--- jam-debuginfo-2.6-alt1.x86_64.rpm.repo	2014-09-08 06:31:19.000000000 +0000
+++ jam-debuginfo-2.6-alt1.x86_64.rpm.hasher	2021-08-15 08:09:15.427842126 +0000
@@ -1,4 +1,4 @@
-/usr/lib/debug/.build-id/3c	40755	root:root	
-/usr/lib/debug/.build-id/3c/e06f91695ca2e0fed9cfa4f54c5dba8b8e27af	120777	root:root	../../../../bin/jam
-/usr/lib/debug/.build-id/3c/e06f91695ca2e0fed9cfa4f54c5dba8b8e27af.debug	120777	root:root	../../usr/bin/jam.debug
+/usr/lib/debug/.build-id/f1	40755	root:root	
+/usr/lib/debug/.build-id/f1/0c31fd7d3fa53d9fe44658c95ae289c21e9095	120777	root:root	../../../../bin/jam
+/usr/lib/debug/.build-id/f1/0c31fd7d3fa53d9fe44658c95ae289c21e9095.debug	120777	root:root	../../usr/bin/jam.debug
 /usr/lib/debug/usr/bin/jam.debug	100644	root:root	
@@ -9,6 +9,6 @@
 Provides: jam-debuginfo = 2.6-alt1
-File: /usr/lib/debug/.build-id/3c	40755	root:root		
-File: /usr/lib/debug/.build-id/3c/e06f91695ca2e0fed9cfa4f54c5dba8b8e27af	120777	root:root		../../../../bin/jam
-File: /usr/lib/debug/.build-id/3c/e06f91695ca2e0fed9cfa4f54c5dba8b8e27af.debug	120777	root:root		../../usr/bin/jam.debug
-File: /usr/lib/debug/usr/bin/jam.debug	100644	root:root	5f378009cc92fee9b0840990f988177e	
-RPMIdentity: 8c12195daeb7be1e8f6a49be05fd7f2babf8f166e5c9e1d3f44168e56b68aeeae5e00e57784302ef9571f7dc457d606ec0118cf186e32e0a6a5503b2eca1ea95
+File: /usr/lib/debug/.build-id/f1	40755	root:root		
+File: /usr/lib/debug/.build-id/f1/0c31fd7d3fa53d9fe44658c95ae289c21e9095	120777	root:root		../../../../bin/jam
+File: /usr/lib/debug/.build-id/f1/0c31fd7d3fa53d9fe44658c95ae289c21e9095.debug	120777	root:root		../../usr/bin/jam.debug
+File: /usr/lib/debug/usr/bin/jam.debug	100644	root:root	41855f06be5d6db5998e530047bae27f	
+RPMIdentity: e28470f8f1966ceabad69fdc9268f300730cdf5678ce276e63f2c9cee751a6617211484cad3322c254326561d969f95da6efbe2686680845d33347ab669a1d32