[Bug 196340] Mk/Uses/python.mk : variable name PYTHON_VERSION in DEPENDS_ARGS is badly choosen, breaking autoconf based ports
https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=196340 Antoine Brodin changed: What|Removed |Added Assignee|freebsd-ports-bugs@FreeBSD. |pyt...@freebsd.org |org | -- You are receiving this mail because: You are the assignee for the bug. ___ freebsd-python@freebsd.org mailing list http://lists.freebsd.org/mailman/listinfo/freebsd-python To unsubscribe, send any mail to "freebsd-python-unsubscr...@freebsd.org"
[Bug 196340] Mk/Uses/python.mk : variable name PYTHON_VERSION in DEPENDS_ARGS is badly choosen, breaking autoconf based ports
https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=196340 Kubilay Kocak changed: What|Removed |Added Priority|--- |Normal Severity|Affects Only Me |Affects Many People -- You are receiving this mail because: You are the assignee for the bug. ___ freebsd-python@freebsd.org mailing list http://lists.freebsd.org/mailman/listinfo/freebsd-python To unsubscribe, send any mail to "freebsd-python-unsubscr...@freebsd.org"
[Bug 196340] Mk/Uses/python.mk: PYTHON_VERSION variable in DEPENDS_ARGS conflicts with and breaks autoconf-based ports
https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=196340 Kubilay Kocak changed: What|Removed |Added Keywords||needs-patch, needs-qa CC||ko...@freebsd.org, ||m...@freebsd.org Summary|Mk/Uses/python.mk : |Mk/Uses/python.mk: |variable name |PYTHON_VERSION variable in |PYTHON_VERSION in |DEPENDS_ARGS conflicts with |DEPENDS_ARGS is badly |and breaks autoconf-based |choosen, breaking autoconf |ports |based ports | Status|New |Open --- Comment #1 from Kubilay Kocak --- antoine, Any considerations and/or suggestions for a renamed variable? Is this a good time to also introduce a prefixed variable namespace? -- You are receiving this mail because: You are the assignee for the bug. ___ freebsd-python@freebsd.org mailing list http://lists.freebsd.org/mailman/listinfo/freebsd-python To unsubscribe, send any mail to "freebsd-python-unsubscr...@freebsd.org"
[Bug 196306] [NEW PORT] devel/py-kaptan: Config file parser for json, yaml and ini files
https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=196306 Kubilay Kocak changed: What|Removed |Added Assignee|freebsd-ports-bugs@FreeBSD. |pyt...@freebsd.org |org | Keywords||needs-patch, needs-qa, ||patch Summary|[new port] devel/py-kaptan |[NEW PORT] devel/py-kaptan: |config file parser for |Config file parser for |json, yaml and ini files|json, yaml and ini files --- Comment #3 from Kubilay Kocak --- Thanks Tony, and congratulations on your first port submission :) If you could attach successful build output (using poudriere) that would be great. Failing that, include the output of the following as an attachment instead: make stage && make check-plist && make stage-qa && make package Also: - Update WWW: URL to match the PyPi entry (https://github.com/emre/kaptan) - Strip trailing slash from pkg-descr WWW: URL - Add LICENSE_FILE=${WRKSRC/LICENSE} - Sort/Put USES before USE_* -- You are receiving this mail because: You are the assignee for the bug. ___ freebsd-python@freebsd.org mailing list http://lists.freebsd.org/mailman/listinfo/freebsd-python To unsubscribe, send any mail to "freebsd-python-unsubscr...@freebsd.org"
[Bug 196307] [NEW PORTt] sysutils/py-tmuxp: Session manager for tmux
https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=196307 Kubilay Kocak changed: What|Removed |Added Summary|[new port] |[NEW PORTt] |sysutils/py-tmuxp: session |sysutils/py-tmuxp: Session |manager for tmux|manager for tmux Keywords||needs-patch, needs-qa, ||patch Assignee|freebsd-ports-bugs@FreeBSD. |pyt...@freebsd.org |org | Status|New |Open --- Comment #3 from Kubilay Kocak --- Same QA outputs requested here as for bug 196306 Nice work, and thanks for fulfilling a Python Port Wishlist item! -- You are receiving this mail because: You are the assignee for the bug. ___ freebsd-python@freebsd.org mailing list http://lists.freebsd.org/mailman/listinfo/freebsd-python To unsubscribe, send any mail to "freebsd-python-unsubscr...@freebsd.org"
[Bug 196307] [NEW PORT] sysutils/py-tmuxp: Session manager for tmux
https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=196307 Kubilay Kocak changed: What|Removed |Added Summary|[NEW PORTt] |[NEW PORT] |sysutils/py-tmuxp: Session |sysutils/py-tmuxp: Session |manager for tmux|manager for tmux -- You are receiving this mail because: You are the assignee for the bug. ___ freebsd-python@freebsd.org mailing list http://lists.freebsd.org/mailman/listinfo/freebsd-python To unsubscribe, send any mail to "freebsd-python-unsubscr...@freebsd.org"
Python 2.7.9 looks for SSL certificates in /etc/ssl instead of /usr/local/etc/ssl
Hello, I recently upgraded to Python 2.7.9 from the ports collection on my FreeBSD 10.0 system, and Python 2.7.9's change to enable SSL verification unexpectedly broke several of my Python scripts that made https connections to sites with valid SSL certificates. The reason is that Python is looking for the CA file at /etc/ssl/cert.pem, which does not exist in my FreeBSD installation. I do, however, have a /usr/local/etc/ssl/cert.pem file (which is actually a symlink to /usr/local/share/certs/ca-root-nss.crt): Calling ssl.get_default_verify_paths() in Python returns: DefaultVerifyPaths(cafile=None, capath=None, openssl_cafile_env='SSL_CERT_FILE', openssl_cafile='/etc/ssl/cert.pem', openssl_capath_env='SSL_CERT_DIR', openssl_capath='/etc/ssl/certs') Is this something that can (and should) be corrected in the Python 2.7.9 port? Thanks, - James ___ freebsd-python@freebsd.org mailing list http://lists.freebsd.org/mailman/listinfo/freebsd-python To unsubscribe, send any mail to "freebsd-python-unsubscr...@freebsd.org"
Re: Python 2.7.9 looks for SSL certificates in /etc/ssl instead of /usr/local/etc/ssl
On 29/12/2014 4:18 PM, James D. Lin wrote: > Hello, > > I recently upgraded to Python 2.7.9 from the ports collection on my FreeBSD > 10.0 system, and Python 2.7.9's change to enable SSL verification > unexpectedly broke several of my Python scripts that made https connections > to sites with valid SSL certificates. The reason is that Python is looking > for the CA file at /etc/ssl/cert.pem, which does not exist in my FreeBSD > installation. I do, however, have a /usr/local/etc/ssl/cert.pem file > (which is actually a symlink to /usr/local/share/certs/ca-root-nss.crt): > Calling ssl.get_default_verify_paths() in Python returns: > > DefaultVerifyPaths(cafile=None, >capath=None, >openssl_cafile_env='SSL_CERT_FILE', >openssl_cafile='/etc/ssl/cert.pem', >openssl_capath_env='SSL_CERT_DIR', >openssl_capath='/etc/ssl/certs') > > Is this something that can (and should) be corrected in the Python 2.7.9 > port? > > Thanks, > > - James James, It's a bit of a spider web between base and ports openssl, along with the ca_root_nss port, and various search path compatibility issues with various consuming software (from ports). What I can say is that *out of the box* (not base) support for SSL certificate verification is important and we want to make it better, so identifying the gaps is key. You can see some more detail in the following issue, in which I also mention Python move to verification by default: https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=189811 If you have anything to add, please comment as user feedback is very important. The Python team is also available on IRC at #freebsd-python (freenode) if you want to discuss anything further :) Thanks! koobs ___ freebsd-python@freebsd.org mailing list http://lists.freebsd.org/mailman/listinfo/freebsd-python To unsubscribe, send any mail to "freebsd-python-unsubscr...@freebsd.org"
[Bug 193433] x11-toolkits/gtk20: Makefile uses Python 2.7_2,2, causes openshot to fail with erroneous missing libmp3lame claim
https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=193433 Kubilay Kocak changed: What|Removed |Added Flags||maintainer-feedback?(gnome@ ||FreeBSD.org) CC||gn...@freebsd.org -- You are receiving this mail because: You are on the CC list for the bug. ___ freebsd-python@freebsd.org mailing list http://lists.freebsd.org/mailman/listinfo/freebsd-python To unsubscribe, send any mail to "freebsd-python-unsubscr...@freebsd.org"
[Bug 193350] [NEW PORT] devel/py-ta-lib: Python wrapper for TA-Lib
https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=193350 Kubilay Kocak changed: What|Removed |Added Keywords||patch -- You are receiving this mail because: You are the assignee for the bug. ___ freebsd-python@freebsd.org mailing list http://lists.freebsd.org/mailman/listinfo/freebsd-python To unsubscribe, send any mail to "freebsd-python-unsubscr...@freebsd.org"