[Bug 257131] [NEW PORT] devel/py-cadquery-pywrap: C++ binding generator for Python

2021-08-17 Thread bugzilla-noreply
https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=257131

Neal Nelson  changed:

   What|Removed |Added

  Flags|maintainer-feedback?(ports@ |maintainer-feedback+
   |nicandneal.net) |

-- 
You are receiving this mail because:
You are on the CC list for the bug.


[Bug 257041] [NEW PORT]: devel/py-lief: Parse, modify and abstract ELF, PE and MachO formats.

2021-08-17 Thread bugzilla-noreply
https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=257041

Neal Nelson  changed:

   What|Removed |Added

  Flags|maintainer-feedback?(ports@ |maintainer-feedback+
   |nicandneal.net) |

-- 
You are receiving this mail because:
You are on the CC list for the bug.


FreeBSD ports you maintain which are out of date

2021-08-17 Thread portscout
Dear port maintainer,

The portscout new distfile checker has detected that one or more of your
ports appears to be out of date. Please take the opportunity to check
each of the ports listed below, and if possible and appropriate,
submit/commit an update. If any ports have already been updated, you can
safely ignore the entry.

You will not be e-mailed again for any of the port/version combinations
below.

Full details can be found at the following URL:
http://portscout.freebsd.org/pyt...@freebsd.org.html


Port| Current version | New version
+-+
www/py-httpretty| 1.1.3   | 1.1.4
+-+


If any of the above results are invalid, please check the following page
for details on how to improve portscout's detection and selection of
distfiles on a per-port basis:

http://portscout.freebsd.org/info/portscout-portconfig.txt

Reported by:portscout!



[Bug 256558] lang/python3[89]: fix build WITH_DEBUG

2021-08-17 Thread bugzilla-noreply
https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=256558

Fukang Chen  changed:

   What|Removed |Added

 CC||loa...@freebsd.org

--- Comment #7 from Fukang Chen  ---
(In reply to Kubilay Kocak from comment #1)

It was introduced by this commit on the 3.8 branch, EXT_SUFFIX now contains
${SOABI} on FreeBSD:
https://github.com/python/cpython/commit/b01091a3e71e6636d2df4db45920e820cdf7df3b
commit a44ce6c9f725d336aea51a946b42769f29fed613
Author: Matti Picus 
Date:   Sun Dec 20 04:56:57 2020 +0200

bpo-42604: always set EXT_SUFFIX=${SOABI}${SHLIB_SUFFIX} when using
configure (GH-23708)

Now all platforms use a value for the "EXT_SUFFIX" build variable derived
from SOABI (for instance in FreeBSD, "EXT_SUFFIX" is now ".cpython-310d.so"
instead of ".so"). Previously only Linux, Mac and VxWorks were using a
value
for "EXT_SUFFIX" that included "SOABI".

Co-authored-by: Pablo Galindo 

diff --git a/configure.ac b/configure.ac
index 445dae1..ee5573c 100644
--- a/configure.ac
+++ b/configure.ac
@@ -4786,12 +4786,7 @@ if test "$Py_DEBUG" = 'true' -a "$with_trace_refs" !=
"yes"; then
 fi

 AC_SUBST(EXT_SUFFIX)
-case $ac_sys_system in
-Linux*|GNU*|Darwin|VxWorks)
-   EXT_SUFFIX=.${SOABI}${SHLIB_SUFFIX};;
-*)
-   EXT_SUFFIX=${SHLIB_SUFFIX};;
-esac
+EXT_SUFFIX=.${SOABI}${SHLIB_SUFFIX}

 AC_MSG_CHECKING(LDVERSION)
 LDVERSION='$(VERSION)$(ABIFLAGS)'


SOABI is "cpython-38d" and configure argument "--with-pydebug" adds "d" to the
ABIFLAGS:

https://github.com/python/cpython/blob/v3.8.11/configure.ac#L4693
4693 SOABI='cpython-'`echo $VERSION | tr -d
.`${ABIFLAGS}${PLATFORM_TRIPLET:+-$PLATFORM_TRIPLET}

https://github.com/python/cpython/blob/v3.8.11/configure.ac#L1231-L1249
  1231  # For calculating the .so ABI tag.
  1232  AC_SUBST(ABIFLAGS)
  1233  ABIFLAGS=""
  1234  
  1235  # Check for --with-pydebug
  1236  AC_MSG_CHECKING(for --with-pydebug)
  1237  AC_ARG_WITH(pydebug,
  1238  AS_HELP_STRING([--with-pydebug], [build with Py_DEBUG
defined]),
  1239  [
  1240  if test "$withval" != no
  1241  then
  1242AC_DEFINE(Py_DEBUG, 1,
  1243[Define if you want to build an interpreter with many run-time
checks.])
  1244AC_MSG_RESULT(yes);
  1245Py_DEBUG='true'
  1246ABIFLAGS="${ABIFLAGS}d"
  1247  else AC_MSG_RESULT(no); Py_DEBUG='false'
  1248  fi],
  1249  [AC_MSG_RESULT(no)])


disttuiles build_ext.py gets the extension filename ext_suffix from EXT_SUFFIX:

https://github.com/python/cpython/blob/v3.8.11/Lib/distutils/command/build_ext.py#L675-683
   675  def get_ext_filename(self, ext_name):
   676  r"""Convert the name of an extension (eg. "foo.bar") into the
name
   677  of the file from which it will be loaded (eg. "foo/bar.so", or
   678  "foo\bar.pyd").
   679  """
   680  from distutils.sysconfig import get_config_var
   681  ext_path = ext_name.split('.')
   682  ext_suffix = get_config_var('EXT_SUFFIX')
   683  return os.path.join(*ext_path) + ext_suffix

-- 
You are receiving this mail because:
You are on the CC list for the bug.
You are the assignee for the bug.


[Bug 257496] [NEW PORT] security/py-django-pam: PAM backend for Django authentication

2021-08-17 Thread bugzilla-noreply
https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=257496

Guangyuan Yang  changed:

   What|Removed |Added

   Assignee|y...@freebsd.org |ports-b...@freebsd.org

--- Comment #10 from Guangyuan Yang  ---
Currently don't have time to take care of this - back to the pool.

-- 
You are receiving this mail because:
You are on the CC list for the bug.


[Bug 256558] lang/python3[89]: fix build WITH_DEBUG

2021-08-17 Thread bugzilla-noreply
https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=256558

--- Comment #8 from Fukang Chen  ---
Created attachment 227271
  --> https://bugs.freebsd.org/bugzilla/attachment.cgi?id=227271&action=edit
%%ABI%% patch

If I'm not missing anything, it's safe to use %%ABI%% in the pkg-plist?

-- 
You are receiving this mail because:
You are the assignee for the bug.
You are on the CC list for the bug.


[Bug 256995] textproc/py-pygments: Update to 2.9.0

2021-08-17 Thread bugzilla-noreply
https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=256995

--- Comment #8 from Thierry Thomas  ---
(In reply to Antoine Brodin from comment #7)

Thanks to a patch from upstream, openage 0.4.1 supports Pygments 2.9.0.

Patch submitted in PR 257471.

-- 
You are receiving this mail because:
You are on the CC list for the bug.


Ports with version numbers going backwards: devel/py-pytest, devel/py-pytest...

2021-08-17 Thread erwin
** The following ports have a version number that sorts before a previous one **

 For many package tools to work correctly, it is of utmost importance that
 version numbers of a port form a monotonic increasing sequence over time.
 Refer to the FreeBSD Porter's Handbook, 'Package Naming Conventions' for
 more information. Tools that won't work include pkg_version, portupgrade
 and portaudit. A common error is an accidental deletion of PORTEPOCH.

 Please fix any errors as soon as possible.

 The ports tree was updated at Tue Aug 17 2021 12:30:00 UTC.

- *devel/py-pytest* : py38-pytest-4.6.11 < py38-pytest-6.2.4

- *devel/py-pytest-flask* : py38-pytest-flask-0.15.1 < 
py38-pytest-flask-1.2.0

- *devel/py-pytest-translations* : 
py38-pytest-translations-2.0.0 < py38-pytest-translations-3.1.0

- *devel/py-pytest-xdist* : py38-pytest-xdist-1.32.0 < 
py38-pytest-xdist-2.3.0





[Bug 255025] textproc/py-chardet: Update to 4.0.0

2021-08-17 Thread bugzilla-noreply
https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=255025

--- Comment #9 from Wen Heping  ---
(In reply to Steve Wills from comment #8)
I send a patch to yuri@ to unbreak it.

wen

-- 
You are receiving this mail because:
You are on the CC list for the bug.


[package - main-i386-default][math/py-numpy] Failed for py310-numpy-1.16.6_2,1 in build

2021-08-17 Thread pkg-fallout
You are receiving this mail as a port that you maintain
is failing to build on the FreeBSD package build server.
Please investigate the failure and submit a PR to fix
build.

Maintainer: python@FreeBSD.org
Log URL:
http://beefy17.nyi.freebsd.org/data/main-i386-default/pa5031e7be52b_scbfba56c45/logs/py310-numpy-1.16.6_2,1.log
Build URL:  
http://beefy17.nyi.freebsd.org/build.html?mastername=main-i386-default&build=pa5031e7be52b_scbfba56c45
Log:

=>> Building math/py-numpy
build started at Tue Aug 17 18:58:14 UTC 2021
port directory: /usr/ports/math/py-numpy
package name: py310-numpy-1.16.6_2,1
building for: FreeBSD main-i386-default-job-01 14.0-CURRENT FreeBSD 
14.0-CURRENT 1400030 i386
maintained by: python@FreeBSD.org
Makefile ident: 
Poudriere version: 3.2.8-21-g883afb07
Host OSVERSION: 148
Jail OSVERSION: 1400030
Job Id: 01




!!! Jail is newer than host. (Jail: 1400030, Host: 148) !!!
!!! This is not supported. !!!
!!! Host kernel must be same or newer than jail. !!!
!!! Expect build failures. !!!



---Begin Environment---
SHELL=/bin/csh
UNAME_p=i386
UNAME_m=i386
OSVERSION=1400030
UNAME_v=FreeBSD 14.0-CURRENT 1400030
UNAME_r=14.0-CURRENT
BLOCKSIZE=K
MAIL=/var/mail/root
MM_CHARSET=UTF-8
LANG=C.UTF-8
STATUS=1
HOME=/root
PATH=/sbin:/bin:/usr/sbin:/usr/bin:/usr/local/sbin:/usr/local/bin:/root/bin
LOCALBASE=/usr/local
USER=root
LIBEXECPREFIX=/usr/local/libexec/poudriere
POUDRIERE_VERSION=3.2.8-21-g883afb07
MASTERMNT=/usr/local/poudriere/data/.m/main-i386-default/ref
POUDRIERE_BUILD_TYPE=bulk
PACKAGE_BUILDING=yes
SAVED_TERM=
PWD=/usr/local/poudriere/data/.m/main-i386-default/ref/.p/pool
P_PORTS_FEATURES=FLAVORS SELECTED_OPTIONS
MASTERNAME=main-i386-default
SCRIPTPREFIX=/usr/local/share/poudriere
OLDPWD=/usr/local/poudriere/data/.m/main-i386-default/ref/.p
SCRIPTPATH=/usr/local/share/poudriere/bulk.sh
POUDRIEREPATH=/usr/local/bin/poudriere
---End Environment---

---Begin Poudriere Port Flags/Env---
PORT_FLAGS=
PKGENV=
FLAVOR=py310
DEPENDS_ARGS=
MAKE_ARGS= FLAVOR=py310
---End Poudriere Port Flags/Env---

---Begin OPTIONS List---
===> The following configuration options are available for 
py310-numpy-1.16.6_2,1:
 DOCS=on: Build and/or install documentation
 SUITESPARSE=on: Use AMD and UMFPACK in SuiteSparse
> Options available for the single BLASLIB: you have to select exactly one 
of them
 ATLAS=off: ATLAS blas implementation
 NETLIB=off: Blas implementation from Netlib
 OPENBLAS=on: OpenBLAS blas implementation
===> Use 'make config' to modify these settings
---End OPTIONS List---

--MAINTAINER--
python@FreeBSD.org
--End MAINTAINER--

--CONFIGURE_ARGS--

--End CONFIGURE_ARGS--

--CONFIGURE_ENV--
F77="gfortran10" FC="gfortran10" FFLAGS="-O -Wl,-rpath=/usr/local/lib/gcc10" 
FCFLAGS="-Wl,-rpath=/usr/local/lib/gcc10" PYTHON="/usr/local/bin/python3.10" 
XDG_DATA_HOME=/wrkdirs/usr/ports/math/py-numpy/work-py310  
XDG_CONFIG_HOME=/wrkdirs/usr/ports/math/py-numpy/work-py310  
HOME=/wrkdirs/usr/ports/math/py-numpy/work-py310 TMPDIR="/tmp" 
PATH=/wrkdirs/usr/ports/math/py-numpy/work-py310/.bin:/sbin:/bin:/usr/sbin:/usr/bin:/usr/local/sbin:/usr/local/bin:/root/bin
 SHELL=/bin/sh CONFIG_SHELL=/bin/sh
--End CONFIGURE_ENV--

--MAKE_ENV--
F77="gfortran10" FC="gfortran10" FFLAGS="-O -Wl,-rpath=/usr/local/lib/gcc10" 
FCFLAGS="-Wl,-rpath=/usr/local/lib/gcc10" 
XDG_DATA_HOME=/wrkdirs/usr/ports/math/py-numpy/work-py310  
XDG_CONFIG_HOME=/wrkdirs/usr/ports/math/py-numpy/work-py310  
HOME=/wrkdirs/usr/ports/math/py-numpy/work-py310 TMPDIR="/tmp" 
PATH=/wrkdirs/usr/ports/math/py-numpy/work-py310/.bin:/sbin:/bin:/usr/sbin:/usr/bin:/usr/local/sbin:/usr/local/bin:/root/bin
 NO_PIE=yes MK_DEBUG_FILES=no MK_KERNEL_SYMBOLS=no SHELL=/bin/sh NO_LINT=YES 
ADDR2LINE="/usr/local/bin/addr2line" AR="/usr/local/bin/ar" 
AS="/usr/local/bin/as" CPPFILT="/usr/local/bin/c++filt" 
GPROF="/usr/local/bin/gprof" LD="/usr/local/bin/ld" NM="/usr/local/bin/nm" 
OBJCOPY="/usr/local/bin/objcopy" OBJDUMP="/usr/local/bin/objdump" 
RANLIB="/usr/local/bin/ranlib" READELF="/usr/local/bin/readelf" 
SIZE="/usr/local/bin/size" STRINGS="/usr/local/bin/strings" LDSHARED="cc 
-shared" PYTHONDONTWRITEBYTECODE= PYTHONOPTIMIZE= PREFIX=/usr/local  
LOCALBASE=/usr/local  CC="cc" CF
 LAGS="-O2 -pipe  -fstack-protector-strong -fno-strict-aliasing "  CPP="cpp" 
CPPFLAGS=""  LDFLAGS=" -shared -Wl,-rpath=/usr/local/lib/gcc10  
-L/usr/local/lib/gcc10 -B/usr/local/bin -L/usr/local/lib 
-fstack-protector-strong " LIBS=""  CXX="c++" CXXFLAGS="-O2 -pipe 
-fstack-protector-strong -fno-strict-aliasing  "  MANPREFIX="/usr/local" 
BSD_INSTALL_PROGRAM="install  -s -m 555"  BSD_INSTALL_LIB="install  -s -m 0644" 
 BSD_INSTALL_SCRIPT="install  -m 555"  BSD_INSTALL_DATA="install  -m 0644"  
BSD_INSTALL_MAN="install  -m 444"
--End MAKE_ENV--

--PLIST_SUB--
PORTDOCS="" PYTHON_INCLUDEDIR=include/python3.10  PYTHON_LIBDIR=lib/python3.10  
PYTHON_PLATFORM=freebsd14  PYTHON_SITELIBDIR=lib/python3.10/site-packages  
PYTHON_SUFFIX=310  PYTHON_EXT_SUFF

[package - main-amd64-default][math/py-numpy] Failed for py310-numpy-1.16.6_2,1 in build

2021-08-17 Thread pkg-fallout
You are receiving this mail as a port that you maintain
is failing to build on the FreeBSD package build server.
Please investigate the failure and submit a PR to fix
build.

Maintainer: python@FreeBSD.org
Log URL:
http://beefy18.nyi.freebsd.org/data/main-amd64-default/pa5031e7be52b_scbfba56c45/logs/py310-numpy-1.16.6_2,1.log
Build URL:  
http://beefy18.nyi.freebsd.org/build.html?mastername=main-amd64-default&build=pa5031e7be52b_scbfba56c45
Log:

=>> Building math/py-numpy
build started at Tue Aug 17 20:42:31 UTC 2021
port directory: /usr/ports/math/py-numpy
package name: py310-numpy-1.16.6_2,1
building for: FreeBSD main-amd64-default-job-05 14.0-CURRENT FreeBSD 
14.0-CURRENT 1400030 amd64
maintained by: python@FreeBSD.org
Makefile ident: 
Poudriere version: 3.2.8-21-g883afb07
Host OSVERSION: 148
Jail OSVERSION: 1400030
Job Id: 05




!!! Jail is newer than host. (Jail: 1400030, Host: 148) !!!
!!! This is not supported. !!!
!!! Host kernel must be same or newer than jail. !!!
!!! Expect build failures. !!!



---Begin Environment---
SHELL=/bin/csh
OSVERSION=1400030
UNAME_v=FreeBSD 14.0-CURRENT 1400030
UNAME_r=14.0-CURRENT
BLOCKSIZE=K
MAIL=/var/mail/root
MM_CHARSET=UTF-8
LANG=C.UTF-8
STATUS=1
HOME=/root
PATH=/sbin:/bin:/usr/sbin:/usr/bin:/usr/local/sbin:/usr/local/bin:/root/bin
LOCALBASE=/usr/local
USER=root
LIBEXECPREFIX=/usr/local/libexec/poudriere
POUDRIERE_VERSION=3.2.8-21-g883afb07
MASTERMNT=/usr/local/poudriere/data/.m/main-amd64-default/ref
POUDRIERE_BUILD_TYPE=bulk
PACKAGE_BUILDING=yes
SAVED_TERM=
PWD=/usr/local/poudriere/data/.m/main-amd64-default/ref/.p/pool
P_PORTS_FEATURES=FLAVORS SELECTED_OPTIONS
MASTERNAME=main-amd64-default
SCRIPTPREFIX=/usr/local/share/poudriere
OLDPWD=/usr/local/poudriere/data/.m/main-amd64-default/ref/.p
SCRIPTPATH=/usr/local/share/poudriere/bulk.sh
POUDRIEREPATH=/usr/local/bin/poudriere
---End Environment---

---Begin Poudriere Port Flags/Env---
PORT_FLAGS=
PKGENV=
FLAVOR=py310
DEPENDS_ARGS=
MAKE_ARGS= FLAVOR=py310
---End Poudriere Port Flags/Env---

---Begin OPTIONS List---
===> The following configuration options are available for 
py310-numpy-1.16.6_2,1:
 DOCS=on: Build and/or install documentation
 SUITESPARSE=on: Use AMD and UMFPACK in SuiteSparse
> Options available for the single BLASLIB: you have to select exactly one 
of them
 ATLAS=off: ATLAS blas implementation
 NETLIB=off: Blas implementation from Netlib
 OPENBLAS=on: OpenBLAS blas implementation
===> Use 'make config' to modify these settings
---End OPTIONS List---

--MAINTAINER--
python@FreeBSD.org
--End MAINTAINER--

--CONFIGURE_ARGS--

--End CONFIGURE_ARGS--

--CONFIGURE_ENV--
F77="gfortran10" FC="gfortran10" FFLAGS="-O -Wl,-rpath=/usr/local/lib/gcc10" 
FCFLAGS="-Wl,-rpath=/usr/local/lib/gcc10" PYTHON="/usr/local/bin/python3.10" 
XDG_DATA_HOME=/wrkdirs/usr/ports/math/py-numpy/work-py310  
XDG_CONFIG_HOME=/wrkdirs/usr/ports/math/py-numpy/work-py310  
HOME=/wrkdirs/usr/ports/math/py-numpy/work-py310 TMPDIR="/tmp" 
PATH=/wrkdirs/usr/ports/math/py-numpy/work-py310/.bin:/sbin:/bin:/usr/sbin:/usr/bin:/usr/local/sbin:/usr/local/bin:/root/bin
 SHELL=/bin/sh CONFIG_SHELL=/bin/sh
--End CONFIGURE_ENV--

--MAKE_ENV--
F77="gfortran10" FC="gfortran10" FFLAGS="-O -Wl,-rpath=/usr/local/lib/gcc10" 
FCFLAGS="-Wl,-rpath=/usr/local/lib/gcc10" 
XDG_DATA_HOME=/wrkdirs/usr/ports/math/py-numpy/work-py310  
XDG_CONFIG_HOME=/wrkdirs/usr/ports/math/py-numpy/work-py310  
HOME=/wrkdirs/usr/ports/math/py-numpy/work-py310 TMPDIR="/tmp" 
PATH=/wrkdirs/usr/ports/math/py-numpy/work-py310/.bin:/sbin:/bin:/usr/sbin:/usr/bin:/usr/local/sbin:/usr/local/bin:/root/bin
 NO_PIE=yes MK_DEBUG_FILES=no MK_KERNEL_SYMBOLS=no SHELL=/bin/sh NO_LINT=YES 
ADDR2LINE="/usr/local/bin/addr2line" AR="/usr/local/bin/ar" 
AS="/usr/local/bin/as" CPPFILT="/usr/local/bin/c++filt" 
GPROF="/usr/local/bin/gprof" LD="/usr/local/bin/ld" NM="/usr/local/bin/nm" 
OBJCOPY="/usr/local/bin/objcopy" OBJDUMP="/usr/local/bin/objdump" 
RANLIB="/usr/local/bin/ranlib" READELF="/usr/local/bin/readelf" 
SIZE="/usr/local/bin/size" STRINGS="/usr/local/bin/strings" LDSHARED="cc 
-shared" PYTHONDONTWRITEBYTECODE= PYTHONOPTIMIZE= PREFIX=/usr/local  
LOCALBASE=/usr/local  CC="cc" CF
 LAGS="-O2 -pipe  -fstack-protector-strong -fno-strict-aliasing "  CPP="cpp" 
CPPFLAGS=""  LDFLAGS=" -shared -Wl,-rpath=/usr/local/lib/gcc10  
-L/usr/local/lib/gcc10 -B/usr/local/bin -L/usr/local/lib 
-fstack-protector-strong " LIBS=""  CXX="c++" CXXFLAGS="-O2 -pipe 
-fstack-protector-strong -fno-strict-aliasing  "  MANPREFIX="/usr/local" 
BSD_INSTALL_PROGRAM="install  -s -m 555"  BSD_INSTALL_LIB="install  -s -m 0644" 
 BSD_INSTALL_SCRIPT="install  -m 555"  BSD_INSTALL_DATA="install  -m 0644"  
BSD_INSTALL_MAN="install  -m 444"
--End MAKE_ENV--

--PLIST_SUB--
PORTDOCS="" PYTHON_INCLUDEDIR=include/python3.10  PYTHON_LIBDIR=lib/python3.10  
PYTHON_PLATFORM=freebsd14  PYTHON_SITELIBDIR=lib/python3.10/site-packages  
PYTHON_SUFFIX=310  PYTHON_EXT_SUFFIX=.cpython-310  P

[package - 114i386-default][math/py-numpy] Failed for py310-numpy-1.16.6_2,1 in build

2021-08-17 Thread pkg-fallout
You are receiving this mail as a port that you maintain
is failing to build on the FreeBSD package build server.
Please investigate the failure and submit a PR to fix
build.

Maintainer: python@FreeBSD.org
Log URL:
http://beefy10.nyi.freebsd.org/data/114i386-default/a5031e7be52b/logs/py310-numpy-1.16.6_2,1.log
Build URL:  
http://beefy10.nyi.freebsd.org/build.html?mastername=114i386-default&build=a5031e7be52b
Log:

=>> Building math/py-numpy
build started at Tue Aug 17 20:59:58 UTC 2021
port directory: /usr/ports/math/py-numpy
package name: py310-numpy-1.16.6_2,1
building for: FreeBSD 114i386-default-job-01 11.4-RELEASE-p12 FreeBSD 
11.4-RELEASE-p12 i386
maintained by: python@FreeBSD.org
Makefile ident: 
Poudriere version: 3.2.8-21-g883afb07
Host OSVERSION: 148
Jail OSVERSION: 1104001
Job Id: 01

---Begin Environment---
SHELL=/bin/csh
UNAME_p=i386
UNAME_m=i386
OSVERSION=1104001
UNAME_v=FreeBSD 11.4-RELEASE-p12
UNAME_r=11.4-RELEASE-p12
BLOCKSIZE=K
MAIL=/var/mail/root
STATUS=1
HOME=/root
PATH=/sbin:/bin:/usr/sbin:/usr/bin:/usr/local/sbin:/usr/local/bin:/root/bin
LOCALBASE=/usr/local
USER=root
LIBEXECPREFIX=/usr/local/libexec/poudriere
POUDRIERE_VERSION=3.2.8-21-g883afb07
MASTERMNT=/usr/local/poudriere/data/.m/114i386-default/ref
POUDRIERE_BUILD_TYPE=bulk
PACKAGE_BUILDING=yes
SAVED_TERM=
PWD=/usr/local/poudriere/data/.m/114i386-default/ref/.p/pool
P_PORTS_FEATURES=FLAVORS SELECTED_OPTIONS
MASTERNAME=114i386-default
SCRIPTPREFIX=/usr/local/share/poudriere
OLDPWD=/usr/local/poudriere/data/.m/114i386-default/ref/.p
SCRIPTPATH=/usr/local/share/poudriere/bulk.sh
POUDRIEREPATH=/usr/local/bin/poudriere
---End Environment---

---Begin Poudriere Port Flags/Env---
PORT_FLAGS=
PKGENV=
FLAVOR=py310
DEPENDS_ARGS=
MAKE_ARGS= FLAVOR=py310
---End Poudriere Port Flags/Env---

---Begin OPTIONS List---
===> The following configuration options are available for 
py310-numpy-1.16.6_2,1:
 DOCS=on: Build and/or install documentation
 SUITESPARSE=on: Use AMD and UMFPACK in SuiteSparse
> Options available for the single BLASLIB: you have to select exactly one 
of them
 ATLAS=off: ATLAS blas implementation
 NETLIB=off: Blas implementation from Netlib
 OPENBLAS=on: OpenBLAS blas implementation
===> Use 'make config' to modify these settings
---End OPTIONS List---

--MAINTAINER--
python@FreeBSD.org
--End MAINTAINER--

--CONFIGURE_ARGS--

--End CONFIGURE_ARGS--

--CONFIGURE_ENV--
F77="gfortran10" FC="gfortran10" FFLAGS="-O -Wl,-rpath=/usr/local/lib/gcc10" 
FCFLAGS="-Wl,-rpath=/usr/local/lib/gcc10" PYTHON="/usr/local/bin/python3.10" 
XDG_DATA_HOME=/wrkdirs/usr/ports/math/py-numpy/work-py310  
XDG_CONFIG_HOME=/wrkdirs/usr/ports/math/py-numpy/work-py310  
HOME=/wrkdirs/usr/ports/math/py-numpy/work-py310 TMPDIR="/tmp" 
PATH=/wrkdirs/usr/ports/math/py-numpy/work-py310/.bin:/sbin:/bin:/usr/sbin:/usr/bin:/usr/local/sbin:/usr/local/bin:/root/bin
 SHELL=/bin/sh CONFIG_SHELL=/bin/sh
--End CONFIGURE_ENV--

--MAKE_ENV--
F77="gfortran10" FC="gfortran10" FFLAGS="-O -Wl,-rpath=/usr/local/lib/gcc10" 
FCFLAGS="-Wl,-rpath=/usr/local/lib/gcc10" 
XDG_DATA_HOME=/wrkdirs/usr/ports/math/py-numpy/work-py310  
XDG_CONFIG_HOME=/wrkdirs/usr/ports/math/py-numpy/work-py310  
HOME=/wrkdirs/usr/ports/math/py-numpy/work-py310 TMPDIR="/tmp" 
PATH=/wrkdirs/usr/ports/math/py-numpy/work-py310/.bin:/sbin:/bin:/usr/sbin:/usr/bin:/usr/local/sbin:/usr/local/bin:/root/bin
 NO_PIE=yes MK_DEBUG_FILES=no MK_KERNEL_SYMBOLS=no SHELL=/bin/sh NO_LINT=YES 
ADDR2LINE="/usr/local/bin/addr2line" AR="/usr/local/bin/ar" 
AS="/usr/local/bin/as" CPPFILT="/usr/local/bin/c++filt" 
GPROF="/usr/local/bin/gprof" LD="/usr/local/bin/ld" NM="/usr/local/bin/nm" 
OBJCOPY="/usr/local/bin/objcopy" OBJDUMP="/usr/local/bin/objdump" 
RANLIB="/usr/local/bin/ranlib" READELF="/usr/local/bin/readelf" 
SIZE="/usr/local/bin/size" STRINGS="/usr/local/bin/strings" LDSHARED="cc 
-shared" PYTHONDONTWRITEBYTECODE= PYTHONOPTIMIZE= PREFIX=/usr/local  
LOCALBASE=/usr/local  CC="cc" CF
 LAGS="-O2 -pipe  -fstack-protector-strong -fno-strict-aliasing "  CPP="cpp" 
CPPFLAGS=""  LDFLAGS=" -shared -Wl,-rpath=/usr/local/lib/gcc10  
-L/usr/local/lib/gcc10 -B/usr/local/bin -L/usr/local/lib 
-fstack-protector-strong " LIBS=""  CXX="c++" CXXFLAGS="-O2 -pipe 
-fstack-protector-strong -fno-strict-aliasing  "  MANPREFIX="/usr/local" 
BSD_INSTALL_PROGRAM="install  -s -m 555"  BSD_INSTALL_LIB="install  -s -m 0644" 
 BSD_INSTALL_SCRIPT="install  -m 555"  BSD_INSTALL_DATA="install  -m 0644"  
BSD_INSTALL_MAN="install  -m 444"
--End MAKE_ENV--

--PLIST_SUB--
PORTDOCS="" PYTHON_INCLUDEDIR=include/python3.10  PYTHON_LIBDIR=lib/python3.10  
PYTHON_PLATFORM=freebsd11  PYTHON_SITELIBDIR=lib/python3.10/site-packages  
PYTHON_SUFFIX=310  PYTHON_EXT_SUFFIX=.cpython-310  PYTHON_VER=3.10  
PYTHON_VERSION=python3.10 PYTHON2="@comment " PYTHON3="" OSREL=11.4 PREFIX=%D 
LOCALBASE=/usr/local  RESETPREFIX=/usr/local LIB32DIR=lib 
DOCSDIR="share/doc/py310-numpy"  EXAMPLESDIR="share/examples/py310-numpy"  
DATADI

[package - 130i386-default][math/py-numpy] Failed for py310-numpy-1.16.6_2,1 in build

2021-08-17 Thread pkg-fallout
You are receiving this mail as a port that you maintain
is failing to build on the FreeBSD package build server.
Please investigate the failure and submit a PR to fix
build.

Maintainer: python@FreeBSD.org
Log URL:
http://beefy15.nyi.freebsd.org/data/130i386-default/a5031e7be52b/logs/py310-numpy-1.16.6_2,1.log
Build URL:  
http://beefy15.nyi.freebsd.org/build.html?mastername=130i386-default&build=a5031e7be52b
Log:

=>> Building math/py-numpy
build started at Tue Aug 17 21:44:55 UTC 2021
port directory: /usr/ports/math/py-numpy
package name: py310-numpy-1.16.6_2,1
building for: FreeBSD 130i386-default-job-14 13.0-RELEASE-p3 FreeBSD 
13.0-RELEASE-p3 i386
maintained by: python@FreeBSD.org
Makefile ident: 
Poudriere version: 3.2.8-21-g883afb07
Host OSVERSION: 148
Jail OSVERSION: 1300139
Job Id: 14

---Begin Environment---
SHELL=/bin/csh
UNAME_p=i386
UNAME_m=i386
OSVERSION=1300139
UNAME_v=FreeBSD 13.0-RELEASE-p3
UNAME_r=13.0-RELEASE-p3
BLOCKSIZE=K
MAIL=/var/mail/root
MM_CHARSET=UTF-8
LANG=C.UTF-8
STATUS=1
HOME=/root
PATH=/sbin:/bin:/usr/sbin:/usr/bin:/usr/local/sbin:/usr/local/bin:/root/bin
LOCALBASE=/usr/local
USER=root
LIBEXECPREFIX=/usr/local/libexec/poudriere
POUDRIERE_VERSION=3.2.8-21-g883afb07
MASTERMNT=/usr/local/poudriere/data/.m/130i386-default/ref
POUDRIERE_BUILD_TYPE=bulk
PACKAGE_BUILDING=yes
SAVED_TERM=
PWD=/usr/local/poudriere/data/.m/130i386-default/ref/.p/pool
P_PORTS_FEATURES=FLAVORS SELECTED_OPTIONS
MASTERNAME=130i386-default
SCRIPTPREFIX=/usr/local/share/poudriere
OLDPWD=/usr/local/poudriere/data/.m/130i386-default/ref/.p
SCRIPTPATH=/usr/local/share/poudriere/bulk.sh
POUDRIEREPATH=/usr/local/bin/poudriere
---End Environment---

---Begin Poudriere Port Flags/Env---
PORT_FLAGS=
PKGENV=
FLAVOR=py310
DEPENDS_ARGS=
MAKE_ARGS= FLAVOR=py310
---End Poudriere Port Flags/Env---

---Begin OPTIONS List---
===> The following configuration options are available for 
py310-numpy-1.16.6_2,1:
 DOCS=on: Build and/or install documentation
 SUITESPARSE=on: Use AMD and UMFPACK in SuiteSparse
> Options available for the single BLASLIB: you have to select exactly one 
of them
 ATLAS=off: ATLAS blas implementation
 NETLIB=off: Blas implementation from Netlib
 OPENBLAS=on: OpenBLAS blas implementation
===> Use 'make config' to modify these settings
---End OPTIONS List---

--MAINTAINER--
python@FreeBSD.org
--End MAINTAINER--

--CONFIGURE_ARGS--

--End CONFIGURE_ARGS--

--CONFIGURE_ENV--
F77="gfortran10" FC="gfortran10" FFLAGS="-O -Wl,-rpath=/usr/local/lib/gcc10" 
FCFLAGS="-Wl,-rpath=/usr/local/lib/gcc10" PYTHON="/usr/local/bin/python3.10" 
XDG_DATA_HOME=/wrkdirs/usr/ports/math/py-numpy/work-py310  
XDG_CONFIG_HOME=/wrkdirs/usr/ports/math/py-numpy/work-py310  
HOME=/wrkdirs/usr/ports/math/py-numpy/work-py310 TMPDIR="/tmp" 
PATH=/wrkdirs/usr/ports/math/py-numpy/work-py310/.bin:/sbin:/bin:/usr/sbin:/usr/bin:/usr/local/sbin:/usr/local/bin:/root/bin
 SHELL=/bin/sh CONFIG_SHELL=/bin/sh
--End CONFIGURE_ENV--

--MAKE_ENV--
F77="gfortran10" FC="gfortran10" FFLAGS="-O -Wl,-rpath=/usr/local/lib/gcc10" 
FCFLAGS="-Wl,-rpath=/usr/local/lib/gcc10" 
XDG_DATA_HOME=/wrkdirs/usr/ports/math/py-numpy/work-py310  
XDG_CONFIG_HOME=/wrkdirs/usr/ports/math/py-numpy/work-py310  
HOME=/wrkdirs/usr/ports/math/py-numpy/work-py310 TMPDIR="/tmp" 
PATH=/wrkdirs/usr/ports/math/py-numpy/work-py310/.bin:/sbin:/bin:/usr/sbin:/usr/bin:/usr/local/sbin:/usr/local/bin:/root/bin
 NO_PIE=yes MK_DEBUG_FILES=no MK_KERNEL_SYMBOLS=no SHELL=/bin/sh NO_LINT=YES 
ADDR2LINE="/usr/local/bin/addr2line" AR="/usr/local/bin/ar" 
AS="/usr/local/bin/as" CPPFILT="/usr/local/bin/c++filt" 
GPROF="/usr/local/bin/gprof" LD="/usr/local/bin/ld" NM="/usr/local/bin/nm" 
OBJCOPY="/usr/local/bin/objcopy" OBJDUMP="/usr/local/bin/objdump" 
RANLIB="/usr/local/bin/ranlib" READELF="/usr/local/bin/readelf" 
SIZE="/usr/local/bin/size" STRINGS="/usr/local/bin/strings" LDSHARED="cc 
-shared" PYTHONDONTWRITEBYTECODE= PYTHONOPTIMIZE= PREFIX=/usr/local  
LOCALBASE=/usr/local  CC="cc" CF
 LAGS="-O2 -pipe  -fstack-protector-strong -fno-strict-aliasing "  CPP="cpp" 
CPPFLAGS=""  LDFLAGS=" -shared -Wl,-rpath=/usr/local/lib/gcc10  
-L/usr/local/lib/gcc10 -B/usr/local/bin -L/usr/local/lib 
-fstack-protector-strong " LIBS=""  CXX="c++" CXXFLAGS="-O2 -pipe 
-fstack-protector-strong -fno-strict-aliasing  "  MANPREFIX="/usr/local" 
BSD_INSTALL_PROGRAM="install  -s -m 555"  BSD_INSTALL_LIB="install  -s -m 0644" 
 BSD_INSTALL_SCRIPT="install  -m 555"  BSD_INSTALL_DATA="install  -m 0644"  
BSD_INSTALL_MAN="install  -m 444"
--End MAKE_ENV--

--PLIST_SUB--
PORTDOCS="" PYTHON_INCLUDEDIR=include/python3.10  PYTHON_LIBDIR=lib/python3.10  
PYTHON_PLATFORM=freebsd13  PYTHON_SITELIBDIR=lib/python3.10/site-packages  
PYTHON_SUFFIX=310  PYTHON_EXT_SUFFIX=.cpython-310  PYTHON_VER=3.10  
PYTHON_VERSION=python3.10 PYTHON2="@comment " PYTHON3="" OSREL=13.0 PREFIX=%D 
LOCALBASE=/usr/local  RESETPREFIX=/usr/local LIB32DIR=lib 
DOCSDIR="share/doc/py310-numpy"  EXAMPLESDIR="share/exam

[package - 130amd64-default][math/py-numpy] Failed for py310-numpy-1.16.6_2,1 in build

2021-08-17 Thread pkg-fallout
You are receiving this mail as a port that you maintain
is failing to build on the FreeBSD package build server.
Please investigate the failure and submit a PR to fix
build.

Maintainer: python@FreeBSD.org
Log URL:
http://beefy16.nyi.freebsd.org/data/130amd64-default/a5031e7be52b/logs/py310-numpy-1.16.6_2,1.log
Build URL:  
http://beefy16.nyi.freebsd.org/build.html?mastername=130amd64-default&build=a5031e7be52b
Log:

=>> Building math/py-numpy
build started at Tue Aug 17 23:40:55 UTC 2021
port directory: /usr/ports/math/py-numpy
package name: py310-numpy-1.16.6_2,1
building for: FreeBSD 130amd64-default-job-07 13.0-RELEASE-p3 FreeBSD 
13.0-RELEASE-p3 amd64
maintained by: python@FreeBSD.org
Makefile ident: 
Poudriere version: 3.2.8-21-g883afb07
Host OSVERSION: 148
Jail OSVERSION: 1300139
Job Id: 07

---Begin Environment---
SHELL=/bin/csh
OSVERSION=1300139
UNAME_v=FreeBSD 13.0-RELEASE-p3
UNAME_r=13.0-RELEASE-p3
BLOCKSIZE=K
MAIL=/var/mail/root
MM_CHARSET=UTF-8
LANG=C.UTF-8
STATUS=1
HOME=/root
PATH=/sbin:/bin:/usr/sbin:/usr/bin:/usr/local/sbin:/usr/local/bin:/root/bin
LOCALBASE=/usr/local
USER=root
LIBEXECPREFIX=/usr/local/libexec/poudriere
POUDRIERE_VERSION=3.2.8-21-g883afb07
MASTERMNT=/usr/local/poudriere/data/.m/130amd64-default/ref
POUDRIERE_BUILD_TYPE=bulk
PACKAGE_BUILDING=yes
SAVED_TERM=
PWD=/usr/local/poudriere/data/.m/130amd64-default/ref/.p/pool
P_PORTS_FEATURES=FLAVORS SELECTED_OPTIONS
MASTERNAME=130amd64-default
SCRIPTPREFIX=/usr/local/share/poudriere
OLDPWD=/usr/local/poudriere/data/.m/130amd64-default/ref/.p
SCRIPTPATH=/usr/local/share/poudriere/bulk.sh
POUDRIEREPATH=/usr/local/bin/poudriere
---End Environment---

---Begin Poudriere Port Flags/Env---
PORT_FLAGS=
PKGENV=
FLAVOR=py310
DEPENDS_ARGS=
MAKE_ARGS= FLAVOR=py310
---End Poudriere Port Flags/Env---

---Begin OPTIONS List---
===> The following configuration options are available for 
py310-numpy-1.16.6_2,1:
 DOCS=on: Build and/or install documentation
 SUITESPARSE=on: Use AMD and UMFPACK in SuiteSparse
> Options available for the single BLASLIB: you have to select exactly one 
of them
 ATLAS=off: ATLAS blas implementation
 NETLIB=off: Blas implementation from Netlib
 OPENBLAS=on: OpenBLAS blas implementation
===> Use 'make config' to modify these settings
---End OPTIONS List---

--MAINTAINER--
python@FreeBSD.org
--End MAINTAINER--

--CONFIGURE_ARGS--

--End CONFIGURE_ARGS--

--CONFIGURE_ENV--
F77="gfortran10" FC="gfortran10" FFLAGS="-O -Wl,-rpath=/usr/local/lib/gcc10" 
FCFLAGS="-Wl,-rpath=/usr/local/lib/gcc10" PYTHON="/usr/local/bin/python3.10" 
XDG_DATA_HOME=/wrkdirs/usr/ports/math/py-numpy/work-py310  
XDG_CONFIG_HOME=/wrkdirs/usr/ports/math/py-numpy/work-py310  
HOME=/wrkdirs/usr/ports/math/py-numpy/work-py310 TMPDIR="/tmp" 
PATH=/wrkdirs/usr/ports/math/py-numpy/work-py310/.bin:/sbin:/bin:/usr/sbin:/usr/bin:/usr/local/sbin:/usr/local/bin:/root/bin
 SHELL=/bin/sh CONFIG_SHELL=/bin/sh
--End CONFIGURE_ENV--

--MAKE_ENV--
F77="gfortran10" FC="gfortran10" FFLAGS="-O -Wl,-rpath=/usr/local/lib/gcc10" 
FCFLAGS="-Wl,-rpath=/usr/local/lib/gcc10" 
XDG_DATA_HOME=/wrkdirs/usr/ports/math/py-numpy/work-py310  
XDG_CONFIG_HOME=/wrkdirs/usr/ports/math/py-numpy/work-py310  
HOME=/wrkdirs/usr/ports/math/py-numpy/work-py310 TMPDIR="/tmp" 
PATH=/wrkdirs/usr/ports/math/py-numpy/work-py310/.bin:/sbin:/bin:/usr/sbin:/usr/bin:/usr/local/sbin:/usr/local/bin:/root/bin
 NO_PIE=yes MK_DEBUG_FILES=no MK_KERNEL_SYMBOLS=no SHELL=/bin/sh NO_LINT=YES 
ADDR2LINE="/usr/local/bin/addr2line" AR="/usr/local/bin/ar" 
AS="/usr/local/bin/as" CPPFILT="/usr/local/bin/c++filt" 
GPROF="/usr/local/bin/gprof" LD="/usr/local/bin/ld" NM="/usr/local/bin/nm" 
OBJCOPY="/usr/local/bin/objcopy" OBJDUMP="/usr/local/bin/objdump" 
RANLIB="/usr/local/bin/ranlib" READELF="/usr/local/bin/readelf" 
SIZE="/usr/local/bin/size" STRINGS="/usr/local/bin/strings" LDSHARED="cc 
-shared" PYTHONDONTWRITEBYTECODE= PYTHONOPTIMIZE= PREFIX=/usr/local  
LOCALBASE=/usr/local  CC="cc" CF
 LAGS="-O2 -pipe  -fstack-protector-strong -fno-strict-aliasing "  CPP="cpp" 
CPPFLAGS=""  LDFLAGS=" -shared -Wl,-rpath=/usr/local/lib/gcc10  
-L/usr/local/lib/gcc10 -B/usr/local/bin -L/usr/local/lib 
-fstack-protector-strong " LIBS=""  CXX="c++" CXXFLAGS="-O2 -pipe 
-fstack-protector-strong -fno-strict-aliasing  "  MANPREFIX="/usr/local" 
BSD_INSTALL_PROGRAM="install  -s -m 555"  BSD_INSTALL_LIB="install  -s -m 0644" 
 BSD_INSTALL_SCRIPT="install  -m 555"  BSD_INSTALL_DATA="install  -m 0644"  
BSD_INSTALL_MAN="install  -m 444"
--End MAKE_ENV--

--PLIST_SUB--
PORTDOCS="" PYTHON_INCLUDEDIR=include/python3.10  PYTHON_LIBDIR=lib/python3.10  
PYTHON_PLATFORM=freebsd13  PYTHON_SITELIBDIR=lib/python3.10/site-packages  
PYTHON_SUFFIX=310  PYTHON_EXT_SUFFIX=.cpython-310  PYTHON_VER=3.10  
PYTHON_VERSION=python3.10 PYTHON2="@comment " PYTHON3="" OSREL=13.0 PREFIX=%D 
LOCALBASE=/usr/local  RESETPREFIX=/usr/local LIB32DIR=lib 
DOCSDIR="share/doc/py310-numpy"  EXAMPLESDIR="share/examples/py310-numpy" 

[package - 114amd64-default][math/py-numpy] Failed for py310-numpy-1.16.6_2,1 in build

2021-08-17 Thread pkg-fallout
You are receiving this mail as a port that you maintain
is failing to build on the FreeBSD package build server.
Please investigate the failure and submit a PR to fix
build.

Maintainer: python@FreeBSD.org
Log URL:
http://beefy9.nyi.freebsd.org/data/114amd64-default/a5031e7be52b/logs/py310-numpy-1.16.6_2,1.log
Build URL:  
http://beefy9.nyi.freebsd.org/build.html?mastername=114amd64-default&build=a5031e7be52b
Log:

=>> Building math/py-numpy
build started at Wed Aug 18 00:09:25 UTC 2021
port directory: /usr/ports/math/py-numpy
package name: py310-numpy-1.16.6_2,1
building for: FreeBSD 114amd64-default-job-11 11.4-RELEASE-p12 FreeBSD 
11.4-RELEASE-p12 amd64
maintained by: python@FreeBSD.org
Makefile ident: 
Poudriere version: 3.2.8-21-g883afb07
Host OSVERSION: 148
Jail OSVERSION: 1104001
Job Id: 11

---Begin Environment---
SHELL=/bin/csh
OSVERSION=1104001
UNAME_v=FreeBSD 11.4-RELEASE-p12
UNAME_r=11.4-RELEASE-p12
BLOCKSIZE=K
MAIL=/var/mail/root
STATUS=1
HOME=/root
PATH=/sbin:/bin:/usr/sbin:/usr/bin:/usr/local/sbin:/usr/local/bin:/root/bin
LOCALBASE=/usr/local
USER=root
LIBEXECPREFIX=/usr/local/libexec/poudriere
POUDRIERE_VERSION=3.2.8-21-g883afb07
MASTERMNT=/usr/local/poudriere/data/.m/114amd64-default/ref
POUDRIERE_BUILD_TYPE=bulk
PACKAGE_BUILDING=yes
SAVED_TERM=
PWD=/usr/local/poudriere/data/.m/114amd64-default/ref/.p/pool
P_PORTS_FEATURES=FLAVORS SELECTED_OPTIONS
MASTERNAME=114amd64-default
SCRIPTPREFIX=/usr/local/share/poudriere
OLDPWD=/usr/local/poudriere/data/.m/114amd64-default/ref/.p
SCRIPTPATH=/usr/local/share/poudriere/bulk.sh
POUDRIEREPATH=/usr/local/bin/poudriere
---End Environment---

---Begin Poudriere Port Flags/Env---
PORT_FLAGS=
PKGENV=
FLAVOR=py310
DEPENDS_ARGS=
MAKE_ARGS= FLAVOR=py310
---End Poudriere Port Flags/Env---

---Begin OPTIONS List---
===> The following configuration options are available for 
py310-numpy-1.16.6_2,1:
 DOCS=on: Build and/or install documentation
 SUITESPARSE=on: Use AMD and UMFPACK in SuiteSparse
> Options available for the single BLASLIB: you have to select exactly one 
of them
 ATLAS=off: ATLAS blas implementation
 NETLIB=off: Blas implementation from Netlib
 OPENBLAS=on: OpenBLAS blas implementation
===> Use 'make config' to modify these settings
---End OPTIONS List---

--MAINTAINER--
python@FreeBSD.org
--End MAINTAINER--

--CONFIGURE_ARGS--

--End CONFIGURE_ARGS--

--CONFIGURE_ENV--
F77="gfortran10" FC="gfortran10" FFLAGS="-O -Wl,-rpath=/usr/local/lib/gcc10" 
FCFLAGS="-Wl,-rpath=/usr/local/lib/gcc10" PYTHON="/usr/local/bin/python3.10" 
XDG_DATA_HOME=/wrkdirs/usr/ports/math/py-numpy/work-py310  
XDG_CONFIG_HOME=/wrkdirs/usr/ports/math/py-numpy/work-py310  
HOME=/wrkdirs/usr/ports/math/py-numpy/work-py310 TMPDIR="/tmp" 
PATH=/wrkdirs/usr/ports/math/py-numpy/work-py310/.bin:/sbin:/bin:/usr/sbin:/usr/bin:/usr/local/sbin:/usr/local/bin:/root/bin
 SHELL=/bin/sh CONFIG_SHELL=/bin/sh
--End CONFIGURE_ENV--

--MAKE_ENV--
F77="gfortran10" FC="gfortran10" FFLAGS="-O -Wl,-rpath=/usr/local/lib/gcc10" 
FCFLAGS="-Wl,-rpath=/usr/local/lib/gcc10" 
XDG_DATA_HOME=/wrkdirs/usr/ports/math/py-numpy/work-py310  
XDG_CONFIG_HOME=/wrkdirs/usr/ports/math/py-numpy/work-py310  
HOME=/wrkdirs/usr/ports/math/py-numpy/work-py310 TMPDIR="/tmp" 
PATH=/wrkdirs/usr/ports/math/py-numpy/work-py310/.bin:/sbin:/bin:/usr/sbin:/usr/bin:/usr/local/sbin:/usr/local/bin:/root/bin
 NO_PIE=yes MK_DEBUG_FILES=no MK_KERNEL_SYMBOLS=no SHELL=/bin/sh NO_LINT=YES 
ADDR2LINE="/usr/local/bin/addr2line" AR="/usr/local/bin/ar" 
AS="/usr/local/bin/as" CPPFILT="/usr/local/bin/c++filt" 
GPROF="/usr/local/bin/gprof" LD="/usr/local/bin/ld" NM="/usr/local/bin/nm" 
OBJCOPY="/usr/local/bin/objcopy" OBJDUMP="/usr/local/bin/objdump" 
RANLIB="/usr/local/bin/ranlib" READELF="/usr/local/bin/readelf" 
SIZE="/usr/local/bin/size" STRINGS="/usr/local/bin/strings" LDSHARED="cc 
-shared" PYTHONDONTWRITEBYTECODE= PYTHONOPTIMIZE= PREFIX=/usr/local  
LOCALBASE=/usr/local  CC="cc" CF
 LAGS="-O2 -pipe  -fstack-protector-strong -fno-strict-aliasing "  CPP="cpp" 
CPPFLAGS=""  LDFLAGS=" -shared -Wl,-rpath=/usr/local/lib/gcc10  
-L/usr/local/lib/gcc10 -B/usr/local/bin -L/usr/local/lib 
-fstack-protector-strong " LIBS=""  CXX="c++" CXXFLAGS="-O2 -pipe 
-fstack-protector-strong -fno-strict-aliasing  "  MANPREFIX="/usr/local" 
BSD_INSTALL_PROGRAM="install  -s -m 555"  BSD_INSTALL_LIB="install  -s -m 0644" 
 BSD_INSTALL_SCRIPT="install  -m 555"  BSD_INSTALL_DATA="install  -m 0644"  
BSD_INSTALL_MAN="install  -m 444"
--End MAKE_ENV--

--PLIST_SUB--
PORTDOCS="" PYTHON_INCLUDEDIR=include/python3.10  PYTHON_LIBDIR=lib/python3.10  
PYTHON_PLATFORM=freebsd11  PYTHON_SITELIBDIR=lib/python3.10/site-packages  
PYTHON_SUFFIX=310  PYTHON_EXT_SUFFIX=.cpython-310  PYTHON_VER=3.10  
PYTHON_VERSION=python3.10 PYTHON2="@comment " PYTHON3="" OSREL=11.4 PREFIX=%D 
LOCALBASE=/usr/local  RESETPREFIX=/usr/local LIB32DIR=lib 
DOCSDIR="share/doc/py310-numpy"  EXAMPLESDIR="share/examples/py310-numpy"  
DATADIR="share/py310-numpy