[Bug 243336] graphics/py-pillow: Update to 6.2.2
https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=243336 Kai Knoblich changed: What|Removed |Added See Also||https://bugs.freebsd.org/bu ||gzilla/show_bug.cgi?id=2436 ||65 -- 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 243665] graphics/py-pillow: Update to 7.0.0
https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=243665 Bug ID: 243665 Summary: graphics/py-pillow: Update to 7.0.0 Product: Ports & Packages Version: Latest Hardware: Any URL: https://pillow.readthedocs.io/en/stable/releasenotes/7 .0.0.html OS: Any Status: New Keywords: needs-qa Severity: Affects Only Me Priority: --- Component: Individual Port(s) Assignee: k...@freebsd.org Reporter: k...@freebsd.org CC: ko...@freebsd.org, pyt...@freebsd.org, sunp...@freebsd.org Attachment #211124 maintainer-approval?(ko...@freebsd.org) Flags: Flags: maintainer-feedback?(ko...@freebsd.org) Created attachment 211124 --> https://bugs.freebsd.org/bugzilla/attachment.cgi?id=211124&action=edit py-pillow-7.0.0.patch Attached is sunpoet's patch from bug #243336 with additional CONFLICTS_INSTALL entries. Before applying the patch one needs to do "svn cp graphics/py-pillow graphics/py-pillow6". -- 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 243336] graphics/py-pillow: Update to 6.2.2
https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=243336 Kai Knoblich changed: What|Removed |Added Flags|merge-quarterly?|merge-quarterly+ Status|Open|Closed Resolution|--- |FIXED --- Comment #10 from Kai Knoblich --- (In reply to Kubilay Kocak from comment #7) Ok, I close this issue as Pillow 6.2.2 is available in the /head and the 2020Q1 branches. We continue steps 3 and 4 from comment #4 in an separate issue (bug #243665) for the sake of brevity. -- 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 243665] graphics/py-pillow: Update to 7.0.0
https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=243665 Kai Knoblich changed: What|Removed |Added Status|New |Open --- Comment #1 from Kai Knoblich --- Results of "make test" for each Python flavor: ~~ With py37, py38: > 1298 passed, 129 skipped in 32.14 seconds > 1298 passed, 129 skipped in 31.40 seconds With py35: > 1296 passed, 131 skipped in 40.62 seconds With py36: > 1297 passed, 130 skipped in 33.41 seconds Version requirements in setup.py, etc.: ~~~ Except two ports no consumer has pinned requirements for graphics/py-pillow. The two exceptions are: - net-mgmt/netbox: OK, patched out in Makefile - www/py-wagtail: OK, defined in Makefile and setup.py as "<7.0". More thorough QA results regarding the backwards incompatible changes that were introduced in the 7.0.0 release (see also the release notes in the URL field for further detail): Removal of the PILLOW_VERSION constant: ~~~ - graphics/impressive: OK, still uses Python 2.7 only and already has compatible code to cope with different Pillow versions. - graphics/py-blockdiag: OK, still uses Python 2.7 only. No compatible code for newer Pillow versions. - graphics/py-mcomix: OK, still uses Python 2.7 only. No compatible code for newer Pillow versions. - graphics/sk1: OK, still uses Python 2.7 only. No compatible code for newer Pillow versions. - print/hplib: OK, already patched out in r50 as preparation for the 6.0 release of graphics/py-pillow. - x11/xpra: OK, still uses Python 2.7 only and already has compatible code to cope with different Pillow versions. Conclusion: OK, as all those consumers (except print/hplib maybe, as it already runs with Python 3) will get graphics/py-pillow6 as a dependency and should work as usual. Removal of the *ImagePlugin.__version__ constants: ~~ - OK, no port makes use of these constants. Removal of PyQt4 and PySide code: - OK, not relevant as Qt4 and PySide are already gone from the Ports tree. Removal of setting the image size for TIFF images by "im.size(x, y): - graphics/py-imageio: OK, uses "im.size = ( ... )" only in documentation context in "imageio/plugins/pillow_info.py". - graphics/py-imageio24: OK, uses "im.size = ( ... )" only in documentation context in "imageio/plugins/pillow_info.py". - net-p2p/deluge-cli: OK, uses Python 2.7 only and "im.size = ( ... )" is used for ICO files. In this context using "im.size = ( ... )" is allowed as it selects a subimage. Changed return value of "Image.draft()": - graphics/py-mcomix: OK, uses Python 2.7 only. - graphics/py-sane: OK, uses Python 2.7 only. Conclusion: OK, as all those consumers will get graphics/py-pillow6 as a dependency and should work as usual. Default resampling filter: ~~ The default resampling filter was changed from "IMAGE.NEAREST" to "IMAGE.BICUBIC" for the "fit()", "pad()", "resize()" and "scale()" functions. Those functions are used by several consumers for image processing/manipulation. Conclusion: Should be OK, but we should keep in mind that the changes of the above mentioned functions will have definitely a small impact on the Pillow consumers. A bit more CPU cycles than usual are then required for image processing but yields in better image results/quality. If there are problems once Pillow has been updated to 7.0.0 we can still assign the problematic consumers (if any) to Pillow 6.2.2 and bump PORTREVISION. -- 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 243665] graphics/py-pillow: Update to 7.0.0
https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=243665 --- Comment #2 from Kai Knoblich --- Created attachment 211125 --> https://bugs.freebsd.org/bugzilla/attachment.cgi?id=211125&action=edit py-pillow-7.0.0-bump-consumers.patch Attached a prelimary patch that changes the *_DEPENDS to "graphics/py-pillow6" and bumps the PORTREVISION of all consumers that can still be built for Python 2.7 or later. Exceptions are ports, that have "USES=python:3.[0-9]+" and no conflicting dependencies that could break "bulk -a": - astro/py-astLib - audio/lollypop - games/openage - games/unknown-horizons - graphics/py-cairosvg - graphics/py-imageio - graphics/py-pyocr - graphics/variety - math/py-plastex - misc/py-tflearn - net-im/py-matrix-synapse - net-mgmt/netbox - science/gramps - www/py-weboob - www/xist -- 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 243665] graphics/py-pillow: Update to 7.0.0
https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=243665 --- Comment #3 from Kai Knoblich --- Technically a few more ports could make of use of Pillow 7.0.0 if the Python 2.7 build is deactivated for them, e.g. by setting "USES=python:3.5+", to avoid "bulk -a" breakages. It would also save a few PORTREVISION bumps and would be a few more steps towards the deorbit of Python 2.7. I left those ports out from the initial patch for the sake of brevity: Ports have no consumers that depend upon them and no conflicting dependencies: ~~ - devel/py-pydenticon - games/py-hypatia_engine - graphics/py-cartopy - graphics/py-photocollage - graphics/py-pypillowfight - misc/py-gluoncv - security/vinetto (unmaintained) - www/py-instabot Ports that doesn't have "USE_PYTHON=distutils" but can be also built for any Python version: - cad/k40-whisperer - comms/apitran - math/asymptote - misc/cs - misc/mmdnn Ports that have "USE_PYTHON=distutils noflavors": ~ - games/pysolfc (I plan to drop the Python 2.7 support as part of this issue.) If we want to go that route with dropping the Python 2.7 support for those ports we should do it before landing Pillow 7.0.0, IMHO. -- 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 243665] graphics/py-pillow: Update to 7.0.0
https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=243665 Kubilay Kocak changed: What|Removed |Added Flags|maintainer-feedback?(koobs@ |maintainer-feedback+ |FreeBSD.org)| Keywords|needs-qa| --- Comment #4 from Kubilay Kocak --- Thank you for this Kai, greatly appreciated, especially the extensive QA Pillow 7 update looks good. Couple of notes: Regarding www/py-wagtail: OK, defined in Makefile and setup.py as "<7.0"... We should probably its *_DEPENDS to ${PYTHON_PKGNAMEPREFIX}pillow<7.0:graphics-py-pillow6 More broadly (with the above as an example), as part of the QA, if we come across any ports that have depends either inconsistent or incomplete (especially ">X & https://lists.freebsd.org/mailman/listinfo/freebsd-python To unsubscribe, send any mail to "freebsd-python-unsubscr...@freebsd.org"
[Bug 243669] lang/python37 : Fails to upgrade 'python37-3.7.5_1' to 'python37-3.7.6' on FreeBSD 12.1-RELEASE-p1 powerpc 32 bit: Grammar3.7.6.final.0.pickle:No such file or directory
https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=243669 Kubilay Kocak changed: What|Removed |Added Assignee|ports-b...@freebsd.org |pyt...@freebsd.org CC||pyt...@freebsd.org Flags||maintainer-feedback?(python ||@FreeBSD.org) -- 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"
maintainer-feedback requested: [Bug 243669] lang/python37 : Fails to upgrade 'python37-3.7.5_1' to 'python37-3.7.6' on FreeBSD 12.1-RELEASE-p1 powerpc 32 bit: Grammar3.7.6.final.0.pickle:No such file
Kubilay Kocak has asked freebsd-python mailing list for maintainer-feedback: Bug 243669: lang/python37 : Fails to upgrade 'python37-3.7.5_1' to 'python37-3.7.6' on FreeBSD 12.1-RELEASE-p1 powerpc 32 bit: Grammar3.7.6.final.0.pickle:No such file or directory https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=243669 ___ 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 243669] lang/python37 : Fails to upgrade 'python37-3.7.5_1' to 'python37-3.7.6' on FreeBSD 12.1-RELEASE-p1 powerpc 32 bit: Grammar3.7.6.final.0.pickle:No such file or directory
https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=243669 Piotr Kubaj changed: What|Removed |Added Attachment #211128|text/x-log |text/plain mime type|| --- Comment #2 from Piotr Kubaj --- Created attachment 211128 --> https://bugs.freebsd.org/bugzilla/attachment.cgi?id=211128&action=edit poudriere log This seems to be because of unclean environment. I created a jail with FreeBSD 12.1 and it seems to build. -- 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 243669] lang/python37 : Fails to upgrade 'python37-3.7.5_1' to 'python37-3.7.6' on FreeBSD 12.1-RELEASE-p1 powerpc 32 bit: Grammar3.7.6.final.0.pickle:No such file or directory
https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=243669 --- Comment #3 from canardo --- (In reply to Piotr Kubaj from comment #2) Do you have a command/script so I could clean up my environment and try again ? -- 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 243669] lang/python37 : Fails to upgrade 'python37-3.7.5_1' to 'python37-3.7.6' on FreeBSD 12.1-RELEASE-p1 powerpc 32 bit: Grammar3.7.6.final.0.pickle:No such file or directory
https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=243669 --- Comment #4 from Piotr Kubaj --- (In reply to canardo from comment #3) Well, you would need to remove all the packages to be safe, but probably removing the already installed python37 will help. -- 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"
Invitation for Gender Mainstreaming, Analysis and Planning Training
To view the message, please use an HTML compatible email viewer Link to the online version: http://t.emk03.com/EAO8_m/mXNkbFrGdmJoZWpnll3IoWeZZ5qVZGecjMh1aXBonGlrXJVxZYqfbmNjZmSSZ5aRZ51Vk5dtaJSglGhYnm6VX6BzY2tmlXBpV59xmdNd1aFmi6ifyKCilJmSm6Gk Unsubscribe Link: http://t.emk03.com/SVL5_unsub/mXNkbFrGdmJoZWpnll3IoWeZZ5qVZGecjMh1aXBonGlrXJVxZYqfbmNjZmSSZ5aRZ51Vk5dtaJSglGhYnm6VX6BzY2tmlXBpV59xmdNd1aFmi6ifyKCilJmSm6Gk Foscore Development Center Welcome to Foscore Development Center, we are a global training and consulting firm that has been assisting organizations and individuals to achieve their objectives and goals. We specialize in capacity building, consultancy and talent development solutions for individuals and organisations through our highly customized courses and experienced consultants.Course Title: Gender Mainstreaming, Analysis and Planning CourseClick to view all course content and register as individual or group to attendClick to View 2020 Training CalendarIntroductionGender equality and empowerment is considered a critical element for development. This course is designed to prepare participants for a variety of careers where specialized knowledge is required related to the integration of gender considerations into policy making, project design and implementation, monitoring and evaluation. Gender mainstreaming is an international strategy to achieve gender equality in all aspects of society. Many governments in developing and developed countries have endeavored to implement this strategy. This course aims to provide participants with a comprehensive knowledge of gender mainstreaming and gender analysis. It draws on best practice and case studies from around the world. As well, it provides the opportunity to focus on a specific policy area (such as public health, education, economic management, or human resources) or for participants to employ this knowledge in their own workplace through an action research topic. Course ObjectivesBy the end of the course, the participant should be able to;· Have acquired methods of creating gender awareness within development practice· Be able to integrate gender into contextual analysis, and to use gender analysis frameworks effectively· Have explored the intrinsic relationship between gender and development· Be better equipped to integrate gender into strategic and operational planning Who Should Attend?Gender advisers, development practitioners with an interest in gender mainstreaming, gender focal points No of Days5 days Click to view course all content and register as individual or group to attend Register online as individual or group and you will automatically receive invoice and invitation letter to enable your attendance. Looking forward to your registration and attendance RegardsFoscore Development Center Training TeamWhatsapp/Call: +254 712 260 031 Website: www.fdc-k.com 1 ___ 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 241689] www/py-pelican: Update to 4.2.0
https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=241689 Danilo G. Baio changed: What|Removed |Added CC||db...@freebsd.org Assignee|ports-b...@freebsd.org |db...@freebsd.org -- 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 241689] www/py-pelican: Update to 4.2.0
https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=241689 --- Comment #7 from commit-h...@freebsd.org --- A commit references this bug: Author: dbaio Date: Tue Jan 28 14:37:09 UTC 2020 New revision: 524486 URL: https://svnweb.freebsd.org/changeset/ports/524486 Log: www/py-pelican: Update to 4.2.0 Pass MAINTAINER'ship to submitter. PR: 241689 Submitted by: Andreas Bilke Approved by: maintainer timeout Changes: head/www/py-pelican/Makefile head/www/py-pelican/distinfo -- 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 241689] www/py-pelican: Update to 4.2.0
https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=241689 --- Comment #8 from commit-h...@freebsd.org --- A commit references this bug: Author: dbaio Date: Tue Jan 28 14:39:35 UTC 2020 New revision: 53834 URL: https://svnweb.freebsd.org/changeset/doc/53834 Log: Add Andreas Bilke to contributors Maintainer of:deskutils/py-khard deskutils/py-todoman www/py-pelican PR: 241689 Changes: head/en_US.ISO8859-1/articles/contributors/contrib.additional.xml -- 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 241689] www/py-pelican: Update to 4.2.0
https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=241689 Danilo G. Baio changed: What|Removed |Added Resolution|--- |FIXED Status|Open|Closed --- Comment #9 from Danilo G. Baio --- Committed, thanks! And sorry for the delay. -- 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 243606] editors/vim fails to build with PYTHON3
https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=243606 --- Comment #5 from Roman Bogorodskiy --- (In reply to Adam Weinberger from comment #2) That does work. -- 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 235701] security/py-certbot: Add man page
https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=235701 Walter Schwarzenfeld changed: What|Removed |Added CC||w.schwarzenf...@utanet.at --- Comment #20 from Walter Schwarzenfeld --- Btw, I tried to install py27 and py37: Installing py27-certbot-1.1.0,1... pkg-static: py27-certbot-1.1.0,1 conflicts with py37-certbot-1.1.0,1 (installs files into the same place). Problematic file: /usr/local/etc/periodic/weekly/500.certbot *** Error code 70 -- 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 235701] security/py-certbot: Add man page
https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=235701 --- Comment #21 from Walter Schwarzenfeld --- (In reply to Kubilay Kocak from comment #18) > Can we also try to remove the gmake/gsed dependencies: Not for gsed - certbot.7 is malformatted, does not handled by "normal" sed. -- 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 235701] security/py-certbot: Add man page
https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=235701 --- Comment #22 from Walter Schwarzenfeld --- (In reply to Walter Schwarzenfeld from comment #20) Sorry, install of two different versions of py-certbot is nonsense. -- 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 235701] security/py-certbot: Add man page
https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=235701 --- Comment #23 from Walter Schwarzenfeld --- (In reply to Walter Schwarzenfeld from comment #21) for gmake: No, cause: make[2]: "/ram/usr/home/ngorx/work/py-certbot/work-py37/certbot-1.1.0/docs/Makefile" line 11: Missing dependency operator make[2]: Unknown modifier '/' make[2]: "/ram/usr/home/ngorx/work/py-certbot/work-py37/certbot-1.1.0/docs/Makefile" line 12: Need an operator make[2]: "/ram/usr/home/ngorx/work/py-certbot/work-py37/certbot-1.1.0/docs/Makefile" line 13: Need an operator -- 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 235701] security/py-certbot: Add man page
https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=235701 --- Comment #24 from Walter Schwarzenfeld --- Created attachment 211138 --> https://bugs.freebsd.org/bugzilla/attachment.cgi?id=211138&action=edit svn-diff-py-certbot_new Last version. If its not right, I am give it up here. -- 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 235701] security/py-certbot: Add man page
https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=235701 --- Comment #25 from Walter Schwarzenfeld --- (In reply to Kubilay Kocak from comment #18) > Are the man pages correctly and completely handled by USE_PYTHON=concurrent > to add version-specific > suffixes? Move: share/man/man1/certbot.1 --> share/man/man1/certbot-3.7.1 Link: @share/man/man1/certbot.1 --> share/man/man1/certbot-3.7.1 Move: share/man/man7/certbot.7 --> share/man/man7/certbot-3.7.7 Link: @share/man/man7/certbot.7 --> share/man/man7/certbot-3.7.7 -- 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 235701] security/py-certbot: Add man page
https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=235701 Walter Schwarzenfeld changed: What|Removed |Added Attachment #211138|0 |1 is obsolete|| --- Comment #26 from Walter Schwarzenfeld --- Created attachment 211147 --> https://bugs.freebsd.org/bugzilla/attachment.cgi?id=211147&action=edit svn-diff-py-certbot_new2 -- 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 235701] security/py-certbot: Add man page
https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=235701 Walter Schwarzenfeld changed: What|Removed |Added Attachment #211147|0 |1 is obsolete|| --- Comment #27 from Walter Schwarzenfeld --- Created attachment 211148 --> https://bugs.freebsd.org/bugzilla/attachment.cgi?id=211148&action=edit svn-diff-py-certbot_new2 -- 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 243669] lang/python37 : Fails to upgrade 'python37-3.7.5_1' to 'python37-3.7.6' on FreeBSD 12.1-RELEASE-p1 powerpc 32 bit: Grammar3.7.6.final.0.pickle:No such file or directory
https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=243669 --- Comment #5 from Kubilay Kocak --- (In reply to Piotr Kubaj from comment #2) Upstream expects Python to build correctly/cleanly even with existing Python installations existing in the environment. If a root cause can be identified, we should report it upstream -- 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 235701] security/py-certbot: Add man page
https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=235701 --- Comment #28 from Kubilay Kocak --- (In reply to Walter Schwarzenfeld from comment #22) All files installed by a port that installs files in shared (non Python version specific) locations, must be made unique ("concurrent safe") Could you please process the periodic script to include that concurrent treatment by using uniquefiles functionality [1]. You should just be able to add the file to UNIQUE_SUFFIX_FILES which are already set by ports using USE_PYTHON=concurrent (which uses uniquefiles.mk functionality) [1] https://www.freebsd.org/doc/en/books/porters-handbook/book.html#uses-uniquefiles -- 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 243693] math/py-pandas: Committer timeout
https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=243693 John W. O'Brien changed: What|Removed |Added CC||pyt...@freebsd.org -- 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 235701] security/py-certbot: Add man page
https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=235701 --- Comment #29 from Walter Schwarzenfeld --- Is this what you mean? u post-install: ... ... ${MV} ${STAGEDIR}${PREFIX}/etc/periodic/weekly/500.certbot ${STAGEDIR}${PREFIX}/etc/periodic/weekly/500.certbot-${PYTHON_VER} -- 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 235701] security/py-certbot: Add man page
https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=235701 --- Comment #30 from Walter Schwarzenfeld --- ${PYTHON_SUFFIX} instead of ${PYTHON_VER}. -- 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"