Python libraries moved

2013-03-02 Thread Robert Simmons
It looks like a port revision made a few hours ago has broken firefox (and most likely a bunch of other ports). In the makefile for firefox, it has the following checks for dependencies: BUILD_DEPENDS= nspr=4.9.4:${PORTSDIR}/devel/nspr \ nss=3.14.1:${PORTSDIR}/security/nss \

Re: Python libraries moved

2013-03-02 Thread Robert Simmons
Sorry, what was the change you made? On Sun, Mar 3, 2013 at 1:10 AM, Martin Wilke m...@freebsd.org wrote: -BEGIN PGP SIGNED MESSAGE- Hash: SHA1 On Sun, Mar 03, 2013 at 12:08:41AM -0500, Robert Simmons wrote: It looks like a port revision made a few hours ago has broken firefox

Re: Python libraries moved

2013-03-03 Thread Robert Simmons
Ports tree updated, but it is still a problem. I don't see anything that was checked in recently that mentions this problem. On Sun, Mar 3, 2013 at 1:10 AM, Martin Wilke m...@freebsd.org wrote: -BEGIN PGP SIGNED MESSAGE- Hash: SHA1 On Sun, Mar 03, 2013 at 12:08:41AM -0500, Robert

Python 2.7.7

2014-06-10 Thread Robert Simmons
Is there an ETA for updating the python27 port to 2.7.7? ___ 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.7

2014-06-10 Thread Robert Simmons
Is there an ETA for updating the python27 port to 2.7.7? ___ 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: Ports that don't actually support Python 3.x

2014-07-06 Thread Robert Simmons
Beautiful Soup 3.x is Python 2.x only. From the website: Beautiful Soup 3 works only under Python 2.x. http://www.crummy.com/software/BeautifulSoup/ On Sun, Jul 6, 2014 at 3:56 PM, Melvyn Sopacua mel...@magemana.nl wrote: Hello, I'm coming accross a few ports that are in the tree as we speak,

Re: devel/libffi and lang/python34

2014-12-25 Thread Robert Simmons
I think the best option is AC: to remove libffi from python and to update our port. The config choice itself can then be removed from the python port. On Thu, Dec 25, 2014 at 11:37 PM, Kubilay Kocak ko...@freebsd.org wrote: On 26/12/2014 3:06 PM, Robert Simmons wrote: The default for lang

Unicode Problem

2015-01-28 Thread Robert Simmons
I'm having a unicode problem on FreeBSD lang/python34 that does not appear on MacOS X. I've condensed the problem to one single line to enter in the interpreter: FreeBSD: Python 3.4.2 (default, Jan 28 2015, 22:23:57) [GCC 4.2.1 Compatible FreeBSD Clang 3.4.1 (tags/RELEASE_34/dot1-final 208032)]

Re: Unicode Problem

2015-01-28 Thread Robert Simmons
What is the output from print(sys.stdout.encoding) on your system? And, can you explain how to change that on mine so that it is UTF-8? Mine is a default fresh install, btw. On Thu, Jan 29, 2015 at 2:29 AM, Roland Smith rsm...@xs4all.nl wrote: On Thu, Jan 29, 2015 at 01:38:21AM -0500, Robert

Re: Unicode Problem

2015-01-28 Thread Robert Simmons
in FreeBSD? On Thu, Jan 29, 2015 at 1:38 AM, Robert Simmons rsimmo...@gmail.com wrote: I'm having a unicode problem on FreeBSD lang/python34 that does not appear on MacOS X. I've condensed the problem to one single line to enter in the interpreter: FreeBSD: Python 3.4.2 (default, Jan 28 2015, 22:23

Re: Unicode Problem

2015-01-29 Thread Robert Simmons
I appreciate the assistance. Setting the LANG variable does the trick. I made the change system-wide by adding the following to /etc/login.conf LC_COLLATE=C charset=UTF-8 lang=en_US.UTF-8 Now the output is correct: b'\xc3\xa2'.decode('utf-8') 'รข' import sys print(sys.stdout.encoding) UTF-8 On

databases/py-sqlite3 Install Failing

2015-03-30 Thread Robert Simmons
I'm getting an error on install of the databases/py-sqlite3: === Installing for py34-sqlite3-3.4.3_6 === Checking if py34-sqlite3 already installed === Registering installation for py34-sqlite3-3.4.3_6 pkg-static: Plist error, directory listed as a file:

Python Subprocess Crontab Problem

2015-06-10 Thread Robert Simmons
I'm running into a wall with regards to using subprocess.call in a python script running in a crontab. I have isolated this problem to be subprocess not able to find the 7z executable. I have tried adding PYTHONPATH=$PATH to crontab, I have tried adding shell=True to subprocess.call, and I have

Re: Python Subprocess Crontab Problem

2015-06-10 Thread Robert Simmons
On Wed, Jun 10, 2015 at 5:02 PM, Craig Rodrigues rodr...@freebsd.org wrote: Can you add right here: print(PATH: %s % os.environ['PATH'], file=errors) and see what the PATH is in your errors file? I should have mentioned that I'm using python3. The above is causing a TypeError:

Re: Re: Python Subprocess Crontab Problem

2015-06-10 Thread Robert Simmons
On Wed, Jun 10, 2015 at 5:33 PM, Chris Wojo polish...@tech-wolf.net wrote: crontab isn't using a PATH for your specified user, so you need to give an absolute path. This is the fix. Thanks everyone! ___ freebsd-python@freebsd.org mailing list

devel/py-setuptools

2015-05-31 Thread Robert Simmons
setuptools has been updated quite a few times recently upstream (version 17.0 as of Friday). Is there a dependency that is holding our port at version 5.5.1? ___ freebsd-python@freebsd.org mailing list