<86>Jun 30 11:07:17 userdel[3560729]: delete user 'rooter'
<86>Jun 30 11:07:17 userdel[3560729]: removed group 'rooter' owned by 'rooter'
<86>Jun 30 11:07:17 userdel[3560729]: removed shadow group 'rooter' owned by 'rooter'
<86>Jun 30 11:07:17 groupadd[3560742]: group added to /etc/group: name=rooter, GID=1250
<86>Jun 30 11:07:17 groupadd[3560742]: group added to /etc/gshadow: name=rooter
<86>Jun 30 11:07:17 groupadd[3560742]: new group: name=rooter, GID=1250
<86>Jun 30 11:07:17 useradd[3560751]: new user: name=rooter, UID=1250, GID=1250, home=/root, shell=/bin/bash
<86>Jun 30 11:07:17 userdel[3560767]: delete user 'builder'
<86>Jun 30 11:07:17 userdel[3560767]: removed group 'builder' owned by 'builder'
<86>Jun 30 11:07:17 userdel[3560767]: removed shadow group 'builder' owned by 'builder'
<86>Jun 30 11:07:17 groupadd[3560785]: group added to /etc/group: name=builder, GID=1251
<86>Jun 30 11:07:17 groupadd[3560785]: group added to /etc/gshadow: name=builder
<86>Jun 30 11:07:17 groupadd[3560785]: new group: name=builder, GID=1251
<86>Jun 30 11:07:17 useradd[3560797]: new user: name=builder, UID=1251, GID=1251, home=/usr/src, shell=/bin/bash
Building target platforms: x86_64
Building for target x86_64
Wrote: /usr/src/in/nosrpm/libdict-0.3.0-alt1.git20140826.nosrc.rpm (w1.gzdio)
Installing libdict-0.3.0-alt1.git20140826.src.rpm
Building target platforms: x86_64
Building for target x86_64
Executing(%prep): /bin/sh -e /usr/src/tmp/rpm-tmp.65597
+ umask 022
+ /bin/mkdir -p /usr/src/RPM/BUILD
+ cd /usr/src/RPM/BUILD
+ cd /usr/src/RPM/BUILD
+ rm -rf libdict-0.3.0
+ echo 'Source #0 (libdict-0.3.0.tar):'
Source #0 (libdict-0.3.0.tar):
+ /bin/tar -xf /usr/src/RPM/SOURCES/libdict-0.3.0.tar
+ cd libdict-0.3.0
+ /bin/chmod -c -Rf u+rwX,go-w .
+ exit 0
Executing(%build): /bin/sh -e /usr/src/tmp/rpm-tmp.65597
+ umask 022
+ /bin/mkdir -p /usr/src/RPM/BUILD
+ cd /usr/src/RPM/BUILD
+ cd libdict-0.3.0
+ make -j8
make: Entering directory '/usr/src/RPM/BUILD/libdict-0.3.0'
which: no clang in (/usr/src/bin:/bin:/usr/bin:/usr/X11R6/bin:/usr/games)
make: Leaving directory '/usr/src/RPM/BUILD/libdict-0.3.0'
make: Entering directory '/usr/src/RPM/BUILD/libdict-0.3.0'
[ -d bin ] || mkdir -m 755 bin
make: Leaving directory '/usr/src/RPM/BUILD/libdict-0.3.0'
make: Entering directory '/usr/src/RPM/BUILD/libdict-0.3.0'
/usr/bin/gcc -Wall -Wextra -Wshadow -W -std=c99 -O3 -pipe -Iinclude -Isrc -I/usr/src/homebrew/include -c -o bin/dict.o src/dict.c
make: Leaving directory '/usr/src/RPM/BUILD/libdict-0.3.0'
make: Entering directory '/usr/src/RPM/BUILD/libdict-0.3.0'
/usr/bin/gcc -Wall -Wextra -Wshadow -W -std=c99 -O3 -pipe -Iinclude -Isrc -I/usr/src/homebrew/include -c -o bin/tr_tree.o src/tr_tree.c
src/tr_tree.c: In function 'tr_tree_insert':
src/tr_tree.c:189:59: warning: operand of ?: changes signedness from 'int' to 'unsigned int' due to unsignedness of other operand [-Wsign-compare]
     node->prio = tree->prio_func ? tree->prio_func(key) : dict_rand();
                                                           ^~~~~~~~~~~
make: Leaving directory '/usr/src/RPM/BUILD/libdict-0.3.0'
make: Entering directory '/usr/src/RPM/BUILD/libdict-0.3.0'
/usr/bin/gcc -Wall -Wextra -Wshadow -W -std=c99 -O3 -pipe -Iinclude -Isrc -I/usr/src/homebrew/include -c -o bin/skiplist.o src/skiplist.c
make: Leaving directory '/usr/src/RPM/BUILD/libdict-0.3.0'
make: Entering directory '/usr/src/RPM/BUILD/libdict-0.3.0'
/usr/bin/gcc -Wall -Wextra -Wshadow -W -std=c99 -O3 -pipe -Iinclude -Isrc -I/usr/src/homebrew/include -c -o bin/tree_common.o src/tree_common.c
src/tree_common.c: In function 'tree_search_node':
src/tree_common.c:152:11: warning: declaration of 'tree' shadows a global declaration [-Wshadow]
     tree* tree = Tree;
           ^~~~
src/tree_common.c:39:3: note: shadowed declaration is here
 } tree;
   ^~~~
src/tree_common.c: In function 'tree_search_le_node':
src/tree_common.c:176:11: warning: declaration of 'tree' shadows a global declaration [-Wshadow]
     tree* tree = Tree;
           ^~~~
src/tree_common.c:39:3: note: shadowed declaration is here
 } tree;
   ^~~~
src/tree_common.c: In function 'tree_search_lt_node':
src/tree_common.c:204:11: warning: declaration of 'tree' shadows a global declaration [-Wshadow]
     tree* tree = Tree;
           ^~~~
src/tree_common.c:39:3: note: shadowed declaration is here
 } tree;
   ^~~~
src/tree_common.c: In function 'tree_search_ge_node':
src/tree_common.c:230:11: warning: declaration of 'tree' shadows a global declaration [-Wshadow]
     tree* tree = Tree;
           ^~~~
src/tree_common.c:39:3: note: shadowed declaration is here
 } tree;
   ^~~~
src/tree_common.c: In function 'tree_search_gt_node':
src/tree_common.c:259:11: warning: declaration of 'tree' shadows a global declaration [-Wshadow]
     tree* tree = Tree;
           ^~~~
src/tree_common.c:39:3: note: shadowed declaration is here
 } tree;
   ^~~~
src/tree_common.c: In function 'tree_min':
src/tree_common.c:287:17: warning: declaration of 'tree' shadows a global declaration [-Wshadow]
     const tree* tree = Tree;
                 ^~~~
src/tree_common.c:39:3: note: shadowed declaration is here
 } tree;
   ^~~~
src/tree_common.c: In function 'tree_max':
src/tree_common.c:301:17: warning: declaration of 'tree' shadows a global declaration [-Wshadow]
     const tree* tree = Tree;
                 ^~~~
src/tree_common.c:39:3: note: shadowed declaration is here
 } tree;
   ^~~~
src/tree_common.c: In function 'tree_traverse':
src/tree_common.c:316:11: warning: declaration of 'tree' shadows a global declaration [-Wshadow]
     tree* tree = Tree;
           ^~~~
src/tree_common.c:39:3: note: shadowed declaration is here
 } tree;
   ^~~~
src/tree_common.c: In function 'tree_node_free':
src/tree_common.c:331:22: warning: declaration of 'tree' shadows a global declaration [-Wshadow]
 tree_node_free(tree* tree, tree_node* node)
                ~~~~~~^~~~
src/tree_common.c:39:3: note: shadowed declaration is here
 } tree;
   ^~~~
src/tree_common.c: In function 'tree_clear':
src/tree_common.c:358:11: warning: declaration of 'tree' shadows a global declaration [-Wshadow]
     tree* tree = Tree;
           ^~~~
src/tree_common.c:39:3: note: shadowed declaration is here
 } tree;
   ^~~~
src/tree_common.c: In function 'tree_clone':
src/tree_common.c:397:18: warning: declaration of 'tree' shadows a global declaration [-Wshadow]
 tree_clone(void* tree, size_t tree_size, size_t node_size,
            ~~~~~~^~~~
src/tree_common.c:39:3: note: shadowed declaration is here
 } tree;
   ^~~~
src/tree_common.c: In function 'tree_min_leaf_depth':
src/tree_common.c:432:17: warning: declaration of 'tree' shadows a global declaration [-Wshadow]
     const tree* tree = Tree;
                 ^~~~
src/tree_common.c:39:3: note: shadowed declaration is here
 } tree;
   ^~~~
src/tree_common.c: In function 'tree_max_leaf_depth':
src/tree_common.c:457:17: warning: declaration of 'tree' shadows a global declaration [-Wshadow]
     const tree* tree = Tree;
                 ^~~~
src/tree_common.c:39:3: note: shadowed declaration is here
 } tree;
   ^~~~
make: Leaving directory '/usr/src/RPM/BUILD/libdict-0.3.0'
make: Entering directory '/usr/src/RPM/BUILD/libdict-0.3.0'
/usr/bin/gcc -Wall -Wextra -Wshadow -W -std=c99 -O3 -pipe -Iinclude -Isrc -I/usr/src/homebrew/include -c -o bin/wb_tree.o src/wb_tree.c
make: Leaving directory '/usr/src/RPM/BUILD/libdict-0.3.0'
make: Entering directory '/usr/src/RPM/BUILD/libdict-0.3.0'
/usr/bin/gcc -Wall -Wextra -Wshadow -W -std=c99 -O3 -pipe -Iinclude -Isrc -I/usr/src/homebrew/include -c -o bin/pr_tree.o src/pr_tree.c
make: Leaving directory '/usr/src/RPM/BUILD/libdict-0.3.0'
make: Entering directory '/usr/src/RPM/BUILD/libdict-0.3.0'
/usr/bin/gcc -Wall -Wextra -Wshadow -W -std=c99 -O3 -pipe -Iinclude -Isrc -I/usr/src/homebrew/include -c -o bin/hashtable_common.o src/hashtable_common.c
make: Leaving directory '/usr/src/RPM/BUILD/libdict-0.3.0'
make: Entering directory '/usr/src/RPM/BUILD/libdict-0.3.0'
/usr/bin/gcc -Wall -Wextra -Wshadow -W -std=c99 -O3 -pipe -Iinclude -Isrc -I/usr/src/homebrew/include -c -o bin/sp_tree.o src/sp_tree.c
make: Leaving directory '/usr/src/RPM/BUILD/libdict-0.3.0'
make: Entering directory '/usr/src/RPM/BUILD/libdict-0.3.0'
/usr/bin/gcc -Wall -Wextra -Wshadow -W -std=c99 -O3 -pipe -Iinclude -Isrc -I/usr/src/homebrew/include -c -o bin/hashtable2.o src/hashtable2.c
make: Leaving directory '/usr/src/RPM/BUILD/libdict-0.3.0'
make: Entering directory '/usr/src/RPM/BUILD/libdict-0.3.0'
/usr/bin/gcc -Wall -Wextra -Wshadow -W -std=c99 -O3 -pipe -Iinclude -Isrc -I/usr/src/homebrew/include -fPIC -DPIC -c -o bin/dict.So src/dict.c
make: Leaving directory '/usr/src/RPM/BUILD/libdict-0.3.0'
make: Entering directory '/usr/src/RPM/BUILD/libdict-0.3.0'
/usr/bin/gcc -Wall -Wextra -Wshadow -W -std=c99 -O3 -pipe -Iinclude -Isrc -I/usr/src/homebrew/include -c -o bin/hashtable.o src/hashtable.c
make: Leaving directory '/usr/src/RPM/BUILD/libdict-0.3.0'
make: Entering directory '/usr/src/RPM/BUILD/libdict-0.3.0'
/usr/bin/gcc -Wall -Wextra -Wshadow -W -std=c99 -O3 -pipe -Iinclude -Isrc -I/usr/src/homebrew/include -fPIC -DPIC -c -o bin/tree_common.So src/tree_common.c
src/tree_common.c: In function 'tree_search_node':
src/tree_common.c:152:11: warning: declaration of 'tree' shadows a global declaration [-Wshadow]
     tree* tree = Tree;
           ^~~~
src/tree_common.c:39:3: note: shadowed declaration is here
 } tree;
   ^~~~
src/tree_common.c: In function 'tree_search_le_node':
src/tree_common.c:176:11: warning: declaration of 'tree' shadows a global declaration [-Wshadow]
     tree* tree = Tree;
           ^~~~
src/tree_common.c:39:3: note: shadowed declaration is here
 } tree;
   ^~~~
src/tree_common.c: In function 'tree_search_lt_node':
src/tree_common.c:204:11: warning: declaration of 'tree' shadows a global declaration [-Wshadow]
     tree* tree = Tree;
           ^~~~
src/tree_common.c:39:3: note: shadowed declaration is here
 } tree;
   ^~~~
src/tree_common.c: In function 'tree_search_ge_node':
src/tree_common.c:230:11: warning: declaration of 'tree' shadows a global declaration [-Wshadow]
     tree* tree = Tree;
           ^~~~
src/tree_common.c:39:3: note: shadowed declaration is here
 } tree;
   ^~~~
src/tree_common.c: In function 'tree_search_gt_node':
src/tree_common.c:259:11: warning: declaration of 'tree' shadows a global declaration [-Wshadow]
     tree* tree = Tree;
           ^~~~
src/tree_common.c:39:3: note: shadowed declaration is here
 } tree;
   ^~~~
src/tree_common.c: In function 'tree_min':
src/tree_common.c:287:17: warning: declaration of 'tree' shadows a global declaration [-Wshadow]
     const tree* tree = Tree;
                 ^~~~
src/tree_common.c:39:3: note: shadowed declaration is here
 } tree;
   ^~~~
src/tree_common.c: In function 'tree_max':
src/tree_common.c:301:17: warning: declaration of 'tree' shadows a global declaration [-Wshadow]
     const tree* tree = Tree;
                 ^~~~
src/tree_common.c:39:3: note: shadowed declaration is here
 } tree;
   ^~~~
src/tree_common.c: In function 'tree_traverse':
src/tree_common.c:316:11: warning: declaration of 'tree' shadows a global declaration [-Wshadow]
     tree* tree = Tree;
           ^~~~
src/tree_common.c:39:3: note: shadowed declaration is here
 } tree;
   ^~~~
src/tree_common.c: In function 'tree_node_free':
src/tree_common.c:331:22: warning: declaration of 'tree' shadows a global declaration [-Wshadow]
 tree_node_free(tree* tree, tree_node* node)
                ~~~~~~^~~~
src/tree_common.c:39:3: note: shadowed declaration is here
 } tree;
   ^~~~
src/tree_common.c: In function 'tree_clear':
src/tree_common.c:358:11: warning: declaration of 'tree' shadows a global declaration [-Wshadow]
     tree* tree = Tree;
           ^~~~
src/tree_common.c:39:3: note: shadowed declaration is here
 } tree;
   ^~~~
src/tree_common.c: In function 'tree_clone':
src/tree_common.c:397:18: warning: declaration of 'tree' shadows a global declaration [-Wshadow]
 tree_clone(void* tree, size_t tree_size, size_t node_size,
            ~~~~~~^~~~
src/tree_common.c:39:3: note: shadowed declaration is here
 } tree;
   ^~~~
src/tree_common.c: In function 'tree_min_leaf_depth':
src/tree_common.c:432:17: warning: declaration of 'tree' shadows a global declaration [-Wshadow]
     const tree* tree = Tree;
                 ^~~~
src/tree_common.c:39:3: note: shadowed declaration is here
 } tree;
   ^~~~
src/tree_common.c: In function 'tree_max_leaf_depth':
src/tree_common.c:457:17: warning: declaration of 'tree' shadows a global declaration [-Wshadow]
     const tree* tree = Tree;
                 ^~~~
src/tree_common.c:39:3: note: shadowed declaration is here
 } tree;
   ^~~~
make: Leaving directory '/usr/src/RPM/BUILD/libdict-0.3.0'
make: Entering directory '/usr/src/RPM/BUILD/libdict-0.3.0'
/usr/bin/gcc -Wall -Wextra -Wshadow -W -std=c99 -O3 -pipe -Iinclude -Isrc -I/usr/src/homebrew/include -c -o bin/hb_tree.o src/hb_tree.c
make: Leaving directory '/usr/src/RPM/BUILD/libdict-0.3.0'
make: Entering directory '/usr/src/RPM/BUILD/libdict-0.3.0'
/usr/bin/gcc -Wall -Wextra -Wshadow -W -std=c99 -O3 -pipe -Iinclude -Isrc -I/usr/src/homebrew/include -fPIC -DPIC -c -o bin/wb_tree.So src/wb_tree.c
make: Leaving directory '/usr/src/RPM/BUILD/libdict-0.3.0'
make: Entering directory '/usr/src/RPM/BUILD/libdict-0.3.0'
/usr/bin/gcc -Wall -Wextra -Wshadow -W -std=c99 -O3 -pipe -Iinclude -Isrc -I/usr/src/homebrew/include -fPIC -DPIC -c -o bin/tr_tree.So src/tr_tree.c
src/tr_tree.c: In function 'tr_tree_insert':
src/tr_tree.c:189:59: warning: operand of ?: changes signedness from 'int' to 'unsigned int' due to unsignedness of other operand [-Wsign-compare]
     node->prio = tree->prio_func ? tree->prio_func(key) : dict_rand();
                                                           ^~~~~~~~~~~
make: Leaving directory '/usr/src/RPM/BUILD/libdict-0.3.0'
make: Entering directory '/usr/src/RPM/BUILD/libdict-0.3.0'
/usr/bin/gcc -Wall -Wextra -Wshadow -W -std=c99 -O3 -pipe -Iinclude -Isrc -I/usr/src/homebrew/include -c -o bin/rb_tree.o src/rb_tree.c
make: Leaving directory '/usr/src/RPM/BUILD/libdict-0.3.0'
make: Entering directory '/usr/src/RPM/BUILD/libdict-0.3.0'
/usr/bin/gcc -Wall -Wextra -Wshadow -W -std=c99 -O3 -pipe -Iinclude -Isrc -I/usr/src/homebrew/include -fPIC -DPIC -c -o bin/hashtable_common.So src/hashtable_common.c
make: Leaving directory '/usr/src/RPM/BUILD/libdict-0.3.0'
make: Entering directory '/usr/src/RPM/BUILD/libdict-0.3.0'
cp vg bin/vg
make: Leaving directory '/usr/src/RPM/BUILD/libdict-0.3.0'
make: Entering directory '/usr/src/RPM/BUILD/libdict-0.3.0'
ar cru bin/libdict.a bin/tree_common.o bin/sp_tree.o bin/wb_tree.o bin/dict.o bin/tr_tree.o bin/rb_tree.o bin/skiplist.o bin/pr_tree.o bin/hashtable2.o bin/hashtable.o bin/hb_tree.o bin/hashtable_common.o
make: Leaving directory '/usr/src/RPM/BUILD/libdict-0.3.0'
make: Entering directory '/usr/src/RPM/BUILD/libdict-0.3.0'
/usr/bin/gcc -Wall -Wextra -Wshadow -W -std=c99 -O3 -pipe -Iinclude -Isrc -I/usr/src/homebrew/include -fPIC -DPIC -c -o bin/sp_tree.So src/sp_tree.c
make: Leaving directory '/usr/src/RPM/BUILD/libdict-0.3.0'
make: Entering directory '/usr/src/RPM/BUILD/libdict-0.3.0'
/usr/bin/gcc -Wall -Wextra -Wshadow -W -std=c99 -O3 -pipe -Iinclude -Isrc -I/usr/src/homebrew/include -fPIC -DPIC -c -o bin/skiplist.So src/skiplist.c
make: Leaving directory '/usr/src/RPM/BUILD/libdict-0.3.0'
make: Entering directory '/usr/src/RPM/BUILD/libdict-0.3.0'
/usr/bin/gcc -Wall -Wextra -Wshadow -W -std=c99 -O3 -pipe -Iinclude -Isrc -I/usr/src/homebrew/include -fPIC -DPIC -c -o bin/pr_tree.So src/pr_tree.c
make: Leaving directory '/usr/src/RPM/BUILD/libdict-0.3.0'
make: Entering directory '/usr/src/RPM/BUILD/libdict-0.3.0'
/usr/bin/gcc -Wall -Wextra -Wshadow -W -std=c99 -O3 -pipe -Iinclude -Isrc -I/usr/src/homebrew/include -fPIC -DPIC -c -o bin/hashtable2.So src/hashtable2.c
make: Leaving directory '/usr/src/RPM/BUILD/libdict-0.3.0'
make: Entering directory '/usr/src/RPM/BUILD/libdict-0.3.0'
/usr/bin/gcc -Wall -Wextra -Wshadow -W -std=c99 -O3 -pipe -Iinclude -Isrc -I/usr/src/homebrew/include -o bin/anagram anagram.c bin/libdict.a 
make: Leaving directory '/usr/src/RPM/BUILD/libdict-0.3.0'
make: Entering directory '/usr/src/RPM/BUILD/libdict-0.3.0'
/usr/bin/gcc -Wall -Wextra -Wshadow -W -std=c99 -O3 -pipe -Iinclude -Isrc -I/usr/src/homebrew/include -fPIC -DPIC -c -o bin/hashtable.So src/hashtable.c
make: Leaving directory '/usr/src/RPM/BUILD/libdict-0.3.0'
make: Entering directory '/usr/src/RPM/BUILD/libdict-0.3.0'
/usr/bin/gcc -Wall -Wextra -Wshadow -W -std=c99 -O3 -pipe -Iinclude -Isrc -I/usr/src/homebrew/include -fPIC -DPIC -c -o bin/hb_tree.So src/hb_tree.c
make: Leaving directory '/usr/src/RPM/BUILD/libdict-0.3.0'
make: Entering directory '/usr/src/RPM/BUILD/libdict-0.3.0'
/usr/bin/gcc -Wall -Wextra -Wshadow -W -std=c99 -O3 -pipe -Iinclude -Isrc -I/usr/src/homebrew/include -o bin/demo demo.c bin/libdict.a 
demo.c: In function 'main':
demo.c:116:28: warning: format '%s' expects argument of type 'char *', but argument 3 has type 'void *' [-Wformat=]
   printf("inserted '%s': '%s'\n",
                           ~^
                           %p
          ptr, *datum_location);
               ~~~~~~~~~~~~~~~
demo.c:119:35: warning: format '%s' expects argument of type 'char *', but argument 3 has type 'void *' [-Wformat=]
   printf("'%s' already in dict: '%s'\n",
                                  ~^
                                  %p
          ptr, *datum_location);
               ~~~~~~~~~~~~~~~      
make: Leaving directory '/usr/src/RPM/BUILD/libdict-0.3.0'
make: Entering directory '/usr/src/RPM/BUILD/libdict-0.3.0'
/usr/bin/gcc -Wall -Wextra -Wshadow -W -std=c99 -O3 -pipe -Iinclude -Isrc -I/usr/src/homebrew/include -o bin/benchmark benchmark.c bin/libdict.a 
make: Leaving directory '/usr/src/RPM/BUILD/libdict-0.3.0'
make: Entering directory '/usr/src/RPM/BUILD/libdict-0.3.0'
/usr/bin/gcc -Wall -Wextra -Wshadow -W -std=c99 -O3 -pipe -Iinclude -Isrc -I/usr/src/homebrew/include -fPIC -DPIC -c -o bin/rb_tree.So src/rb_tree.c
make: Leaving directory '/usr/src/RPM/BUILD/libdict-0.3.0'
make: Entering directory '/usr/src/RPM/BUILD/libdict-0.3.0'
/usr/bin/gcc -shared -o bin/libdict.so bin/tree_common.So bin/sp_tree.So bin/wb_tree.So bin/dict.So bin/tr_tree.So bin/rb_tree.So bin/skiplist.So bin/pr_tree.So bin/hashtable2.So bin/hashtable.So bin/hb_tree.So bin/hashtable_common.So
make: Leaving directory '/usr/src/RPM/BUILD/libdict-0.3.0'
+ exit 0
Executing(%install): /bin/sh -e /usr/src/tmp/rpm-tmp.32038
+ umask 022
+ /bin/mkdir -p /usr/src/RPM/BUILD
+ cd /usr/src/RPM/BUILD
+ /bin/chmod -Rf u+rwX -- /usr/src/tmp/libdict-buildroot
+ :
+ /bin/rm -rf -- /usr/src/tmp/libdict-buildroot
+ PATH=/usr/libexec/rpm-build:/usr/src/bin:/bin:/usr/bin:/usr/X11R6/bin:/usr/games
+ cd libdict-0.3.0
+ LIB_SUFFIX=64
+ make 'INSTALL=/usr/libexec/rpm-build/install -p' install DESTDIR=/usr/src/tmp/libdict-buildroot INSTALL_PREFIX=/usr/src/tmp/libdict-buildroot/usr LIB_SUFFIX=64
make: Entering directory '/usr/src/RPM/BUILD/libdict-0.3.0'
which: no clang in (/usr/libexec/rpm-build:/usr/src/bin:/bin:/usr/bin:/usr/X11R6/bin:/usr/games)
make: Leaving directory '/usr/src/RPM/BUILD/libdict-0.3.0'
make: Entering directory '/usr/src/RPM/BUILD/libdict-0.3.0'
ar cru bin/libdict.a bin/tree_common.o bin/sp_tree.o bin/wb_tree.o bin/dict.o bin/tr_tree.o bin/rb_tree.o bin/skiplist.o bin/pr_tree.o bin/hashtable2.o bin/hashtable.o bin/hb_tree.o bin/hashtable_common.o
/usr/bin/gcc -Wall -Wextra -Wshadow -W -std=c99 -O3 -pipe -Iinclude -Isrc -I/usr/src/homebrew/include -pg -c -o bin/tree_common.po src/tree_common.c
src/tree_common.c: In function 'tree_search_node':
src/tree_common.c:152:11: warning: declaration of 'tree' shadows a global declaration [-Wshadow]
     tree* tree = Tree;
           ^~~~
src/tree_common.c:39:3: note: shadowed declaration is here
 } tree;
   ^~~~
src/tree_common.c: In function 'tree_search_le_node':
src/tree_common.c:176:11: warning: declaration of 'tree' shadows a global declaration [-Wshadow]
     tree* tree = Tree;
           ^~~~
src/tree_common.c:39:3: note: shadowed declaration is here
 } tree;
   ^~~~
src/tree_common.c: In function 'tree_search_lt_node':
src/tree_common.c:204:11: warning: declaration of 'tree' shadows a global declaration [-Wshadow]
     tree* tree = Tree;
           ^~~~
src/tree_common.c:39:3: note: shadowed declaration is here
 } tree;
   ^~~~
src/tree_common.c: In function 'tree_search_ge_node':
src/tree_common.c:230:11: warning: declaration of 'tree' shadows a global declaration [-Wshadow]
     tree* tree = Tree;
           ^~~~
src/tree_common.c:39:3: note: shadowed declaration is here
 } tree;
   ^~~~
src/tree_common.c: In function 'tree_search_gt_node':
src/tree_common.c:259:11: warning: declaration of 'tree' shadows a global declaration [-Wshadow]
     tree* tree = Tree;
           ^~~~
src/tree_common.c:39:3: note: shadowed declaration is here
 } tree;
   ^~~~
src/tree_common.c: In function 'tree_min':
src/tree_common.c:287:17: warning: declaration of 'tree' shadows a global declaration [-Wshadow]
     const tree* tree = Tree;
                 ^~~~
src/tree_common.c:39:3: note: shadowed declaration is here
 } tree;
   ^~~~
src/tree_common.c: In function 'tree_max':
src/tree_common.c:301:17: warning: declaration of 'tree' shadows a global declaration [-Wshadow]
     const tree* tree = Tree;
                 ^~~~
src/tree_common.c:39:3: note: shadowed declaration is here
 } tree;
   ^~~~
src/tree_common.c: In function 'tree_traverse':
src/tree_common.c:316:11: warning: declaration of 'tree' shadows a global declaration [-Wshadow]
     tree* tree = Tree;
           ^~~~
src/tree_common.c:39:3: note: shadowed declaration is here
 } tree;
   ^~~~
src/tree_common.c: In function 'tree_node_free':
src/tree_common.c:331:22: warning: declaration of 'tree' shadows a global declaration [-Wshadow]
 tree_node_free(tree* tree, tree_node* node)
                ~~~~~~^~~~
src/tree_common.c:39:3: note: shadowed declaration is here
 } tree;
   ^~~~
src/tree_common.c: In function 'tree_clear':
src/tree_common.c:358:11: warning: declaration of 'tree' shadows a global declaration [-Wshadow]
     tree* tree = Tree;
           ^~~~
src/tree_common.c:39:3: note: shadowed declaration is here
 } tree;
   ^~~~
src/tree_common.c: In function 'tree_clone':
src/tree_common.c:397:18: warning: declaration of 'tree' shadows a global declaration [-Wshadow]
 tree_clone(void* tree, size_t tree_size, size_t node_size,
            ~~~~~~^~~~
src/tree_common.c:39:3: note: shadowed declaration is here
 } tree;
   ^~~~
src/tree_common.c: In function 'tree_min_leaf_depth':
src/tree_common.c:432:17: warning: declaration of 'tree' shadows a global declaration [-Wshadow]
     const tree* tree = Tree;
                 ^~~~
src/tree_common.c:39:3: note: shadowed declaration is here
 } tree;
   ^~~~
src/tree_common.c: In function 'tree_max_leaf_depth':
src/tree_common.c:457:17: warning: declaration of 'tree' shadows a global declaration [-Wshadow]
     const tree* tree = Tree;
                 ^~~~
src/tree_common.c:39:3: note: shadowed declaration is here
 } tree;
   ^~~~
/usr/bin/gcc -Wall -Wextra -Wshadow -W -std=c99 -O3 -pipe -Iinclude -Isrc -I/usr/src/homebrew/include -pg -c -o bin/sp_tree.po src/sp_tree.c
/usr/bin/gcc -Wall -Wextra -Wshadow -W -std=c99 -O3 -pipe -Iinclude -Isrc -I/usr/src/homebrew/include -pg -c -o bin/wb_tree.po src/wb_tree.c
/usr/bin/gcc -Wall -Wextra -Wshadow -W -std=c99 -O3 -pipe -Iinclude -Isrc -I/usr/src/homebrew/include -pg -c -o bin/dict.po src/dict.c
/usr/bin/gcc -Wall -Wextra -Wshadow -W -std=c99 -O3 -pipe -Iinclude -Isrc -I/usr/src/homebrew/include -pg -c -o bin/tr_tree.po src/tr_tree.c
src/tr_tree.c: In function 'tr_tree_insert':
src/tr_tree.c:189:59: warning: operand of ?: changes signedness from 'int' to 'unsigned int' due to unsignedness of other operand [-Wsign-compare]
     node->prio = tree->prio_func ? tree->prio_func(key) : dict_rand();
                                                           ^~~~~~~~~~~
/usr/bin/gcc -Wall -Wextra -Wshadow -W -std=c99 -O3 -pipe -Iinclude -Isrc -I/usr/src/homebrew/include -pg -c -o bin/rb_tree.po src/rb_tree.c
/usr/bin/gcc -Wall -Wextra -Wshadow -W -std=c99 -O3 -pipe -Iinclude -Isrc -I/usr/src/homebrew/include -pg -c -o bin/skiplist.po src/skiplist.c
/usr/bin/gcc -Wall -Wextra -Wshadow -W -std=c99 -O3 -pipe -Iinclude -Isrc -I/usr/src/homebrew/include -pg -c -o bin/pr_tree.po src/pr_tree.c
/usr/bin/gcc -Wall -Wextra -Wshadow -W -std=c99 -O3 -pipe -Iinclude -Isrc -I/usr/src/homebrew/include -pg -c -o bin/hashtable2.po src/hashtable2.c
/usr/bin/gcc -Wall -Wextra -Wshadow -W -std=c99 -O3 -pipe -Iinclude -Isrc -I/usr/src/homebrew/include -pg -c -o bin/hashtable.po src/hashtable.c
/usr/bin/gcc -Wall -Wextra -Wshadow -W -std=c99 -O3 -pipe -Iinclude -Isrc -I/usr/src/homebrew/include -pg -c -o bin/hb_tree.po src/hb_tree.c
/usr/bin/gcc -Wall -Wextra -Wshadow -W -std=c99 -O3 -pipe -Iinclude -Isrc -I/usr/src/homebrew/include -pg -c -o bin/hashtable_common.po src/hashtable_common.c
ar cru bin/libdict_p.a bin/tree_common.po bin/sp_tree.po bin/wb_tree.po bin/dict.po bin/tr_tree.po bin/rb_tree.po bin/skiplist.po bin/pr_tree.po bin/hashtable2.po bin/hashtable.po bin/hb_tree.po bin/hashtable_common.po
[ -d /usr/src/tmp/libdict-buildroot/usr/include/dict ] || mkdir -p -m 755 /usr/src/tmp/libdict-buildroot/usr/include/dict
/usr/libexec/rpm-build/install -p -m 644 include/sp_tree.h include/wb_tree.h include/dict.h include/tr_tree.h include/rb_tree.h include/skiplist.h include/pr_tree.h include/hashtable2.h include/hashtable.h include/hb_tree.h src/dict_private.h src/hashtable_common.h src/tree_common.h /usr/src/tmp/libdict-buildroot/usr/include/dict
[ -d /usr/src/tmp/libdict-buildroot/usr/lib64 ] || mkdir -p -m 755 /usr/src/tmp/libdict-buildroot/usr/lib64
/usr/libexec/rpm-build/install -p -s -m 644 bin/libdict.a /usr/src/tmp/libdict-buildroot/usr/lib64/libdict.a
WARNING: strip is called in %install by 'install -s' (ignored)
/usr/libexec/rpm-build/install -p -s -m 644 bin/libdict_p.a /usr/src/tmp/libdict-buildroot/usr/lib64/libdict_p.a
WARNING: strip is called in %install by 'install -s' (ignored)
/usr/libexec/rpm-build/install -p -s -m 755 bin/libdict.so /usr/src/tmp/libdict-buildroot/usr/lib64/libdict.so.2
WARNING: strip is called in %install by 'install -s' (ignored)
/bin/sh -ec 'cd /usr/src/tmp/libdict-buildroot/usr/lib64 && ln -sf libdict.so.2 libdict.so'
make: Leaving directory '/usr/src/RPM/BUILD/libdict-0.3.0'
+ /usr/lib/rpm/brp-alt
Cleaning files in /usr/src/tmp/libdict-buildroot (auto)
mode of './usr/lib64/libdict.so.2' changed from 0755 (rwxr-xr-x) to 0644 (rw-r--r--)
Verifying and fixing files in /usr/src/tmp/libdict-buildroot (binconfig,pkgconfig,libtool,desktop,gnuconfig)
Checking contents of files in /usr/src/tmp/libdict-buildroot/ (default)
Compressing files in /usr/src/tmp/libdict-buildroot (auto)
Adjusting library links in /usr/src/tmp/libdict-buildroot
./usr/lib64:
	libdict.so.2 -> libdict.so.2
056-debuginfo.brp: WARNING: debuginfo without debug sources.
Verifying ELF objects in /usr/src/tmp/libdict-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: libdict-0.3.0-alt1.git20140826
Executing(%doc): /bin/sh -e /usr/src/tmp/rpm-tmp.35090
+ umask 022
+ /bin/mkdir -p /usr/src/RPM/BUILD
+ cd /usr/src/RPM/BUILD
+ cd libdict-0.3.0
+ DOCDIR=/usr/src/tmp/libdict-buildroot/usr/share/doc/libdict-0.3.0
+ export DOCDIR
+ rm -rf /usr/src/tmp/libdict-buildroot/usr/share/doc/libdict-0.3.0
+ /bin/mkdir -p /usr/src/tmp/libdict-buildroot/usr/share/doc/libdict-0.3.0
+ cp -prL README.md REFERENCES TODO /usr/src/tmp/libdict-buildroot/usr/share/doc/libdict-0.3.0
+ chmod -R go-w /usr/src/tmp/libdict-buildroot/usr/share/doc/libdict-0.3.0
+ chmod -R a+rX /usr/src/tmp/libdict-buildroot/usr/share/doc/libdict-0.3.0
+ exit 0
Finding Provides (using /usr/lib/rpm/find-provides)
Executing: /bin/sh -e /usr/src/tmp/rpm-tmp.nnZuH7
find-provides: running scripts (debuginfo,lib,pam,perl,pkgconfig,python,shell)
lib.prov: /usr/src/tmp/libdict-buildroot/usr/lib64/libdict.so.2: 325 symbols, 19 bpp
Finding Requires (using /usr/lib/rpm/find-requires)
Executing: /bin/sh -e /usr/src/tmp/rpm-tmp.am6BLR
find-requires: running scripts (cpp,debuginfo,files,lib,pam,perl,pkgconfig,pkgconfiglib,python,rpmlib,shebang,shell,static,symlinks,systemd-services)
Provides: libdict.so.2()(64bit) = set:mdQB1AuhvU2ngYnXxAVKSIB6gHAyZq4oQzdN5ZaGnVfh9ZLQAG61U9tDm7zKuJO66nNZg375oc9A6zXlPBohCTZCBpl7h5QZyAuiSFUPkVGnZCEZ0xxV73O8E7k8y0gmiv6nYI3Ui1oZaT0ypmk6DIa7wcFMOcG3kh63vJ0mrGQH777blc0ZtYXBWyj6xhHAEqhNzkFgQPzRaK1tJcVHICif24o7SbHu4HAC6Nb1aW23gGQUTddxdU6h4YwqGpcaWZGNhKdUhyiideXYhSn7XfsZEZL1WzuTIgkF92ZtUPtRMJU1SzDZ4Ge7kcdvWc5kaqnOGutnHqBknot1lN3BuxmVZLedJUJwk4OiZq9kJ4r0mg4OhrKbSaHcz61KHPGcdUs07icpYQZ854CgOpDMLMA3h0dGadZbNx6vrtoxazgt14nKvrsUdLIUEUyGPp1BSZu0g7mopakbESc9CicT9SVuuBXWoRk63jDZF8tOeBK235ZucpA1KxLhIXYNdpcVnFEJRVKEEA8DwIT93Zh2o2roM0pZybeRV2cKxa1DZIrhgvRvFZbK5CBgFsHhOyLdJ8WHEj8sUXEyr9WbU02GuXHgeHJyPVu0VtlVmT3o6yY0ovYehM4PF69gazb0GAdbTDR60nFfNBQffIaQ1CTunsdYgBG1
Requires: 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.4)(64bit), rtld(GNU_HASH)
Finding debuginfo files (using /usr/lib/rpm/find-debuginfo-files)
Executing: /bin/sh -e /usr/src/tmp/rpm-tmp.nSpCrF
Creating libdict-debuginfo package
Processing files: libdict-devel-0.3.0-alt1.git20140826
Finding Provides (using /usr/lib/rpm/find-provides)
Executing: /bin/sh -e /usr/src/tmp/rpm-tmp.Sl9PMw
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.ZiEbzr
find-requires: running scripts (cpp,debuginfo,files,lib,pam,perl,pkgconfig,pkgconfiglib,python,rpmlib,shebang,shell,static,symlinks,systemd-services)
Requires: libdict = 0.3.0-alt1.git20140826, /usr/lib64/libdict.so.2
Finding debuginfo files (using /usr/lib/rpm/find-debuginfo-files)
Executing: /bin/sh -e /usr/src/tmp/rpm-tmp.0QBrBp
Processing files: libdict-debuginfo-0.3.0-alt1.git20140826
Finding Provides (using /usr/lib/rpm/find-provides)
Executing: /bin/sh -e /usr/src/tmp/rpm-tmp.LML7Oq
find-provides: running scripts (debuginfo)
Finding Requires (using /usr/lib/rpm/find-requires)
Executing: /bin/sh -e /usr/src/tmp/rpm-tmp.mBAadv
find-requires: running scripts (debuginfo)
Provides: debug64(libdict.so.2)
Requires: libdict = 0.3.0-alt1.git20140826, debug64(libc.so.6)
Removing 1 extra deps from libdict-devel due to dependency on libdict
warning: Installed (but unpackaged) file(s) found:
    /usr/lib64/libdict.a
    /usr/lib64/libdict_p.a
Wrote: /usr/src/RPM/RPMS/x86_64/libdict-0.3.0-alt1.git20140826.x86_64.rpm (w2.lzdio)
Wrote: /usr/src/RPM/RPMS/x86_64/libdict-devel-0.3.0-alt1.git20140826.x86_64.rpm (w2.lzdio)
Wrote: /usr/src/RPM/RPMS/x86_64/libdict-debuginfo-0.3.0-alt1.git20140826.x86_64.rpm (w2.lzdio)
13.83user 2.45system 0:17.90elapsed 90%CPU (0avgtext+0avgdata 40248maxresident)k
0inputs+0outputs (0major+496836minor)pagefaults 0swaps
0.79user 1.29system 0:22.45elapsed 9%CPU (0avgtext+0avgdata 11920maxresident)k
0inputs+0outputs (0major+95774minor)pagefaults 0swaps
--- libdict-0.3.0-alt1.git20140826.x86_64.rpm.repo	2014-09-10 13:04:29.000000000 +0000
+++ libdict-0.3.0-alt1.git20140826.x86_64.rpm.hasher	2024-06-30 11:07:37.519157682 +0000
@@ -8,2 +8,3 @@
 Requires: libc.so.6(GLIBC_2.3.4)(64bit)  
+Requires: libc.so.6(GLIBC_2.4)(64bit)  
 Requires: rtld(GNU_HASH)  
@@ -12,3 +13,3 @@
 Provides: libdict = 0.3.0-alt1.git20140826
-File: /usr/lib64/libdict.so.2	100644	root:root	2a2953b1f6d6fe5ff595a94dac621e82	
+File: /usr/lib64/libdict.so.2	100644	root:root	24c97d5259a08fd0dd512527263f0075	
 File: /usr/share/doc/libdict-0.3.0	40755	root:root		
@@ -17,2 +18,2 @@
 File: /usr/share/doc/libdict-0.3.0/TODO	100644	root:root	a5b8b501eadd1acc380b2fd7a788cd82	
-RPMIdentity: 39083dc3841eb4dd84227ee8fd513f8c6d88b5db152d36643c54177915c0c61398de08a6eabcb679872c6238cf422cef32c11030cf185ce32d16164659d5ba95
+RPMIdentity: 59e0dd77baf5e545ec8229c7055eb30e25b6801b420abd6912f0336cf8d219025acdd75689a288db907ade15c60e92a98364639732771a532e89fc9066c83ab5
error: open of /archive/repo/p9/task/_342/350963/files/x86_64/RPMS/libdict-debuginfo-0.3.0-alt1.git20140826.x86_64.rpm failed: No such file or directory
--- libdict-devel-0.3.0-alt1.git20140826.x86_64.rpm.repo	2014-09-10 13:04:29.000000000 +0000
+++ libdict-devel-0.3.0-alt1.git20140826.x86_64.rpm.hasher	2024-06-30 11:07:37.599157228 +0000
@@ -33,2 +33,2 @@
 File: /usr/lib64/libdict.so	120777	root:root		libdict.so.2
-RPMIdentity: d6381f5e312ff03eaa662dfa65c21f7b4e9fc445602fecaf94730b61c5e42c2a9fa1533f2e0a822b05ce49d9ce6d1a49156b656caf52cd304454c810af998316
+RPMIdentity: 168e24bb6708204c33c96bf1965aa58b50c15fd525ae0c2a5dfab47d0fa0a28cafdc213299638657821b53d324c8fac29ff81373335086da7c35b017f5c59bbd