Re: ports/189270: Is a new port graphics/py-pygal

2014-05-02 Thread edwin
Synopsis: Is a new port graphics/py-pygal

Responsible-Changed-From-To: freebsd-ports-bugs->freebsd-python
Responsible-Changed-By: edwin
Responsible-Changed-When: Fri May 2 22:50:04 UTC 2014
Responsible-Changed-Why: 
freebsd-python@ wants this port PRs (via the GNATS Auto Assign Tool)

http://www.freebsd.org/cgi/query-pr.cgi?pr=189270
___
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: bind10-1.2.0 You have python 2.7 set as the default, and this needs 3.3

2014-05-02 Thread Mathieu Arnold
+--On 30 avril 2014 10:02:16 -0500 jmore...@jmorenov.com.co wrote:
| DEFAULT_VERSIONS=python3=3.3

That line says that in the case you need python3, you will have 3.3, not
that in the case you need python you will have python 3.3.
You need DEFAULT_VERSIONS=python=3.3. (And then, you need to rebuild
everything that needs python because the default has changed from 2.7 to
3.3.)

Also, my I inquire why you're trying to use BIND 10 ? (Just curious, as
it's a deprecated dead piece of software.)

-- 
Mathieu Arnold
___
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"


bsd.python.mk patch for review

2014-05-02 Thread Antoine Brodin
Hi there,

Currently default python versions are inconsistent:
- python 3.3 is the default python3 version
- python 3.4 is preferred over python 3.3 when a port needs a python
version in a specific range

The patch below should address this,  please review/test.

Cheers,

Antoine

Index: Mk/bsd.python.mk
===
--- Mk/bsd.python.mk(revision 352778)
+++ Mk/bsd.python.mk(working copy)
@@ -289,7 +289,7 @@
 But you specified ${_PYTHON_VERSION}
 .else
 .undef _PYTHON_VERSION
-.for ver in ${_PYTHON_ALLBRANCHES}
+.for ver in ${PYTHON2_DEFAULT} ${PYTHON3_DEFAULT} ${_PYTHON_ALLBRANCHES}
 __VER=${ver}
 .if !defined(_PYTHON_VERSION) && \
 !(!empty(_PYTHON_VERSION_MINIMUM) && ( \
Index: Mk/bsd.python.mk
===
--- Mk/bsd.python.mk(revision 352778)
+++ Mk/bsd.python.mk(working copy)
@@ -289,7 +289,7 @@
But you specified ${_PYTHON_VERSION}
 .else
 .undef _PYTHON_VERSION
-.for ver in ${_PYTHON_ALLBRANCHES}
+.for ver in ${PYTHON2_DEFAULT} ${PYTHON3_DEFAULT} ${_PYTHON_ALLBRANCHES}
 __VER= ${ver}
 .if !defined(_PYTHON_VERSION) && \
!(!empty(_PYTHON_VERSION_MINIMUM) && ( \
___
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"