Re: svn commit: r361263 - in head: . Mk

2014-07-20 Thread Kubilay Kocak
On 21/07/2014 7:18 AM, Marcus von Appen wrote:
> 
> Antoine Brodin :
> 
>> On Tue, Jul 8, 2014 at 6:14 PM, Marcus von Appen  wrote:
>>> Author: mva
>>> Date: Tue Jul  8 16:14:33 2014
>>> New Revision: 361263
>>> URL: http://svnweb.freebsd.org/changeset/ports/361263
>>> QAT: https://qat.redports.org/buildarchive/r361263/
>>>
>>> Log:
>>>   Support for installations based on the easy_install setup.py target
>>> has
>>>   been removed from the Ports framework for Python software. The
>>>   PYEASYINSTALL_* knobs and support for USE_PYDISTUTILS=easy_install
>>> have
>>>   been removed.
>>>
>>>   Phabric:  D299
>>>   With hat: python@
>>
>> Hi,
>>
>> There is a regression after this commit,  more than 200 python modules
>> that use USE_PYDISTUTILS=yes but don't use autoplist orphan their
>> egginfo.
> 
> Ouch! I thought that I tested everything often enough...
> 
>>> @@ -574,10 +501,8 @@ PYDISTUTILS_EGGINFODIR?=${STAGEDIR}${PYT
>>>  add-plist-egginfo:
>>>  .if !defined(PYDISTUTILS_NOEGGINFO) && \
>>> !defined(PYDISTUTILS_AUTOPLIST) && \
>>> -   (defined(INSTALLS_EGGINFO) ||   \
>>> -   (defined(USE_PYDISTUTILS) && \
>>> -${USE_PYDISTUTILS} != "easy_install")) && \
>>> -defined(PYTHON_REL)
>>> +   defined(INSTALLS_EGGINFO) && \
>>> +   defined(PYTHON_REL)
>>>  . for egginfo in ${PYDISTUTILS_EGGINFO}
>>> if [ -d "${PYDISTUTILS_EGGINFODIR}/${egginfo}" ]; then \
>>> ${LS} ${PYDISTUTILS_EGGINFODIR}/${egginfo} | while
>>> read f; do \
> 
> The mistake seems to be here. This should be
> 
> .if !defined(PYDISTUTILS_NOEGGINFO) && \
> !defined(PYDISTUTILS_AUTOPLIST) && \
> (defined(INSTALLS_EGGINFO) || defined(USE_PYDISTUTILS)) && \
> defined(PYTHON_REL)
> ...
> .endif
> 
> I won't have the time to check and commit this in the next few days.
> Can a python@'eer recheck and commit a fix please?
> 
> Thanks
> Marcus
> 
> 

For reference, one of these was recently reported in math/py-numpy [1],
fixed by adding INSTALLS_EGGINFO [2].

[1] https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=191865
[2] http://svnweb.freebsd.org/changeset/ports/362060
___
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 191741] math/py-numpy: Enable ATLAS option by default. Fixes science/py-scipy & science/avogadro packages

2014-07-20 Thread bugzilla-noreply
https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=191741

Kubilay Kocak  changed:

   What|Removed |Added

 CC||ko...@freebsd.org
Summary|please enable ATLAS in  |math/py-numpy: Enable ATLAS
   |math/py-numpy to fix|option by default. Fixes
   |science/py27-scipy and  |science/py-scipy &
   |science/avogadro|science/avogadro packages

-- 
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 191666] x11-toolkits/py-wxPython30: wxcrt.h:530:1: error: cannot initialize a parameter of type 'const char *' with an lvalue of type 'const wchar_t *'

2014-07-20 Thread bugzilla-noreply
https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=191666

Antoine Brodin  changed:

   What|Removed |Added

 Status|Needs Triage|Open
   Severity|Affects Some People |Affects Many People

--- Comment #2 from Antoine Brodin  ---
I confirm that it doesn't build on head (clang 3.4 ?)

-- 
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"


Re: svn commit: r361263 - in head: . Mk

2014-07-20 Thread Marcus von Appen


Antoine Brodin :


On Tue, Jul 8, 2014 at 6:14 PM, Marcus von Appen  wrote:

Author: mva
Date: Tue Jul  8 16:14:33 2014
New Revision: 361263
URL: http://svnweb.freebsd.org/changeset/ports/361263
QAT: https://qat.redports.org/buildarchive/r361263/

Log:
  Support for installations based on the easy_install setup.py target has
  been removed from the Ports framework for Python software. The
  PYEASYINSTALL_* knobs and support for USE_PYDISTUTILS=easy_install have
  been removed.

  Phabric:  D299
  With hat: python@


Hi,

There is a regression after this commit,  more than 200 python modules
that use USE_PYDISTUTILS=yes but don't use autoplist orphan their
egginfo.


Ouch! I thought that I tested everything often enough...


@@ -574,10 +501,8 @@ PYDISTUTILS_EGGINFODIR?=${STAGEDIR}${PYT
 add-plist-egginfo:
 .if !defined(PYDISTUTILS_NOEGGINFO) && \
!defined(PYDISTUTILS_AUTOPLIST) && \
-   (defined(INSTALLS_EGGINFO) ||   \
-   (defined(USE_PYDISTUTILS) && \
-${USE_PYDISTUTILS} != "easy_install")) && \
-defined(PYTHON_REL)
+   defined(INSTALLS_EGGINFO) && \
+   defined(PYTHON_REL)
 . for egginfo in ${PYDISTUTILS_EGGINFO}
if [ -d "${PYDISTUTILS_EGGINFODIR}/${egginfo}" ]; then \
${LS} ${PYDISTUTILS_EGGINFODIR}/${egginfo} | while  
read f; do \


The mistake seems to be here. This should be

.if !defined(PYDISTUTILS_NOEGGINFO) && \
!defined(PYDISTUTILS_AUTOPLIST) && \
(defined(INSTALLS_EGGINFO) || defined(USE_PYDISTUTILS)) && \
defined(PYTHON_REL)
...
.endif

I won't have the time to check and commit this in the next few days.
Can a python@'eer recheck and commit a fix please?

Thanks
Marcus

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


[package - 91amd64-default-ssp][lang/python-doc-text] Failed for python-doc-text-2.7.8 in fetch

2014-07-20 Thread pkg-fallout
You are receiving this mail as a port that you maintain
is failing to build on the FreeBSD package build server.
Please investigate the failure and submit a PR to fix
build.

Maintainer: pyt...@freebsd.org
Last committer: m...@freebsd.org
Ident:  $FreeBSD: head/lang/python-doc-text/Makefile 340722 2014-01-22 
17:00:46Z mat $
Log URL:
http://beefy4.isc.freebsd.org/data/91amd64-default-ssp/2014-07-19_23h39m28s/logs/python-doc-text-2.7.8.log
Build URL:  
http://beefy4.isc.freebsd.org/build.html?mastername=91amd64-default-ssp&build=2014-07-19_23h39m28s
Log:

>> Building lang/python-doc-text
build started at Sun Jul 20 19:32:04 UTC 2014
port directory: /usr/ports/lang/python-doc-text
building for: FreeBSD pkg.FreeBSD.org 9.1-RELEASE-p13 FreeBSD 9.1-RELEASE-p13 
amd64
maintained by: pyt...@freebsd.org
Makefile ident:  $FreeBSD: head/lang/python-doc-text/Makefile 340722 
2014-01-22 17:00:46Z mat $
Poudriere version: 3.1-pre
Host OSVERSION: 1100027
Jail OSVERSION: 901000

---Begin Environment---
OSVERSION=901000
UNAME_v=FreeBSD 9.1-RELEASE-p13
UNAME_r=9.1-RELEASE-p13
BLOCKSIZE=K
MAIL=/var/mail/root
STATUS=1
SAVED_TERM=
MASTERMNT=/usr/local/poudriere/data/.m/91amd64-default-ssp/ref
PKG_EXT=txz
FORCE_PACKAGE=yes
PATH=/sbin:/bin:/usr/sbin:/usr/bin:/usr/games:/usr/local/sbin:/usr/local/bin:/root/bin
POUDRIERE_BUILD_TYPE=bulk
PKGNG=1
PKGNAME=python-doc-text-2.7.8
PKG_DELETE=/usr/local/sbin/pkg-static delete -y -f
PKG_ADD=/usr/local/sbin/pkg-static add
OLDPWD=/usr/local/poudriere/data/.m/91amd64-default-ssp/ref/.p/rdeps
PWD=/usr/local/poudriere/data/.m/91amd64-default-ssp/ref/.p/pool
MASTERNAME=91amd64-default-ssp
USER=root
HOME=/root
POUDRIERE_VERSION=3.1-pre
LOCALBASE=/usr/local
PACKAGE_BUILDING=yes
PKG_VERSION=/.p/pkg-static version
PKG_BIN=/usr/local/sbin/pkg-static
---End Environment---

---Begin OPTIONS List---
---End OPTIONS List---

--CONFIGURE_ARGS--

--End CONFIGURE_ARGS--

--CONFIGURE_ENV--
XDG_DATA_HOME=/wrkdirs/usr/ports/lang/python-doc-text/work  
XDG_CONFIG_HOME=/wrkdirs/usr/ports/lang/python-doc-text/work  
HOME=/wrkdirs/usr/ports/lang/python-doc-text/work TMPDIR="/tmp" 
PYTHON="/usr/local/bin/python2.7" 
XDG_DATA_HOME=/wrkdirs/usr/ports/lang/python-doc-text/work  
XDG_CONFIG_HOME=/wrkdirs/usr/ports/lang/python-doc-text/work  
HOME=/wrkdirs/usr/ports/lang/python-doc-text/work TMPDIR="/tmp" SHELL=/bin/sh 
CONFIG_SHELL=/bin/sh
--End CONFIGURE_ENV--

--MAKE_ENV--
XDG_DATA_HOME=/wrkdirs/usr/ports/lang/python-doc-text/work  
XDG_CONFIG_HOME=/wrkdirs/usr/ports/lang/python-doc-text/work  
HOME=/wrkdirs/usr/ports/lang/python-doc-text/work TMPDIR="/tmp" 
XDG_DATA_HOME=/wrkdirs/usr/ports/lang/python-doc-text/work  
XDG_CONFIG_HOME=/wrkdirs/usr/ports/lang/python-doc-text/work  
HOME=/wrkdirs/usr/ports/lang/python-doc-text/work TMPDIR="/tmp" NO_PIE=yes 
SHELL=/bin/sh NO_LINT=YES PREFIX=/usr/local  LOCALBASE=/usr/local  
LIBDIR="/usr/lib"  CC="cc" CFLAGS="-O2 -pipe -fstack-protector 
-fno-strict-aliasing"  CPP="cpp" CPPFLAGS=""  LDFLAGS=" -fstack-protector" 
LIBS=""  CXX="c++" CXXFLAGS="-O2 -pipe -fstack-protector -fno-strict-aliasing"  
MANPREFIX="/usr/local" BSD_INSTALL_PROGRAM="install  -s -o root -g wheel -m 
555"  BSD_INSTALL_LIB="install  -s -o root -g wheel -m 444"  
BSD_INSTALL_SCRIPT="install  -o root -g wheel -m 555"  
BSD_INSTALL_DATA="install  -o root -g wheel -m 444"  BSD_INSTALL_MAN="install  
-o root -g wheel -m 444"
--End MAKE_ENV--

--PLIST_SUB--
PYTHON_INCLUDEDIR=include/python2.7
PYTHON_LIBDIR=lib/python2.7
PYTHON_PLATFORM=freebsd9
PYTHON_SITELIBDIR=lib/python2.7/site-packages
PYTHON_VERSION=python2.7
OSREL=9.1
PREFIX=%D
LOCALBASE=/usr/local
PORTDOCS=""
PORTEXAMPLES=""
PORTDATA=""
LIB32DIR=lib
DOCSDIR="share/doc/python2.7"
EXAMPLESDIR="share/examples/python-doc-text"
DATADIR="share/python-doc-text"
WWWDIR="www/python-doc-text"
ETCDIR="etc/python-doc-text"
--End PLIST_SUB--

--SUB_LIST--
PREFIX=/usr/local
LOCALBASE=/usr/local
DATADIR=/usr/local/share/python-doc-text
DOCSDIR=/usr/local/share/doc/python2.7
EXAMPLESDIR=/usr/local/share/examples/python-doc-text
WWWDIR=/usr/local/www/python-doc-text
ETCDIR=/usr/local/etc/python-doc-text
--End SUB_LIST--

---Begin make.conf---
USE_PACKAGE_DEPENDS=yes
BATCH=yes
WRKDIRPREFIX=/wrkdirs
WITH_CCACHE_BUILD=yes
CCACHE_DIR=/root/.ccache
USE_PACKAGE_DEPENDS=yes
BATCH=yes
WRKDIRPREFIX=/wrkdirs
PORTSDIR=/usr/ports
PACKAGES=/packages
DISTDIR=/distfiles
 /usr/local/etc/poudriere.d/make.conf 
WITH_PKGNG=yes
 /usr/local/etc/poudriere.d/ssp-make.conf 
WITH_SSP_PORTS=yes
DISABLE_MAKE_JOBS=poudriere
---End make.conf---
===
===
===
===>   python-doc-text-2.7.8 depends on file: /usr/local/sbin/pkg - not found
===>Verifying install for /usr/local/sbin/pkg in /usr/ports/ports-mgmt/pkg
===>   Installing existing package /packages/All/pkg-1.2.7_4.txz
Installing pk

Re: svn commit: r361263 - in head: . Mk

2014-07-20 Thread Antoine Brodin
On Tue, Jul 8, 2014 at 6:14 PM, Marcus von Appen  wrote:
> Author: mva
> Date: Tue Jul  8 16:14:33 2014
> New Revision: 361263
> URL: http://svnweb.freebsd.org/changeset/ports/361263
> QAT: https://qat.redports.org/buildarchive/r361263/
>
> Log:
>   Support for installations based on the easy_install setup.py target has
>   been removed from the Ports framework for Python software. The
>   PYEASYINSTALL_* knobs and support for USE_PYDISTUTILS=easy_install have
>   been removed.
>
>   Phabric:  D299
>   With hat: python@

Hi,

There is a regression after this commit,  more than 200 python modules
that use USE_PYDISTUTILS=yes but don't use autoplist orphan their
egginfo.

Cheers,

Antoine

>
> Modified:
>   head/CHANGES
>   head/Mk/bsd.python.mk
>   head/Mk/bsd.sanity.mk
>
> Modified: head/CHANGES
> ==
> --- head/CHANGESTue Jul  8 16:09:29 2014(r361262)
> +++ head/CHANGESTue Jul  8 16:14:33 2014(r361263)
> @@ -10,6 +10,14 @@ in the release notes and/or placed into
>
>  All ports committers are allowed to commit to this file.
>
> +20140708:
> +AUTHOR: m...@freebsd.org
> +
> +  Support for installations based on the easy_install setup.py target has
> +  been removed from the Ports framework for Python software. The
> +  PYEASYINSTALL_* knobs and support for USE_PYDISTUTILS=easy_install have
> +  been removed.
> +
>  20140623:
>  AUTHOR: b...@freebsd.org
>
>
> Modified: head/Mk/bsd.python.mk
> ==
> --- head/Mk/bsd.python.mk   Tue Jul  8 16:09:29 2014(r361262)
> +++ head/Mk/bsd.python.mk   Tue Jul  8 16:14:33 2014(r361263)
> @@ -78,8 +78,8 @@ Python_Include_MAINTAINER=python@FreeBS
>  #for ${PYTHON_PKGNAMEPREFIX}.
>  #
>  # PYTHON_VERSION   - Version of the python binary in your ${PATH}, in the
> -#format "python2.0". Set this in 
> your makefile in case you
> -#want to build extensions with an 
> older binary.
> +#format "python2.0". Set this in 
> your makefile in case
> +#you want to build extensions with 
> an older binary.
>  #default: depends on the version of 
> your python binary
>  #
>  # PYTHON_VER   - Version of the python binary in your ${PATH}, in the
> @@ -90,12 +90,12 @@ Python_Include_MAINTAINER=  python@FreeBS
>  #the format "python2.7".
>  #
>  # PYTHON2_DEFAULT_VERSION
> -#  - Version of the default python2 
> binary in your ${PATH}, in
> -#the format "python2.7".
> +#  - Version of the default python2 
> binary in your ${PATH},
> +#in the format "python2.7".
>  #
>  # PYTHON3_DEFAULT_VERSION
> -#  - Version of the default python3 
> binary in your ${PATH}, in
> -#the format "python3.2".
> +#  - Version of the default python3 
> binary in your ${PATH},
> +#in the format "python3.2".
>  #
>  # PYTHON_MAJOR_VER - Python version major number. 2 for python-2.x,
>  #3 for python-3.x and so on.
> @@ -154,16 +154,17 @@ Python_Include_MAINTAINER=python@FreeBS
>  #default: setup.py
>  #
>  # PYDISTUTILS_AUTOPLIST
> -#  - Automatically generates the 
> packaging list for a port that uses
> -# distutils or setuptools 
> (easy_install) when defined.
> -# requires: USE_PYDISTUTILS
> +#  - Automatically generates the 
> packaging list for a port
> +#that uses distutils when defined.
> +#requires: USE_PYDISTUTILS
>  #
>  # PYTHON_PY3K_PLIST_HACK
> -#  - Automatically generates Python 3.x 
> compatible __pycache__ entries
> -# from a Python 2.x packaging list 
> when defined. Use this for ports that
> -# do *not* use standard Python 
> packaging mechanisms such as distutils
> -# or setuptools, and support *both* 
> Python 2.x and 3.x. Not needed when
> -# PYDISTUTILS_AUTOPLIST is defined.
> +#  - Automatically generates Python 3.x 
> compatible
> +#   

[Bug 191741] please enable ATLAS in math/py-numpy to fix science/py27-scipy and science/avogadro

2014-07-20 Thread bugzilla-noreply
https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=191741

Mark Linimon  changed:

   What|Removed |Added

   Assignee|freebsd-ports-bugs@FreeBSD. |pyt...@freebsd.org
   |org |
Summary|science/py27-scipy  |please enable ATLAS in
   |science/avogadro|math/py-numpy to fix
   |math/py27-numpy |science/py27-scipy and
   ||science/avogadro

-- 
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 191943] lang/python34 won't build in jail if software and kernel versions doesn't match

2014-07-20 Thread bugzilla-noreply
https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=191943

Mark Linimon  changed:

   What|Removed |Added

Summary|Python 3.4 won't build in   |lang/python34 won't build
   |jail if software and kernel |in jail if software and
   |versions doesn't match  |kernel versions doesn't
   ||match

-- 
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 191850] [maintainer update] devel/py-RPyC Update to 3.3.0

2014-07-20 Thread bugzilla-noreply
https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=191850

kozlov.sergey@gmail.com changed:

   What|Removed |Added

 Attachment #144817|0   |1
is obsolete||

--- Comment #8 from kozlov.sergey@gmail.com ---
Created attachment 144820
  --> https://bugs.freebsd.org/bugzilla/attachment.cgi?id=144820&action=edit
portlint -AC output

Wrong type (not a 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"


[Bug 191850] [maintainer update] devel/py-RPyC Update to 3.3.0

2014-07-20 Thread bugzilla-noreply
https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=191850

--- Comment #7 from kozlov.sergey@gmail.com ---
Created attachment 144819
  --> https://bugs.freebsd.org/bugzilla/attachment.cgi?id=144819&action=edit
Redports EXP1 run

-- 
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 191850] [maintainer update] devel/py-RPyC Update to 3.3.0

2014-07-20 Thread bugzilla-noreply
https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=191850

--- Comment #6 from kozlov.sergey@gmail.com ---
Created attachment 144818
  --> https://bugs.freebsd.org/bugzilla/attachment.cgi?id=144818&action=edit
Redports 10.0-RELEASE/amd64 run

-- 
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 191850] [maintainer update] devel/py-RPyC Update to 3.3.0

2014-07-20 Thread bugzilla-noreply
https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=191850

--- Comment #5 from kozlov.sergey@gmail.com ---
Created attachment 144817
  --> https://bugs.freebsd.org/bugzilla/attachment.cgi?id=144817&action=edit
portlint -AC output

-- 
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 191850] [maintainer update] devel/py-RPyC Update to 3.3.0

2014-07-20 Thread bugzilla-noreply
https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=191850

kozlov.sergey@gmail.com changed:

   What|Removed |Added

 Attachment #144629|0   |1
is obsolete||

--- Comment #4 from kozlov.sergey@gmail.com ---
Created attachment 144816
  --> https://bugs.freebsd.org/bugzilla/attachment.cgi?id=144816&action=edit
Update to 3.3.0 (fixed)

-- 
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 191943] Python 3.4 won't build in jail if software and kernel versions doesn't match

2014-07-20 Thread bugzilla-noreply
https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=191943

John Marino  changed:

   What|Removed |Added

 Status|Needs Triage|Open
   Assignee|freebsd-ports-bugs@FreeBSD. |pyt...@freebsd.org
   |org |

--- Comment #1 from John Marino  ---
over to maintainer

-- 
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"