+ case "${usergroup_phase}" in + local run_cmd + run_cmd=run_su + shift + run_su /opt/pkg/bin/bmake configure BATCH=1 DEPENDS_TARGET=/nonexistent WRKLOG=/tmp/bulklog/racket-minimal-8.11.1/work.log + su pbulk -c '"$@"' make /opt/pkg/bin/bmake configure BATCH=1 DEPENDS_TARGET=/nonexistent WRKLOG=/tmp/bulklog/racket-minimal-8.11.1/work.log => Bootstrap dependency digest>=20211023: found digest-20220214 => Checksum BLAKE2s OK for racket-minimal-8.11.1-src.tgz => Checksum SHA512 OK for racket-minimal-8.11.1-src.tgz ===> Installing dependencies for racket-minimal-8.11.1 ========================================================================== The following variables will affect the build process of this package, racket-minimal-8.11.1. Their current value is shown below: * CURSES_DEFAULT = ncurses * TERMINFO_DEFAULT = ncurses Based on these variables, the following variables have been set: * CURSES_TYPE = ncurses * TERMINFO_TYPE = ncurses You may want to abort the process now with CTRL-C and change the value of variables in the first group before continuing. Be sure to run `/opt/pkg/bin/bmake clean' after the changes. ========================================================================== => Tool dependency mktools-[0-9]*: found mktools-20220614 => Tool dependency gmake>=3.81: found gmake-4.4.1 => Tool dependency pkgconf-[0-9]*: found pkgconf-2.0.3 => Tool dependency cwrappers>=20150314: found cwrappers-20220403 => Tool dependency checkperms>=1.1: found checkperms-1.12 => Full dependency libiconv>=1.9.1nb4: found libiconv-1.17 => Full dependency libffi>=3.4.4: found libffi-3.4.4 => Full dependency ncurses>=6.3nb1: found ncurses-6.4 ===> Overriding tools for racket-minimal-8.11.1 ===> Extracting for racket-minimal-8.11.1 ===> Patching for racket-minimal-8.11.1 => Applying pkgsrc patches for racket-minimal-8.11.1 => Verifying /data/jenkins/workspace/pkgsrc-upstream-bulktest/lang/racket-textual/../../lang/racket/patches/patch-src_bc_configure => Applying pkgsrc patch /data/jenkins/workspace/pkgsrc-upstream-bulktest/lang/racket-textual/../../lang/racket/patches/patch-src_bc_configure Hmm... Looks like a unified diff to me... The text leading up to this was: -------------------------- |$NetBSD: patch-src_bc_configure,v 1.3 2024/01/05 14:55:39 riastradh Exp $ | |Allow CONFIGURE_ENV to set PAXCTL so user need not have /usr/sbin in |PATH. | |--- src/bc/configure.orig 2023-11-20 06:06:53.000000000 +0000 |+++ src/bc/configure -------------------------- Patching file src/bc/configure using Plan A... Hunk #1 succeeded at 5018. done => Verifying /data/jenkins/workspace/pkgsrc-upstream-bulktest/lang/racket-textual/../../lang/racket/patches/patch-src_bc_configure.ac => Applying pkgsrc patch /data/jenkins/workspace/pkgsrc-upstream-bulktest/lang/racket-textual/../../lang/racket/patches/patch-src_bc_configure.ac Hmm... Looks like a unified diff to me... The text leading up to this was: -------------------------- |$NetBSD: patch-src_bc_configure.ac,v 1.3 2024/01/05 14:55:39 riastradh Exp $ | |Allow CONFIGURE_ENV to set PAXCTL so user need not have /usr/sbin in |PATH. | |--- src/bc/configure.ac.orig 2023-11-20 06:06:53.000000000 +0000 |+++ src/bc/configure.ac -------------------------- Patching file src/bc/configure.ac using Plan A... Hunk #1 succeeded at 548. done => Verifying /data/jenkins/workspace/pkgsrc-upstream-bulktest/lang/racket-textual/../../lang/racket/patches/patch-src_cs_c_configure => Applying pkgsrc patch /data/jenkins/workspace/pkgsrc-upstream-bulktest/lang/racket-textual/../../lang/racket/patches/patch-src_cs_c_configure Hmm... Looks like a unified diff to me... The text leading up to this was: -------------------------- |$NetBSD: patch-src_cs_c_configure,v 1.3 2024/01/05 14:55:39 riastradh Exp $ | |Allow CONFIGURE_ENV to set PAXCTL so user need not have /usr/sbin in |PATH. | |--- src/cs/c/configure.orig 2023-11-20 06:06:58.000000000 +0000 |+++ src/cs/c/configure -------------------------- Patching file src/cs/c/configure using Plan A... Hunk #1 succeeded at 4459. done => Verifying /data/jenkins/workspace/pkgsrc-upstream-bulktest/lang/racket-textual/../../lang/racket/patches/patch-src_cs_c_configure.ac => Applying pkgsrc patch /data/jenkins/workspace/pkgsrc-upstream-bulktest/lang/racket-textual/../../lang/racket/patches/patch-src_cs_c_configure.ac Hmm... Looks like a unified diff to me... The text leading up to this was: -------------------------- |$NetBSD: patch-src_cs_c_configure.ac,v 1.3 2024/01/05 14:55:39 riastradh Exp $ | |Allow CONFIGURE_ENV to set PAXCTL so user need not have /usr/sbin in |PATH. | |--- src/cs/c/configure.ac.orig 2023-11-20 06:06:58.000000000 +0000 |+++ src/cs/c/configure.ac -------------------------- Patching file src/cs/c/configure.ac using Plan A... Hunk #1 succeeded at 272. done ===> Creating toolchain wrappers for racket-minimal-8.11.1 ===> Configuring for racket-minimal-8.11.1 => Modifying GNU configure scripts to avoid --recheck => Replacing config-guess with pkgsrc versions => Replacing config-sub with pkgsrc versions => Replacing install-sh with pkgsrc version => Checking for portability problems in extracted files ERROR: [check-portability.awk] => Found test ... == ...: ERROR: [check-portability.awk] src/ChezScheme/rpm/Makefile:19: arch := $(shell if test "$(m)" == "i3le" ; then echo i686 ; elif test "$(m)" == "a6le" ; then echo x86_64 ; else echo UNKNOWN ; fi) ERROR: [check-portability.awk] src/ChezScheme/rpm/Makefile:19: arch := $(shell if test "$(m)" == "i3le" ; then echo i686 ; elif test "$(m)" == "a6le" ; then echo x86_64 ; else echo UNKNOWN ; fi) Explanation: =========================================================================== The "test" command, as well as the "[" command, are not required to know the "==" operator. Only a few implementations like bash and some versions of ksh support it. When you run "test foo == foo" on a platform that does not support the "==" operator, the result will be "false" instead of "true". This can lead to unexpected behavior. There are two ways to fix this error message. If the file that contains the "test ==" is needed for building the package, you should create a patch for it, replacing the "==" operator with "=". If the file is not needed, add its name to the CHECK_PORTABILITY_SKIP variable in the package Makefile. =========================================================================== *** Error code 1 Stop. bmake[1]: stopped in /data/jenkins/workspace/pkgsrc-upstream-bulktest/lang/racket-textual *** Error code 1 Stop. bmake: stopped in /data/jenkins/workspace/pkgsrc-upstream-bulktest/lang/racket-textual