FreeBSD ports you maintain which are out of date
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 +-+ dns/py-cloudflare | 2.3.1 | 2.4.0 +-+ 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! ___ 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 249042] lang/python37: Builds but fails to install
https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=249042 --- Comment #2 from tech-li...@zyxst.net --- (In reply to Danilo G. Baio from comment #1) Yes it's still happening. I updated my ports tree to 548578 and tried again: # make clean distclean -DBATCH install [...] running install_scripts copying build/scripts-3.7/idle3.7 -> /usr/ports/lang/python37/work/stage/usr/local/bin copying build/scripts-3.7/pyvenv-3.7 -> /usr/ports/lang/python37/work/stage/usr/local/bin copying build/scripts-3.7/pydoc3.7 -> /usr/ports/lang/python37/work/stage/usr/local/bin copying build/scripts-3.7/2to3-3.7 -> /usr/ports/lang/python37/work/stage/usr/local/bin changing mode of /usr/ports/lang/python37/work/stage/usr/local/bin/idle3.7 to 755 changing mode of /usr/ports/lang/python37/work/stage/usr/local/bin/pyvenv-3.7 to 755 changing mode of /usr/ports/lang/python37/work/stage/usr/local/bin/pydoc3.7 to 755 changing mode of /usr/ports/lang/python37/work/stage/usr/local/bin/2to3-3.7 to 755 rm /usr/ports/lang/python37/work/stage/usr/local/lib/python3.7/lib-dynload/_sysconfigdata_m_freebsd12_.py rm -r /usr/ports/lang/python37/work/stage/usr/local/lib/python3.7/lib-dynload/__pycache__ install -m 0644 ./Misc/python.man /usr/ports/lang/python37/work/stage/usr/local/man/man1/python3.7.1 if test "xno" != "xno" ; then case no in upgrade) ensurepip="--altinstall --upgrade" ;; install|*) ensurepip="--altinstall" ;; esac; LD_LIBRARY_PATH=/usr/ports/lang/python37/work/Python-3.7.9 ./python -E -m ensurepip $ensurepip --root=/usr/ports/lang/python37/work/stage/ ; fi /bin/rm -f /usr/ports/lang/python37/work/stage/usr/local/lib/libpython3.so # Upstream Issue: https://bugs.python.org/issue17975 for i in /usr/ports/lang/python37/work/stage/usr/local/lib/python3.7/lib-dynload/*.so; do /usr/bin/strip $i; done # Strip shared extensions install -m 0644 /usr/ports/lang/python37/work/Python-3.7.9/Tools/gdb/libpython.py /usr/ports/lang/python37/work/stage/usr/local/lib/libpython3.7m.so.1.0-gdb.py > Compressing man pages (compress-man) ===> Installing for python37-3.7.9 ===> Checking if python37 is already installed ===> Registering installation for python37-3.7.9 pkg-static: Unable to access file /usr/ports/lang/python37/work/stage/usr/local/lib/python3.7/lib-dynload/_lzma.so:No such file or directory *** Error code 74 Stop. make: stopped in /usr/ports/lang/python37 #root:/usr/ports/lang/python37# That comment in the output: # Upstream Issue: https://bugs.python.org/issue17975 that's from the build. I didn't add it. Haven't seen it before. -- 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 249042] lang/python37: Builds but fails to install
https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=249042 John Hein changed: What|Removed |Added CC||jcfyecr...@liamekaens.com --- Comment #3 from John Hein --- (In reply to tech-lists from comment #2) That's not the full build log, but you can look at a log of a build upstream and compare to yours, and maybe figure out your problem. Here's a recent successful one: http://beefy4.nyi.freebsd.org/data/latest-per-pkg/python37/3.7.9/121i386-quarterly.log -- 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 249298] net-mgmt/net-snmp: 'make check-plist' fails with PYTHON on (5.9)
https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=249298 John Hein changed: What|Removed |Added CC||z...@freebsd.org Attachment #217958||maintainer-approval?(zi@Fre Flags||eBSD.org) --- Comment #2 from John Hein --- Created attachment 217958 --> https://bugs.freebsd.org/bugzilla/attachment.cgi?id=217958&action=edit [patch] fix missing .pyo and support python3 Note that importing the netsnmp python support fails when using python2.7 (and there's a warning during the build that hints at the problem as well): % python2.7 -c 'import netsnmp' Traceback (most recent call last): File "", line 1, in File "/usr/local/lib/python2.7/site-packages/netsnmp/__init__.py", line 1, in from .client import * File "/usr/local/lib/python2.7/site-packages/netsnmp/client.py", line 5, in import netsnmp.client_intf ImportError: /usr/local/lib/python2.7/site-packages/netsnmp/client_intf.so: Undefined symbol "PyUnicode_AsUTF8AndSize" Patch attached: - add back PYDISTUTILS_INSTALL_ARGS (see patch-Makefile.in) - remove python 2.7 support (see above run-time failure and changes to Makefile) - add python3 support (3.5+) QA: - poudriere build with default python (3.7) (ok) - portlint (no errors, no new warnings) - basic run test: python -c 'import netsnmp' -- 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 249298] net-mgmt/net-snmp: 'make check-plist' fails with PYTHON on (5.9)
https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=249298 Ryan Steinmetz changed: What|Removed |Added Status|Open|Closed Resolution|--- |FIXED --- Comment #3 from Ryan Steinmetz --- Thanks! -- 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 249298] net-mgmt/net-snmp: 'make check-plist' fails with PYTHON on (5.9)
https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=249298 --- Comment #4 from commit-h...@freebsd.org --- A commit references this bug: Author: zi Date: Mon Sep 14 15:48:19 UTC 2020 New revision: 548623 URL: https://svnweb.freebsd.org/changeset/ports/548623 Log: - Fix PYTHON OPTION - Require python 3.5+ PR: 249298 Submitted by: John Hein Changes: head/net-mgmt/net-snmp/Makefile head/net-mgmt/net-snmp/files/patch-Makefile.in head/net-mgmt/net-snmp/pkg-plist -- 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 249042] lang/python37: Builds but fails to install
https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=249042 --- Comment #4 from tech-li...@zyxst.net --- (In reply to John Hein from comment #3) sorry I misread. I'll post (link) the full buildlog shortly -- 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 249042] lang/python37: Builds but fails to install
https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=249042 --- Comment #5 from tech-li...@zyxst.net --- (In reply to John Hein from comment #3) ok ran it again like this: # make clean distclean rmconfig rmconfig-recursive -DBATCH install > & /tmp/pythonbuildlog.txt here's the full output: https://cloud.zyxst.net/~john/FreeBSD/ports/buildfailures/pythonbuildlog.txt I noticed this: [snip] building '_lzma' extension cc -fPIC -Wno-unused-result -Wsign-compare -Wunreachable-code -DNDEBUG -O2 -pipe -fstack-protector-strong -fno-strict-aliasing -std=c99 -Wextra -Wno-unused-result -Wno-unused-parameter -Wno-missing-field-initializers -Wstrict-prototypes -Werror=implicit-function-declaration -I./Include -I. -I/usr/local/include -I/usr/ports/lang/python37/work/Python-3.7.9/Include -I/usr/ports/lang/python37/work/Python-3.7.9 -c /usr/ports/lang/python37/work/Python-3.7.9/Modules/_lzmamodule.c -o build/temp.freebsd-12.1-RELEASE-p9-amd64-3.7/usr/ports/lang/python37/work/Python-3.7.9/Modules/_lzmamodule.o cc -pthread -shared -L/usr/local/lib -fstack-protector-strong -L/usr/local/lib -fstack-protector-strong -O2 -pipe -fstack-protector-strong -fno-strict-aliasing -I/usr/local/include -I/usr/local/include build/temp.freebsd-12.1-RELEASE-p9-amd64-3.7/usr/ports/lang/python37/work/Python-3.7.9/Modules/_lzmamodule.o -L. -L/usr/local/lib -llzma -lpython3.7m -o build/lib.freebsd-12.1-RELEASE-p9-amd64-3.7/_lzma.so *** WARNING: renaming "_lzma" since importing it failed: build/lib.freebsd-12.1-RELEASE-p9-amd64-3.7/_lzma.so: Undefined symbol "lzma_check_is_supported" [/snip] maybe it ties up with this? pkg-static: Unable to access file /usr/ports/lang/python37/work/stage/usr/local/lib/python3.7/lib-dynload/_lzma.so:No such file or directory Maybe a libarchive problem? I don't know. -- 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 249042] lang/python37: Builds but fails to install
https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=249042 Danilo G. Baio changed: What|Removed |Added Status|Open|Closed Resolution|--- |DUPLICATE --- Comment #6 from Danilo G. Baio --- Thanks for the info. same issue reported on bug 243817 I'll mark this PR as duplicate of it. *** This bug has been marked as a duplicate of bug 243817 *** -- 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 243817] lang/python37: Fails to link _lzma.so: Undefined symbol "lzma_check_is_supported"
https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=243817 Danilo G. Baio changed: What|Removed |Added CC||tech-li...@zyxst.net --- Comment #7 from Danilo G. Baio --- *** Bug 249042 has been marked as a duplicate of this bug. *** -- You are receiving this mail because: You are on the CC list for the bug. 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 209355] lang/python35: install fails if archivers/lzmalib is installed
https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=209355 Danilo G. Baio changed: What|Removed |Added See Also||https://bugs.freebsd.org/bu ||gzilla/show_bug.cgi?id=2438 ||17 -- You are receiving this mail because: You are the assignee for the bug. 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 243817] lang/python37: Fails to link _lzma.so: Undefined symbol "lzma_check_is_supported"
https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=243817 Danilo G. Baio changed: What|Removed |Added See Also||https://bugs.freebsd.org/bu ||gzilla/show_bug.cgi?id=2093 ||55 CC||db...@freebsd.org --- Comment #8 from Danilo G. Baio --- Following the report on bug #249042 I could reproduce this issue when archivers/lzmalib is installed. (on poudriere) And seems this PR is duplicated with bug 209355. doc...@doctor.nl2k.ab.ca had archivers/lzmalib installed. (attachment 211335) -- You are receiving this mail because: You are on the CC list for the bug. 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"