[Bug 252057] lang/python38: 3.8.6_1 -> 3.8.7 strip issues
https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=252057 Kai Knoblich changed: What|Removed |Added CC||k...@freebsd.org --- Comment #4 from Kai Knoblich --- The most Python ports that fails at the moment with Python 3.8 have a "post-patch" target which contain a fixed path to the shared library. For example the databases/py-sqlite3 port has following line: > post-install: > ${STRIP_CMD} ${STAGEDIR}${PYTHON_LIBDIR}/lib-dynload/_sqlite3.so Changing it to > post-install: > ${STRIP_CMD} ${STAGEDIR}${PYTHON_LIBDIR}/lib-dynload/*.so remedies the issue. -- You are receiving this mail because: You are on the CC list for the bug. ___ freebsd-python@freebsd.org mailing list https://lists.freebsd.org/mailman/listinfo/freebsd-python To unsubscribe, send any mail to "freebsd-python-unsubscr...@freebsd.org"
[Bug 252057] lang/python38: 3.8.6_1 -> 3.8.7 strip issues
https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=252057 --- Comment #5 from Dima Panov --- Now we have only two ways to implement. Way #1 (bad): patch py38 to revert build scheme from .${SOABI}${SHLIB_SUFFIX} to .${SHLIB_SUFFIX} (old way, none of python consumers needs to ajusted) Way #2 (Right Way™): patch all python3[679] to apply new build scheme (till it will be released oficially), patch Uses/python.mk to subst EXT_SUFFIX for plist AND fix all ports which build shared python library in portstree due to hardcoded paths and names in build/strip procedures and plists -- You are receiving this mail because: You are on the CC list for the bug. ___ freebsd-python@freebsd.org mailing list https://lists.freebsd.org/mailman/listinfo/freebsd-python To unsubscribe, send any mail to "freebsd-python-unsubscr...@freebsd.org"
[Bug 252057] lang/python38: 3.8.6_1 -> 3.8.7 strip issues
https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=252057 --- Comment #6 from Dima Panov --- (In reply to Kai Knoblich from comment #4) I prefer to not cut the whole library name but use named wildcard ${STRIP_CMD} ${STAGEDIR}${PYTHON_LIBDIR}/lib-dynload/_sqlite3*.so -- You are receiving this mail because: You are on the CC list for the bug. ___ freebsd-python@freebsd.org mailing list https://lists.freebsd.org/mailman/listinfo/freebsd-python To unsubscribe, send any mail to "freebsd-python-unsubscr...@freebsd.org"
[Bug 252057] lang/python38: 3.8.6_1 -> 3.8.7 strip issues
https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=252057 --- Comment #7 from Kubilay Kocak --- (In reply to Dima Panov from comment #5) We should use lang/python38 to first 'prototype' what might end up being back-ported (but possibly wont be) to 37,36. We can move whatever common bits are needed longer term to python.mk in a separate changeset. Right now 38 is broken and I'm +1 on the minimal necessary step to get them working without a revert At this point, Id actually be fixing what I consider to be a root cause, which is individual ports plists being coupled to the python implementation by hardcoding they're STRIP lines @Kai are there any ports failing that *aren't* due to hardcoded lines? -- You are receiving this mail because: You are on the CC list for the bug. ___ freebsd-python@freebsd.org mailing list https://lists.freebsd.org/mailman/listinfo/freebsd-python To unsubscribe, send any mail to "freebsd-python-unsubscr...@freebsd.org"
[Bug 252057] lang/python38: 3.8.6_1 -> 3.8.7 strip issues
https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=252057 --- Comment #8 from Dima Panov --- (In reply to Kubilay Kocak from comment #7) Yep, revert is noop here because new python releases of all branchel will switch to this scheme unconditionally > @Kai are there any ports failing that *aren't* due to hardcoded > lines? As I see in my poudriere, answer is 'no', all fails caused by strip/plist issues and if for pure py-ports with autoplist we simply can fix by use named wildcard, ports like gobject-introspection or py-grpcio needs to use some hacks depends on py version. And it is an argument for my opinion, posted earliesr -- all python3* ports should import the new naming scheme and all consumers will be adjusted without any extra .ifdefs -- You are receiving this mail because: You are on the CC list for the bug. ___ freebsd-python@freebsd.org mailing list https://lists.freebsd.org/mailman/listinfo/freebsd-python To unsubscribe, send any mail to "freebsd-python-unsubscr...@freebsd.org"
[Bug 252057] lang/python38: 3.8.6_1 -> 3.8.7 strip issues
https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=252057 --- Comment #9 from Dima Panov --- Folks, I propose this solution: py_version depended variable PYTHON_EXT_SUFFIX which can be used in reinplace formulas and plist substitution. https://people.freebsd.org/~fluffy/-patches/python_ext.diff It allows to keep unpatched python3[679] and handle shlib suffixes at consumers fields. Tested, works for me with all py flavors We need to correct many consumers ports but this tast will be anyway faced with future python releases so we can handle it before increment default python version :) -- You are receiving this mail because: You are on the CC list for the bug. ___ freebsd-python@freebsd.org mailing list https://lists.freebsd.org/mailman/listinfo/freebsd-python To unsubscribe, send any mail to "freebsd-python-unsubscr...@freebsd.org"
[Bug 252057] lang/python38: 3.8.6_1 -> 3.8.7 strip issues
https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=252057 --- Comment #10 from Kai Knoblich --- Created attachment 220839 --> https://bugs.freebsd.org/bugzilla/attachment.cgi?id=220839&action=edit DRAFT-PR252057-fix-hardcoded-paths-for-python38.patch Attached is a WIP patch that deals with the hardcoded path of most ports. It keeps the library name as suggested in comment #6. I left out the devel/py-grpcio port and all the py-qt5-* ports as they don't seem to be affected. Please note: Some ports could still be missing, because I've only looked for py-* ports make use of ${STRIP_CMD} and the whole patch still needs QA via bulk-runs. Together with fluffy@'s patch the whole Python 3.8 issue could probably be straightened out relatively quickly. -- You are receiving this mail because: You are on the CC list for the bug. ___ freebsd-python@freebsd.org mailing list https://lists.freebsd.org/mailman/listinfo/freebsd-python To unsubscribe, send any mail to "freebsd-python-unsubscr...@freebsd.org"
[Bug 252057] lang/python38: 3.8.6_1 -> 3.8.7 strip issues
https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=252057 --- Comment #11 from Wen Heping --- (In reply to Dima Panov from comment #9) I would like use this patch to resolv the problem. wen -- You are receiving this mail because: You are on the CC list for the bug. ___ freebsd-python@freebsd.org mailing list https://lists.freebsd.org/mailman/listinfo/freebsd-python To unsubscribe, send any mail to "freebsd-python-unsubscr...@freebsd.org"
[Bug 252057] lang/python38: 3.8.6_1 -> 3.8.7 strip issues
https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=252057 --- Comment #12 from Dima Panov --- (In reply to Kai Knoblich from comment #10) Please cut out emulators/ucon64 update from this patch I've catches some other ports which affected library names too. They easy be fixed after python.mk patch is landed. -- You are receiving this mail because: You are on the CC list for the bug. ___ freebsd-python@freebsd.org mailing list https://lists.freebsd.org/mailman/listinfo/freebsd-python To unsubscribe, send any mail to "freebsd-python-unsubscr...@freebsd.org"
[Bug 252057] lang/python38: 3.8.6_1 -> 3.8.7 strip issues
https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=252057 --- Comment #13 from Kubilay Kocak --- I think both changes should land (separately). 1) the hardcoded/coupled plist entries need to be fixed (kais patch, which resolves the present regression) 2) ports not using autoplist need a variable (which changes across versions, dima's patch) -- You are receiving this mail because: You are on the CC list for the bug. ___ freebsd-python@freebsd.org mailing list https://lists.freebsd.org/mailman/listinfo/freebsd-python To unsubscribe, send any mail to "freebsd-python-unsubscr...@freebsd.org"
[Bug 252057] lang/python38: 3.8.6_1 -> 3.8.7 strip issues
https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=252057 Kubilay Kocak changed: What|Removed |Added Attachment #220839||maintainer-approval+ Flags|| --- Comment #14 from Kubilay Kocak --- Comment on attachment 220839 --> https://bugs.freebsd.org/bugzilla/attachment.cgi?id=220839 DRAFT-PR252057-fix-hardcoded-paths-for-python38.patch Approved by: koobs (python) Minus emulators/ucon64 PORTVERSION update chunk @Dima can you attach your patch here too please -- You are receiving this mail because: You are on the CC list for the bug. ___ freebsd-python@freebsd.org mailing list https://lists.freebsd.org/mailman/listinfo/freebsd-python To unsubscribe, send any mail to "freebsd-python-unsubscr...@freebsd.org"
[Bug 252057] lang/python38: 3.8.6_1 -> 3.8.7 strip issues
https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=252057 --- Comment #15 from Dima Panov --- Created attachment 220841 --> https://bugs.freebsd.org/bugzilla/attachment.cgi?id=220841&action=edit Mk/Uses/python.mk: Handle python dynamic library naming patch aslo devel/gobject-introspection and devel/py-grpcio as examples to apply new library naming scheme -- You are receiving this mail because: You are on the CC list for the bug. ___ freebsd-python@freebsd.org mailing list https://lists.freebsd.org/mailman/listinfo/freebsd-python To unsubscribe, send any mail to "freebsd-python-unsubscr...@freebsd.org"
[Bug 252057] lang/python38: 3.8.6_1 -> 3.8.7 strip issues
https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=252057 Kai Knoblich changed: What|Removed |Added Attachment #220839|0 |1 is obsolete|| Attachment #220843||maintainer-approval+ Flags|| --- Comment #16 from Kai Knoblich --- Created attachment 220843 --> https://bugs.freebsd.org/bugzilla/attachment.cgi?id=220843&action=edit DRAFT-PR252057-fix-hardcoded-paths-for-python38-v2.patch (In reply to Dima Panov from comment #12) Oops, good catch! That one crept in and is removed from the updated patch. Setting maintainer-approval flag accordingly as given by koobs@ in comment #14. I'll soon do the appropriate QA steps and if everything is ok, commit the patch for the hardcoded paths accordingly. -- You are receiving this mail because: You are on the CC list for the bug. ___ freebsd-python@freebsd.org mailing list https://lists.freebsd.org/mailman/listinfo/freebsd-python To unsubscribe, send any mail to "freebsd-python-unsubscr...@freebsd.org"
[Bug 252057] lang/python38: 3.8.6_1 -> 3.8.7 strip issues
https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=252057 Dima Panov changed: What|Removed |Added Attachment #220841|0 |1 is obsolete|| --- Comment #17 from Dima Panov --- Created attachment 220844 --> https://bugs.freebsd.org/bugzilla/attachment.cgi?id=220844&action=edit Mk/Uses/python.mk: Handle python dynamic library naming v2 Sligtly modified version -- exclude '.so' from variable to allow to use it with not only library names, pkgconfig too, for example. With py!= 38 variable will be empty Catched on devel/talloc -- You are receiving this mail because: You are on the CC list for the bug. ___ freebsd-python@freebsd.org mailing list https://lists.freebsd.org/mailman/listinfo/freebsd-python To unsubscribe, send any mail to "freebsd-python-unsubscr...@freebsd.org"
[Bug 249337] [meta] Ports broken by Python 2.7 End-of-Life and removal
https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=249337 Bug 249337 depends on bug 249607, which changed state. Bug 249607 Summary: devel/android-tools-adb: depends on python 2.x https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=249607 What|Removed |Added Status|New |Closed Resolution|--- |FIXED -- You are receiving this mail because: You are the assignee for the bug. ___ freebsd-python@freebsd.org mailing list https://lists.freebsd.org/mailman/listinfo/freebsd-python To unsubscribe, send any mail to "freebsd-python-unsubscr...@freebsd.org"
[Bug 251718] science/py-scipy: Update 1.2.2 -> 1.5.4
https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=251718 Yuri Victorovich changed: What|Removed |Added Status|New |Closed Resolution|--- |FIXED Assignee|pyt...@freebsd.org |y...@freebsd.org --- Comment #1 from Yuri Victorovich --- Committed. -- You are receiving this mail because: You are the assignee for the bug. ___ freebsd-python@freebsd.org mailing list https://lists.freebsd.org/mailman/listinfo/freebsd-python To unsubscribe, send any mail to "freebsd-python-unsubscr...@freebsd.org"
[Bug 246364] science/py-scipy: upgrade to 1.2.3
https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=246364 Yuri Victorovich changed: What|Removed |Added CC||y...@freebsd.org Resolution|--- |Overcome By Events Status|New |Closed -- You are receiving this mail because: You are the assignee for the bug. ___ freebsd-python@freebsd.org mailing list https://lists.freebsd.org/mailman/listinfo/freebsd-python To unsubscribe, send any mail to "freebsd-python-unsubscr...@freebsd.org"
[package - head-amd64-default][science/py-scipy] Failed for py27-scipy-1.5.4 in configure
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: pyt...@freebsd.org Last committer: y...@freebsd.org Ident: $FreeBSD: head/science/py-scipy/Makefile 559036 2020-12-23 23:38:29Z yuri $ Log URL: http://beefy18.nyi.freebsd.org/data/head-amd64-default/p559040_s368820/logs/py27-scipy-1.5.4.log Build URL: http://beefy18.nyi.freebsd.org/build.html?mastername=head-amd64-default&build=p559040_s368820 Log: =>> Building science/py-scipy build started at Thu Dec 24 01:09:35 UTC 2020 port directory: /usr/ports/science/py-scipy package name: py27-scipy-1.5.4 building for: FreeBSD head-amd64-default-job-06 13.0-CURRENT FreeBSD 13.0-CURRENT 1300132 amd64 maintained by: pyt...@freebsd.org Makefile ident: $FreeBSD: head/science/py-scipy/Makefile 559036 2020-12-23 23:38:29Z yuri $ Poudriere version: 3.2.8-8-gaf08dbda Host OSVERSION: 1300121 Jail OSVERSION: 1300132 Job Id: 06 !!! Jail is newer than host. (Jail: 1300132, Host: 1300121) !!! !!! This is not supported. !!! !!! Host kernel must be same or newer than jail. !!! !!! Expect build failures. !!! ---Begin Environment--- SHELL=/bin/csh OSVERSION=1300132 UNAME_v=FreeBSD 13.0-CURRENT 1300132 UNAME_r=13.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-8-gaf08dbda MASTERMNT=/usr/local/poudriere/data/.m/head-amd64-default/ref POUDRIERE_BUILD_TYPE=bulk PACKAGE_BUILDING=yes SAVED_TERM= PWD=/usr/local/poudriere/data/.m/head-amd64-default/ref/.p/pool P_PORTS_FEATURES=FLAVORS SELECTED_OPTIONS MASTERNAME=head-amd64-default SCRIPTPREFIX=/usr/local/share/poudriere OLDPWD=/usr/local/poudriere/data/.m/head-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=py27 DEPENDS_ARGS= MAKE_ARGS= FLAVOR=py27 ---End Poudriere Port Flags/Env--- ---Begin OPTIONS List--- ===> The following configuration options are available for py27-scipy-1.5.4: DOCS=on: Build and/or install documentation ===> Use 'make config' to modify these settings ---End OPTIONS List--- --MAINTAINER-- pyt...@freebsd.org --End MAINTAINER-- --CONFIGURE_ARGS-- --End CONFIGURE_ARGS-- --CONFIGURE_ENV-- F77="gfortran9" FC="gfortran9" FFLAGS="-O -std=legacy -Wl,-rpath=/usr/local/lib/gcc9" FCFLAGS="-Wl,-rpath=/usr/local/lib/gcc9" PYTHON="/usr/local/bin/python2.7" XDG_DATA_HOME=/wrkdirs/usr/ports/science/py-scipy/work-py27 XDG_CONFIG_HOME=/wrkdirs/usr/ports/science/py-scipy/work-py27 HOME=/wrkdirs/usr/ports/science/py-scipy/work-py27 TMPDIR="/tmp" PATH=/wrkdirs/usr/ports/science/py-scipy/work-py27/.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="gfortran9" FC="gfortran9" FFLAGS="-O -std=legacy -Wl,-rpath=/usr/local/lib/gcc9" FCFLAGS="-Wl,-rpath=/usr/local/lib/gcc9" XDG_DATA_HOME=/wrkdirs/usr/ports/science/py-scipy/work-py27 XDG_CONFIG_HOME=/wrkdirs/usr/ports/science/py-scipy/work-py27 HOME=/wrkdirs/usr/ports/science/py-scipy/work-py27 TMPDIR="/tmp" PATH=/wrkdirs/usr/ports/science/py-scipy/work-py27/.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/l ocal CC="cc" CFLAGS="-O2 -pipe -fstack-protector-strong -fno-strict-aliasing " CPP="cpp" CPPFLAGS="" LDFLAGS=" -shared -L/usr/local/lib -Wl,-rpath=/usr/local/lib/gcc9 -L/usr/local/lib/gcc9 -B/usr/local/bin -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/python2.7 PYTHON_LIBDIR=lib/python2.7 PYTHON_PLATFORM=freebsd13 PYTHON_SITELIBDIR=lib/python2.7/site-packages PYTHON_SUFFIX=27 PYTHON_VER=2.7 PYTHON_VERSION=python2.7 PYTHON2="" PYTHON3="@comment " OSREL=13.0 PREFIX=%D LOCALBASE=/usr/local RE
[package - head-i386-default][science/py-scipy] Failed for py27-scipy-1.5.4 in configure
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: pyt...@freebsd.org Last committer: y...@freebsd.org Ident: $FreeBSD: head/science/py-scipy/Makefile 559036 2020-12-23 23:38:29Z yuri $ Log URL: http://beefy17.nyi.freebsd.org/data/head-i386-default/p559040_s368820/logs/py27-scipy-1.5.4.log Build URL: http://beefy17.nyi.freebsd.org/build.html?mastername=head-i386-default&build=p559040_s368820 Log: =>> Building science/py-scipy build started at Thu Dec 24 01:10:34 UTC 2020 port directory: /usr/ports/science/py-scipy package name: py27-scipy-1.5.4 building for: FreeBSD head-i386-default-job-05 13.0-CURRENT FreeBSD 13.0-CURRENT 1300132 i386 maintained by: pyt...@freebsd.org Makefile ident: $FreeBSD: head/science/py-scipy/Makefile 559036 2020-12-23 23:38:29Z yuri $ Poudriere version: 3.2.8-8-gaf08dbda Host OSVERSION: 1300121 Jail OSVERSION: 1300132 Job Id: 05 !!! Jail is newer than host. (Jail: 1300132, Host: 1300121) !!! !!! 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=1300132 UNAME_v=FreeBSD 13.0-CURRENT 1300132 UNAME_r=13.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-8-gaf08dbda MASTERMNT=/usr/local/poudriere/data/.m/head-i386-default/ref POUDRIERE_BUILD_TYPE=bulk PACKAGE_BUILDING=yes SAVED_TERM= PWD=/usr/local/poudriere/data/.m/head-i386-default/ref/.p/pool P_PORTS_FEATURES=FLAVORS SELECTED_OPTIONS MASTERNAME=head-i386-default SCRIPTPREFIX=/usr/local/share/poudriere OLDPWD=/usr/local/poudriere/data/.m/head-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=py27 DEPENDS_ARGS= MAKE_ARGS= FLAVOR=py27 ---End Poudriere Port Flags/Env--- ---Begin OPTIONS List--- ===> The following configuration options are available for py27-scipy-1.5.4: DOCS=on: Build and/or install documentation ===> Use 'make config' to modify these settings ---End OPTIONS List--- --MAINTAINER-- pyt...@freebsd.org --End MAINTAINER-- --CONFIGURE_ARGS-- --End CONFIGURE_ARGS-- --CONFIGURE_ENV-- F77="gfortran9" FC="gfortran9" FFLAGS="-O -std=legacy -Wl,-rpath=/usr/local/lib/gcc9" FCFLAGS="-Wl,-rpath=/usr/local/lib/gcc9" PYTHON="/usr/local/bin/python2.7" XDG_DATA_HOME=/wrkdirs/usr/ports/science/py-scipy/work-py27 XDG_CONFIG_HOME=/wrkdirs/usr/ports/science/py-scipy/work-py27 HOME=/wrkdirs/usr/ports/science/py-scipy/work-py27 TMPDIR="/tmp" PATH=/wrkdirs/usr/ports/science/py-scipy/work-py27/.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="gfortran9" FC="gfortran9" FFLAGS="-O -std=legacy -Wl,-rpath=/usr/local/lib/gcc9" FCFLAGS="-Wl,-rpath=/usr/local/lib/gcc9" XDG_DATA_HOME=/wrkdirs/usr/ports/science/py-scipy/work-py27 XDG_CONFIG_HOME=/wrkdirs/usr/ports/science/py-scipy/work-py27 HOME=/wrkdirs/usr/ports/science/py-scipy/work-py27 TMPDIR="/tmp" PATH=/wrkdirs/usr/ports/science/py-scipy/work-py27/.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/l ocal CC="cc" CFLAGS="-O2 -pipe -fstack-protector-strong -fno-strict-aliasing " CPP="cpp" CPPFLAGS="" LDFLAGS=" -shared -L/usr/local/lib -Wl,-rpath=/usr/local/lib/gcc9 -L/usr/local/lib/gcc9 -B/usr/local/bin -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/python2.7 PYTHON_LIBDIR=lib/python2.7 PYTHON_PLATFORM=freebsd13 PYTHON_SITELIBDIR=lib/python2.7/site-packages PYTHON_SUFFIX=27 PYTHON_VER=2.7 PYTHON_VERSION=python2.7 PYTHON2="" PYTHON3="@comment " OSREL=13.0 PREFIX=%D LOCALBA
[package - 114amd64-default][science/py-scipy] Failed for py27-scipy-1.5.4 in configure
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: pyt...@freebsd.org Last committer: y...@freebsd.org Ident: $FreeBSD: head/science/py-scipy/Makefile 559036 2020-12-23 23:38:29Z yuri $ Log URL: http://beefy9.nyi.freebsd.org/data/114amd64-default/559040/logs/py27-scipy-1.5.4.log Build URL: http://beefy9.nyi.freebsd.org/build.html?mastername=114amd64-default&build=559040 Log: =>> Building science/py-scipy build started at Thu Dec 24 01:13:19 UTC 2020 port directory: /usr/ports/science/py-scipy package name: py27-scipy-1.5.4 building for: FreeBSD 114amd64-default-job-04 11.4-RELEASE-p6 FreeBSD 11.4-RELEASE-p6 amd64 maintained by: pyt...@freebsd.org Makefile ident: $FreeBSD: head/science/py-scipy/Makefile 559036 2020-12-23 23:38:29Z yuri $ Poudriere version: 3.2.8-8-gaf08dbda Host OSVERSION: 1300121 Jail OSVERSION: 1104001 Job Id: 04 ---Begin Environment--- SHELL=/bin/csh OSVERSION=1104001 UNAME_v=FreeBSD 11.4-RELEASE-p6 UNAME_r=11.4-RELEASE-p6 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-8-gaf08dbda 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=py27 DEPENDS_ARGS= MAKE_ARGS= FLAVOR=py27 ---End Poudriere Port Flags/Env--- ---Begin OPTIONS List--- ===> The following configuration options are available for py27-scipy-1.5.4: DOCS=on: Build and/or install documentation ===> Use 'make config' to modify these settings ---End OPTIONS List--- --MAINTAINER-- pyt...@freebsd.org --End MAINTAINER-- --CONFIGURE_ARGS-- --End CONFIGURE_ARGS-- --CONFIGURE_ENV-- F77="gfortran9" FC="gfortran9" FFLAGS="-O -std=legacy -Wl,-rpath=/usr/local/lib/gcc9" FCFLAGS="-Wl,-rpath=/usr/local/lib/gcc9" PYTHON="/usr/local/bin/python2.7" XDG_DATA_HOME=/wrkdirs/usr/ports/science/py-scipy/work-py27 XDG_CONFIG_HOME=/wrkdirs/usr/ports/science/py-scipy/work-py27 HOME=/wrkdirs/usr/ports/science/py-scipy/work-py27 TMPDIR="/tmp" PATH=/wrkdirs/usr/ports/science/py-scipy/work-py27/.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="gfortran9" FC="gfortran9" FFLAGS="-O -std=legacy -Wl,-rpath=/usr/local/lib/gcc9" FCFLAGS="-Wl,-rpath=/usr/local/lib/gcc9" XDG_DATA_HOME=/wrkdirs/usr/ports/science/py-scipy/work-py27 XDG_CONFIG_HOME=/wrkdirs/usr/ports/science/py-scipy/work-py27 HOME=/wrkdirs/usr/ports/science/py-scipy/work-py27 TMPDIR="/tmp" PATH=/wrkdirs/usr/ports/science/py-scipy/work-py27/.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/l ocal CC="cc" CFLAGS="-O2 -pipe -fstack-protector-strong -fno-strict-aliasing " CPP="cpp" CPPFLAGS="" LDFLAGS=" -shared -L/usr/local/lib -Wl,-rpath=/usr/local/lib/gcc9 -L/usr/local/lib/gcc9 -B/usr/local/bin -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/python2.7 PYTHON_LIBDIR=lib/python2.7 PYTHON_PLATFORM=freebsd11 PYTHON_SITELIBDIR=lib/python2.7/site-packages PYTHON_SUFFIX=27 PYTHON_VER=2.7 PYTHON_VERSION=python2.7 PYTHON2="" PYTHON3="@comment " OSREL=11.4 PREFIX=%D LOCALBASE=/usr/local RESETPREFIX=/usr/local LIB32DIR=lib DOCSDIR="share/doc/py27-scipy" EXAMPLESDIR="share/examples/py27-scipy" DATADIR="share/py27-scipy" WWWDIR="www/py27-scipy" ETCDIR="etc/py27-scipy" --End PLIST_SUB-- --SUB_LIST-- PREFIX=/usr/local LOCALBASE=/usr/lo
[package - 114i386-default][science/py-scipy] Failed for py27-scipy-1.5.4 in configure
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: pyt...@freebsd.org Last committer: y...@freebsd.org Ident: $FreeBSD: head/science/py-scipy/Makefile 559036 2020-12-23 23:38:29Z yuri $ Log URL: http://beefy10.nyi.freebsd.org/data/114i386-default/559040/logs/py27-scipy-1.5.4.log Build URL: http://beefy10.nyi.freebsd.org/build.html?mastername=114i386-default&build=559040 Log: =>> Building science/py-scipy build started at Thu Dec 24 01:13:35 UTC 2020 port directory: /usr/ports/science/py-scipy package name: py27-scipy-1.5.4 building for: FreeBSD 114i386-default-job-05 11.4-RELEASE-p6 FreeBSD 11.4-RELEASE-p6 i386 maintained by: pyt...@freebsd.org Makefile ident: $FreeBSD: head/science/py-scipy/Makefile 559036 2020-12-23 23:38:29Z yuri $ Poudriere version: 3.2.8-8-gaf08dbda Host OSVERSION: 1300121 Jail OSVERSION: 1104001 Job Id: 05 ---Begin Environment--- SHELL=/bin/csh UNAME_p=i386 UNAME_m=i386 OSVERSION=1104001 UNAME_v=FreeBSD 11.4-RELEASE-p6 UNAME_r=11.4-RELEASE-p6 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-8-gaf08dbda 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=py27 DEPENDS_ARGS= MAKE_ARGS= FLAVOR=py27 ---End Poudriere Port Flags/Env--- ---Begin OPTIONS List--- ===> The following configuration options are available for py27-scipy-1.5.4: DOCS=on: Build and/or install documentation ===> Use 'make config' to modify these settings ---End OPTIONS List--- --MAINTAINER-- pyt...@freebsd.org --End MAINTAINER-- --CONFIGURE_ARGS-- --End CONFIGURE_ARGS-- --CONFIGURE_ENV-- F77="gfortran9" FC="gfortran9" FFLAGS="-O -std=legacy -Wl,-rpath=/usr/local/lib/gcc9" FCFLAGS="-Wl,-rpath=/usr/local/lib/gcc9" PYTHON="/usr/local/bin/python2.7" XDG_DATA_HOME=/wrkdirs/usr/ports/science/py-scipy/work-py27 XDG_CONFIG_HOME=/wrkdirs/usr/ports/science/py-scipy/work-py27 HOME=/wrkdirs/usr/ports/science/py-scipy/work-py27 TMPDIR="/tmp" PATH=/wrkdirs/usr/ports/science/py-scipy/work-py27/.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="gfortran9" FC="gfortran9" FFLAGS="-O -std=legacy -Wl,-rpath=/usr/local/lib/gcc9" FCFLAGS="-Wl,-rpath=/usr/local/lib/gcc9" XDG_DATA_HOME=/wrkdirs/usr/ports/science/py-scipy/work-py27 XDG_CONFIG_HOME=/wrkdirs/usr/ports/science/py-scipy/work-py27 HOME=/wrkdirs/usr/ports/science/py-scipy/work-py27 TMPDIR="/tmp" PATH=/wrkdirs/usr/ports/science/py-scipy/work-py27/.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/l ocal CC="cc" CFLAGS="-O2 -pipe -fstack-protector-strong -fno-strict-aliasing " CPP="cpp" CPPFLAGS="" LDFLAGS=" -shared -L/usr/local/lib -Wl,-rpath=/usr/local/lib/gcc9 -L/usr/local/lib/gcc9 -B/usr/local/bin -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/python2.7 PYTHON_LIBDIR=lib/python2.7 PYTHON_PLATFORM=freebsd11 PYTHON_SITELIBDIR=lib/python2.7/site-packages PYTHON_SUFFIX=27 PYTHON_VER=2.7 PYTHON_VERSION=python2.7 PYTHON2="" PYTHON3="@comment " OSREL=11.4 PREFIX=%D LOCALBASE=/usr/local RESETPREFIX=/usr/local LIB32DIR=lib DOCSDIR="share/doc/py27-scipy" EXAMPLESDIR="share/examples/py27-scipy" DATADIR="share/py27-scipy" WWWDIR="www/py27-scipy" ETCDIR="etc/py27-scipy" --End PLIST_SUB-- --SUB_LIST-- PREFIX=/usr/loc
[package - 121i386-default][science/py-scipy] Failed for py27-scipy-1.5.4 in configure
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: pyt...@freebsd.org Last committer: y...@freebsd.org Ident: $FreeBSD: head/science/py-scipy/Makefile 559036 2020-12-23 23:38:29Z yuri $ Log URL: http://beefy5.nyi.freebsd.org/data/121i386-default/559040/logs/py27-scipy-1.5.4.log Build URL: http://beefy5.nyi.freebsd.org/build.html?mastername=121i386-default&build=559040 Log: =>> Building science/py-scipy build started at Thu Dec 24 01:22:16 UTC 2020 port directory: /usr/ports/science/py-scipy package name: py27-scipy-1.5.4 building for: FreeBSD 121i386-default-job-11 12.1-RELEASE-p12 FreeBSD 12.1-RELEASE-p12 i386 maintained by: pyt...@freebsd.org Makefile ident: $FreeBSD: head/science/py-scipy/Makefile 559036 2020-12-23 23:38:29Z yuri $ Poudriere version: 3.2.8-8-gaf08dbda Host OSVERSION: 1300121 Jail OSVERSION: 1201000 Job Id: 11 ---Begin Environment--- SHELL=/bin/csh UNAME_p=i386 UNAME_m=i386 OSVERSION=1201000 UNAME_v=FreeBSD 12.1-RELEASE-p12 UNAME_r=12.1-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-8-gaf08dbda MASTERMNT=/usr/local/poudriere/data/.m/121i386-default/ref POUDRIERE_BUILD_TYPE=bulk PACKAGE_BUILDING=yes SAVED_TERM= PWD=/usr/local/poudriere/data/.m/121i386-default/ref/.p/pool P_PORTS_FEATURES=FLAVORS SELECTED_OPTIONS MASTERNAME=121i386-default SCRIPTPREFIX=/usr/local/share/poudriere OLDPWD=/usr/local/poudriere/data/.m/121i386-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=py27 DEPENDS_ARGS= MAKE_ARGS= FLAVOR=py27 ---End Poudriere Port Flags/Env--- ---Begin OPTIONS List--- ===> The following configuration options are available for py27-scipy-1.5.4: DOCS=on: Build and/or install documentation ===> Use 'make config' to modify these settings ---End OPTIONS List--- --MAINTAINER-- pyt...@freebsd.org --End MAINTAINER-- --CONFIGURE_ARGS-- --End CONFIGURE_ARGS-- --CONFIGURE_ENV-- F77="gfortran9" FC="gfortran9" FFLAGS="-O -std=legacy -Wl,-rpath=/usr/local/lib/gcc9" FCFLAGS="-Wl,-rpath=/usr/local/lib/gcc9" PYTHON="/usr/local/bin/python2.7" XDG_DATA_HOME=/wrkdirs/usr/ports/science/py-scipy/work-py27 XDG_CONFIG_HOME=/wrkdirs/usr/ports/science/py-scipy/work-py27 HOME=/wrkdirs/usr/ports/science/py-scipy/work-py27 TMPDIR="/tmp" PATH=/wrkdirs/usr/ports/science/py-scipy/work-py27/.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="gfortran9" FC="gfortran9" FFLAGS="-O -std=legacy -Wl,-rpath=/usr/local/lib/gcc9" FCFLAGS="-Wl,-rpath=/usr/local/lib/gcc9" XDG_DATA_HOME=/wrkdirs/usr/ports/science/py-scipy/work-py27 XDG_CONFIG_HOME=/wrkdirs/usr/ports/science/py-scipy/work-py27 HOME=/wrkdirs/usr/ports/science/py-scipy/work-py27 TMPDIR="/tmp" PATH=/wrkdirs/usr/ports/science/py-scipy/work-py27/.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/l ocal CC="cc" CFLAGS="-O2 -pipe -fstack-protector-strong -fno-strict-aliasing " CPP="cpp" CPPFLAGS="" LDFLAGS=" -shared -L/usr/local/lib -Wl,-rpath=/usr/local/lib/gcc9 -L/usr/local/lib/gcc9 -B/usr/local/bin -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/python2.7 PYTHON_LIBDIR=lib/python2.7 PYTHON_PLATFORM=freebsd12 PYTHON_SITELIBDIR=lib/python2.7/site-packages PYTHON_SUFFIX=27 PYTHON_VER=2.7 PYTHON_VERSION=python2.7 PYTHON2="" PYTHON3="@comment " OSREL=12.1 PREFIX=%D LOCALBASE=/usr/local RESETPREFIX=/usr/local LIB32DIR=lib DOCSDIR="share/doc/py27-scipy" EXAMPLESDIR="share/examples/py27-scipy" DATADIR="share/py27-scipy" WWWDIR="www/py27-scipy" ETCDIR="etc/py27-scipy" --End PLIST_SUB-- --SUB_LIST-- PREFIX=/usr/l
[package - 121amd64-default][science/py-scipy] Failed for py27-scipy-1.5.4 in configure
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: pyt...@freebsd.org Last committer: y...@freebsd.org Ident: $FreeBSD: head/science/py-scipy/Makefile 559036 2020-12-23 23:38:29Z yuri $ Log URL: http://beefy6.nyi.freebsd.org/data/121amd64-default/559040/logs/py27-scipy-1.5.4.log Build URL: http://beefy6.nyi.freebsd.org/build.html?mastername=121amd64-default&build=559040 Log: =>> Building science/py-scipy build started at Thu Dec 24 01:23:10 UTC 2020 port directory: /usr/ports/science/py-scipy package name: py27-scipy-1.5.4 building for: FreeBSD 121amd64-default-job-05 12.1-RELEASE-p12 FreeBSD 12.1-RELEASE-p12 amd64 maintained by: pyt...@freebsd.org Makefile ident: $FreeBSD: head/science/py-scipy/Makefile 559036 2020-12-23 23:38:29Z yuri $ Poudriere version: 3.2.8-8-gaf08dbda Host OSVERSION: 1300121 Jail OSVERSION: 1201000 Job Id: 05 ---Begin Environment--- SHELL=/bin/csh OSVERSION=1201000 UNAME_v=FreeBSD 12.1-RELEASE-p12 UNAME_r=12.1-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-8-gaf08dbda MASTERMNT=/usr/local/poudriere/data/.m/121amd64-default/ref POUDRIERE_BUILD_TYPE=bulk PACKAGE_BUILDING=yes SAVED_TERM= PWD=/usr/local/poudriere/data/.m/121amd64-default/ref/.p/pool P_PORTS_FEATURES=FLAVORS SELECTED_OPTIONS MASTERNAME=121amd64-default SCRIPTPREFIX=/usr/local/share/poudriere OLDPWD=/usr/local/poudriere/data/.m/121amd64-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=py27 DEPENDS_ARGS= MAKE_ARGS= FLAVOR=py27 ---End Poudriere Port Flags/Env--- ---Begin OPTIONS List--- ===> The following configuration options are available for py27-scipy-1.5.4: DOCS=on: Build and/or install documentation ===> Use 'make config' to modify these settings ---End OPTIONS List--- --MAINTAINER-- pyt...@freebsd.org --End MAINTAINER-- --CONFIGURE_ARGS-- --End CONFIGURE_ARGS-- --CONFIGURE_ENV-- F77="gfortran9" FC="gfortran9" FFLAGS="-O -std=legacy -Wl,-rpath=/usr/local/lib/gcc9" FCFLAGS="-Wl,-rpath=/usr/local/lib/gcc9" PYTHON="/usr/local/bin/python2.7" XDG_DATA_HOME=/wrkdirs/usr/ports/science/py-scipy/work-py27 XDG_CONFIG_HOME=/wrkdirs/usr/ports/science/py-scipy/work-py27 HOME=/wrkdirs/usr/ports/science/py-scipy/work-py27 TMPDIR="/tmp" PATH=/wrkdirs/usr/ports/science/py-scipy/work-py27/.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="gfortran9" FC="gfortran9" FFLAGS="-O -std=legacy -Wl,-rpath=/usr/local/lib/gcc9" FCFLAGS="-Wl,-rpath=/usr/local/lib/gcc9" XDG_DATA_HOME=/wrkdirs/usr/ports/science/py-scipy/work-py27 XDG_CONFIG_HOME=/wrkdirs/usr/ports/science/py-scipy/work-py27 HOME=/wrkdirs/usr/ports/science/py-scipy/work-py27 TMPDIR="/tmp" PATH=/wrkdirs/usr/ports/science/py-scipy/work-py27/.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/l ocal CC="cc" CFLAGS="-O2 -pipe -fstack-protector-strong -fno-strict-aliasing " CPP="cpp" CPPFLAGS="" LDFLAGS=" -shared -L/usr/local/lib -Wl,-rpath=/usr/local/lib/gcc9 -L/usr/local/lib/gcc9 -B/usr/local/bin -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/python2.7 PYTHON_LIBDIR=lib/python2.7 PYTHON_PLATFORM=freebsd12 PYTHON_SITELIBDIR=lib/python2.7/site-packages PYTHON_SUFFIX=27 PYTHON_VER=2.7 PYTHON_VERSION=python2.7 PYTHON2="" PYTHON3="@comment " OSREL=12.1 PREFIX=%D LOCALBASE=/usr/local RESETPREFIX=/usr/local LIB32DIR=lib DOCSDIR="share/doc/py27-scipy" EXAMPLESDIR="share/examples/py27-scipy" DATADIR="share/py27-scipy" WWWDIR="www/py27-scipy" ETCDIR="etc/py27-scipy" --End PLIST_SUB-- --SUB_LIST-- PREFIX=/usr/local LOCALBASE=/us