From owner-freebsd-python@FreeBSD.ORG Sun Dec 1 09:40:02 2013 Return-Path: Delivered-To: freebsd-python@smarthost.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id E81AA8C4 for ; Sun, 1 Dec 2013 09:40:02 +0000 (UTC) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:1900:2254:206c::16:87]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id C81B31ACC for ; Sun, 1 Dec 2013 09:40:02 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.7/8.14.7) with ESMTP id rB19e24C076135 for ; Sun, 1 Dec 2013 09:40:02 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.7/8.14.7/Submit) id rB19e2XP076134; Sun, 1 Dec 2013 09:40:02 GMT (envelope-from gnats) Date: Sun, 1 Dec 2013 09:40:02 GMT Message-Id: <201312010940.rB19e2XP076134@freefall.freebsd.org> To: freebsd-python@FreeBSD.org Cc: From: dfilter@FreeBSD.ORG (dfilter service) Subject: Re: ports/156759: commit references a PR X-BeenThere: freebsd-python@freebsd.org X-Mailman-Version: 2.1.16 Precedence: list Reply-To: dfilter service List-Id: FreeBSD-specific Python issues List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 01 Dec 2013 09:40:03 -0000 The following reply was made to PR ports/156759; it has been noted by GNATS. From: dfilter@FreeBSD.ORG (dfilter service) To: bug-followup@FreeBSD.org Cc: Subject: Re: ports/156759: commit references a PR Date: Sun, 1 Dec 2013 09:34:28 +0000 (UTC) Author: koobs Date: Sun Dec 1 09:34:20 2013 New Revision: 335370 URL: http://svnweb.freebsd.org/changeset/ports/335370 Log: lang/python31: Backport upstream kevent fix and use libffi from ports Backport a change fixing use of kevent flags that was merged to Python default, 3.3 and 2.7 branches, but not 3.2 and 3.1 that were in security-only mode at the time of commit. [1] - Add patch: patch-Modules__selectmodule.c Based on patch by: David Naylor Unconditionally use libffi from ports because the Python 3.1 branch was closed for maintenance when the import of libffi 3.0.13 took place. This fixes _ctypes module build failure on i386. [2] - Add global CONFIGURE_ARGS and LIB_DEPENDS References: [1] Issue #11973: Fix a problem in kevent. The flags and fflags fields are now properly handled as unsigned. [#11973] http://bugs.python.org/issue11973 http://hg.python.org/cpython/rev/8345fb616cbd [2] Fixes Issue #17192: Update the ctypes module's libffi to v3.0.13. This specifically addresses a stack misalignment issue on x86 and issues on some more recent platforms. [#17192] http://bugs.python.org/issue17192 http://hg.python.org/cpython/rev/a94b3b4599f1 http://hg.python.org/cpython/rev/688bc0b44d96 While I'm here: - Add LICENSE (PSFL) - Clean up & whitespace alignment PR: ports/156759 [1] Reviewed by: mva Added: head/lang/python31/files/patch-Modules__selectmodule.c (contents, props changed) Modified: head/lang/python31/Makefile Modified: head/lang/python31/Makefile ============================================================================== --- head/lang/python31/Makefile Sun Dec 1 09:16:16 2013 (r335369) +++ head/lang/python31/Makefile Sun Dec 1 09:34:20 2013 (r335370) @@ -1,24 +1,30 @@ # $FreeBSD$ -PORTNAME= python31 -PORTVERSION= 3.1.5 -PORTREVISION= 5 -CATEGORIES= lang python ipv6 -MASTER_SITES= PYTHON +PORTNAME= python31 +PORTVERSION= 3.1.5 +PORTREVISION= 6 +CATEGORIES= lang python ipv6 +MASTER_SITES= PYTHON MASTER_SITE_SUBDIR= ${PYTHON_MASTER_SITE_SUBDIR} -DISTFILES= ${PYTHON_DISTFILE} +DISTFILES= ${PYTHON_DISTFILE} +DIST_SUBDIR= python MAINTAINER= python@FreeBSD.org COMMENT= Interpreted object-oriented programming language -DEPRECATED= Python 3.1 will be end-of-life soon, please migrate to lang/python33 -EXPIRATION_DATE=2014-06-01 +LICENSE= PSFL -DIST_SUBDIR= python -GNU_CONFIGURE= yes +LIB_DEPENDS= libffi.so:${PORTSDIR}/devel/libffi + +DEPRECATED= Python 3.1 will be end-of-life soon, please migrate to lang/python33 +EXPIRATION_DATE= 2014-06-01 + +GNU_CONFIGURE= yes CONFIGURE_SCRIPT= ../configure # must be relative -CONFIGURE_ENV= OPT="" SVNVERSION="echo freebsd" ac_cv_opt_olimit_ok=no -MAKE_ENV= VPATH="${PYTHON_WRKSRC}" +CONFIGURE_ARGS= --with-system-ffi +CONFIGURE_ENV= OPT="" SVNVERSION="echo freebsd" ac_cv_opt_olimit_ok=no +MAKE_ENV= VPATH="${PYTHON_WRKSRC}" + INSTALL_TARGET= altinstall MAN1= ${PYTHON_VERSION}.1 @@ -26,7 +32,7 @@ USE_LDCONFIG= yes USE_PYTHON= yes USE_XZ= yes -PYTHON_VERSION= python3.1 +PYTHON_VERSION= python3.1 PYTHON_NO_DEPENDS= yes WRKSRC= ${PYTHON_WRKSRC}/portbld.static @@ -73,14 +79,14 @@ CONFIGURE_ENV+= ac_cv_lib_intl_textdomai .include .if ${PORT_OPTIONS:MTHREADS} -PLIST_SUB+= THREADS="" +PLIST_SUB+= THREADS="" CONFIGURE_ARGS+= --with-threads CFLAGS+= ${PTHREAD_CFLAGS} LDFLAGS+= ${PTHREAD_LIBS} -.else # defined(WITHOUT_THREADS) -PLIST_SUB+= THREADS="@comment " +.else +PLIST_SUB+= THREADS="@comment " CONFIGURE_ARGS+= --without-threads -.endif # !defined(WITHOUT_THREADS) +.endif .if ${PORT_OPTIONS:MUCS4} CONFIGURE_ARGS+= --with-wide-unicode Added: head/lang/python31/files/patch-Modules__selectmodule.c ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/lang/python31/files/patch-Modules__selectmodule.c Sun Dec 1 09:34:20 2013 (r335370) @@ -0,0 +1,11 @@ +--- ./Modules/selectmodule.c.orig 2013-11-30 23:09:48.211062086 +1100 ++++ ./Modules/selectmodule.c 2013-11-30 23:53:51.740895007 +1100 +@@ -1229,7 +1229,7 @@ + + EV_SET(&(self->e), 0, EVFILT_READ, EV_ADD, 0, 0, 0); /* defaults */ + +- if (!PyArg_ParseTupleAndKeywords(args, kwds, "O|hhiii:kevent", kwlist, ++ if (!PyArg_ParseTupleAndKeywords(args, kwds, "O|hHIii:kevent", kwlist, + &pfd, &(self->e.filter), &(self->e.flags), + &(self->e.fflags), &(self->e.data), &(self->e.udata))) { + return -1; _______________________________________________ svn-ports-all@freebsd.org mailing list http://lists.freebsd.org/mailman/listinfo/svn-ports-all To unsubscribe, send any mail to "svn-ports-all-unsubscribe@freebsd.org" From owner-freebsd-python@FreeBSD.ORG Sun Dec 1 09:40:01 2013 Return-Path: Delivered-To: freebsd-python@smarthost.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id BA8618C3 for ; Sun, 1 Dec 2013 09:40:01 +0000 (UTC) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:1900:2254:206c::16:87]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id A664E1ACB for ; Sun, 1 Dec 2013 09:40:01 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.7/8.14.7) with ESMTP id rB19e1wx076129 for ; Sun, 1 Dec 2013 09:40:01 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.7/8.14.7/Submit) id rB19e1lL076128; Sun, 1 Dec 2013 09:40:01 GMT (envelope-from gnats) Date: Sun, 1 Dec 2013 09:40:01 GMT Message-Id: <201312010940.rB19e1lL076128@freefall.freebsd.org> To: freebsd-python@FreeBSD.org Cc: From: dfilter@FreeBSD.ORG (dfilter service) Subject: Re: ports/156759: commit references a PR X-BeenThere: freebsd-python@freebsd.org X-Mailman-Version: 2.1.16 Precedence: list Reply-To: dfilter service List-Id: FreeBSD-specific Python issues List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 01 Dec 2013 09:40:01 -0000 The following reply was made to PR ports/156759; it has been noted by GNATS. From: dfilter@FreeBSD.ORG (dfilter service) To: bug-followup@FreeBSD.org Cc: Subject: Re: ports/156759: commit references a PR Date: Sun, 1 Dec 2013 09:36:56 +0000 (UTC) Author: koobs Date: Sun Dec 1 09:36:49 2013 New Revision: 335371 URL: http://svnweb.freebsd.org/changeset/ports/335371 Log: lang/python32: Backport upstream kevent fix Backport a change fixing use of kevent flags that was merged to Python default, 3.3 and 2.7 branches, but not 3.2 and 3.1 that were in security-only mode at the time of commit. [1] - Add patch: patch-Modules__selectmodule.c References: [1] Issue #11973: Fix a problem in kevent. The flags and fflags fields are now properly handled as unsigned. [#11973] http://bugs.python.org/issue11973 http://hg.python.org/cpython/rev/8345fb616cbd While I'm here: - Add LICENSE (PSFL) - Clean up, reorganise, sort & whitespace align sections PR: ports/156759 Submitted by: David Naylor Reviewed by: mva Added: head/lang/python32/files/patch-Modules__selectmodule.c (contents, props changed) Modified: head/lang/python32/Makefile Modified: head/lang/python32/Makefile ============================================================================== --- head/lang/python32/Makefile Sun Dec 1 09:34:20 2013 (r335370) +++ head/lang/python32/Makefile Sun Dec 1 09:36:49 2013 (r335371) @@ -1,35 +1,40 @@ # $FreeBSD$ -PORTNAME= python32 -PORTVERSION= 3.2.5 -PORTREVISION= 3 -CATEGORIES= lang python ipv6 -MASTER_SITES= PYTHON +PORTNAME= python32 +PORTVERSION= 3.2.5 +PORTREVISION= 4 +CATEGORIES= lang python ipv6 +MASTER_SITES= PYTHON MASTER_SITE_SUBDIR= ${PYTHON_MASTER_SITE_SUBDIR} -DISTFILES= ${PYTHON_DISTFILE} +DISTFILES= ${PYTHON_DISTFILE} +DIST_SUBDIR= python MAINTAINER= python@FreeBSD.org COMMENT= Interpreted object-oriented programming language -DIST_SUBDIR= python -WRKSRC= ${PYTHON_WRKSRC}/portbld.static -PATCH_WRKSRC= ${PYTHON_WRKSRC} -GNU_CONFIGURE= yes +LICENSE= PSFL + +GNU_CONFIGURE= yes CONFIGURE_SCRIPT= ../configure # must be relative -CONFIGURE_ENV= OPT="" SVNVERSION="echo freebsd" -MAKE_ENV= VPATH="${PYTHON_WRKSRC}" -USE_LDCONFIG= yes +CONFIGURE_ENV= OPT="" SVNVERSION="echo freebsd" +MAKE_ENV= VPATH="${PYTHON_WRKSRC}" + INSTALL_TARGET= altinstall MAN1= ${PYTHON_VERSION}.1 +USE_LDCONFIG= yes USE_PYTHON= yes USE_XZ= yes -PYTHON_VERSION= python3.2 + +PYTHON_VERSION= python3.2 PYTHON_NO_DEPENDS= yes +WRKSRC= ${PYTHON_WRKSRC}/portbld.static +SHARED_WRKSRC= ${PYTHON_WRKSRC}/portbld.shared +PATCH_WRKSRC= ${PYTHON_WRKSRC} + PYABIVER= # default empty, for after appending -SHARED_WRKSRC= ${PYTHON_WRKSRC}/portbld.shared PLIST_SUB= PYVER=${PYTHON_VERSION:S/python//} \ PYMAJOR=${PYTHON_MAJOR_VER} \ PYVER_WITHPAT=${PORTVERSION:S/.rc/rc/} \ Added: head/lang/python32/files/patch-Modules__selectmodule.c ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/lang/python32/files/patch-Modules__selectmodule.c Sun Dec 1 09:36:49 2013 (r335371) @@ -0,0 +1,11 @@ +--- ./Modules/selectmodule.c.orig 2013-11-30 23:03:20.030929248 +1100 ++++ ./Modules/selectmodule.c 2013-11-30 23:03:56.111022639 +1100 +@@ -1246,7 +1246,7 @@ + PyObject *pfd; + static char *kwlist[] = {"ident", "filter", "flags", "fflags", + "data", "udata", NULL}; +- static char *fmt = "O|hhi" INTPTRT_FMT_UNIT UINTPTRT_FMT_UNIT ":kevent"; ++ static char *fmt = "O|hHI" INTPTRT_FMT_UNIT UINTPTRT_FMT_UNIT ":kevent"; + + EV_SET(&(self->e), 0, EVFILT_READ, EV_ADD, 0, 0, 0); /* defaults */ + _______________________________________________ svn-ports-all@freebsd.org mailing list http://lists.freebsd.org/mailman/listinfo/svn-ports-all To unsubscribe, send any mail to "svn-ports-all-unsubscribe@freebsd.org" From owner-freebsd-python@FreeBSD.ORG Sun Dec 1 10:20:02 2013 Return-Path: Delivered-To: freebsd-python@smarthost.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 34FABF87 for ; Sun, 1 Dec 2013 10:20:02 +0000 (UTC) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:1900:2254:206c::16:87]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 0516D1CA7 for ; Sun, 1 Dec 2013 10:20:02 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.7/8.14.7) with ESMTP id rB1AK1jE084430 for ; Sun, 1 Dec 2013 10:20:01 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.7/8.14.7/Submit) id rB1AK1CJ084429; Sun, 1 Dec 2013 10:20:01 GMT (envelope-from gnats) Date: Sun, 1 Dec 2013 10:20:01 GMT Message-Id: <201312011020.rB1AK1CJ084429@freefall.freebsd.org> To: freebsd-python@FreeBSD.org Cc: From: Kubilay Kocak Subject: Re: ports/156759: [patch] lang/python: kevent does not accept KQ_NOTE_EXIT (and other (f)flags) X-BeenThere: freebsd-python@freebsd.org X-Mailman-Version: 2.1.16 Precedence: list Reply-To: Kubilay Kocak List-Id: FreeBSD-specific Python issues List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 01 Dec 2013 10:20:02 -0000 The following reply was made to PR ports/156759; it has been noted by GNATS. From: Kubilay Kocak To: bug-followup@FreeBSD.org, naylor.b.david@gmail.com Cc: Subject: Re: ports/156759: [patch] lang/python: kevent does not accept KQ_NOTE_EXIT (and other (f)flags) Date: Sun, 01 Dec 2013 21:18:56 +1100 The last two commits now bring this 1.5 year old PR and journey to a close. David, a specific thank you for originally submitting this upstream and then into a PR with a patch. Apologies it took so long to get resolved. From owner-freebsd-python@FreeBSD.ORG Sun Dec 1 12:28:42 2013 Return-Path: Delivered-To: freebsd-python@smarthost.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 87B3B492; Sun, 1 Dec 2013 12:28:42 +0000 (UTC) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:1900:2254:206c::16:87]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 5BF1411DE; Sun, 1 Dec 2013 12:28:42 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.7/8.14.7) with ESMTP id rB1CSgO9013418; Sun, 1 Dec 2013 12:28:42 GMT (envelope-from koobs@freefall.freebsd.org) Received: (from koobs@localhost) by freefall.freebsd.org (8.14.7/8.14.7/Submit) id rB1CSgXa013417; Sun, 1 Dec 2013 12:28:42 GMT (envelope-from koobs) Date: Sun, 1 Dec 2013 12:28:42 GMT Message-Id: <201312011228.rB1CSgXa013417@freefall.freebsd.org> To: naylor.b.david@gmail.com, koobs@FreeBSD.org, freebsd-python@FreeBSD.org From: koobs@FreeBSD.org Subject: Re: ports/156759: [patch] lang/python: kevent does not accept KQ_NOTE_EXIT (and other (f)flags) X-BeenThere: freebsd-python@freebsd.org X-Mailman-Version: 2.1.16 Precedence: list List-Id: FreeBSD-specific Python issues List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 01 Dec 2013 12:28:42 -0000 Synopsis: [patch] lang/python: kevent does not accept KQ_NOTE_EXIT (and other (f)flags) State-Changed-From-To: open->closed State-Changed-By: koobs State-Changed-When: Sun Dec 1 12:28:41 UTC 2013 State-Changed-Why: All supported Python ports now carry this fix from upstream, or maintain a backported patch. Thanks David! http://www.freebsd.org/cgi/query-pr.cgi?pr=156759 From owner-freebsd-python@FreeBSD.ORG Mon Dec 2 11:06:52 2013 Return-Path: Delivered-To: freebsd-python@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id BDF55B85 for ; Mon, 2 Dec 2013 11:06:52 +0000 (UTC) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:1900:2254:206c::16:87]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id A2E4E195C for ; Mon, 2 Dec 2013 11:06:52 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.7/8.14.7) with ESMTP id rB2B6qd8007843 for ; Mon, 2 Dec 2013 11:06:52 GMT (envelope-from owner-bugmaster@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.7/8.14.7/Submit) id rB2B6qgE007841 for freebsd-python@FreeBSD.org; Mon, 2 Dec 2013 11:06:52 GMT (envelope-from owner-bugmaster@FreeBSD.org) Date: Mon, 2 Dec 2013 11:06:52 GMT Message-Id: <201312021106.rB2B6qgE007841@freefall.freebsd.org> X-Authentication-Warning: freefall.freebsd.org: gnats set sender to owner-bugmaster@FreeBSD.org using -f From: FreeBSD bugmaster To: freebsd-python@FreeBSD.org Subject: Current problem reports assigned to freebsd-python@FreeBSD.org X-BeenThere: freebsd-python@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-Id: FreeBSD-specific Python issues List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 02 Dec 2013 11:06:52 -0000 Note: to view an individual PR, use: http://www.freebsd.org/cgi/query-pr.cgi?pr=(number). The following is a listing of current problems submitted by FreeBSD users. These represent problem reports covering all versions including experimental development code and obsolete releases. S Tracker Resp. Description -------------------------------------------------------------------------------- o ports/184357 python databases/py-fdb: update to 1.4 o ports/184339 python lang/python27 does not allow unsetting NLS (or other o f ports/184175 python sysutils/py-salt does not install f ports/183477 python [patch] databases/py-mysql2pgsql dependency fix a ports/182951 python databases/py-sqlite3: compilation error with Clang o ports/182433 python [games/py-fife] try fix in 10-CURRENT f ports/181593 python math/py-numpy maintainer gone o ports/178301 python [patch] lang/python2[67]: SEM option is inconsistent f ports/178242 python bsd.python.mk injection of @exec easy_install to PLIST o ports/178094 python math/py-numpy dependency on atlas assumes existing ins o ports/176714 python games/py-fife: fixed make package o ports/170788 python lang/python27: PyQT applications crash Python 2.7 (cor f ports/170566 python update graphics/py-opengl depends on old version of gc o ports/168640 python [PATCH]: prevent checksum mismatches for compiled pyth o ports/167368 python [bsd.python.mk] [patch] Python version propagation bre f ports/154209 python [PATCH] lang/python: Install symlink for ptags f ports/149167 python lang/python26 fails to build _ctypes on Sheevaplug (AR 17 problems total. From owner-freebsd-python@FreeBSD.ORG Mon Dec 2 21:40:08 2013 Return-Path: Delivered-To: freebsd-python@smarthost.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 717C7A76; Mon, 2 Dec 2013 21:40:08 +0000 (UTC) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:1900:2254:206c::16:87]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 463831A77; Mon, 2 Dec 2013 21:40:08 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.7/8.14.7) with ESMTP id rB2Le89j051384; Mon, 2 Dec 2013 21:40:08 GMT (envelope-from edwin@freefall.freebsd.org) Received: (from edwin@localhost) by freefall.freebsd.org (8.14.7/8.14.7/Submit) id rB2Le8lW051383; Mon, 2 Dec 2013 21:40:08 GMT (envelope-from edwin) Date: Mon, 2 Dec 2013 21:40:08 GMT Message-Id: <201312022140.rB2Le8lW051383@freefall.freebsd.org> To: edwin@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, freebsd-python@FreeBSD.org From: edwin@FreeBSD.org Subject: Re: ports/184456: devel/mercurial stage warnings X-BeenThere: freebsd-python@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-Id: FreeBSD-specific Python issues List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 02 Dec 2013 21:40:08 -0000 Synopsis: devel/mercurial stage warnings Responsible-Changed-From-To: freebsd-ports-bugs->freebsd-python Responsible-Changed-By: edwin Responsible-Changed-When: Mon Dec 2 21:40:07 UTC 2013 Responsible-Changed-Why: Over to maintainer (via the GNATS Auto Assign Tool) http://www.freebsd.org/cgi/query-pr.cgi?pr=184456 From owner-freebsd-python@FreeBSD.ORG Tue Dec 3 07:50:01 2013 Return-Path: Delivered-To: freebsd-python@smarthost.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id E2D0E886 for ; Tue, 3 Dec 2013 07:50:01 +0000 (UTC) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:1900:2254:206c::16:87]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id CFB411D54 for ; Tue, 3 Dec 2013 07:50:01 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.7/8.14.7) with ESMTP id rB37o1pL031411 for ; Tue, 3 Dec 2013 07:50:01 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.7/8.14.7/Submit) id rB37o1de031410; Tue, 3 Dec 2013 07:50:01 GMT (envelope-from gnats) Date: Tue, 3 Dec 2013 07:50:01 GMT Message-Id: <201312030750.rB37o1de031410@freefall.freebsd.org> To: freebsd-python@FreeBSD.org Cc: From: Volodymyr Kostyrko Subject: Re: ports/183477: [patch] databases/py-mysql2pgsql dependency fix X-BeenThere: freebsd-python@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list Reply-To: Volodymyr Kostyrko List-Id: FreeBSD-specific Python issues List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 03 Dec 2013 07:50:01 -0000 The following reply was made to PR ports/183477; it has been noted by GNATS. From: Volodymyr Kostyrko To: koobs@FreeBSD.org, bug-followup@FreeBSD.org, kozlov.sergey.404@gmail.com Cc: Subject: Re: ports/183477: [patch] databases/py-mysql2pgsql dependency fix Date: Tue, 03 Dec 2013 09:43:42 +0200 30.11.2013 07:42, Kubilay Kocak wrote: > Volodymyr is correct, argparse is part of the standard library in 2.7 > and 3.2+, and py-mysql2pgsql is *incorrectly* including argparse > unconditionally in install_requires. > > I have just committed a fix to the devel/py-tox port [1], to correctly > model the conditional inclusion of argparse based on Python version, > that the tox authors correctly specify in their setup.py [2] after a > similar bug report [3] > > [1] http://svnweb.freebsd.org/ports?view=revision&revision=335263 > [2] > https://bitbucket.org/hpk42/tox/diff/setup.py?diff2=f20abdbeb930&at=default > [3] https://bitbucket.org/hpk42/tox/issue/5 > > I have attached a patch to pymysql2pgsql to do the same, I suggest > someone open an issue or submit a Pull Request, so it is fixed upstream: > > https://github.com/philipsoutham/py-mysql2pgsql/ Fixed there, next version will contain the fix. I hope I'll branch it Real Soon Now (TM), when triggers and longblobs will pass tests. -- Sphinx of black quartz judge my vow. From owner-freebsd-python@FreeBSD.ORG Tue Dec 3 08:00:29 2013 Return-Path: Delivered-To: freebsd-python@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id A4331B1E for ; Tue, 3 Dec 2013 08:00:29 +0000 (UTC) Received: from mail-pd0-x234.google.com (mail-pd0-x234.google.com [IPv6:2607:f8b0:400e:c02::234]) (using TLSv1 with cipher ECDHE-RSA-RC4-SHA (128/128 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 77E241DD4 for ; Tue, 3 Dec 2013 08:00:29 +0000 (UTC) Received: by mail-pd0-f180.google.com with SMTP id q10so19695188pdj.11 for ; Tue, 03 Dec 2013 00:00:28 -0800 (PST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20120113; h=message-id:date:from:reply-to:user-agent:mime-version:to:subject :references:in-reply-to:content-type:content-transfer-encoding; bh=xvfQ8GTuctZXb+G78dR+Kx7aKsvJGxsDA7gFUDk64Jw=; b=v58b3jgulGweVf7himiIKS2lz6JQVVvjgYR7EfMTpZnmGdVYu0evWYM+EIQ6/gQ+b6 pXQnPuUWuSsZTYEy5OS0TJbRrTSJklcX8knl0CgR1AApMT6HQJ5WDDSD3AQIxOUo4Erm BcTV3HqJI2qRVY5TlzJv2C2xLMAy9m2Wcd8DjxVM43RiIjcqYznyszgqW6oyHVCTHTZj ML9enfdn+0MnaNr+6kqonWnYAUcj/56uyk5Zs+E1m8XjGuLY9+SwM3pbCTHqJLIL1MD2 VClhu/LW2/P6tEKqvhSVPT/4cDoz/nf6DAo/K5dN/NcaUBUT39w739IoY0DkoO0EqgrS 2CQA== X-Received: by 10.68.244.2 with SMTP id xc2mr36891158pbc.58.1386057628289; Tue, 03 Dec 2013 00:00:28 -0800 (PST) Received: from [192.168.1.7] (ppp59-167-128-11.static.internode.on.net. [59.167.128.11]) by mx.google.com with ESMTPSA id vi2sm2215191pbc.21.2013.12.03.00.00.26 for (version=TLSv1.1 cipher=ECDHE-RSA-RC4-SHA bits=128/128); Tue, 03 Dec 2013 00:00:27 -0800 (PST) Message-ID: <529D8F96.4010501@FreeBSD.org> Date: Tue, 03 Dec 2013 19:00:22 +1100 From: Kubilay Kocak User-Agent: Mozilla/5.0 (Windows NT 6.1; WOW64; rv:26.0) Gecko/20100101 Thunderbird/26.0 MIME-Version: 1.0 To: Volodymyr Kostyrko , freebsd-python@FreeBSD.org Subject: Re: ports/183477: [patch] databases/py-mysql2pgsql dependency fix References: <201312030750.rB37o1de031410@freefall.freebsd.org> In-Reply-To: <201312030750.rB37o1de031410@freefall.freebsd.org> X-Enigmail-Version: 1.6 Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: 7bit X-BeenThere: freebsd-python@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list Reply-To: koobs@FreeBSD.org List-Id: FreeBSD-specific Python issues List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 03 Dec 2013 08:00:29 -0000 Thanks for following-up Volodymyr, what would you like to do with this PR? Can we close assuming you'll want to submit a new PR for the next version? From owner-freebsd-python@FreeBSD.ORG Tue Dec 3 11:33:46 2013 Return-Path: Delivered-To: python@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id C480E494 for ; Tue, 3 Dec 2013 11:33:46 +0000 (UTC) Received: from portscout.freebsd.org (unknown [IPv6:2001:1900:2254:206a::50:123]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id AFFAA1B36 for ; Tue, 3 Dec 2013 11:33:46 +0000 (UTC) Received: from portscout.freebsd.org ([127.0.1.123]) by portscout.freebsd.org (8.14.7/8.14.7) with ESMTP id rB3BXko1032664 for ; Tue, 3 Dec 2013 11:33:46 GMT (envelope-from portscout@FreeBSD.org) Received: (from portscout@localhost) by portscout.freebsd.org (8.14.7/8.14.7/Submit) id rB3BXkpW032663; Tue, 3 Dec 2013 11:33:46 GMT (envelope-from portscout@FreeBSD.org) Message-Id: <201312031133.rB3BXkpW032663@portscout.freebsd.org> X-Authentication-Warning: portscout.freebsd.org: portscout set sender to portscout@FreeBSD.org using -f Content-Disposition: inline Content-Transfer-Encoding: 8bit Content-Type: text/plain MIME-Version: 1.0 Date: Tue, 3 Dec 2013 11:33:46 +0000 From: portscout@FreeBSD.org To: python@freebsd.org Subject: FreeBSD ports you maintain which are out of date X-Mailer: portscout/0.8.1 X-BeenThere: freebsd-python@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-Id: FreeBSD-specific Python issues List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 03 Dec 2013 11:33:46 -0000 Dear port maintainer, The portscout new distfile checker has detected that one or more of your ports appears to be out of date. Please take the opportunity to check each of the ports listed below, and if possible and appropriate, submit/commit an update. If any ports have already been updated, you can safely ignore the entry. You will not be e-mailed again for any of the port/version combinations below. Full details can be found at the following URL: http://portscout.freebsd.org/python@freebsd.org.html Port | Current version | New version ------------------------------------------------+-----------------+------------ devel/py-setuptools | 1.1.7 | 1.4.2 ------------------------------------------------+-----------------+------------ If any of the above results are invalid, please check the following page for details on how to improve portscout's detection and selection of distfiles on a per-port basis: http://portscout.freebsd.org/info/portscout-portconfig.txt If wish to stop receiving portscout reminders, please contact portscout@FreeBSD.org Thanks. From owner-freebsd-python@FreeBSD.ORG Tue Dec 3 11:47:07 2013 Return-Path: Delivered-To: freebsd-python@smarthost.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 206638A4; Tue, 3 Dec 2013 11:47:07 +0000 (UTC) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:1900:2254:206c::16:87]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id E838F1D1F; Tue, 3 Dec 2013 11:47:06 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.7/8.14.7) with ESMTP id rB3Bl6vI083522; Tue, 3 Dec 2013 11:47:06 GMT (envelope-from sunpoet@freefall.freebsd.org) Received: (from sunpoet@localhost) by freefall.freebsd.org (8.14.7/8.14.7/Submit) id rB3Bl6CI083521; Tue, 3 Dec 2013 11:47:06 GMT (envelope-from sunpoet) Date: Tue, 3 Dec 2013 11:47:06 GMT Message-Id: <201312031147.rB3Bl6CI083521@freefall.freebsd.org> To: sunpoet@FreeBSD.org, freebsd-python@FreeBSD.org, sunpoet@FreeBSD.org From: sunpoet@FreeBSD.org Subject: Re: ports/184456: devel/mercurial stage warnings X-BeenThere: freebsd-python@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-Id: FreeBSD-specific Python issues List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 03 Dec 2013 11:47:07 -0000 Synopsis: devel/mercurial stage warnings Responsible-Changed-From-To: freebsd-python->sunpoet Responsible-Changed-By: sunpoet Responsible-Changed-When: Tue Dec 3 11:47:06 UTC 2013 Responsible-Changed-Why: I'll take it. http://www.freebsd.org/cgi/query-pr.cgi?pr=184456 From owner-freebsd-python@FreeBSD.ORG Tue Dec 3 15:23:22 2013 Return-Path: Delivered-To: freebsd-python@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 8464AC0D; Tue, 3 Dec 2013 15:23:22 +0000 (UTC) Received: from mail-la0-x22d.google.com (mail-la0-x22d.google.com [IPv6:2a00:1450:4010:c03::22d]) (using TLSv1 with cipher ECDHE-RSA-RC4-SHA (128/128 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id D16841B10; Tue, 3 Dec 2013 15:23:21 +0000 (UTC) Received: by mail-la0-f45.google.com with SMTP id eh20so9185263lab.18 for ; Tue, 03 Dec 2013 07:23:19 -0800 (PST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20120113; h=message-id:date:from:user-agent:mime-version:to:subject:references :in-reply-to:content-type:content-transfer-encoding; bh=YaFqqd7J2CBNnDcfOnGCO02ldwxMzQ3I8CWGFwgPYWs=; b=X/+a7+p7kIj4DWUfVR0NBYE8hAHm/ewzY2CBEn5SqZHcstq3SuNx3bcm55GfiiRALv 0f7gavWWfOCIyIvAwj1IyEuCtW/LxiXJ6roXDvdqkvZvLGPjb3SDGWmQWr2peuVtL6Vu 2fsybBBwIHYEKlseDS8W1y7wZNAfV1uP64TP1OV4XG+7y7K9V+FnempynGkUvGml4Yb9 JLbnGE8bgVOD+WUB8iZ/Ux+KR9rFmzBDgZdEgNQCoiDgq71pFf7UtF92YYuqWXVnRECc FP6PsXHuow+Y3gwsw+a2TpyVD1h9mHlUQpAOkAofksIqO44plghyQHvVdfAQFxdBE98A HTTQ== X-Received: by 10.152.23.3 with SMTP id i3mr360344laf.78.1386084199743; Tue, 03 Dec 2013 07:23:19 -0800 (PST) Received: from [192.168.1.129] (mau.donbass.com. [92.242.127.250]) by mx.google.com with ESMTPSA id c8sm33939844lag.3.2013.12.03.07.23.17 for (version=TLSv1 cipher=ECDHE-RSA-RC4-SHA bits=128/128); Tue, 03 Dec 2013 07:23:19 -0800 (PST) Message-ID: <529DF763.3060708@gmail.com> Date: Tue, 03 Dec 2013 17:23:15 +0200 From: Volodymyr Kostyrko User-Agent: Mozilla/5.0 (X11; FreeBSD amd64; rv:24.0) Gecko/20100101 Thunderbird/24.1.0 MIME-Version: 1.0 To: koobs@FreeBSD.org, freebsd-python@FreeBSD.org Subject: Re: ports/183477: [patch] databases/py-mysql2pgsql dependency fix References: <201312030750.rB37o1de031410@freefall.freebsd.org> <529D8F96.4010501@FreeBSD.org> In-Reply-To: <529D8F96.4010501@FreeBSD.org> Content-Type: text/plain; charset=UTF-8; format=flowed Content-Transfer-Encoding: 7bit X-BeenThere: freebsd-python@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-Id: FreeBSD-specific Python issues List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 03 Dec 2013 15:23:22 -0000 03.12.2013 10:00, Kubilay Kocak wrote: > Thanks for following-up Volodymyr, what would you like to do with this PR? > > Can we close assuming you'll want to submit a new PR for the next version? Well, I'm not ready to branch the new version yet... So maybe it would be better for now to include this fix as a patch with a port? -- Sphinx of black quartz, judge my vow. From owner-freebsd-python@FreeBSD.ORG Wed Dec 4 01:34:57 2013 Return-Path: Delivered-To: python@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 676F9EBB for ; Wed, 4 Dec 2013 01:34:57 +0000 (UTC) Received: from ainaz.pair.com (ainaz.pair.com [209.68.2.66]) by mx1.freebsd.org (Postfix) with ESMTP id 25AC51386 for ; Wed, 4 Dec 2013 01:34:57 +0000 (UTC) Received: from [192.168.0.132] (vie-91-186-144-213.dsl.sil.at [91.186.144.213]) by ainaz.pair.com (Postfix) with ESMTPSA id A2F453F460 for ; Tue, 3 Dec 2013 20:34:52 -0500 (EST) Date: Wed, 4 Dec 2013 02:34:50 +0100 (CET) From: Gerald Pfeifer To: python@FreeBSD.org Subject: python packages struggling with GCC 4.7 In-Reply-To: Message-ID: References: <201311060508.rA658XmR012155@svn.freebsd.org> <20131106063906.GA1385@medusa.sysfault.org> <20131106070255.GE60770@FreeBSD.org> MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII X-BeenThere: freebsd-python@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-Id: FreeBSD-specific Python issues List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 04 Dec 2013 01:34:57 -0000 Hi there, in a different context William Grzybowski wrote "If you would like just assign the port to python@, we would be happy to take more ports". This is not a new port, but I hope you still can help. :-) I'd like to move USE_GCC=yes to imply GCC 4.7 instead of GCC 4.6. Generally this works just fine, except for two dozen broken ports (C++ and C mostly) and a number of Python ports where there seems to be _one_ underlying cause for all breakage. Below you'll find a link into the ports cluster as well as an overview of broken packages. If you could have a look at those having "py" in their name (most others are being looked at already) that'd be great. Help really appreciated! Gerald @FreeBSD.org http://package20.nyi.freebsd.org/bulk/91amd64-default-gccupdate/2013-10-22_01h02m27s/ > + {"origin"=>"biology/plink", "pkgname"=>"plink-1.07", "phase"=>"build", "errortype"=>"cluster"} > + {"origin"=>"biology/py-biopython", "pkgname"=>"py27-biopython-1.60", "phase"=>"build", "errortype"=>"cluster"} > + {"origin"=>"biology/pycogent", "pkgname"=>"pycogent-1.5.3", "phase"=>"configure", "errortype"=>"cluster"} > + {"origin"=>"cad/meshlab", "pkgname"=>"meshlab-1.3.2", "phase"=>"build", "errortype"=>"cluster"} > + {"origin"=>"devel/freeocl", "pkgname"=>"freeocl-0.3.6", "phase"=>"build", "errortype"=>"cluster"} > + {"origin"=>"devel/kdevplatform", "pkgname"=>"kdevplatform-1.5.1", "phase"=>"build", "errortype"=>"process_failed"} > + {"origin"=>"devel/love", "pkgname"=>"love-0.8.0_2", "phase"=>"build", "errortype"=>"automake"} > + {"origin"=>"devel/love07", "pkgname"=>"love07-0.7.2_3", "phase"=>"build", "errortype"=>"linker_error"} > + {"origin"=>"devel/py-ocempgui", "pkgname"=>"py27-ocempgui-0.2.9_5", "phase"=>"configure", "errortype"=>"cluster"} > + {"origin"=>"devel/raknet", "pkgname"=>"raknet-3.9.2,1", "phase"=>"build", "errortype"=>"gcc4_error"} > + {"origin"=>"games/allacrost", "pkgname"=>"allacrost-1.0.2_5", "phase"=>"build", "errortype"=>"gcc4_error"} > + {"origin"=>"games/battletanks", "pkgname"=>"btanks-0.9.8083_5", "phase"=>"build", "errortype"=>"cluster"} > + {"origin"=>"games/lugaru", "pkgname"=>"lugaru-269", "phase"=>"build", "errortype"=>"gcc4_error"} > + {"origin"=>"games/pydance", "pkgname"=>"pydance-1.1.0_2", "phase"=>"configure", "errortype"=>"cluster"} > + {"origin"=>"graphics/mahotas", "pkgname"=>"py27-mahotas-0.9.6", "phase"=>"configure", "errortype"=>"cluster"} > + {"origin"=>"graphics/mypaint", "pkgname"=>"mypaint-1.1.0", "phase"=>"build", "errortype"=>"cluster"} > + {"origin"=>"graphics/pvmpov", "pkgname"=>"pvmpov-3.1g.2_4", "phase"=>"install", "errortype"=>"linker_error"} > + {"origin"=>"graphics/py-opencv", "pkgname"=>"py27-opencv-2.3.1_7", "phase"=>"install", "errortype"=>"makefile"} > + {"origin"=>"graphics/pygts", "pkgname"=>"pygts-0.3.1", "phase"=>"configure", "errortype"=>"cluster"} > + {"origin"=>"java/openjdk6", "pkgname"=>"openjdk6-b28_2", "phase"=>"build", "errortype"=>"coredump"} > + {"origin"=>"lang/ratfor", "pkgname"=>"ratfor-1985.06_2", "phase"=>"build", "errortype"=>"compiler_error"} > + {"origin"=>"math/abacus", "pkgname"=>"abacus-3.2.b1", "phase"=>"build", "errortype"=>"gcc4_error"} > + {"origin"=>"math/biggles", "pkgname"=>"biggles-1.6.6_2", "phase"=>"build", "errortype"=>"missing_header"} > + {"origin"=>"math/gretl", "pkgname"=>"gretl-1.9.12", "phase"=>"build", "errortype"=>"linker_error"} > + {"origin"=>"math/octave-forge-fl-core", "pkgname"=>"octave-forge-fl-core-1.0.0_4", "phase"=>"build", "errortype"=>"gcc4_error"} > + {"origin"=>"math/octave-forge-parallel", "pkgname"=>"octave-forge-parallel-2.0.5_4", "phase"=>"build", "errortype"=>"gcc4_error"} > + {"origin"=>"math/petsc", "pkgname"=>"petsc-2.3.3.p0_7,1", "phase"=>"configure", "errortype"=>"configure_error"} > + {"origin"=>"math/py-gnuplot", "pkgname"=>"py27-gnuplot-1.8_4", "phase"=>"configure", "errortype"=>"cluster"} > + {"origin"=>"math/py-gsl", "pkgname"=>"py27-gsl-0.9.5_2", "phase"=>"configure", "errortype"=>"cluster"} > + {"origin"=>"math/py-matplotlib", "pkgname"=>"py27-matplotlib-1.2.0_1", "phase"=>"configure", "errortype"=>"cluster"} > + {"origin"=>"math/py-numexpr", "pkgname"=>"py27-numexpr-2.2.2", "phase"=>"configure", "errortype"=>"cluster"} > + {"origin"=>"math/py-pandas", "pkgname"=>"py27-pandas-0.12.0", "phase"=>"build", "errortype"=>"cluster"} > + {"origin"=>"math/py-pymc", "pkgname"=>"py27-pymc-2.0,1", "phase"=>"configure", "errortype"=>"cluster"} > + {"origin"=>"math/py-symeig", "pkgname"=>"py27-symeig-1.4_2", "phase"=>"configure", "errortype"=>"cluster"} > + {"origin"=>"math/superlu_mt", "pkgname"=>"superlu_mt-2.0.20080115_3", "phase"=>"build", "errortype"=>"cluster"} > + {"origin"=>"multimedia/freevo", "pkgname"=>"freevo-1.9.0_7", "phase"=>"install", "errortype"=>"cluster"} > + {"origin"=>"net/pvm++", "pkgname"=>"pvm++-0.6.0_4", "phase"=>"build", "errortype"=>"linker_error"} > + {"origin"=>"net/xpvm", "pkgname"=>"xpvm-1.2.5_1", "phase"=>"build", "errortype"=>"linker_error"} > + {"origin"=>"science/ghemical", "pkgname"=>"ghemical-3.0.0", "phase"=>"build", "errortype"=>"linker_error"} > + {"origin"=>"science/meep", "pkgname"=>"meep-1.2", "phase"=>"build", "errortype"=>"linker_error"} > + {"origin"=>"science/py-h5py", "pkgname"=>"py27-h5py-1.2.1_2", "phase"=>"configure", "errortype"=>"cluster"} > + {"origin"=>"science/py-mlpy", "pkgname"=>"py27-mlpy-2.2.2_2", "phase"=>"configure", "errortype"=>"cluster"} > + {"origin"=>"science/py-netCDF4", "pkgname"=>"py27-netCDF4-1.0.5", "phase"=>"configure", "errortype"=>"cluster"} > + {"origin"=>"science/py-scimath", "pkgname"=>"py27-scimath-4.1.2", "phase"=>"configure", "errortype"=>"cluster"} > + {"origin"=>"science/py-scipy", "pkgname"=>"py27-scipy-0.12.1", "phase"=>"configure", "errortype"=>"cluster"} > + {"origin"=>"science/pycdf", "pkgname"=>"pycdf-0.6.3", "phase"=>"configure", "errortype"=>"cluster"} > + {"origin"=>"science/veusz", "pkgname"=>"veusz-1.17.1", "phase"=>"configure", "errortype"=>"cluster"} > + {"origin"=>"textproc/ctpp2", "pkgname"=>"ctpp2-2.8.3", "phase"=>"build", "errortype"=>"gcc4_error"} > + {"origin"=>"x11-toolkits/gigi", "pkgname"=>"gigi-0.8.0.1074_1,1", "phase"=>"build", "errortype"=>"cluster"} > + {"origin"=>"x11/kactivitymanagerd", "pkgname"=>"kactivitymanagerd-4.10.5_2", "phase"=>"build", "errortype"=>"process_failed"} From owner-freebsd-python@FreeBSD.ORG Wed Dec 4 06:18:15 2013 Return-Path: Delivered-To: python@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 9F680B8A for ; Wed, 4 Dec 2013 06:18:15 +0000 (UTC) Received: from mail-pd0-x234.google.com (mail-pd0-x234.google.com [IPv6:2607:f8b0:400e:c02::234]) (using TLSv1 with cipher ECDHE-RSA-RC4-SHA (128/128 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 73B1C14FB for ; Wed, 4 Dec 2013 06:18:15 +0000 (UTC) Received: by mail-pd0-f180.google.com with SMTP id q10so21571723pdj.25 for ; Tue, 03 Dec 2013 22:18:15 -0800 (PST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20120113; h=mime-version:in-reply-to:references:date:message-id:subject:from:to :content-type; bh=djx1Z+CK18snXBI0iFTzoRCChnAJGbwuUdtSUNFBCY4=; b=vZuHg0O8wsOelYpGT2YJsQP27dLfEEql/NjMrP8RDhFqsqj7Mk8QU5uYPkVmiQePyF aRqwgOjwSjNQzI9JFSBWlztoLjtlgFf/9tCsdQ4hylcWO0m1YhfRSefLh94gMKhI0NCv e0Y6ng30hbisvyzBj1mGWsNa+3tFa16QvNu0+0a8tSUZ8oXzOAzEMW5bTVMhWRW+3umg or9CfqiOPqk8/DtpNCB9oek6Z+WAEADrVaZOC1ft4+et2iE6ymWXlCZDdfSo7xfG3ofI ms+rHEU4wfFZDUU6x1pQM89Oip8CHA0Y6tywR3oMvVSnnEbpZkww7IRJHx8oO6vK3ZOa 6YSg== MIME-Version: 1.0 X-Received: by 10.68.196.69 with SMTP id ik5mr43523904pbc.132.1386137894995; Tue, 03 Dec 2013 22:18:14 -0800 (PST) Received: by 10.70.92.137 with HTTP; Tue, 3 Dec 2013 22:18:14 -0800 (PST) Received: by 10.70.92.137 with HTTP; Tue, 3 Dec 2013 22:18:14 -0800 (PST) In-Reply-To: <201311301501.rAUF1pKr051746@beefy1.isc.freebsd.org> References: <201311301501.rAUF1pKr051746@beefy1.isc.freebsd.org> Date: Wed, 4 Dec 2013 10:18:14 +0400 Message-ID: Subject: Fwd: [REL - head-i386-default][games/py-fife] Failed for fife-0.3.4 in build From: Green Dog To: python@freebsd.org Content-Type: text/plain; charset=KOI8-R Content-Transfer-Encoding: quoted-printable X-Content-Filtered-By: Mailman/MimeDel 2.1.17 X-BeenThere: freebsd-python@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-Id: FreeBSD-specific Python issues List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 04 Dec 2013 06:18:15 -0000 ---------- =F0=C5=D2=C5=C1=C4=D2=C5=D3=CF=D7=C1=CE=CE=CF=C5 =D3=CF=CF=C2=DD= =C5=CE=C9=C5 ---------- =EF=D4: =E4=C1=D4=C1: 30.11.2013 19:01 =F4=C5=CD=C1: [REL - head-i386-default][games/py-fife] Failed for fife-0.3.= 4 in build =EB=CF=CD=D5: =EB=CF=D0=C9=D1: 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: fiziologus@gmail.com Last committer: bapt@FreeBSD.org Ident: $FreeBSD: head/games/py-fife/Makefile 327730 2013-09-20 17:36:33Z bapt $ Log URL: http://beefy1.isc.freebsd.org/bulk/head-i386-default/2013-11-30_07h27m42s/l= ogs/fife-0.3.4.log Build URL: http://beefy1.isc.freebsd.org/bulk/head-i386-default/2013-11-30_07h27m42s Log: =3D=3D=3D=3D>> Building games/py-fife build started at Sat Nov 30 14:56:31 UTC 2013 port directory: /usr/ports/games/py-fife building for: FreeBSD head-i386-default-job-05 11.0-CURRENT FreeBSD 11.0-CURRENT r256430 i386 maintained by: fiziologus@gmail.com Makefile ident: $FreeBSD: head/games/py-fife/Makefile 327730 2013-09-20 17:36:33Z bapt $ Poudriere version: 3.1-pre ---Begin Environment--- UNAME_m=3Di386 UNAME_p=3Di386 OSVERSION=3D1100000 UNAME_v=3DFreeBSD 11.0-CURRENT r256430 UNAME_r=3D11.0-CURRENT BLOCKSIZE=3DK MAIL=3D/var/mail/root PATH=3D/sbin:/bin:/usr/sbin:/usr/bin:/usr/games:/usr/local/sbin:/usr/local/= bin:/root/bin STATUS=3D1 MASTERMNT=3D/usr/local/poudriere/data/build/head-i386-default/ref PKG_EXT=3Dtxz tpid=3D67405 POUDRIERE_BUILD_TYPE=3Dbulk PKGNG=3D1 PKGNAME=3Dfife-0.3.4 PKG_DELETE=3D/usr/local/sbin/pkg-static delete -y -f PKG_ADD=3D/usr/local/sbin/pkg-static add PWD=3D/root MASTERNAME=3Dhead-i386-default USER=3Droot HOME=3D/root POUDRIERE_VERSION=3D3.1-pre LOCALBASE=3D/usr/local PACKAGE_BUILDING=3Dyes PKG_VERSION=3D/poudriere/pkg-static version PKG_BIN=3D/usr/local/sbin/pkg-static ---End Environment--- ---Begin OPTIONS List--- ---End OPTIONS List--- --CONFIGURE_ARGS-- --End CONFIGURE_ARGS-- --CONFIGURE_ENV-- TMPDIR=3D"/tmp" PYTHON=3D"/usr/local/bin/python2.7" SDL_CONFIG=3D/usr/local/bin/sdl-config PKG_CONFIG=3Dpkgconf SHELL=3D/bin/sh CONFIG_SHELL=3D/bin/sh --End CONFIGURE_ENV-- --MAKE_ENV-- TMPDIR=3D"/tmp" SDL_CONFIG=3D/usr/local/bin/sdl-config SHELL=3D/bin/sh NO_LINT=3DYES PREFIX=3D/usr/local LOCALBASE=3D/usr/local LIBDIR=3D"/usr/l= ib" CC=3D"cc" CFLAGS=3D"-O2 -pipe -fno-strict-aliasing" CPP=3D"cpp" CPPFLAGS= =3D"" LDFLAGS=3D"" CXX=3D"c++" CXXFLAGS=3D"-O2 -pipe -fno-strict-aliasing" MANPREFIX=3D"/usr/local" BSD_INSTALL_PROGRAM=3D"install -s -o root -g whe= el -m 555" BSD_INSTALL_LIB=3D"install -s -o root -g wheel -m 444" BSD_INSTALL_SCRIPT=3D"install -o root -g wheel -m 555" BSD_INSTALL_DATA=3D"install -o root -g wheel -m 444" BSD_INSTALL_MAN=3D"install -o root -g wheel -m 444" --End MAKE_ENV-- --SUB_LIST-- PREFIX=3D/usr/local LOCALBASE=3D/usr/local DATADIR=3D/usr/local/share/fife DOCSDIR=3D/usr/local/share/doc/fife EXAMPLESDIR=3D/usr/local/share/examples/fife WWWDIR=3D/usr/local/www/fife ETCDIR=3D/usr/local/etc/fife --End SUB_LIST-- ---Begin make.conf--- ARCH=3Di386 MACHINE=3Di386 MACHINE_ARCH=3Di386 USE_PACKAGE_DEPENDS=3Dyes BATCH=3Dyes WRKDIRPREFIX=3D/wrkdirs PORTSDIR=3D/usr/ports PACKAGES=3D/packages DISTDIR=3D/distfiles #### /usr/local/etc/poudriere.d/make.conf #### WITH_PKGNG=3Dyes NO_RESTRICTED=3Dyes DISABLE_MAKE_JOBS=3Dpoudriere ---End make.conf--- =3D=3D=3D> Cleaning for fife-0.3.4 =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D =3D=3D=3D> fife-0.3.4 depends on file: /usr/local/sbin/pkg - not found =3D=3D=3D> Verifying install for /usr/local/sbin/pkg in /usr/ports/ports-mgmt/pkg =3D=3D=3D> Installing existing package /packages/All/pkg-1.2.1.txz Installing pkg-1.2.1... done If you are upgrading from the old package format, first run: # pkg2ng =3D=3D=3D> Returning to build of fife-0.3.4 =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D =3D=3D=3D> Fetching all distfiles required by fife-0.3.4 for building =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D =3D=3D=3D> Fetching all distfiles required by fife-0.3.4 for building =3D> SHA256 Checksum OK for fife_0.3.4.tar.gz. =3D> SHA256 Checksum OK for fife_0.3.4_demos.tar.gz. =3D> SHA256 Checksum OK for fife_0.3.4_tools.tar.gz. =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D =3D=3D=3D> Fetching all distfiles required by fife-0.3.4 for building =3D=3D=3D> Extracting for fife-0.3.4 =3D> SHA256 Checksum OK for fife_0.3.4.tar.gz. =3D> SHA256 Checksum OK for fife_0.3.4_demos.tar.gz. =3D> SHA256 Checksum OK for fife_0.3.4_tools.tar.gz. =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D =3D=3D=3D> Patching for fife-0.3.4 /usr/bin/sed -i.bak -e 's/X11R6/local/g; s/libpng/ligpng15/g' /wrkdirs/usr/ports/games/py-fife/work/fife_0.3.4/build/openbsd4-config.py && /bin/mv /wrkdirs/usr/ports/games/py-fife/work/fife_0.3.4/build/openbsd4-config.py /wrkdirs/usr/ports/games/py-fife/work/fife_0.3.4/build/freebsd11-config.py =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D =3D=3D=3D> fife-0.3.4 depends on file: /usr/local/bin/swig - not found =3D=3D=3D> Verifying install for /usr/local/bin/swig in /usr/ports/devel= /swig13 =3D=3D=3D> Installing existing package /packages/All/swig13-1.3.40.txz Installing swig13-1.3.40... done =3D=3D=3D> Returning to build of fife-0.3.4 =3D=3D=3D> fife-0.3.4 depends on file: /usr/local/bin/python2.7 - not fou= nd =3D=3D=3D> Verifying install for /usr/local/bin/python2.7 in /usr/ports/lang/python27 =3D=3D=3D> Installing existing package /packages/All/python27-2.7.6.txz Installing python27-2.7.6...Installing gettext-0.18.3.1... done done =3D=3D=3D=3D Note that some of the standard modules are provided as separate ports since they require extra dependencies: bsddb databases/py-bsddb gdbm databases/py-gdbm sqlite3 databases/py-sqlite3 tkinter x11-toolkits/py-tkinter Install them as needed. =3D=3D=3D=3D =3D=3D=3D> Returning to build of fife-0.3.4 =3D=3D=3D> fife-0.3.4 depends on executable: python - not found =3D=3D=3D> Verifying install for python in /usr/ports/lang/python =3D=3D=3D> Installing existing package /packages/All/python-2.7_1,2.txz Installing python-2.7_1,2...Installing python2-2_1... done done =3D=3D=3D> Returning to build of fife-0.3.4 =3D=3D=3D> fife-0.3.4 depends on file: /usr/local/bin/sdl-config - not fo= und =3D=3D=3D> Verifying install for /usr/local/bin/sdl-config in /usr/ports/devel/sdl12 =3D=3D=3D> Installing existing package /packages/All/sdl-1.2.15_2,2.txz Installing sdl-1.2.15_2,2...Installing xproto-7.0.24... done Installing xf86vidmodeproto-2.3.1... done Installing xextproto-7.2.1... done Installing renderproto-0.11.1... done Installing randrproto-1.4.0... done Installing libxcb-1.9.1...Installing libXdmcp-1.1.1... done Installing libXau-1.0.8... done Installing libxml2-2.8.0_3... done Installing libpthread-stubs-0.3_4... done done Installing libXxf86vm-1.1.3...Installing libXext-1.3.2,1...Installing libX11-1.6.2,1...Installing kbproto-1.0.6... done done done done Installing libXrender-0.9.8... done Installing libXrandr-1.4.2... done Installing libXfixes-5.0.1...Installing fixesproto-5.0... done done Installing libXdamage-1.1.4...Installing damageproto-1.2.1... done done Installing dri2proto-2.8... done Installing expat-2.1.0... done Installing pciids-20131123... done Installing libdrm-2.4.17_1...Installing libpciaccess-0.13.2... done done Installing libGLU-9.0.0...Installing libGL-7.6.1_4... done done Installing aalib-1.4.r5_6... done done ---------------------------------------------------------------------------= --- Your SDL library has been built with libvgl support, which means that you can run almost any SDL application straight on your console (VESA 2.0 compatible videocard is required). To do this you have to load the vesa kernel module or enable it in your kernel, and set environment variable "SDL_VIDEODRIVER=3Dvgl". ---------------------------------------------------------------------------= --- =3D=3D=3D> Returning to build of fife-0.3.4 =3D=3D=3D> fife-0.3.4 depends on executable: pkgconf - not found =3D=3D=3D> Verifying install for pkgconf in /usr/ports/devel/pkgconf =3D=3D=3D> Installing existing package /packages/All/pkgconf-0.9.3.txz Installing pkgconf-0.9.3... done =3D=3D=3D> Returning to build of fife-0.3.4 =3D=3D=3D> fife-0.3.4 depends on file: /usr/local/libdata/pkgconfig/glpro= to.pc - not found =3D=3D=3D> Verifying install for /usr/local/libdata/pkgconfig/glproto.pc= in /usr/ports/x11/glproto =3D=3D=3D> Installing existing package /packages/All/glproto-1.4.16.txz Installing glproto-1.4.16... done =3D=3D=3D> Returning to build of fife-0.3.4 =3D=3D=3D> fife-0.3.4 depends on file: /usr/local/libdata/pkgconfig/dri2proto.pc - found =3D=3D=3D> fife-0.3.4 depends on file: /usr/local/libdata/pkgconfig/xcurs= or.pc - not found =3D=3D=3D> Verifying install for /usr/local/libdata/pkgconfig/xcursor.pc= in /usr/ports/x11/libXcursor (arg1)->insert(arg2,arg3,(std::vector< unsigned int >::value_type const &)*arg4); ~~~~~~~~^~~~~~ /usr/include/c++/v1/vector:703:14: note: candidate function not viable: no known conversion from 'SwigValueWrapper::iterator>' to 'const_iterator' (aka '__wrap_iter') for 1st argument iterator insert(const_iterator __position, size_type __n, const_reference __x); ^ /usr/include/c++/v1/vector:714:9: note: candidate template ignored: substitution failure [with _InputIterator =3D unsigned int]: no type named 'reference' in 'std::__1::iterator_traits' insert(const_iterator __position, _InputIterator __first, _InputIterator __last); ^ /usr/include/c++/v1/vector:724:9: note: candidate template ignored: substitution failure [with _ForwardIterator =3D unsigned int]: no type name= d 'reference' in 'std::__1::iterator_traits' insert(const_iterator __position, _ForwardIterator __first, _ForwardIterator __last); ^ /usr/include/c++/v1/vector:695:14: note: candidate function not viable: requires 2 arguments, but 3 were provided iterator insert(const_iterator __position, const_reference __x); ^ build/engine/release/swigwrappers/python/fife_wrap.cc:15778:20: error: no matching member function for call to 'erase' result =3D (arg1)->erase(arg2); ~~~~~~~~^~~~~ /usr/include/c++/v1/vector:731:40: note: candidate function not viable: no known conversion from 'SwigValueWrapper::iterator>' to 'const_iterator' (aka '__wrap_iter') for 1st argument _LIBCPP_INLINE_VISIBILITY iterator erase(const_iterator __position); ^ /usr/include/c++/v1/vector:732:14: note: candidate function not viable: requires 2 arguments, but 1 was provided iterator erase(const_iterator __first, const_iterator __last); ^ build/engine/release/swigwrappers/python/fife_wrap.cc:15831:20: error: no matching member function for call to 'erase' result =3D (arg1)->erase(arg2,arg3); ~~~~~~~~^~~~~ /usr/include/c++/v1/vector:732:14: note: candidate function not viable: no known conversion from 'SwigValueWrapper::iterator>' to 'const_iterator' (aka '__wrap_iter') for 1st argument iterator erase(const_iterator __first, const_iterator __last); ^ /usr/include/c++/v1/vector:731:40: note: candidate function not viable: requires single argument '__position', but 2 arguments were provided _LIBCPP_INLINE_VISIBILITY iterator erase(const_iterator __position); ^ build/engine/release/swigwrappers/python/fife_wrap.cc:16235:20: error: no matching member function for call to 'insert' result =3D (arg1)->insert(arg2,(std::vector< int >::value_type const &)*arg3); ~~~~~~~~^~~~~~ /usr/include/c++/v1/vector:695:14: note: candidate function not viable: no known conversion from 'SwigValueWrapper::iterator>' to 'const_iterator' (aka '__wrap_iter') for 1st argument iterator insert(const_iterator __position, const_reference __x); ^ /usr/include/c++/v1/vector:714:9: note: candidate function template not viable: requires 3 arguments, but 2 were provided insert(const_iterator __position, _InputIterator __first, _InputIterator __last); ^ /usr/include/c++/v1/vector:724:9: note: candidate function template not viable: requires 3 arguments, but 2 were provided insert(const_iterator __position, _ForwardIterator __first, _ForwardIterator __last); ^ /usr/include/c++/v1/vector:703:14: note: candidate function not viable: requires 3 arguments, but 2 were provided iterator insert(const_iterator __position, size_type __n, const_reference __x); ^ build/engine/release/swigwrappers/python/fife_wrap.cc:16292:11: error: no matching member function for call to 'insert' (arg1)->insert(arg2,arg3,(std::vector< int >::value_type const &)*arg4); ~~~~~~~~^~~~~~ /usr/include/c++/v1/vector:703:14: note: candidate function not viable: no known conversion from 'SwigValueWrapper::iterator>' to 'const_iterator' (aka '__wrap_iter') for 1st argument iterator insert(const_iterator __position, size_type __n, const_reference __x); ^ /usr/include/c++/v1/vector:714:9: note: candidate template ignored: deduced conflicting types for parameter '_InputIterator' ('unsigned int' vs. 'int') insert(const_iterator __position, _InputIterator __first, _InputIterator __last); ^ /usr/include/c++/v1/vector:724:9: note: candidate template ignored: deduced conflicting types for parameter '_ForwardIterator' ('unsigned int' vs. 'int') insert(const_iterator __position, _ForwardIterator __first, _ForwardIterator __last); ^ /usr/include/c++/v1/vector:695:14: note: candidate function not viable: requires 2 arguments, but 3 were provided iterator insert(const_iterator __position, const_reference __x); ^ build/engine/release/swigwrappers/python/fife_wrap.cc:22914:20: error: no matching member function for call to 'erase' result =3D (arg1)->erase(arg2); ~~~~~~~~^~~~~ /usr/include/c++/v1/vector:731:40: note: candidate function not viable: no known conversion from 'SwigValueWrapper >::iterator>' to 'const_iterator' (aka '__wrap_iter') for 1st argument _LIBCPP_INLINE_VISIBILITY iterator erase(const_iterator __position); ^ /usr/include/c++/v1/vector:732:14: note: candidate function not viable: requires 2 arguments, but 1 was provided iterator erase(const_iterator __first, const_iterator __last); ^ build/engine/release/swigwrappers/python/fife_wrap.cc:22967:20: error: no matching member function for call to 'erase' result =3D (arg1)->erase(arg2,arg3); ~~~~~~~~^~~~~ /usr/include/c++/v1/vector:732:14: note: candidate function not viable: no known conversion from 'SwigValueWrapper >::iterator>' to 'const_iterator' (aka '__wrap_iter') for 1st argument iterator erase(const_iterator __first, const_iterator __last); ^ /usr/include/c++/v1/vector:731:40: note: candidate function not viable: requires single argument '__position', but 2 arguments were provided _LIBCPP_INLINE_VISIBILITY iterator erase(const_iterator __position); ^ build/engine/release/swigwrappers/python/fife_wrap.cc:23390:20: error: no matching member function for call to 'insert' result =3D (arg1)->insert(arg2,(std::vector< std::pair< unsigned short,unsigned short > >::value_type const &)*arg3); ~~~~~~~~^~~~~~ /usr/include/c++/v1/vector:695:14: note: candidate function not viable: no known conversion from 'SwigValueWrapper >::iterator>' to 'const_iterator' (aka '__wrap_iter') for 1st argument iterator insert(const_iterator __position, const_reference __x); ^ /usr/include/c++/v1/vector:714:9: note: candidate function template not viable: requires 3 arguments, but 2 were provided insert(const_iterator __position, _InputIterator __first, _InputIterator __last); ^ /usr/include/c++/v1/vector:724:9: note: candidate function template not viable: requires 3 arguments, but 2 were provided insert(const_iterator __position, _ForwardIterator __first, _ForwardIterator __last); ^ /usr/include/c++/v1/vector:703:14: note: candidate function not viable: requires 3 arguments, but 2 were provided iterator insert(const_iterator __position, size_type __n, const_reference __x); ^ build/engine/release/swigwrappers/python/fife_wrap.cc:23452:11: error: no matching member function for call to 'insert' (arg1)->insert(arg2,arg3,(std::vector< std::pair< unsigned short,unsigned short > >::value_type const &)*arg4); ~~~~~~~~^~~~~~ /usr/include/c++/v1/vector:703:14: note: candidate function not viable: no known conversion from 'SwigValueWrapper >::iterator>' to 'const_iterator' (aka '__wrap_iter') for 1st argument iterator insert(const_iterator __position, size_type __n, const_reference __x); ^ /usr/include/c++/v1/vector:714:9: note: candidate template ignored: deduced conflicting types for parameter '_InputIterator' ('unsigned int' vs. 'std::__1::pair') insert(const_iterator __position, _InputIterator __first, _InputIterator __last); ^ /usr/include/c++/v1/vector:724:9: note: candidate template ignored: deduced conflicting types for parameter '_ForwardIterator' ('unsigned int' vs. 'std::__1::pair') insert(const_iterator __position, _ForwardIterator __first, _ForwardIterator __last); ^ /usr/include/c++/v1/vector:695:14: note: candidate function not viable: requires 2 arguments, but 3 were provided iterator insert(const_iterator __position, const_reference __x); ^ build/engine/release/swigwrappers/python/fife_wrap.cc:75695:24: error: no matching member function for call to 'erase' result =3D (arg1)->erase(arg2); ~~~~~~~~^~~~~ /usr/include/c++/v1/vector:731:40: note: candidate function not viable: no known conversion from 'SwigValueWrapper >::iterator>' to 'const_iterator' (aka '__wrap_iter') for 1st argument _LIBCPP_INLINE_VISIBILITY iterator erase(const_iterator __position); ^ /usr/include/c++/v1/vector:732:14: note: candidate function not viable: requires 2 arguments, but 1 was provided iterator erase(const_iterator __first, const_iterator __last); ^ build/engine/release/swigwrappers/python/fife_wrap.cc:75755:24: error: no matching member function for call to 'erase' result =3D (arg1)->erase(arg2,arg3); ~~~~~~~~^~~~~ /usr/include/c++/v1/vector:732:14: note: candidate function not viable: no known conversion from 'SwigValueWrapper >::iterator>' to 'const_iterator' (aka '__wrap_iter') for 1st argument iterator erase(const_iterator __first, const_iterator __last); ^ /usr/include/c++/v1/vector:731:40: note: candidate function not viable: requires single argument '__position', but 2 arguments were provided _LIBCPP_INLINE_VISIBILITY iterator erase(const_iterator __position); ^ build/engine/release/swigwrappers/python/fife_wrap.cc:76209:24: error: no matching member function for call to 'insert' result =3D (arg1)->insert(arg2,(std::vector< FIFE::PointType3D< int > >::value_type const &)*arg3); ~~~~~~~~^~~~~~ /usr/include/c++/v1/vector:695:14: note: candidate function not viable: no known conversion from 'SwigValueWrapper >::iterator>' to 'const_iterator' (aka '__wrap_iter') for 1st argument iterator insert(const_iterator __position, const_reference __x); ^ /usr/include/c++/v1/vector:714:9: note: candidate function template not viable: requires 3 arguments, but 2 were provided insert(const_iterator __position, _InputIterator __first, _InputIterator __last); ^ /usr/include/c++/v1/vector:724:9: note: candidate function template not viable: requires 3 arguments, but 2 were provided insert(const_iterator __position, _ForwardIterator __first, _ForwardIterator __last); ^ /usr/include/c++/v1/vector:703:14: note: candidate function not viable: requires 3 arguments, but 2 were provided iterator insert(const_iterator __position, size_type __n, const_reference __x); ^ build/engine/release/swigwrappers/python/fife_wrap.cc:76274:15: error: no matching member function for call to 'insert' (arg1)->insert(arg2,arg3,(std::vector< FIFE::PointType3D< int > >::value_type const &)*arg4); ~~~~~~~~^~~~~~ /usr/include/c++/v1/vector:703:14: note: candidate function not viable: no known conversion from 'SwigValueWrapper >::iterator>' to 'const_iterator' (aka '__wrap_iter') for 1st argument iterator insert(const_iterator __position, size_type __n, const_reference __x); ^ /usr/include/c++/v1/vector:714:9: note: candidate template ignored: deduced conflicting types for parameter '_InputIterator' ('unsigned int' vs. 'FIFE::PointType3D') insert(const_iterator __position, _InputIterator __first, _InputIterator __last); ^ /usr/include/c++/v1/vector:724:9: note: candidate template ignored: deduced conflicting types for parameter '_ForwardIterator' ('unsigned int' vs. 'FIFE::PointType3D') insert(const_iterator __position, _ForwardIterator __first, _ForwardIterator __last); ^ /usr/include/c++/v1/vector:695:14: note: candidate function not viable: requires 2 arguments, but 3 were provided iterator insert(const_iterator __position, const_reference __x); ^ build/engine/release/swigwrappers/python/fife_wrap.cc:77701:24: error: no matching member function for call to 'erase' result =3D (arg1)->erase(arg2); ~~~~~~~~^~~~~ /usr/include/c++/v1/vector:731:40: note: candidate function not viable: no known conversion from 'SwigValueWrapper >::iterator>' to 'const_iterator' (aka '__wrap_iter') for 1st argument _LIBCPP_INLINE_VISIBILITY iterator erase(const_iterator __position); ^ /usr/include/c++/v1/vector:732:14: note: candidate function not viable: requires 2 arguments, but 1 was provided iterator erase(const_iterator __first, const_iterator __last); ^ build/engine/release/swigwrappers/python/fife_wrap.cc:77761:24: error: no matching member function for call to 'erase' result =3D (arg1)->erase(arg2,arg3); ~~~~~~~~^~~~~ /usr/include/c++/v1/vector:732:14: note: candidate function not viable: no known conversion from 'SwigValueWrapper >::iterator>' to 'const_iterator' (aka '__wrap_iter') for 1st argument iterator erase(const_iterator __first, const_iterator __last); ^ /usr/include/c++/v1/vector:731:40: note: candidate function not viable: requires single argument '__position', but 2 arguments were provided _LIBCPP_INLINE_VISIBILITY iterator erase(const_iterator __position); ^ build/engine/release/swigwrappers/python/fife_wrap.cc:78215:24: error: no matching member function for call to 'insert' result =3D (arg1)->insert(arg2,(std::vector< FIFE::PointType3D< doubl= e > >::value_type const &)*arg3); ~~~~~~~~^~~~~~ /usr/include/c++/v1/vector:695:14: note: candidate function not viable: no known conversion from 'SwigValueWrapper >::iterator>' to 'const_iterator' (aka '__wrap_iter') for 1st argument iterator insert(const_iterator __position, const_reference __x); ^ /usr/include/c++/v1/vector:714:9: note: candidate function template not viable: requires 3 arguments, but 2 were provided insert(const_iterator __position, _InputIterator __first, _InputIterator __last); ^ /usr/include/c++/v1/vector:724:9: note: candidate function template not viable: requires 3 arguments, but 2 were provided insert(const_iterator __position, _ForwardIterator __first, _ForwardIterator __last); ^ /usr/include/c++/v1/vector:703:14: note: candidate function not viable: requires 3 arguments, but 2 were provided iterator insert(const_iterator __position, size_type __n, const_reference __x); ^ fatal error: too many errors emitted, stopping now [-ferror-limit=3D] 3 warnings and 20 errors generated. scons: *** [build/engine/release/swigwrappers/python/py_fife_wrap.os] Error 1 scons: building terminated because of errors. *** Error code 2 Stop. make: stopped in /usr/ports/games/py-fife =3D=3D=3D> Cleaning for fife-0.3.4 From owner-freebsd-python@FreeBSD.ORG Wed Dec 4 06:18:51 2013 Return-Path: Delivered-To: python@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 1C21BBAE for ; Wed, 4 Dec 2013 06:18:51 +0000 (UTC) Received: from mail-pd0-x22f.google.com (mail-pd0-x22f.google.com [IPv6:2607:f8b0:400e:c02::22f]) (using TLSv1 with cipher ECDHE-RSA-RC4-SHA (128/128 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id E3EDF14FF for ; Wed, 4 Dec 2013 06:18:50 +0000 (UTC) Received: by mail-pd0-f175.google.com with SMTP id w10so21747943pde.34 for ; Tue, 03 Dec 2013 22:18:50 -0800 (PST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20120113; h=mime-version:in-reply-to:references:date:message-id:subject:from:to :content-type; bh=vRsMV4USlOnT09n9neReZ26I1cbzkA1vrzfid9TacSs=; b=j8IS8SLv4geZvQPdFwaffeiaAUrThRIH4qCeLscJQP5a6fqL1MIoCSFUym3GdHhZf9 IXtcDwODyPhUklsibvbDyBHua7ZlyzTnBnAvR+W7QxxcwcTpHXRBDc0buAERGdN4+C9W n8CRBH122ZezOuEZLRNPPwdCpBGJ0jGSyVva/5YlZvmhUpD6Mzfpg3y8CeTfDtudszOC xy0wEaLpgy+rmqg9uFQy/yST9LYkEBWebBVcczlpsOc1x1yknXAwdZiAExdbySWiavUJ cpf8gk0JWu0hcbawucC96tTU+KxjX6w2+cx6t9LfrinH+Axmt8A9NdNEaUe3gkRuRzPC FiFQ== MIME-Version: 1.0 X-Received: by 10.68.233.135 with SMTP id tw7mr43341229pbc.112.1386137930554; Tue, 03 Dec 2013 22:18:50 -0800 (PST) Received: by 10.70.92.137 with HTTP; Tue, 3 Dec 2013 22:18:50 -0800 (PST) Received: by 10.70.92.137 with HTTP; Tue, 3 Dec 2013 22:18:50 -0800 (PST) In-Reply-To: <201311292245.rATMjEwC088489@beefy2.isc.freebsd.org> References: <201311292245.rATMjEwC088489@beefy2.isc.freebsd.org> Date: Wed, 4 Dec 2013 10:18:50 +0400 Message-ID: Subject: Fwd: [REL - 10amd64-default][games/py-fife] Failed for fife-0.3.4 in build From: Green Dog To: python@freebsd.org Content-Type: text/plain; charset=KOI8-R Content-Transfer-Encoding: quoted-printable X-Content-Filtered-By: Mailman/MimeDel 2.1.17 X-BeenThere: freebsd-python@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-Id: FreeBSD-specific Python issues List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 04 Dec 2013 06:18:51 -0000 ---------- =F0=C5=D2=C5=C1=C4=D2=C5=D3=CF=D7=C1=CE=CE=CF=C5 =D3=CF=CF=C2=DD= =C5=CE=C9=C5 ---------- =EF=D4: =E4=C1=D4=C1: 30.11.2013 2:45 =F4=C5=CD=C1: [REL - 10amd64-default][games/py-fife] Failed for fife-0.3.4 = in build =EB=CF=CD=D5: =EB=CF=D0=C9=D1: 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: fiziologus@gmail.com Last committer: bapt@FreeBSD.org Ident: $FreeBSD: head/games/py-fife/Makefile 327730 2013-09-20 17:36:33Z bapt $ Log URL: http://beefy2.isc.freebsd.org/bulk/10amd64-default/2013-11-29_16h08m05s/log= s/fife-0.3.4.log Build URL: http://beefy2.isc.freebsd.org/bulk/10amd64-default/2013-11-29_16h08m05s Log: =3D=3D=3D=3D>> Building games/py-fife build started at Fri Nov 29 22:40:56 UTC 2013 port directory: /usr/ports/games/py-fife building for: FreeBSD 10amd64-default-job-21 10.0-BETA1 FreeBSD 10.0-BETA1 r256420 amd64 maintained by: fiziologus@gmail.com Makefile ident: $FreeBSD: head/games/py-fife/Makefile 327730 2013-09-20 17:36:33Z bapt $ Poudriere version: 3.1-pre ---Begin Environment--- OSVERSION=3D1000500 UNAME_v=3DFreeBSD 10.0-BETA1 r256420 UNAME_r=3D10.0-BETA1 BLOCKSIZE=3DK MAIL=3D/var/mail/root PATH=3D/sbin:/bin:/usr/sbin:/usr/bin:/usr/games:/usr/local/sbin:/usr/local/= bin:/root/bin STATUS=3D1 MASTERMNT=3D/usr/local/poudriere/data/build/10amd64-default/ref PKG_EXT=3Dtxz tpid=3D79322 POUDRIERE_BUILD_TYPE=3Dbulk PKGNG=3D1 PKGNAME=3Dfife-0.3.4 PKG_DELETE=3D/usr/local/sbin/pkg-static delete -y -f PKG_ADD=3D/usr/local/sbin/pkg-static add PWD=3D/root MASTERNAME=3D10amd64-default USER=3Droot HOME=3D/root POUDRIERE_VERSION=3D3.1-pre LOCALBASE=3D/usr/local PACKAGE_BUILDING=3Dyes PKG_VERSION=3D/poudriere/pkg-static version PKG_BIN=3D/usr/local/sbin/pkg-static ---End Environment--- ---Begin OPTIONS List--- ---End OPTIONS List--- --CONFIGURE_ARGS-- --End CONFIGURE_ARGS-- --CONFIGURE_ENV-- TMPDIR=3D"/tmp" PYTHON=3D"/usr/local/bin/python2.7" SDL_CONFIG=3D/usr/local/bin/sdl-config PKG_CONFIG=3Dpkgconf SHELL=3D/bin/sh CONFIG_SHELL=3D/bin/sh --End CONFIGURE_ENV-- --MAKE_ENV-- TMPDIR=3D"/tmp" SDL_CONFIG=3D/usr/local/bin/sdl-config SHELL=3D/bin/sh NO_LINT=3DYES PREFIX=3D/usr/local LOCALBASE=3D/usr/local LIBDIR=3D"/usr/l= ib" CC=3D"cc" CFLAGS=3D"-O2 -pipe -fno-strict-aliasing" CPP=3D"cpp" CPPFLAGS= =3D"" LDFLAGS=3D"" CXX=3D"c++" CXXFLAGS=3D"-O2 -pipe -fno-strict-aliasing" MANPREFIX=3D"/usr/local" BSD_INSTALL_PROGRAM=3D"install -s -o root -g whe= el -m 555" BSD_INSTALL_LIB=3D"install -s -o root -g wheel -m 444" BSD_INSTALL_SCRIPT=3D"install -o root -g wheel -m 555" BSD_INSTALL_DATA=3D"install -o root -g wheel -m 444" BSD_INSTALL_MAN=3D"install -o root -g wheel -m 444" --End MAKE_ENV-- --SUB_LIST-- PREFIX=3D/usr/local LOCALBASE=3D/usr/local DATADIR=3D/usr/local/share/fife DOCSDIR=3D/usr/local/share/doc/fife EXAMPLESDIR=3D/usr/local/share/examples/fife WWWDIR=3D/usr/local/www/fife ETCDIR=3D/usr/local/etc/fife --End SUB_LIST-- ---Begin make.conf--- USE_PACKAGE_DEPENDS=3Dyes BATCH=3Dyes WRKDIRPREFIX=3D/wrkdirs PORTSDIR=3D/usr/ports PACKAGES=3D/packages DISTDIR=3D/distfiles #### /usr/local/etc/poudriere.d/make.conf #### WITH_PKGNG=3Dyes NO_RESTRICTED=3Dyes DISABLE_MAKE_JOBS=3Dpoudriere ---End make.conf--- =3D=3D=3D> Cleaning for fife-0.3.4 =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D =3D=3D=3D> fife-0.3.4 depends on file: /usr/local/sbin/pkg - not found =3D=3D=3D> Verifying install for /usr/local/sbin/pkg in /usr/ports/ports-mgmt/pkg =3D=3D=3D> Installing existing package /packages/All/pkg-1.2.1.txz Installing pkg-1.2.1... done If you are upgrading from the old package format, first run: # pkg2ng =3D=3D=3D> Returning to build of fife-0.3.4 =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D =3D=3D=3D> Fetching all distfiles required by fife-0.3.4 for building =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D =3D=3D=3D> Fetching all distfiles required by fife-0.3.4 for building =3D> SHA256 Checksum OK for fife_0.3.4.tar.gz. =3D> SHA256 Checksum OK for fife_0.3.4_demos.tar.gz. =3D> SHA256 Checksum OK for fife_0.3.4_tools.tar.gz. =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D =3D=3D=3D> Fetching all distfiles required by fife-0.3.4 for building =3D=3D=3D> Extracting for fife-0.3.4 =3D> SHA256 Checksum OK for fife_0.3.4.tar.gz. =3D> SHA256 Checksum OK for fife_0.3.4_demos.tar.gz. =3D> SHA256 Checksum OK for fife_0.3.4_tools.tar.gz. =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D =3D=3D=3D> Patching for fife-0.3.4 /usr/bin/sed -i.bak -e 's/X11R6/local/g; s/libpng/ligpng15/g' /wrkdirs/usr/ports/games/py-fife/work/fife_0.3.4/build/openbsd4-config.py && /bin/mv /wrkdirs/usr/ports/games/py-fife/work/fife_0.3.4/build/openbsd4-config.py /wrkdirs/usr/ports/games/py-fife/work/fife_0.3.4/build/freebsd10-config.py =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D =3D=3D=3D> fife-0.3.4 depends on file: /usr/local/bin/swig - not found =3D=3D=3D> Verifying install for /usr/local/bin/swig in /usr/ports/devel= /swig13 =3D=3D=3D> Installing existing package /packages/All/swig13-1.3.40.txz Installing swig13-1.3.40... done =3D=3D=3D> Returning to build of fife-0.3.4 =3D=3D=3D> fife-0.3.4 depends on file: /usr/local/bin/python2.7 - not fou= nd =3D=3D=3D> Verifying install for /usr/local/bin/python2.7 in /usr/ports/lang/python27 =3D=3D=3D> Installing existing package /packages/All/python27-2.7.6.txz Installing python27-2.7.6...Installing gettext-0.18.3.1... done done =3D=3D=3D=3D Note that some of the standard modules are provided as separate ports since they require extra dependencies: bsddb databases/py-bsddb gdbm databases/py-gdbm sqlite3 databases/py-sqlite3 tkinter x11-toolkits/py-tkinter Install them as needed. =3D=3D=3D=3D =3D=3D=3D> Returning to build of fife-0.3.4 =3D=3D=3D> fife-0.3.4 depends on executable: python - not found =3D=3D=3D> Verifying install for python in /usr/ports/lang/python =3D=3D=3D> Installing existing package /packages/All/python-2.7_1,2.txz Installing python-2.7_1,2...Installing python2-2_1... done done =3D=3D=3D> Returning to build of fife-0.3.4 =3D=3D=3D> fife-0.3.4 depends on file: /usr/local/bin/sdl-config - not fo= und =3D=3D=3D> Verifying install for /usr/local/bin/sdl-config in /usr/ports/devel/sdl12 =3D=3D=3D> Installing existing package /packages/All/sdl-1.2.15_2,2.txz Installing sdl-1.2.15_2,2...Installing xproto-7.0.24... done Installing xf86vidmodeproto-2.3.1... done Installing xextproto-7.2.1... done Installing renderproto-0.11.1... done Installing randrproto-1.4.0... done Installing libxcb-1.9.1...Installing libXdmcp-1.1.1... done Installing libXau-1.0.8... done Installing libxml2-2.8.0_3... done Installing libpthread-stubs-0.3_4... done done Installing libXxf86vm-1.1.3...Installing libXext-1.3.2,1...Installing libX11-1.6.2,1...Installing kbproto-1.0.6... done done done done Installing libXrender-0.9.8... done Installing libXrandr-1.4.2... done Installing libXfixes-5.0.1...Installing fixesproto-5.0... done done Installing libXdamage-1.1.4...Installing damageproto-1.2.1... done done Installing dri2proto-2.8... done Installing expat-2.1.0... done Installing pciids-20131123... done Installing libdrm-2.4.17_1...Installing libpciaccess-0.13.2... done done Installing libGLU-9.0.0...Installing libGL-7.6.1_4... done done Installing aalib-1.4.r5_6... done done ---------------------------------------------------------------------------= --- Your SDL library has been built with libvgl support, which means that you can run almost any SDL application straight on your console (VESA 2.0 compatible videocard is required). To do this you have to load the vesa kernel module or enable it in your kernel, and set environment variable "SDL_VIDEODRIVER=3Dvgl". ---------------------------------------------------------------------------= --- =3D=3D=3D> Returning to build of fife-0.3.4 =3D=3D=3D> fife-0.3.4 depends on executable: pkgconf - not found =3D=3D=3D> Verifying install for pkgconf in /usr/ports/devel/pkgconf =3D=3D=3D> Installing existing package /packages/All/pkgconf-0.9.3.txz Installing pkgconf-0.9.3... done =3D=3D=3D> Returning to build of fife-0.3.4 =3D=3D=3D> fife-0.3.4 depends on file: /usr/local/libdata/pkgconfig/glpro= to.pc - not found =3D=3D=3D> Verifying install for /usr/local/libdata/pkgconfig/glproto.pc= in /usr/ports/x11/glproto =3D=3D=3D> Installing existing package /packages/All/glproto-1.4.16.txz Installing glproto-1.4.16... done =3D=3D=3D> Returning to build of fife-0.3.4 =3D=3D=3D> fife-0.3.4 depends on file: /usr/local/libdata/pkgconfig/dri2proto.pc - found =3D=3D=3D> fife-0.3.4 depends on file: /usr/local/libdata/pkgconfig/xcurs= or.pc - not found =3D=3D=3D> Verifying install for /usr/local/libdata/pkgconfig/xcursor.pc= in /usr/ports/x11/libXcursor =3D=3D=3D> Installing existing package /packages/All/libXcursor-1.1.14.tx= z Installing libXcursor-1.1.14... done =3D=3D=3D> Returning to build of fife-0.3.4 =3D=3D=3D> fife-0.3.4 depends on file: /usr/local/bin/scons - not found =3D=3D=3D> Verifying install for /usr/local/bin/scons in /usr/ports/deve= l/scons (arg1)->insert(arg2,arg3,(std::vector< unsigned int >::value_type const &)*arg4); ~~~~~~~~^~~~~~ /usr/include/c++/v1/vector:703:14: note: candidate function not viable: no known conversion from 'SwigValueWrapper::iterator>' to 'const_iterator' (aka '__wrap_iter') for 1st argument iterator insert(const_iterator __position, size_type __n, const_reference __x); ^ /usr/include/c++/v1/vector:714:9: note: candidate template ignored: deduced conflicting types for parameter '_InputIterator' ('unsigned long' vs. 'unsigned int') insert(const_iterator __position, _InputIterator __first, _InputIterator __last); ^ /usr/include/c++/v1/vector:724:9: note: candidate template ignored: deduced conflicting types for parameter '_ForwardIterator' ('unsigned long' vs. 'unsigned int') insert(const_iterator __position, _ForwardIterator __first, _ForwardIterator __last); ^ /usr/include/c++/v1/vector:695:14: note: candidate function not viable: requires 2 arguments, but 3 were provided iterator insert(const_iterator __position, const_reference __x); ^ build/engine/release/swigwrappers/python/fife_wrap.cc:15778:20: error: no matching member function for call to 'erase' result =3D (arg1)->erase(arg2); ~~~~~~~~^~~~~ /usr/include/c++/v1/vector:731:40: note: candidate function not viable: no known conversion from 'SwigValueWrapper::iterator>' to 'const_iterator' (aka '__wrap_iter') for 1st argument _LIBCPP_INLINE_VISIBILITY iterator erase(const_iterator __position); ^ /usr/include/c++/v1/vector:732:14: note: candidate function not viable: requires 2 arguments, but 1 was provided iterator erase(const_iterator __first, const_iterator __last); ^ build/engine/release/swigwrappers/python/fife_wrap.cc:15831:20: error: no matching member function for call to 'erase' result =3D (arg1)->erase(arg2,arg3); ~~~~~~~~^~~~~ /usr/include/c++/v1/vector:732:14: note: candidate function not viable: no known conversion from 'SwigValueWrapper::iterator>' to 'const_iterator' (aka '__wrap_iter') for 1st argument iterator erase(const_iterator __first, const_iterator __last); ^ /usr/include/c++/v1/vector:731:40: note: candidate function not viable: requires single argument '__position', but 2 arguments were provided _LIBCPP_INLINE_VISIBILITY iterator erase(const_iterator __position); ^ build/engine/release/swigwrappers/python/fife_wrap.cc:16235:20: error: no matching member function for call to 'insert' result =3D (arg1)->insert(arg2,(std::vector< int >::value_type const &)*arg3); ~~~~~~~~^~~~~~ /usr/include/c++/v1/vector:695:14: note: candidate function not viable: no known conversion from 'SwigValueWrapper::iterator>' to 'const_iterator' (aka '__wrap_iter') for 1st argument iterator insert(const_iterator __position, const_reference __x); ^ /usr/include/c++/v1/vector:714:9: note: candidate function template not viable: requires 3 arguments, but 2 were provided insert(const_iterator __position, _InputIterator __first, _InputIterator __last); ^ /usr/include/c++/v1/vector:724:9: note: candidate function template not viable: requires 3 arguments, but 2 were provided insert(const_iterator __position, _ForwardIterator __first, _ForwardIterator __last); ^ /usr/include/c++/v1/vector:703:14: note: candidate function not viable: requires 3 arguments, but 2 were provided iterator insert(const_iterator __position, size_type __n, const_reference __x); ^ build/engine/release/swigwrappers/python/fife_wrap.cc:16292:11: error: no matching member function for call to 'insert' (arg1)->insert(arg2,arg3,(std::vector< int >::value_type const &)*arg4); ~~~~~~~~^~~~~~ /usr/include/c++/v1/vector:703:14: note: candidate function not viable: no known conversion from 'SwigValueWrapper::iterator>' to 'const_iterator' (aka '__wrap_iter') for 1st argument iterator insert(const_iterator __position, size_type __n, const_reference __x); ^ /usr/include/c++/v1/vector:714:9: note: candidate template ignored: deduced conflicting types for parameter '_InputIterator' ('unsigned long' vs. 'int'= ) insert(const_iterator __position, _InputIterator __first, _InputIterator __last); ^ /usr/include/c++/v1/vector:724:9: note: candidate template ignored: deduced conflicting types for parameter '_ForwardIterator' ('unsigned long' vs. 'int') insert(const_iterator __position, _ForwardIterator __first, _ForwardIterator __last); ^ /usr/include/c++/v1/vector:695:14: note: candidate function not viable: requires 2 arguments, but 3 were provided iterator insert(const_iterator __position, const_reference __x); ^ build/engine/release/swigwrappers/python/fife_wrap.cc:22914:20: error: no matching member function for call to 'erase' result =3D (arg1)->erase(arg2); ~~~~~~~~^~~~~ /usr/include/c++/v1/vector:731:40: note: candidate function not viable: no known conversion from 'SwigValueWrapper >::iterator>' to 'const_iterator' (aka '__wrap_iter') for 1st argument _LIBCPP_INLINE_VISIBILITY iterator erase(const_iterator __position); ^ /usr/include/c++/v1/vector:732:14: note: candidate function not viable: requires 2 arguments, but 1 was provided iterator erase(const_iterator __first, const_iterator __last); ^ build/engine/release/swigwrappers/python/fife_wrap.cc:22967:20: error: no matching member function for call to 'erase' result =3D (arg1)->erase(arg2,arg3); ~~~~~~~~^~~~~ /usr/include/c++/v1/vector:732:14: note: candidate function not viable: no known conversion from 'SwigValueWrapper >::iterator>' to 'const_iterator' (aka '__wrap_iter') for 1st argument iterator erase(const_iterator __first, const_iterator __last); ^ /usr/include/c++/v1/vector:731:40: note: candidate function not viable: requires single argument '__position', but 2 arguments were provided _LIBCPP_INLINE_VISIBILITY iterator erase(const_iterator __position); ^ build/engine/release/swigwrappers/python/fife_wrap.cc:23390:20: error: no matching member function for call to 'insert' result =3D (arg1)->insert(arg2,(std::vector< std::pair< unsigned short,unsigned short > >::value_type const &)*arg3); ~~~~~~~~^~~~~~ /usr/include/c++/v1/vector:695:14: note: candidate function not viable: no known conversion from 'SwigValueWrapper >::iterator>' to 'const_iterator' (aka '__wrap_iter') for 1st argument iterator insert(const_iterator __position, const_reference __x); ^ /usr/include/c++/v1/vector:714:9: note: candidate function template not viable: requires 3 arguments, but 2 were provided insert(const_iterator __position, _InputIterator __first, _InputIterator __last); ^ /usr/include/c++/v1/vector:724:9: note: candidate function template not viable: requires 3 arguments, but 2 were provided insert(const_iterator __position, _ForwardIterator __first, _ForwardIterator __last); ^ /usr/include/c++/v1/vector:703:14: note: candidate function not viable: requires 3 arguments, but 2 were provided iterator insert(const_iterator __position, size_type __n, const_reference __x); ^ build/engine/release/swigwrappers/python/fife_wrap.cc:23452:11: error: no matching member function for call to 'insert' (arg1)->insert(arg2,arg3,(std::vector< std::pair< unsigned short,unsigned short > >::value_type const &)*arg4); ~~~~~~~~^~~~~~ /usr/include/c++/v1/vector:703:14: note: candidate function not viable: no known conversion from 'SwigValueWrapper >::iterator>' to 'const_iterator' (aka '__wrap_iter') for 1st argument iterator insert(const_iterator __position, size_type __n, const_reference __x); ^ /usr/include/c++/v1/vector:714:9: note: candidate template ignored: deduced conflicting types for parameter '_InputIterator' ('unsigned long' vs. 'std::__1::pair') insert(const_iterator __position, _InputIterator __first, _InputIterator __last); ^ /usr/include/c++/v1/vector:724:9: note: candidate template ignored: deduced conflicting types for parameter '_ForwardIterator' ('unsigned long' vs. 'std::__1::pair') insert(const_iterator __position, _ForwardIterator __first, _ForwardIterator __last); ^ /usr/include/c++/v1/vector:695:14: note: candidate function not viable: requires 2 arguments, but 3 were provided iterator insert(const_iterator __position, const_reference __x); ^ build/engine/release/swigwrappers/python/fife_wrap.cc:75695:24: error: no matching member function for call to 'erase' result =3D (arg1)->erase(arg2); ~~~~~~~~^~~~~ /usr/include/c++/v1/vector:731:40: note: candidate function not viable: no known conversion from 'SwigValueWrapper >::iterator>' to 'const_iterator' (aka '__wrap_iter') for 1st argument _LIBCPP_INLINE_VISIBILITY iterator erase(const_iterator __position); ^ /usr/include/c++/v1/vector:732:14: note: candidate function not viable: requires 2 arguments, but 1 was provided iterator erase(const_iterator __first, const_iterator __last); ^ build/engine/release/swigwrappers/python/fife_wrap.cc:75755:24: error: no matching member function for call to 'erase' result =3D (arg1)->erase(arg2,arg3); ~~~~~~~~^~~~~ /usr/include/c++/v1/vector:732:14: note: candidate function not viable: no known conversion from 'SwigValueWrapper >::iterator>' to 'const_iterator' (aka '__wrap_iter') for 1st argument iterator erase(const_iterator __first, const_iterator __last); ^ /usr/include/c++/v1/vector:731:40: note: candidate function not viable: requires single argument '__position', but 2 arguments were provided _LIBCPP_INLINE_VISIBILITY iterator erase(const_iterator __position); ^ build/engine/release/swigwrappers/python/fife_wrap.cc:76209:24: error: no matching member function for call to 'insert' result =3D (arg1)->insert(arg2,(std::vector< FIFE::PointType3D< int > >::value_type const &)*arg3); ~~~~~~~~^~~~~~ /usr/include/c++/v1/vector:695:14: note: candidate function not viable: no known conversion from 'SwigValueWrapper >::iterator>' to 'const_iterator' (aka '__wrap_iter') for 1st argument iterator insert(const_iterator __position, const_reference __x); ^ /usr/include/c++/v1/vector:714:9: note: candidate function template not viable: requires 3 arguments, but 2 were provided insert(const_iterator __position, _InputIterator __first, _InputIterator __last); ^ /usr/include/c++/v1/vector:724:9: note: candidate function template not viable: requires 3 arguments, but 2 were provided insert(const_iterator __position, _ForwardIterator __first, _ForwardIterator __last); ^ /usr/include/c++/v1/vector:703:14: note: candidate function not viable: requires 3 arguments, but 2 were provided iterator insert(const_iterator __position, size_type __n, const_reference __x); ^ build/engine/release/swigwrappers/python/fife_wrap.cc:76274:15: error: no matching member function for call to 'insert' (arg1)->insert(arg2,arg3,(std::vector< FIFE::PointType3D< int > >::value_type const &)*arg4); ~~~~~~~~^~~~~~ /usr/include/c++/v1/vector:703:14: note: candidate function not viable: no known conversion from 'SwigValueWrapper >::iterator>' to 'const_iterator' (aka '__wrap_iter') for 1st argument iterator insert(const_iterator __position, size_type __n, const_reference __x); ^ /usr/include/c++/v1/vector:714:9: note: candidate template ignored: deduced conflicting types for parameter '_InputIterator' ('unsigned long' vs. 'FIFE::PointType3D') insert(const_iterator __position, _InputIterator __first, _InputIterator __last); ^ /usr/include/c++/v1/vector:724:9: note: candidate template ignored: deduced conflicting types for parameter '_ForwardIterator' ('unsigned long' vs. 'FIFE::PointType3D') insert(const_iterator __position, _ForwardIterator __first, _ForwardIterator __last); ^ /usr/include/c++/v1/vector:695:14: note: candidate function not viable: requires 2 arguments, but 3 were provided iterator insert(const_iterator __position, const_reference __x); ^ build/engine/release/swigwrappers/python/fife_wrap.cc:77701:24: error: no matching member function for call to 'erase' result =3D (arg1)->erase(arg2); ~~~~~~~~^~~~~ /usr/include/c++/v1/vector:731:40: note: candidate function not viable: no known conversion from 'SwigValueWrapper >::iterator>' to 'const_iterator' (aka '__wrap_iter') for 1st argument _LIBCPP_INLINE_VISIBILITY iterator erase(const_iterator __position); ^ /usr/include/c++/v1/vector:732:14: note: candidate function not viable: requires 2 arguments, but 1 was provided iterator erase(const_iterator __first, const_iterator __last); ^ build/engine/release/swigwrappers/python/fife_wrap.cc:77761:24: error: no matching member function for call to 'erase' result =3D (arg1)->erase(arg2,arg3); ~~~~~~~~^~~~~ /usr/include/c++/v1/vector:732:14: note: candidate function not viable: no known conversion from 'SwigValueWrapper >::iterator>' to 'const_iterator' (aka '__wrap_iter') for 1st argument iterator erase(const_iterator __first, const_iterator __last); ^ /usr/include/c++/v1/vector:731:40: note: candidate function not viable: requires single argument '__position', but 2 arguments were provided _LIBCPP_INLINE_VISIBILITY iterator erase(const_iterator __position); ^ build/engine/release/swigwrappers/python/fife_wrap.cc:78215:24: error: no matching member function for call to 'insert' result =3D (arg1)->insert(arg2,(std::vector< FIFE::PointType3D< doubl= e > >::value_type const &)*arg3); ~~~~~~~~^~~~~~ /usr/include/c++/v1/vector:695:14: note: candidate function not viable: no known conversion from 'SwigValueWrapper >::iterator>' to 'const_iterator' (aka '__wrap_iter') for 1st argument iterator insert(const_iterator __position, const_reference __x); ^ /usr/include/c++/v1/vector:714:9: note: candidate function template not viable: requires 3 arguments, but 2 were provided insert(const_iterator __position, _InputIterator __first, _InputIterator __last); ^ /usr/include/c++/v1/vector:724:9: note: candidate function template not viable: requires 3 arguments, but 2 were provided insert(const_iterator __position, _ForwardIterator __first, _ForwardIterator __last); ^ /usr/include/c++/v1/vector:703:14: note: candidate function not viable: requires 3 arguments, but 2 were provided iterator insert(const_iterator __position, size_type __n, const_reference __x); ^ fatal error: too many errors emitted, stopping now [-ferror-limit=3D] 3 warnings and 20 errors generated. scons: *** [build/engine/release/swigwrappers/python/py_fife_wrap.os] Error 1 scons: building terminated because of errors. *** Error code 2 Stop. make: stopped in /usr/ports/games/py-fife =3D=3D=3D> Cleaning for fife-0.3.4 From owner-freebsd-python@FreeBSD.ORG Wed Dec 4 10:16:01 2013 Return-Path: Delivered-To: freebsd-python@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 2F362654 for ; Wed, 4 Dec 2013 10:16:01 +0000 (UTC) Received: from mail-pd0-x22c.google.com (mail-pd0-x22c.google.com [IPv6:2607:f8b0:400e:c02::22c]) (using TLSv1 with cipher ECDHE-RSA-RC4-SHA (128/128 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 019C513E0 for ; Wed, 4 Dec 2013 10:16:00 +0000 (UTC) Received: by mail-pd0-f172.google.com with SMTP id g10so22052036pdj.17 for ; Wed, 04 Dec 2013 02:16:00 -0800 (PST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20120113; h=message-id:date:from:reply-to:user-agent:mime-version:to:subject :references:in-reply-to:content-type:content-transfer-encoding; bh=Cms0owjHkaMUR+ohxUEIeSB8FvYm+kbhkAGzbPDlM2I=; b=NfPAdPyygR/BI295itflHk7eBlZEZmqlrP7CnSeOAUWqVl9GRPiDeN+O4+PQGSX7ix vOEpPxzL96MKt7ebpdLSHJ6lw0v8wjtDYU5ZgRyWf4fPuaqUQ/KO9LHrXBc5Pr5TaXA6 71HUQq+ayW+dAyEbOvtVaPs0jacJacsRnbow+h8RE3PYQsE7PoBDSDCr3F7vSCpFzG4h Jk0Oiwe0ucYecUxM4c55yCZPQ22ykxk9KM6a3u0/6B1Nv++6wSy0yZYWyOPeC7I+8GpZ 0FKl2LmTAGVTeh2X9ETTzkIUfBXjrr6PRRFJ4z3EvhgpQ/GyoAqau04Se3fRTt9gwjGJ Cecg== X-Received: by 10.66.152.102 with SMTP id ux6mr79447453pab.79.1386152160692; Wed, 04 Dec 2013 02:16:00 -0800 (PST) Received: from [192.168.1.7] (ppp59-167-128-11.static.internode.on.net. [59.167.128.11]) by mx.google.com with ESMTPSA id sd3sm136181986pbb.42.2013.12.04.02.15.58 for (version=TLSv1.1 cipher=ECDHE-RSA-RC4-SHA bits=128/128); Wed, 04 Dec 2013 02:16:00 -0800 (PST) Message-ID: <529F00DA.7040303@FreeBSD.org> Date: Wed, 04 Dec 2013 21:15:54 +1100 From: Kubilay Kocak User-Agent: Mozilla/5.0 (Windows NT 6.1; WOW64; rv:26.0) Gecko/20100101 Thunderbird/26.0 MIME-Version: 1.0 To: Volodymyr Kostyrko , freebsd-python@FreeBSD.org Subject: Re: ports/183477: [patch] databases/py-mysql2pgsql dependency fix References: <201312030750.rB37o1de031410@freefall.freebsd.org> <529D8F96.4010501@FreeBSD.org> <529DF763.3060708@gmail.com> In-Reply-To: <529DF763.3060708@gmail.com> X-Enigmail-Version: 1.6 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 7bit X-BeenThere: freebsd-python@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list Reply-To: koobs@FreeBSD.org List-Id: FreeBSD-specific Python issues List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 04 Dec 2013 10:16:01 -0000 On 4/12/2013 2:23 AM, Volodymyr Kostyrko wrote: > 03.12.2013 10:00, Kubilay Kocak wrote: >> Thanks for following-up Volodymyr, what would you like to do with this >> PR? >> >> Can we close assuming you'll want to submit a new PR for the next >> version? > > Well, I'm not ready to branch the new version yet... > > So maybe it would be better for now to include this fix as a patch with > a port? > Could you follow-up on the PR with your response and approval please, I can then take it Koobs From owner-freebsd-python@FreeBSD.ORG Wed Dec 4 13:00:09 2013 Return-Path: Delivered-To: freebsd-python@smarthost.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id C1173BE8; Wed, 4 Dec 2013 13:00:09 +0000 (UTC) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:1900:2254:206c::16:87]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 960411EEA; Wed, 4 Dec 2013 13:00:09 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.7/8.14.7) with ESMTP id rB4D09Xx033403; Wed, 4 Dec 2013 13:00:09 GMT (envelope-from edwin@freefall.freebsd.org) Received: (from edwin@localhost) by freefall.freebsd.org (8.14.7/8.14.7/Submit) id rB4D09Ku033402; Wed, 4 Dec 2013 13:00:09 GMT (envelope-from edwin) Date: Wed, 4 Dec 2013 13:00:09 GMT Message-Id: <201312041300.rB4D09Ku033402@freefall.freebsd.org> To: edwin@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, freebsd-python@FreeBSD.org From: edwin@FreeBSD.org Subject: Re: ports/184493: databases/py-firebirdsql: update to 0.8.0 X-BeenThere: freebsd-python@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-Id: FreeBSD-specific Python issues List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 04 Dec 2013 13:00:09 -0000 Synopsis: databases/py-firebirdsql: update to 0.8.0 Responsible-Changed-From-To: freebsd-ports-bugs->freebsd-python Responsible-Changed-By: edwin Responsible-Changed-When: Wed Dec 4 13:00:09 UTC 2013 Responsible-Changed-Why: freebsd-python@ wants this port PRs (via the GNATS Auto Assign Tool) http://www.freebsd.org/cgi/query-pr.cgi?pr=184493 From owner-freebsd-python@FreeBSD.ORG Wed Dec 4 13:01:13 2013 Return-Path: Delivered-To: python@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 9F491C47 for ; Wed, 4 Dec 2013 13:01:13 +0000 (UTC) Received: from mail-qa0-x22c.google.com (mail-qa0-x22c.google.com [IPv6:2607:f8b0:400d:c00::22c]) (using TLSv1 with cipher ECDHE-RSA-RC4-SHA (128/128 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 580EF1F1F for ; Wed, 4 Dec 2013 13:01:13 +0000 (UTC) Received: by mail-qa0-f44.google.com with SMTP id i13so6578471qae.3 for ; Wed, 04 Dec 2013 05:01:12 -0800 (PST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20120113; h=mime-version:in-reply-to:references:date:message-id:subject:from:to :cc:content-type; bh=rCWcCDwZbMwX1CH/+BsL5RNhV4an2QHKaIK0JNdJz2U=; b=jwnpeJuqKwV99s4y31ZdaqnvHZvdKTI7moDECZKRjyOw1KpbwvxOBm71a4fnIOmvIr n8VSZWjyKut+cHPVP0KpJ1B4oq1UfSHIWDZc6nibW3nBcFw4nOYzQv55yEA+VyWOYzam UwtY2EWghwd2v6YvPNWrXQGwBH4bhhzfZUZE9JBcC2xKMtWVZ3pJGaXK4XAlXeT1ihsO I09tAPtxqxBYH4fyjM4WYKNrJJ37VPRZzs/x+XJhR27d+p+2uUwhjelQqWgmT9y7Sy+g wpqRj2R/xsQJHQ03plvVih+u4tp7rVN0VoPiFJuvXRsYhr2qo9ZeqZNLza2K2DV0PHYk dqlQ== MIME-Version: 1.0 X-Received: by 10.49.42.99 with SMTP id n3mr136033428qel.52.1386162072520; Wed, 04 Dec 2013 05:01:12 -0800 (PST) Received: by 10.140.81.233 with HTTP; Wed, 4 Dec 2013 05:01:12 -0800 (PST) In-Reply-To: References: <201311060508.rA658XmR012155@svn.freebsd.org> <20131106063906.GA1385@medusa.sysfault.org> <20131106070255.GE60770@FreeBSD.org> Date: Wed, 4 Dec 2013 11:01:12 -0200 Message-ID: Subject: Re: python packages struggling with GCC 4.7 From: William Grzybowski To: Gerald Pfeifer Content-Type: text/plain; charset=ISO-8859-1 Cc: python X-BeenThere: freebsd-python@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-Id: FreeBSD-specific Python issues List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 04 Dec 2013 13:01:13 -0000 Hi, The main reason foe the python failures, if not all, is math/p-numpy. It is compiling just fine, but the package is not working: ImportError: /lib/libgcc_s.so.1: version GCC_4.6.0 required by /usr/local/lib/gcc47/libgfortran.so.3 not found Looks like it is linking to /lib/libgcc_s.so.1 and should use /usr/local/lib/gcc47/libgcc_s.so.1, am I right? On Tue, Dec 3, 2013 at 11:34 PM, Gerald Pfeifer wrote: > Hi there, > > in a different context William Grzybowski wrote "If you would like just > assign the port to python@, we would be happy to take more ports". This > is not a new port, but I hope you still can help. :-) > > I'd like to move USE_GCC=yes to imply GCC 4.7 instead of GCC 4.6. > > Generally this works just fine, except for two dozen broken ports > (C++ and C mostly) and a number of Python ports where there seems > to be _one_ underlying cause for all breakage. > > Below you'll find a link into the ports cluster as well as an overview > of broken packages. If you could have a look at those having "py" in > their name (most others are being looked at already) that'd be great. > > Help really appreciated! > > Gerald @FreeBSD.org > > > http://package20.nyi.freebsd.org/bulk/91amd64-default-gccupdate/2013-10-22_01h02m27s/ > >> + {"origin"=>"biology/plink", "pkgname"=>"plink-1.07", "phase"=>"build", "errortype"=>"cluster"} >> + {"origin"=>"biology/py-biopython", "pkgname"=>"py27-biopython-1.60", "phase"=>"build", "errortype"=>"cluster"} >> + {"origin"=>"biology/pycogent", "pkgname"=>"pycogent-1.5.3", "phase"=>"configure", "errortype"=>"cluster"} >> + {"origin"=>"cad/meshlab", "pkgname"=>"meshlab-1.3.2", "phase"=>"build", "errortype"=>"cluster"} >> + {"origin"=>"devel/freeocl", "pkgname"=>"freeocl-0.3.6", "phase"=>"build", "errortype"=>"cluster"} >> + {"origin"=>"devel/kdevplatform", "pkgname"=>"kdevplatform-1.5.1", "phase"=>"build", "errortype"=>"process_failed"} >> + {"origin"=>"devel/love", "pkgname"=>"love-0.8.0_2", "phase"=>"build", "errortype"=>"automake"} >> + {"origin"=>"devel/love07", "pkgname"=>"love07-0.7.2_3", "phase"=>"build", "errortype"=>"linker_error"} >> + {"origin"=>"devel/py-ocempgui", "pkgname"=>"py27-ocempgui-0.2.9_5", "phase"=>"configure", "errortype"=>"cluster"} >> + {"origin"=>"devel/raknet", "pkgname"=>"raknet-3.9.2,1", "phase"=>"build", "errortype"=>"gcc4_error"} >> + {"origin"=>"games/allacrost", "pkgname"=>"allacrost-1.0.2_5", "phase"=>"build", "errortype"=>"gcc4_error"} >> + {"origin"=>"games/battletanks", "pkgname"=>"btanks-0.9.8083_5", "phase"=>"build", "errortype"=>"cluster"} >> + {"origin"=>"games/lugaru", "pkgname"=>"lugaru-269", "phase"=>"build", "errortype"=>"gcc4_error"} >> + {"origin"=>"games/pydance", "pkgname"=>"pydance-1.1.0_2", "phase"=>"configure", "errortype"=>"cluster"} >> + {"origin"=>"graphics/mahotas", "pkgname"=>"py27-mahotas-0.9.6", "phase"=>"configure", "errortype"=>"cluster"} >> + {"origin"=>"graphics/mypaint", "pkgname"=>"mypaint-1.1.0", "phase"=>"build", "errortype"=>"cluster"} >> + {"origin"=>"graphics/pvmpov", "pkgname"=>"pvmpov-3.1g.2_4", "phase"=>"install", "errortype"=>"linker_error"} >> + {"origin"=>"graphics/py-opencv", "pkgname"=>"py27-opencv-2.3.1_7", "phase"=>"install", "errortype"=>"makefile"} >> + {"origin"=>"graphics/pygts", "pkgname"=>"pygts-0.3.1", "phase"=>"configure", "errortype"=>"cluster"} >> + {"origin"=>"java/openjdk6", "pkgname"=>"openjdk6-b28_2", "phase"=>"build", "errortype"=>"coredump"} >> + {"origin"=>"lang/ratfor", "pkgname"=>"ratfor-1985.06_2", "phase"=>"build", "errortype"=>"compiler_error"} >> + {"origin"=>"math/abacus", "pkgname"=>"abacus-3.2.b1", "phase"=>"build", "errortype"=>"gcc4_error"} >> + {"origin"=>"math/biggles", "pkgname"=>"biggles-1.6.6_2", "phase"=>"build", "errortype"=>"missing_header"} >> + {"origin"=>"math/gretl", "pkgname"=>"gretl-1.9.12", "phase"=>"build", "errortype"=>"linker_error"} >> + {"origin"=>"math/octave-forge-fl-core", "pkgname"=>"octave-forge-fl-core-1.0.0_4", "phase"=>"build", "errortype"=>"gcc4_error"} >> + {"origin"=>"math/octave-forge-parallel", "pkgname"=>"octave-forge-parallel-2.0.5_4", "phase"=>"build", "errortype"=>"gcc4_error"} >> + {"origin"=>"math/petsc", "pkgname"=>"petsc-2.3.3.p0_7,1", "phase"=>"configure", "errortype"=>"configure_error"} >> + {"origin"=>"math/py-gnuplot", "pkgname"=>"py27-gnuplot-1.8_4", "phase"=>"configure", "errortype"=>"cluster"} >> + {"origin"=>"math/py-gsl", "pkgname"=>"py27-gsl-0.9.5_2", "phase"=>"configure", "errortype"=>"cluster"} >> + {"origin"=>"math/py-matplotlib", "pkgname"=>"py27-matplotlib-1.2.0_1", "phase"=>"configure", "errortype"=>"cluster"} >> + {"origin"=>"math/py-numexpr", "pkgname"=>"py27-numexpr-2.2.2", "phase"=>"configure", "errortype"=>"cluster"} >> + {"origin"=>"math/py-pandas", "pkgname"=>"py27-pandas-0.12.0", "phase"=>"build", "errortype"=>"cluster"} >> + {"origin"=>"math/py-pymc", "pkgname"=>"py27-pymc-2.0,1", "phase"=>"configure", "errortype"=>"cluster"} >> + {"origin"=>"math/py-symeig", "pkgname"=>"py27-symeig-1.4_2", "phase"=>"configure", "errortype"=>"cluster"} >> + {"origin"=>"math/superlu_mt", "pkgname"=>"superlu_mt-2.0.20080115_3", "phase"=>"build", "errortype"=>"cluster"} >> + {"origin"=>"multimedia/freevo", "pkgname"=>"freevo-1.9.0_7", "phase"=>"install", "errortype"=>"cluster"} >> + {"origin"=>"net/pvm++", "pkgname"=>"pvm++-0.6.0_4", "phase"=>"build", "errortype"=>"linker_error"} >> + {"origin"=>"net/xpvm", "pkgname"=>"xpvm-1.2.5_1", "phase"=>"build", "errortype"=>"linker_error"} >> + {"origin"=>"science/ghemical", "pkgname"=>"ghemical-3.0.0", "phase"=>"build", "errortype"=>"linker_error"} >> + {"origin"=>"science/meep", "pkgname"=>"meep-1.2", "phase"=>"build", "errortype"=>"linker_error"} >> + {"origin"=>"science/py-h5py", "pkgname"=>"py27-h5py-1.2.1_2", "phase"=>"configure", "errortype"=>"cluster"} >> + {"origin"=>"science/py-mlpy", "pkgname"=>"py27-mlpy-2.2.2_2", "phase"=>"configure", "errortype"=>"cluster"} >> + {"origin"=>"science/py-netCDF4", "pkgname"=>"py27-netCDF4-1.0.5", "phase"=>"configure", "errortype"=>"cluster"} >> + {"origin"=>"science/py-scimath", "pkgname"=>"py27-scimath-4.1.2", "phase"=>"configure", "errortype"=>"cluster"} >> + {"origin"=>"science/py-scipy", "pkgname"=>"py27-scipy-0.12.1", "phase"=>"configure", "errortype"=>"cluster"} >> + {"origin"=>"science/pycdf", "pkgname"=>"pycdf-0.6.3", "phase"=>"configure", "errortype"=>"cluster"} >> + {"origin"=>"science/veusz", "pkgname"=>"veusz-1.17.1", "phase"=>"configure", "errortype"=>"cluster"} >> + {"origin"=>"textproc/ctpp2", "pkgname"=>"ctpp2-2.8.3", "phase"=>"build", "errortype"=>"gcc4_error"} >> + {"origin"=>"x11-toolkits/gigi", "pkgname"=>"gigi-0.8.0.1074_1,1", "phase"=>"build", "errortype"=>"cluster"} >> + {"origin"=>"x11/kactivitymanagerd", "pkgname"=>"kactivitymanagerd-4.10.5_2", "phase"=>"build", "errortype"=>"process_failed"} > _______________________________________________ > freebsd-python@freebsd.org mailing list > http://lists.freebsd.org/mailman/listinfo/freebsd-python > To unsubscribe, send any mail to "freebsd-python-unsubscribe@freebsd.org" -- William Grzybowski ------------------------------------------ Curitiba/PR - Brasil From owner-freebsd-python@FreeBSD.ORG Wed Dec 4 13:13:22 2013 Return-Path: Delivered-To: python@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id A109BF18 for ; Wed, 4 Dec 2013 13:13:22 +0000 (UTC) Received: from ainaz.pair.com (ainaz.pair.com [209.68.2.66]) by mx1.freebsd.org (Postfix) with ESMTP id 7BEF21FCF for ; Wed, 4 Dec 2013 13:13:22 +0000 (UTC) Received: from tuna (ip-2-206-0-140.web.vodafone.de [2.206.0.140]) by ainaz.pair.com (Postfix) with ESMTPSA id 55CE73F445; Wed, 4 Dec 2013 08:13:10 -0500 (EST) Date: Wed, 4 Dec 2013 14:13:00 +0100 (CET) From: Gerald Pfeifer To: William Grzybowski Subject: Re: python packages struggling with GCC 4.7 In-Reply-To: Message-ID: References: <201311060508.rA658XmR012155@svn.freebsd.org> <20131106063906.GA1385@medusa.sysfault.org> <20131106070255.GE60770@FreeBSD.org> MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Cc: python@freebsd.org X-BeenThere: freebsd-python@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-Id: FreeBSD-specific Python issues List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 04 Dec 2013 13:13:22 -0000 On Wed, 4 Dec 2013, William Grzybowski wrote: > The main reason foe the python failures, if not all, is math/p-numpy. > It is compiling just fine, but the package is not working: > > ImportError: /lib/libgcc_s.so.1: version GCC_4.6.0 required by > /usr/local/lib/gcc47/libgfortran.so.3 not found > > Looks like it is linking to /lib/libgcc_s.so.1 and should use > /usr/local/lib/gcc47/libgcc_s.so.1, am I right? #1, you rock. #2, you are right. Is it possible that math/p-numpy fails to use LDFLAGS which would have added -Wl,rpath=/usr/local/lib/gcc47/libgcc_s.so.1 when linking? Or is it a question of getting the order of the dynamic library search paths right? Unfortunately I am far from an expert in this area (and having two libraries with the same version, one of which is a superset, is tricky). (Why is this not happening when building with lang/gcc being GCC 4.6 or lang/gcc46, though? That puzzles me. Also, if this were a general issue, wouldn't all ports using Fortran be affected?) Can you somehow fix this in/for math/p-numpy? Gerald From owner-freebsd-python@FreeBSD.ORG Wed Dec 4 13:20:08 2013 Return-Path: Delivered-To: freebsd-python@smarthost.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 83CA314A; Wed, 4 Dec 2013 13:20:08 +0000 (UTC) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:1900:2254:206c::16:87]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 584FB1047; Wed, 4 Dec 2013 13:20:08 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.7/8.14.7) with ESMTP id rB4DK8R0036671; Wed, 4 Dec 2013 13:20:08 GMT (envelope-from edwin@freefall.freebsd.org) Received: (from edwin@localhost) by freefall.freebsd.org (8.14.7/8.14.7/Submit) id rB4DK8iU036670; Wed, 4 Dec 2013 13:20:08 GMT (envelope-from edwin) Date: Wed, 4 Dec 2013 13:20:08 GMT Message-Id: <201312041320.rB4DK8iU036670@freefall.freebsd.org> To: edwin@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, freebsd-python@FreeBSD.org From: edwin@FreeBSD.org Subject: Re: ports/184494: print/py-pollyreports: update to 1.7.6 X-BeenThere: freebsd-python@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-Id: FreeBSD-specific Python issues List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 04 Dec 2013 13:20:08 -0000 Synopsis: print/py-pollyreports: update to 1.7.6 Responsible-Changed-From-To: freebsd-ports-bugs->freebsd-python Responsible-Changed-By: edwin Responsible-Changed-When: Wed Dec 4 13:20:08 UTC 2013 Responsible-Changed-Why: freebsd-python@ wants this port PRs (via the GNATS Auto Assign Tool) http://www.freebsd.org/cgi/query-pr.cgi?pr=184494 From owner-freebsd-python@FreeBSD.ORG Wed Dec 4 14:58:45 2013 Return-Path: Delivered-To: freebsd-python@smarthost.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 8CA06A5A; Wed, 4 Dec 2013 14:58:45 +0000 (UTC) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:1900:2254:206c::16:87]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 608FB16BB; Wed, 4 Dec 2013 14:58:45 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.7/8.14.7) with ESMTP id rB4EwjiQ055992; Wed, 4 Dec 2013 14:58:45 GMT (envelope-from culot@freefall.freebsd.org) Received: (from culot@localhost) by freefall.freebsd.org (8.14.7/8.14.7/Submit) id rB4Ewjgd055991; Wed, 4 Dec 2013 14:58:45 GMT (envelope-from culot) Date: Wed, 4 Dec 2013 14:58:45 GMT Message-Id: <201312041458.rB4Ewjgd055991@freefall.freebsd.org> To: culot@FreeBSD.org, freebsd-python@FreeBSD.org, culot@FreeBSD.org From: culot@FreeBSD.org Subject: Re: ports/184493: databases/py-firebirdsql: update to 0.8.0 X-BeenThere: freebsd-python@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-Id: FreeBSD-specific Python issues List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 04 Dec 2013 14:58:45 -0000 Synopsis: databases/py-firebirdsql: update to 0.8.0 Responsible-Changed-From-To: freebsd-python->culot Responsible-Changed-By: culot Responsible-Changed-When: Wed Dec 4 14:58:45 UTC 2013 Responsible-Changed-Why: I'll take it. http://www.freebsd.org/cgi/query-pr.cgi?pr=184493 From owner-freebsd-python@FreeBSD.ORG Wed Dec 4 14:59:04 2013 Return-Path: Delivered-To: freebsd-python@smarthost.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 0B78BA7E; Wed, 4 Dec 2013 14:59:04 +0000 (UTC) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:1900:2254:206c::16:87]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id D392916C1; Wed, 4 Dec 2013 14:59:03 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.7/8.14.7) with ESMTP id rB4Ex3p3056086; Wed, 4 Dec 2013 14:59:03 GMT (envelope-from culot@freefall.freebsd.org) Received: (from culot@localhost) by freefall.freebsd.org (8.14.7/8.14.7/Submit) id rB4Ex3SG056085; Wed, 4 Dec 2013 14:59:03 GMT (envelope-from culot) Date: Wed, 4 Dec 2013 14:59:03 GMT Message-Id: <201312041459.rB4Ex3SG056085@freefall.freebsd.org> To: culot@FreeBSD.org, freebsd-python@FreeBSD.org, culot@FreeBSD.org From: culot@FreeBSD.org Subject: Re: ports/184494: print/py-pollyreports: update to 1.7.6 X-BeenThere: freebsd-python@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-Id: FreeBSD-specific Python issues List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 04 Dec 2013 14:59:04 -0000 Synopsis: print/py-pollyreports: update to 1.7.6 Responsible-Changed-From-To: freebsd-python->culot Responsible-Changed-By: culot Responsible-Changed-When: Wed Dec 4 14:59:03 UTC 2013 Responsible-Changed-Why: I'll take it. http://www.freebsd.org/cgi/query-pr.cgi?pr=184494 From owner-freebsd-python@FreeBSD.ORG Wed Dec 4 14:59:23 2013 Return-Path: Delivered-To: python@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 90F23AAA for ; Wed, 4 Dec 2013 14:59:23 +0000 (UTC) Received: from mail-qc0-x22b.google.com (mail-qc0-x22b.google.com [IPv6:2607:f8b0:400d:c01::22b]) (using TLSv1 with cipher ECDHE-RSA-RC4-SHA (128/128 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 4B63D16C4 for ; Wed, 4 Dec 2013 14:59:23 +0000 (UTC) Received: by mail-qc0-f171.google.com with SMTP id c9so2217559qcz.16 for ; Wed, 04 Dec 2013 06:59:22 -0800 (PST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20120113; h=mime-version:in-reply-to:references:date:message-id:subject:from:to :cc:content-type; bh=J50/SCD04ADZtz/IZmBOZWczA1gLbuV2ASjz9WgWRYI=; b=xsnT7YNeV5qCMSmBGAo4h2alSWJ4bn+FrGlkO+05kLoAUxacVmysQ7ZStaHTVATY0E jInS8CxfRAscsPe/lwiXv+Qn5gjUJN5bBbpQkwh2rY0UMCpJGgOaNpQk7jq4jxX8ckbx DluHlxOK4P0rc9JDvcBv5ywWC7Tr8PD8wWBOZNajEaDZpoSkHNP2YjTNujD/WTDpA2vi TVXyXH+NO/SiS7itOtVD/uOpekR1oaWfrEaHXvAksakX1hqkGFAyXJLayKL36Cxm5DOw +gzyB3Z2zFxTWnoWtoXY4feQzJvmmaUlYATslZnepF2tdoKtH3Ylg9RgtjVYCYcmyiH5 B9Gw== MIME-Version: 1.0 X-Received: by 10.224.40.195 with SMTP id l3mr137762530qae.44.1386169162521; Wed, 04 Dec 2013 06:59:22 -0800 (PST) Received: by 10.140.81.233 with HTTP; Wed, 4 Dec 2013 06:59:22 -0800 (PST) In-Reply-To: References: <201311060508.rA658XmR012155@svn.freebsd.org> <20131106063906.GA1385@medusa.sysfault.org> <20131106070255.GE60770@FreeBSD.org> Date: Wed, 4 Dec 2013 12:59:22 -0200 Message-ID: Subject: Re: python packages struggling with GCC 4.7 From: William Grzybowski To: Gerald Pfeifer Content-Type: text/plain; charset=ISO-8859-1 X-Content-Filtered-By: Mailman/MimeDel 2.1.17 Cc: python X-BeenThere: freebsd-python@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-Id: FreeBSD-specific Python issues List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 04 Dec 2013 14:59:23 -0000 On Wed, Dec 4, 2013 at 11:13 AM, Gerald Pfeifer wrote: > On Wed, 4 Dec 2013, William Grzybowski wrote: > > The main reason foe the python failures, if not all, is math/p-numpy. > > It is compiling just fine, but the package is not working: > > > > ImportError: /lib/libgcc_s.so.1: version GCC_4.6.0 required by > > /usr/local/lib/gcc47/libgfortran.so.3 not found > > > > Looks like it is linking to /lib/libgcc_s.so.1 and should use > > /usr/local/lib/gcc47/libgcc_s.so.1, am I right? > > #1, you rock. > > #2, you are right. Is it possible that math/p-numpy fails to use LDFLAGS > which would have added -Wl,rpath=/usr/local/lib/gcc47/libgcc_s.so.1 when > linking? > It looks like the build is not respecting FFLAGS, so no -Wl,rpath= for gfortran. As far as it working for gcc46, it looks like it fails to detect gfortran46 as a compiler and uses gcc46, which respects CFLAGS. > > Can you somehow fix this in/for math/p-numpy? > Can you try http://people.freebsd.org/~wg/py-numpy.patch ? -- William Grzybowski ------------------------------------------ Curitiba/PR - Brasil From owner-freebsd-python@FreeBSD.ORG Wed Dec 4 15:30:01 2013 Return-Path: Delivered-To: freebsd-python@smarthost.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 690ED398 for ; Wed, 4 Dec 2013 15:30:01 +0000 (UTC) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:1900:2254:206c::16:87]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 3B61F18AE for ; Wed, 4 Dec 2013 15:30:01 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.7/8.14.7) with ESMTP id rB4FU1Ls063170 for ; Wed, 4 Dec 2013 15:30:01 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.7/8.14.7/Submit) id rB4FU1pi063169; Wed, 4 Dec 2013 15:30:01 GMT (envelope-from gnats) Date: Wed, 4 Dec 2013 15:30:01 GMT Message-Id: <201312041530.rB4FU1pi063169@freefall.freebsd.org> To: freebsd-python@FreeBSD.org Cc: From: Volodymyr Kostyrko Subject: Re: ports/183477: [patch] databases/py-mysql2pgsql dependency fix X-BeenThere: freebsd-python@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list Reply-To: Volodymyr Kostyrko List-Id: FreeBSD-specific Python issues List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 04 Dec 2013 15:30:01 -0000 The following reply was made to PR ports/183477; it has been noted by GNATS. From: Volodymyr Kostyrko To: bug-followup@FreeBSD.org Cc: Subject: Re: ports/183477: [patch] databases/py-mysql2pgsql dependency fix Date: Wed, 04 Dec 2013 17:21:44 +0200 To clarify things - I hadn't said that I will release new version right now but rather added this fix for the future. The patch should be added to the port too so that current version would be fixed. -- Sphinx of black quartz, judge my vow. From owner-freebsd-python@FreeBSD.ORG Wed Dec 4 20:20:11 2013 Return-Path: Delivered-To: freebsd-python@smarthost.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 6020CCC8; Wed, 4 Dec 2013 20:20:11 +0000 (UTC) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:1900:2254:206c::16:87]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 3666E1E7F; Wed, 4 Dec 2013 20:20:11 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.7/8.14.7) with ESMTP id rB4KKBui025947; Wed, 4 Dec 2013 20:20:11 GMT (envelope-from edwin@freefall.freebsd.org) Received: (from edwin@localhost) by freefall.freebsd.org (8.14.7/8.14.7/Submit) id rB4KKBLI025946; Wed, 4 Dec 2013 20:20:11 GMT (envelope-from edwin) Date: Wed, 4 Dec 2013 20:20:11 GMT Message-Id: <201312042020.rB4KKBLI025946@freefall.freebsd.org> To: edwin@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, freebsd-python@FreeBSD.org From: edwin@FreeBSD.org Subject: Re: ports/184501: databases/py-swift: update to 1.10.0 X-BeenThere: freebsd-python@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-Id: FreeBSD-specific Python issues List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 04 Dec 2013 20:20:11 -0000 Synopsis: databases/py-swift: update to 1.10.0 Responsible-Changed-From-To: freebsd-ports-bugs->freebsd-python Responsible-Changed-By: edwin Responsible-Changed-When: Wed Dec 4 20:20:10 UTC 2013 Responsible-Changed-Why: freebsd-python@ wants this port PRs (via the GNATS Auto Assign Tool) http://www.freebsd.org/cgi/query-pr.cgi?pr=184501 From owner-freebsd-python@FreeBSD.ORG Wed Dec 4 20:20:13 2013 Return-Path: Delivered-To: freebsd-python@smarthost.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 1761CCCC; Wed, 4 Dec 2013 20:20:13 +0000 (UTC) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:1900:2254:206c::16:87]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id E1BE11E80; Wed, 4 Dec 2013 20:20:12 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.7/8.14.7) with ESMTP id rB4KKCbo026022; Wed, 4 Dec 2013 20:20:12 GMT (envelope-from edwin@freefall.freebsd.org) Received: (from edwin@localhost) by freefall.freebsd.org (8.14.7/8.14.7/Submit) id rB4KKCPE026021; Wed, 4 Dec 2013 20:20:12 GMT (envelope-from edwin) Date: Wed, 4 Dec 2013 20:20:12 GMT Message-Id: <201312042020.rB4KKCPE026021@freefall.freebsd.org> To: trociny@FreeBSD.org, edwin@FreeBSD.org, freebsd-python@FreeBSD.org From: edwin@FreeBSD.org Subject: Re: ports/184501: databases/py-swift: update to 1.10.0 X-BeenThere: freebsd-python@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-Id: FreeBSD-specific Python issues List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 04 Dec 2013 20:20:13 -0000 Synopsis: databases/py-swift: update to 1.10.0 State-Changed-From-To: open->feedback State-Changed-By: edwin State-Changed-When: Wed Dec 4 20:20:12 UTC 2013 State-Changed-Why: Awaiting maintainers feedback (via the GNATS Auto Assign Tool) http://www.freebsd.org/cgi/query-pr.cgi?pr=184501 From owner-freebsd-python@FreeBSD.ORG Wed Dec 4 20:30:01 2013 Return-Path: Delivered-To: freebsd-python@smarthost.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 62C562D6 for ; Wed, 4 Dec 2013 20:30:01 +0000 (UTC) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:1900:2254:206c::16:87]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 5042A1F21 for ; Wed, 4 Dec 2013 20:30:01 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.7/8.14.7) with ESMTP id rB4KU1w0028043 for ; Wed, 4 Dec 2013 20:30:01 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.7/8.14.7/Submit) id rB4KU1L0028042; Wed, 4 Dec 2013 20:30:01 GMT (envelope-from gnats) Date: Wed, 4 Dec 2013 20:30:01 GMT Message-Id: <201312042030.rB4KU1L0028042@freefall.freebsd.org> To: freebsd-python@FreeBSD.org Cc: From: Edwin Groothuis Subject: Re: ports/184501: databases/py-swift: update to 1.10.0 X-BeenThere: freebsd-python@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list Reply-To: Edwin Groothuis List-Id: FreeBSD-specific Python issues List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 04 Dec 2013 20:30:01 -0000 The following reply was made to PR ports/184501; it has been noted by GNATS. From: Edwin Groothuis To: gslin@gslin.org Cc: bug-followup@FreeBSD.org Subject: Re: ports/184501: databases/py-swift: update to 1.10.0 Date: Wed, 4 Dec 2013 20:20:11 UT Maintainer of databases/py-swift, Please note that PR ports/184501 has just been submitted. If it contains a patch for an upgrade, an enhancement or a bug fix you agree on, reply to this email stating that you approve the patch and a committer will take care of it. The full text of the PR can be found at: http://www.freebsd.org/cgi/query-pr.cgi?pr=ports/184501 -- Edwin Groothuis via the GNATS Auto Assign Tool edwin@FreeBSD.org From owner-freebsd-python@FreeBSD.ORG Thu Dec 5 07:35:52 2013 Return-Path: Delivered-To: freebsd-python@smarthost.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 83066962; Thu, 5 Dec 2013 07:35:52 +0000 (UTC) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:1900:2254:206c::16:87]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 585381452; Thu, 5 Dec 2013 07:35:52 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.7/8.14.7) with ESMTP id rB57ZqD4050903; Thu, 5 Dec 2013 07:35:52 GMT (envelope-from culot@freefall.freebsd.org) Received: (from culot@localhost) by freefall.freebsd.org (8.14.7/8.14.7/Submit) id rB57Zp7b050902; Thu, 5 Dec 2013 07:35:51 GMT (envelope-from culot) Date: Thu, 5 Dec 2013 07:35:51 GMT Message-Id: <201312050735.rB57Zp7b050902@freefall.freebsd.org> To: gslin@gslin.org, culot@FreeBSD.org, freebsd-python@FreeBSD.org, culot@FreeBSD.org From: culot@FreeBSD.org Subject: Re: ports/184501: databases/py-swift: update to 1.10.0 X-BeenThere: freebsd-python@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-Id: FreeBSD-specific Python issues List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 05 Dec 2013 07:35:52 -0000 Synopsis: databases/py-swift: update to 1.10.0 Responsible-Changed-From-To: freebsd-python->culot Responsible-Changed-By: culot Responsible-Changed-When: Thu Dec 5 07:35:51 UTC 2013 Responsible-Changed-Why: I'll take it. http://www.freebsd.org/cgi/query-pr.cgi?pr=184501 From owner-freebsd-python@FreeBSD.ORG Thu Dec 5 07:38:00 2013 Return-Path: Delivered-To: freebsd-python@smarthost.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 9597E9A1; Thu, 5 Dec 2013 07:38:00 +0000 (UTC) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:1900:2254:206c::16:87]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 685F81471; Thu, 5 Dec 2013 07:38:00 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.7/8.14.7) with ESMTP id rB57c0vv052924; Thu, 5 Dec 2013 07:38:00 GMT (envelope-from culot@freefall.freebsd.org) Received: (from culot@localhost) by freefall.freebsd.org (8.14.7/8.14.7/Submit) id rB57c0UT052923; Thu, 5 Dec 2013 07:38:00 GMT (envelope-from culot) Date: Thu, 5 Dec 2013 07:38:00 GMT Message-Id: <201312050738.rB57c0UT052923@freefall.freebsd.org> To: gslin@gslin.org, culot@FreeBSD.org, culot@FreeBSD.org, freebsd-python@FreeBSD.org From: culot@FreeBSD.org Subject: Re: ports/184501: databases/py-swift: update to 1.10.0 X-BeenThere: freebsd-python@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-Id: FreeBSD-specific Python issues List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 05 Dec 2013 07:38:00 -0000 Synopsis: databases/py-swift: update to 1.10.0 Responsible-Changed-From-To: culot->freebsd-python Responsible-Changed-By: culot Responsible-Changed-When: Thu Dec 5 07:38:00 UTC 2013 Responsible-Changed-Why: Oops, wrong PR number http://www.freebsd.org/cgi/query-pr.cgi?pr=184501 From owner-freebsd-python@FreeBSD.ORG Thu Dec 5 09:41:29 2013 Return-Path: Delivered-To: freebsd-python@smarthost.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 58331B05; Thu, 5 Dec 2013 09:41:29 +0000 (UTC) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:1900:2254:206c::16:87]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 2C9351D97; Thu, 5 Dec 2013 09:41:29 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.7/8.14.7) with ESMTP id rB59fTW4083934; Thu, 5 Dec 2013 09:41:29 GMT (envelope-from koobs@freefall.freebsd.org) Received: (from koobs@localhost) by freefall.freebsd.org (8.14.7/8.14.7/Submit) id rB59fT09083933; Thu, 5 Dec 2013 09:41:29 GMT (envelope-from koobs) Date: Thu, 5 Dec 2013 09:41:29 GMT Message-Id: <201312050941.rB59fT09083933@freefall.freebsd.org> To: c.kworr@gmail.com, koobs@FreeBSD.org, freebsd-python@FreeBSD.org, koobs@FreeBSD.org From: koobs@FreeBSD.org Subject: Re: ports/183477: [patch] databases/py-mysql2pgsql dependency fix X-BeenThere: freebsd-python@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-Id: FreeBSD-specific Python issues List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 05 Dec 2013 09:41:29 -0000 Synopsis: [patch] databases/py-mysql2pgsql dependency fix Responsible-Changed-From-To: freebsd-python->koobs Responsible-Changed-By: koobs Responsible-Changed-When: Thu Dec 5 09:41:28 UTC 2013 Responsible-Changed-Why: I'll take it. http://www.freebsd.org/cgi/query-pr.cgi?pr=183477 From owner-freebsd-python@FreeBSD.ORG Thu Dec 5 11:09:51 2013 Return-Path: Delivered-To: python@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id E7FD01DA for ; Thu, 5 Dec 2013 11:09:51 +0000 (UTC) Received: from ainaz.pair.com (ainaz.pair.com [209.68.2.66]) by mx1.freebsd.org (Postfix) with ESMTP id C1CF9128C for ; Thu, 5 Dec 2013 11:09:51 +0000 (UTC) Received: from tuna (ip-109-43-1-52.web.vodafone.de [109.43.1.52]) by ainaz.pair.com (Postfix) with ESMTPSA id 4A4773F426; Thu, 5 Dec 2013 06:09:36 -0500 (EST) Date: Thu, 5 Dec 2013 12:08:54 +0100 (CET) From: Gerald Pfeifer To: William Grzybowski Subject: Re: python packages struggling with GCC 4.7 In-Reply-To: Message-ID: References: <201311060508.rA658XmR012155@svn.freebsd.org> <20131106063906.GA1385@medusa.sysfault.org> <20131106070255.GE60770@FreeBSD.org> MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Cc: python@freebsd.org X-BeenThere: freebsd-python@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-Id: FreeBSD-specific Python issues List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 05 Dec 2013 11:09:52 -0000 On Wed, 4 Dec 2013, William Grzybowski wrote: > It looks like the build is not respecting FFLAGS, so no -Wl,rpath= for > gfortran. As far as it working for gcc46, it looks like it fails to > detect gfortran46 as a compiler and uses gcc46, which respects CFLAGS. That is, hmm, interesting. =:-) Nice analysis. > Can you try http://people.freebsd.org/~wg/py-numpy.patch ? Thanks for the patch! Is there any chance that someone on python@ can give it a try? That would be great since I am traveling right now and hardly can test. Gerald From owner-freebsd-python@FreeBSD.ORG Thu Dec 5 14:43:44 2013 Return-Path: Delivered-To: freebsd-python@smarthost.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 976C8E5A; Thu, 5 Dec 2013 14:43:44 +0000 (UTC) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:1900:2254:206c::16:87]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 6AB231144; Thu, 5 Dec 2013 14:43:44 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.7/8.14.7) with ESMTP id rB5Ehis9049381; Thu, 5 Dec 2013 14:43:44 GMT (envelope-from koobs@freefall.freebsd.org) Received: (from koobs@localhost) by freefall.freebsd.org (8.14.7/8.14.7/Submit) id rB5Ehime049380; Thu, 5 Dec 2013 14:43:44 GMT (envelope-from koobs) Date: Thu, 5 Dec 2013 14:43:44 GMT Message-Id: <201312051443.rB5Ehime049380@freefall.freebsd.org> To: koobs@FreeBSD.org, freebsd-python@FreeBSD.org, koobs@FreeBSD.org From: koobs@FreeBSD.org Subject: Re: ports/149167: lang/python26 fails to build _ctypes on Sheevaplug (ARM) X-BeenThere: freebsd-python@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-Id: FreeBSD-specific Python issues List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 05 Dec 2013 14:43:44 -0000 Synopsis: lang/python26 fails to build _ctypes on Sheevaplug (ARM) Responsible-Changed-From-To: freebsd-python->koobs Responsible-Changed-By: koobs Responsible-Changed-When: Thu Dec 5 14:43:44 UTC 2013 Responsible-Changed-Why: I'll take it. http://www.freebsd.org/cgi/query-pr.cgi?pr=149167 From owner-freebsd-python@FreeBSD.ORG Thu Dec 5 14:54:13 2013 Return-Path: Delivered-To: freebsd-python@smarthost.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 62DED2A1; Thu, 5 Dec 2013 14:54:13 +0000 (UTC) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:1900:2254:206c::16:87]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 3781211E9; Thu, 5 Dec 2013 14:54:13 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.7/8.14.7) with ESMTP id rB5EsDOd051328; Thu, 5 Dec 2013 14:54:13 GMT (envelope-from koobs@freefall.freebsd.org) Received: (from koobs@localhost) by freefall.freebsd.org (8.14.7/8.14.7/Submit) id rB5EsC1o051327; Thu, 5 Dec 2013 14:54:12 GMT (envelope-from koobs) Date: Thu, 5 Dec 2013 14:54:12 GMT Message-Id: <201312051454.rB5EsC1o051327@freefall.freebsd.org> To: gerald@pfeifer.com, koobs@FreeBSD.org, freebsd-python@FreeBSD.org From: koobs@FreeBSD.org Subject: Re: ports/184339: lang/python27 does not allow unsetting NLS (or other options) X-BeenThere: freebsd-python@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-Id: FreeBSD-specific Python issues List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 05 Dec 2013 14:54:13 -0000 Synopsis: lang/python27 does not allow unsetting NLS (or other options) State-Changed-From-To: open->feedback State-Changed-By: koobs State-Changed-When: Thu Dec 5 14:54:12 UTC 2013 State-Changed-Why: Ask for submitter feedback http://www.freebsd.org/cgi/query-pr.cgi?pr=184339 From owner-freebsd-python@FreeBSD.ORG Thu Dec 5 20:04:51 2013 Return-Path: Delivered-To: freebsd-python@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id A27BA432; Thu, 5 Dec 2013 20:04:51 +0000 (UTC) Received: from duck.symmetricom.us (duck.symmetricom.us [206.168.13.214]) by mx1.freebsd.org (Postfix) with ESMTP id 58C03178D; Thu, 5 Dec 2013 20:04:51 +0000 (UTC) Received: from gromit.timing.com (gromit.timing.com [206.168.13.209]) by duck.symmetricom.us (8.14.6/8.14.6) with ESMTP id rB5K4okb079464; Thu, 5 Dec 2013 13:04:50 -0700 (MST) (envelope-from jhein@symmetricom.com) Received: from gromit.timing.com (localhost [127.0.0.1]) by gromit.timing.com (8.14.7/8.14.5) with ESMTP id rB5K4VVt039698; Thu, 5 Dec 2013 13:04:31 -0700 (MST) (envelope-from jhein@gromit.timing.com) Received: (from jhein@localhost) by gromit.timing.com (8.14.7/8.14.7/Submit) id rB5K4UV8039697; Thu, 5 Dec 2013 13:04:30 -0700 (MST) (envelope-from jhein) MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Message-ID: <21152.56398.613937.600936@gromit.timing.com> Date: Thu, 5 Dec 2013 13:04:30 -0700 From: John Hein To: bug-followup@FreeBSD.org Subject: Re: ports/184339: lang/python27 does not allow unsetting NLS (or other options) In-Reply-To: <201312051454.rB5EsC1o051327@freefall.freebsd.org> References: <201312051454.rB5EsC1o051327@freefall.freebsd.org> X-Mailer: VM 8.2.0b-trunk-1484 under 24.3.1 (i386-portbld-freebsd8.3) Cc: gerald@pfeifer.com, koobs@FreeBSD.org, freebsd-python@FreeBSD.org X-BeenThere: freebsd-python@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-Id: FreeBSD-specific Python issues List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 05 Dec 2013 20:04:51 -0000 It's something of a complicated interaction. But the reason you see a difference in lang/python27 vs. say, lang/gcc boils down to having OPTIONS_FILE_SET+=NLS in the saved options file _and_ NLS in OPTIONS_DEFINE. If so, bsd.options.mk overrides the WITHOUT_NLS setting. This could be considered a bug, but maybe it's just somewhat unexpected. koobs' comment is correct but slightly incomplete - WITHOUT_NLS loses to the options file even if set in the port's Makefile or make.conf, not just the command line. And it's not clear that the deprecation (which is not clearly documented that I could find - but I could have missed where it is spelled out) is meant to apply to settings in Makefile / make.conf. I could see this being an issue for a slave port that explicitly sets WITHOUT_XXX to override a master port option setting. Probably the right thing in that case is to use a mechanism to exclude XXX from the master's OPTIONS list when building the slave port. Anyway, it's not obvious to me that the options file should override WITH_*/WITHOUT_* settings or vice versa. It's not apparent that a setting in the options file should override make.conf. Maybe the option file setting should have a choice to "obey any global setting first" for a particular option in addition to just allowing it to be set or unset. Having WITHOUT_* work in some cases but not others consistently seems like a potential source of confusion if the rules are not spelled out clearly. As far as python27, I'm not sure why NLS is in the OPTIONS_DEFINE list instead of just relying on the fact that NLS is a global option. As far as I understand it, NLS could be removed from OPTIONS_DEFINE for python27 (& other pythonXY ports). It has a slightly different NLS_DESC than the default option, but I'm not sure that nuanced distinction is important in this case. Unless there's a good reason I'm missing to have NLS in OPTIONS_DEFINE, I'd vote on removing it from OPTIONS_DEFINE in python* (and EXAMPLES and IPV6, too, I suppose). From owner-freebsd-python@FreeBSD.ORG Thu Dec 5 20:10:01 2013 Return-Path: Delivered-To: freebsd-python@smarthost.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id C42A34CB for ; Thu, 5 Dec 2013 20:10:01 +0000 (UTC) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:1900:2254:206c::16:87]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 9700317B6 for ; Thu, 5 Dec 2013 20:10:01 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.7/8.14.7) with ESMTP id rB5KA1Ac018404 for ; Thu, 5 Dec 2013 20:10:01 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.7/8.14.7/Submit) id rB5KA13c018403; Thu, 5 Dec 2013 20:10:01 GMT (envelope-from gnats) Date: Thu, 5 Dec 2013 20:10:01 GMT Message-Id: <201312052010.rB5KA13c018403@freefall.freebsd.org> To: freebsd-python@FreeBSD.org Cc: From: John Hein Subject: Re: ports/184339: lang/python27 does not allow unsetting NLS (or other options) X-BeenThere: freebsd-python@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list Reply-To: John Hein List-Id: FreeBSD-specific Python issues List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 05 Dec 2013 20:10:01 -0000 The following reply was made to PR ports/184339; it has been noted by GNATS. From: John Hein To: bug-followup@FreeBSD.org Cc: , , Subject: Re: ports/184339: lang/python27 does not allow unsetting NLS (or other options) Date: Thu, 5 Dec 2013 13:04:30 -0700 It's something of a complicated interaction. But the reason you see a difference in lang/python27 vs. say, lang/gcc boils down to having OPTIONS_FILE_SET+=NLS in the saved options file _and_ NLS in OPTIONS_DEFINE. If so, bsd.options.mk overrides the WITHOUT_NLS setting. This could be considered a bug, but maybe it's just somewhat unexpected. koobs' comment is correct but slightly incomplete - WITHOUT_NLS loses to the options file even if set in the port's Makefile or make.conf, not just the command line. And it's not clear that the deprecation (which is not clearly documented that I could find - but I could have missed where it is spelled out) is meant to apply to settings in Makefile / make.conf. I could see this being an issue for a slave port that explicitly sets WITHOUT_XXX to override a master port option setting. Probably the right thing in that case is to use a mechanism to exclude XXX from the master's OPTIONS list when building the slave port. Anyway, it's not obvious to me that the options file should override WITH_*/WITHOUT_* settings or vice versa. It's not apparent that a setting in the options file should override make.conf. Maybe the option file setting should have a choice to "obey any global setting first" for a particular option in addition to just allowing it to be set or unset. Having WITHOUT_* work in some cases but not others consistently seems like a potential source of confusion if the rules are not spelled out clearly. As far as python27, I'm not sure why NLS is in the OPTIONS_DEFINE list instead of just relying on the fact that NLS is a global option. As far as I understand it, NLS could be removed from OPTIONS_DEFINE for python27 (& other pythonXY ports). It has a slightly different NLS_DESC than the default option, but I'm not sure that nuanced distinction is important in this case. Unless there's a good reason I'm missing to have NLS in OPTIONS_DEFINE, I'd vote on removing it from OPTIONS_DEFINE in python* (and EXAMPLES and IPV6, too, I suppose). From owner-freebsd-python@FreeBSD.ORG Thu Dec 5 20:20:09 2013 Return-Path: Delivered-To: freebsd-python@smarthost.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 07D36880; Thu, 5 Dec 2013 20:20:09 +0000 (UTC) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:1900:2254:206c::16:87]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id D0BAC1896; Thu, 5 Dec 2013 20:20:08 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.7/8.14.7) with ESMTP id rB5KK8Su021217; Thu, 5 Dec 2013 20:20:08 GMT (envelope-from edwin@freefall.freebsd.org) Received: (from edwin@localhost) by freefall.freebsd.org (8.14.7/8.14.7/Submit) id rB5KK8DP021216; Thu, 5 Dec 2013 20:20:08 GMT (envelope-from edwin) Date: Thu, 5 Dec 2013 20:20:08 GMT Message-Id: <201312052020.rB5KK8DP021216@freefall.freebsd.org> To: edwin@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, freebsd-python@FreeBSD.org From: edwin@FreeBSD.org Subject: Re: ports/184523: Update devel/py-robotframework to version 2.8.3 X-BeenThere: freebsd-python@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-Id: FreeBSD-specific Python issues List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 05 Dec 2013 20:20:09 -0000 Synopsis: Update devel/py-robotframework to version 2.8.3 Responsible-Changed-From-To: freebsd-ports-bugs->freebsd-python Responsible-Changed-By: edwin Responsible-Changed-When: Thu Dec 5 20:20:08 UTC 2013 Responsible-Changed-Why: freebsd-python@ wants this port PRs (via the GNATS Auto Assign Tool) http://www.freebsd.org/cgi/query-pr.cgi?pr=184523 From owner-freebsd-python@FreeBSD.ORG Thu Dec 5 22:00:01 2013 Return-Path: Delivered-To: freebsd-python@smarthost.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id DBE34CD9 for ; Thu, 5 Dec 2013 22:00:01 +0000 (UTC) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:1900:2254:206c::16:87]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id ADF501F7A for ; Thu, 5 Dec 2013 22:00:01 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.7/8.14.7) with ESMTP id rB5M01KR040694 for ; Thu, 5 Dec 2013 22:00:01 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.7/8.14.7/Submit) id rB5M010Q040693; Thu, 5 Dec 2013 22:00:01 GMT (envelope-from gnats) Date: Thu, 5 Dec 2013 22:00:01 GMT Message-Id: <201312052200.rB5M010Q040693@freefall.freebsd.org> To: freebsd-python@FreeBSD.org Cc: From: "Vladimir Chukharev" Subject: Re: ports/184523: Update devel/py-robotframework to version 2.8.3 X-BeenThere: freebsd-python@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list Reply-To: Vladimir Chukharev List-Id: FreeBSD-specific Python issues List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 05 Dec 2013 22:00:01 -0000 The following reply was made to PR ports/184523; it has been noted by GNATS. From: "Vladimir Chukharev" To: bug-followup@freebsd.org Cc: Subject: Re: ports/184523: Update devel/py-robotframework to version 2.8.3 Date: Thu, 05 Dec 2013 23:43:21 +0200 ------------NgoKVaQZAMzAIxvP3aha3F Content-Type: text/plain; charset=koi8-r; format=flowed; delsp=yes Content-Transfer-Encoding: 8bit Sorry, I forget to update plist. Corrected patch attached. -- Vladimir Chukharev ------------NgoKVaQZAMzAIxvP3aha3F Content-Disposition: attachment; filename=py-robotframework-update_2.8.2_to_2.8.3.patch2.txt Content-Type: text/plain; name=py-robotframework-update_2.8.2_to_2.8.3.patch2.txt Content-Transfer-Encoding: 8bit Index: Makefile =================================================================== --- Makefile (revision 335649) +++ Makefile (working copy) @@ -2,7 +2,7 @@ # $FreeBSD$ PORTNAME= robotframework -PORTVERSION= 2.8.2 +PORTVERSION= 2.8.3 CATEGORIES= devel www python MASTER_SITES= CHEESESHOP PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} @@ -15,4 +15,5 @@ USE_PYTHON= -2.7 USE_PYDISTUTILS=yes +NO_STAGE= yes .include Index: distinfo =================================================================== --- distinfo (revision 335649) +++ distinfo (working copy) @@ -1,2 +1,2 @@ -SHA256 (robotframework-2.8.2.tar.gz) = da1cb3318a349a7c359a4f0c78d75c87561791f12235dc48551400bee2bf6c5f -SIZE (robotframework-2.8.2.tar.gz) = 568721 +SHA256 (robotframework-2.8.3.tar.gz) = bb8ca9bad5152a3ac19e4dfc6e097324b31a4a8879d66c268e61d3eb577fd2f4 +SIZE (robotframework-2.8.3.tar.gz) = 570523 Index: pkg-plist =================================================================== --- pkg-plist (revision 335649) +++ pkg-plist (working copy) @@ -525,6 +525,9 @@ %%PYTHON_SITELIBDIR%%/robot/utils/importer.py %%PYTHON_SITELIBDIR%%/robot/utils/importer.pyc %%PYTHON_SITELIBDIR%%/robot/utils/importer.pyo +%%PYTHON_SITELIBDIR%%/robot/utils/islike.py +%%PYTHON_SITELIBDIR%%/robot/utils/islike.pyc +%%PYTHON_SITELIBDIR%%/robot/utils/islike.pyo %%PYTHON_SITELIBDIR%%/robot/utils/markuputils.py %%PYTHON_SITELIBDIR%%/robot/utils/markuputils.pyc %%PYTHON_SITELIBDIR%%/robot/utils/markuputils.pyo ------------NgoKVaQZAMzAIxvP3aha3F-- From owner-freebsd-python@FreeBSD.ORG Fri Dec 6 12:32:05 2013 Return-Path: Delivered-To: freebsd-python@smarthost.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 679FAFB6; Fri, 6 Dec 2013 12:32:05 +0000 (UTC) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:1900:2254:206c::16:87]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 3CC1D1809; Fri, 6 Dec 2013 12:32:05 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.7/8.14.7) with ESMTP id rB6CW5G9051207; Fri, 6 Dec 2013 12:32:05 GMT (envelope-from wg@freefall.freebsd.org) Received: (from wg@localhost) by freefall.freebsd.org (8.14.7/8.14.7/Submit) id rB6CW5pO051206; Fri, 6 Dec 2013 12:32:05 GMT (envelope-from wg) Date: Fri, 6 Dec 2013 12:32:05 GMT Message-Id: <201312061232.rB6CW5pO051206@freefall.freebsd.org> To: wg@FreeBSD.org, freebsd-python@FreeBSD.org, wg@FreeBSD.org From: wg@FreeBSD.org Subject: Re: ports/184523: Update devel/py-robotframework to version 2.8.3 X-BeenThere: freebsd-python@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-Id: FreeBSD-specific Python issues List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 06 Dec 2013 12:32:05 -0000 Synopsis: Update devel/py-robotframework to version 2.8.3 Responsible-Changed-From-To: freebsd-python->wg Responsible-Changed-By: wg Responsible-Changed-When: Fri Dec 6 12:32:04 UTC 2013 Responsible-Changed-Why: I'll take it. http://www.freebsd.org/cgi/query-pr.cgi?pr=184523 From owner-freebsd-python@FreeBSD.ORG Fri Dec 6 17:06:42 2013 Return-Path: Delivered-To: python@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 7BE069ED for ; Fri, 6 Dec 2013 17:06:42 +0000 (UTC) Received: from mail-pd0-x230.google.com (mail-pd0-x230.google.com [IPv6:2607:f8b0:400e:c02::230]) (using TLSv1 with cipher ECDHE-RSA-RC4-SHA (128/128 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 50D6F1F46 for ; Fri, 6 Dec 2013 17:06:42 +0000 (UTC) Received: by mail-pd0-f176.google.com with SMTP id w10so1328579pde.7 for ; Fri, 06 Dec 2013 09:06:41 -0800 (PST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20120113; h=mime-version:in-reply-to:references:date:message-id:subject:from:to :content-type; bh=NuU06mLAiHxoSbFGzMWdaj6yNay1RfF6nvIKWT+U6eE=; b=Xvjhty+5oeORu2CewNtypswVt9Q4/cE0IVtlF6/DX/LA1jwWCYkCgOnqCf7qpym2oC OZ6B1IjYbXdS1bLvD5GR+rFd79/fx+FEnPL8GfBoOZZVvBNdSJprvv1gwJi8eFFX7kGG ZHTxcXujQbqWgRkeIAfoQB5sABJjEKsSGjUYrrjfUf0VgeW8r1VgxSF3DDUS0jJPK28D w/OzQJPcbe0Rz97SNgu0Pbc2vTLi2xmsYex9WqovmsACweNRtWTC3ltlU7+WQ2M4LF3V IUbeslj68w1euKfTJGON8601gnUz6DwMceWECYyhKxIb7D2plWGkCA2voIr645lhJ9as f6BQ== MIME-Version: 1.0 X-Received: by 10.66.121.201 with SMTP id lm9mr5356700pab.80.1386349601737; Fri, 06 Dec 2013 09:06:41 -0800 (PST) Received: by 10.70.92.137 with HTTP; Fri, 6 Dec 2013 09:06:41 -0800 (PST) Received: by 10.70.92.137 with HTTP; Fri, 6 Dec 2013 09:06:41 -0800 (PST) In-Reply-To: <201312061705.rB6H53ZS020671@beefy1.isc.freebsd.org> References: <201312061705.rB6H53ZS020671@beefy1.isc.freebsd.org> Date: Fri, 6 Dec 2013 21:06:41 +0400 Message-ID: Subject: Fwd: [REL - head-i386-default][games/py-fife] Failed for fife-0.3.4 in build From: Green Dog To: python@freebsd.org Content-Type: text/plain; charset=KOI8-R Content-Transfer-Encoding: quoted-printable X-Content-Filtered-By: Mailman/MimeDel 2.1.17 X-BeenThere: freebsd-python@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-Id: FreeBSD-specific Python issues List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 06 Dec 2013 17:06:42 -0000 ---------- =F0=C5=D2=C5=C1=C4=D2=C5=D3=CF=D7=C1=CE=CE=CF=C5 =D3=CF=CF=C2=DD= =C5=CE=C9=C5 ---------- =EF=D4: =E4=C1=D4=C1: 06.12.2013 21:05 =F4=C5=CD=C1: [REL - head-i386-default][games/py-fife] Failed for fife-0.3.= 4 in build =EB=CF=CD=D5: =EB=CF=D0=C9=D1: 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: fiziologus@gmail.com Last committer: bapt@FreeBSD.org Ident: $FreeBSD: head/games/py-fife/Makefile 327730 2013-09-20 17:36:33Z bapt $ Log URL: http://beefy1.isc.freebsd.org/bulk/head-i386-default/2013-12-06_09h31m06s/l= ogs/fife-0.3.4.log Build URL: http://beefy1.isc.freebsd.org/bulk/head-i386-default/2013-12-06_09h31m06s Log: =3D=3D=3D=3D>> Building games/py-fife build started at Fri Dec 6 16:59:15 UTC 2013 port directory: /usr/ports/games/py-fife building for: FreeBSD head-i386-default-job-05 11.0-CURRENT FreeBSD 11.0-CURRENT r256430 i386 maintained by: fiziologus@gmail.com Makefile ident: $FreeBSD: head/games/py-fife/Makefile 327730 2013-09-20 17:36:33Z bapt $ Poudriere version: 3.1-pre ---Begin Environment--- UNAME_m=3Di386 UNAME_p=3Di386 OSVERSION=3D1100000 UNAME_v=3DFreeBSD 11.0-CURRENT r256430 UNAME_r=3D11.0-CURRENT BLOCKSIZE=3DK MAIL=3D/var/mail/root PATH=3D/sbin:/bin:/usr/sbin:/usr/bin:/usr/games:/usr/local/sbin:/usr/local/= bin:/root/bin STATUS=3D1 MASTERMNT=3D/usr/local/poudriere/data/build/head-i386-default/ref PKG_EXT=3Dtxz tpid=3D59491 POUDRIERE_BUILD_TYPE=3Dbulk PKGNG=3D1 PKGNAME=3Dfife-0.3.4 PKG_DELETE=3D/usr/local/sbin/pkg-static delete -y -f PKG_ADD=3D/usr/local/sbin/pkg-static add PWD=3D/root MASTERNAME=3Dhead-i386-default USER=3Droot HOME=3D/root POUDRIERE_VERSION=3D3.1-pre LOCALBASE=3D/usr/local PACKAGE_BUILDING=3Dyes PKG_VERSION=3D/poudriere/pkg-static version PKG_BIN=3D/usr/local/sbin/pkg-static ---End Environment--- ---Begin OPTIONS List--- ---End OPTIONS List--- --CONFIGURE_ARGS-- --End CONFIGURE_ARGS-- --CONFIGURE_ENV-- TMPDIR=3D"/tmp" PYTHON=3D"/usr/local/bin/python2.7" SDL_CONFIG=3D/usr/local/bin/sdl-config PKG_CONFIG=3Dpkgconf SHELL=3D/bin/sh CONFIG_SHELL=3D/bin/sh --End CONFIGURE_ENV-- --MAKE_ENV-- TMPDIR=3D"/tmp" SDL_CONFIG=3D/usr/local/bin/sdl-config SHELL=3D/bin/sh NO_LINT=3DYES PREFIX=3D/usr/local LOCALBASE=3D/usr/local LIBDIR=3D"/usr/l= ib" CC=3D"cc" CFLAGS=3D"-O2 -pipe -fno-strict-aliasing" CPP=3D"cpp" CPPFLAGS= =3D"" LDFLAGS=3D"" CXX=3D"c++" CXXFLAGS=3D"-O2 -pipe -fno-strict-aliasing" MANPREFIX=3D"/usr/local" BSD_INSTALL_PROGRAM=3D"install -s -o root -g whe= el -m 555" BSD_INSTALL_LIB=3D"install -s -o root -g wheel -m 444" BSD_INSTALL_SCRIPT=3D"install -o root -g wheel -m 555" BSD_INSTALL_DATA=3D"install -o root -g wheel -m 444" BSD_INSTALL_MAN=3D"install -o root -g wheel -m 444" --End MAKE_ENV-- --SUB_LIST-- PREFIX=3D/usr/local LOCALBASE=3D/usr/local DATADIR=3D/usr/local/share/fife DOCSDIR=3D/usr/local/share/doc/fife EXAMPLESDIR=3D/usr/local/share/examples/fife WWWDIR=3D/usr/local/www/fife ETCDIR=3D/usr/local/etc/fife --End SUB_LIST-- ---Begin make.conf--- ARCH=3Di386 MACHINE=3Di386 MACHINE_ARCH=3Di386 USE_PACKAGE_DEPENDS=3Dyes BATCH=3Dyes WRKDIRPREFIX=3D/wrkdirs PORTSDIR=3D/usr/ports PACKAGES=3D/packages DISTDIR=3D/distfiles #### /usr/local/etc/poudriere.d/make.conf #### WITH_PKGNG=3Dyes NO_RESTRICTED=3Dyes DISABLE_MAKE_JOBS=3Dpoudriere ---End make.conf--- =3D=3D=3D> Cleaning for fife-0.3.4 =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D =3D=3D=3D> fife-0.3.4 depends on file: /usr/local/sbin/pkg - not found =3D=3D=3D> Verifying install for /usr/local/sbin/pkg in /usr/ports/ports-mgmt/pkg =3D=3D=3D> Installing existing package /packages/All/pkg-1.2.1.txz Installing pkg-1.2.1... done If you are upgrading from the old package format, first run: # pkg2ng =3D=3D=3D> Returning to build of fife-0.3.4 =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D =3D=3D=3D> Fetching all distfiles required by fife-0.3.4 for building =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D =3D=3D=3D> Fetching all distfiles required by fife-0.3.4 for building =3D> SHA256 Checksum OK for fife_0.3.4.tar.gz. =3D> SHA256 Checksum OK for fife_0.3.4_demos.tar.gz. =3D> SHA256 Checksum OK for fife_0.3.4_tools.tar.gz. =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D =3D=3D=3D> Fetching all distfiles required by fife-0.3.4 for building =3D=3D=3D> Extracting for fife-0.3.4 =3D> SHA256 Checksum OK for fife_0.3.4.tar.gz. =3D> SHA256 Checksum OK for fife_0.3.4_demos.tar.gz. =3D> SHA256 Checksum OK for fife_0.3.4_tools.tar.gz. =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D =3D=3D=3D> Patching for fife-0.3.4 /usr/bin/sed -i.bak -e 's/X11R6/local/g; s/libpng/ligpng15/g' /wrkdirs/usr/ports/games/py-fife/work/fife_0.3.4/build/openbsd4-config.py && /bin/mv /wrkdirs/usr/ports/games/py-fife/work/fife_0.3.4/build/openbsd4-config.py /wrkdirs/usr/ports/games/py-fife/work/fife_0.3.4/build/freebsd11-config.py =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D =3D=3D=3D> fife-0.3.4 depends on file: /usr/local/bin/swig - not found =3D=3D=3D> Verifying install for /usr/local/bin/swig in /usr/ports/devel= /swig13 =3D=3D=3D> Installing existing package /packages/All/swig13-1.3.40.txz Installing swig13-1.3.40... done =3D=3D=3D> Returning to build of fife-0.3.4 =3D=3D=3D> fife-0.3.4 depends on file: /usr/local/bin/python2.7 - not fou= nd =3D=3D=3D> Verifying install for /usr/local/bin/python2.7 in /usr/ports/lang/python27 =3D=3D=3D> Installing existing package /packages/All/python27-2.7.6.txz Installing python27-2.7.6...Installing gettext-0.18.3.1... done done =3D=3D=3D=3D Note that some of the standard modules are provided as separate ports since they require extra dependencies: bsddb databases/py-bsddb gdbm databases/py-gdbm sqlite3 databases/py-sqlite3 tkinter x11-toolkits/py-tkinter Install them as needed. =3D=3D=3D=3D =3D=3D=3D> Returning to build of fife-0.3.4 =3D=3D=3D> fife-0.3.4 depends on executable: python - not found =3D=3D=3D> Verifying install for python in /usr/ports/lang/python =3D=3D=3D> Installing existing package /packages/All/python-2.7_1,2.txz Installing python-2.7_1,2...Installing python2-2_1... done done =3D=3D=3D> Returning to build of fife-0.3.4 =3D=3D=3D> fife-0.3.4 depends on file: /usr/local/bin/sdl-config - not fo= und =3D=3D=3D> Verifying install for /usr/local/bin/sdl-config in /usr/ports/devel/sdl12 =3D=3D=3D> Installing existing package /packages/All/sdl-1.2.15_2,2.txz Installing sdl-1.2.15_2,2...Installing xproto-7.0.24... done Installing xf86vidmodeproto-2.3.1... done Installing xextproto-7.2.1... done Installing renderproto-0.11.1... done Installing randrproto-1.4.0... done Installing libxcb-1.9.1_1...Installing libXau-1.0.8... done Installing libXdmcp-1.1.1... done Installing libpthread-stubs-0.3_4... done Installing libxml2-2.8.0_3... done done Installing libXxf86vm-1.1.3...Installing libXext-1.3.2,1...Installing libX11-1.6.2,1...Installing kbproto-1.0.6... done done done done Installing libXrender-0.9.8... done Installing libXrandr-1.4.2... done Installing libXfixes-5.0.1...Installing fixesproto-5.0... done done Installing libXdamage-1.1.4...Installing damageproto-1.2.1... done done Installing dri2proto-2.8... done Installing expat-2.1.0... done Installing pciids-20131130... done Installing libdrm-2.4.17_1...Installing libpciaccess-0.13.2... done done Installing libGLU-9.0.0...Installing libGL-7.6.1_4... done done Installing aalib-1.4.r5_6... done done ---------------------------------------------------------------------------= --- Your SDL library has been built with libvgl support, which means that you can run almost any SDL application straight on your console (VESA 2.0 compatible videocard is required). To do this you have to load the vesa kernel module or enable it in your kernel, and set environment variable "SDL_VIDEODRIVER=3Dvgl". ---------------------------------------------------------------------------= --- =3D=3D=3D> Returning to build of fife-0.3.4 =3D=3D=3D> fife-0.3.4 depends on executable: pkgconf - not found =3D=3D=3D> Verifying install for pkgconf in /usr/ports/devel/pkgconf =3D=3D=3D> Installing existing package /packages/All/pkgconf-0.9.3.txz Installing pkgconf-0.9.3... done =3D=3D=3D> Returning to build of fife-0.3.4 =3D=3D=3D> fife-0.3.4 depends on file: /usr/local/libdata/pkgconfig/glpro= to.pc - not found =3D=3D=3D> Verifying install for /usr/local/libdata/pkgconfig/glproto.pc= in /usr/ports/x11/glproto =3D=3D=3D> Installing existing package /packages/All/glproto-1.4.16.txz Installing glproto-1.4.16... done =3D=3D=3D> Returning to build of fife-0.3.4 =3D=3D=3D> fife-0.3.4 depends on file: /usr/local/libdata/pkgconfig/dri2proto.pc - found =3D=3D=3D> fife-0.3.4 depends on file: /usr/local/libdata/pkgconfig/xcurs= or.pc - not found =3D=3D=3D> Verifying install for /usr/local/libdata/pkgconfig/xcursor.pc= in /usr/ports/x11/libXcursor (arg1)->insert(arg2,arg3,(std::vector< unsigned int >::value_type const &)*arg4); ~~~~~~~~^~~~~~ /usr/include/c++/v1/vector:703:14: note: candidate function not viable: no known conversion from 'SwigValueWrapper::iterator>' to 'const_iterator' (aka '__wrap_iter') for 1st argument iterator insert(const_iterator __position, size_type __n, const_reference __x); ^ /usr/include/c++/v1/vector:714:9: note: candidate template ignored: substitution failure [with _InputIterator =3D unsigned int]: no type named 'reference' in 'std::__1::iterator_traits' insert(const_iterator __position, _InputIterator __first, _InputIterator __last); ^ /usr/include/c++/v1/vector:724:9: note: candidate template ignored: substitution failure [with _ForwardIterator =3D unsigned int]: no type name= d 'reference' in 'std::__1::iterator_traits' insert(const_iterator __position, _ForwardIterator __first, _ForwardIterator __last); ^ /usr/include/c++/v1/vector:695:14: note: candidate function not viable: requires 2 arguments, but 3 were provided iterator insert(const_iterator __position, const_reference __x); ^ build/engine/release/swigwrappers/python/fife_wrap.cc:15778:20: error: no matching member function for call to 'erase' result =3D (arg1)->erase(arg2); ~~~~~~~~^~~~~ /usr/include/c++/v1/vector:731:40: note: candidate function not viable: no known conversion from 'SwigValueWrapper::iterator>' to 'const_iterator' (aka '__wrap_iter') for 1st argument _LIBCPP_INLINE_VISIBILITY iterator erase(const_iterator __position); ^ /usr/include/c++/v1/vector:732:14: note: candidate function not viable: requires 2 arguments, but 1 was provided iterator erase(const_iterator __first, const_iterator __last); ^ build/engine/release/swigwrappers/python/fife_wrap.cc:15831:20: error: no matching member function for call to 'erase' result =3D (arg1)->erase(arg2,arg3); ~~~~~~~~^~~~~ /usr/include/c++/v1/vector:732:14: note: candidate function not viable: no known conversion from 'SwigValueWrapper::iterator>' to 'const_iterator' (aka '__wrap_iter') for 1st argument iterator erase(const_iterator __first, const_iterator __last); ^ /usr/include/c++/v1/vector:731:40: note: candidate function not viable: requires single argument '__position', but 2 arguments were provided _LIBCPP_INLINE_VISIBILITY iterator erase(const_iterator __position); ^ build/engine/release/swigwrappers/python/fife_wrap.cc:16235:20: error: no matching member function for call to 'insert' result =3D (arg1)->insert(arg2,(std::vector< int >::value_type const &)*arg3); ~~~~~~~~^~~~~~ /usr/include/c++/v1/vector:695:14: note: candidate function not viable: no known conversion from 'SwigValueWrapper::iterator>' to 'const_iterator' (aka '__wrap_iter') for 1st argument iterator insert(const_iterator __position, const_reference __x); ^ /usr/include/c++/v1/vector:714:9: note: candidate function template not viable: requires 3 arguments, but 2 were provided insert(const_iterator __position, _InputIterator __first, _InputIterator __last); ^ /usr/include/c++/v1/vector:724:9: note: candidate function template not viable: requires 3 arguments, but 2 were provided insert(const_iterator __position, _ForwardIterator __first, _ForwardIterator __last); ^ /usr/include/c++/v1/vector:703:14: note: candidate function not viable: requires 3 arguments, but 2 were provided iterator insert(const_iterator __position, size_type __n, const_reference __x); ^ build/engine/release/swigwrappers/python/fife_wrap.cc:16292:11: error: no matching member function for call to 'insert' (arg1)->insert(arg2,arg3,(std::vector< int >::value_type const &)*arg4); ~~~~~~~~^~~~~~ /usr/include/c++/v1/vector:703:14: note: candidate function not viable: no known conversion from 'SwigValueWrapper::iterator>' to 'const_iterator' (aka '__wrap_iter') for 1st argument iterator insert(const_iterator __position, size_type __n, const_reference __x); ^ /usr/include/c++/v1/vector:714:9: note: candidate template ignored: deduced conflicting types for parameter '_InputIterator' ('unsigned int' vs. 'int') insert(const_iterator __position, _InputIterator __first, _InputIterator __last); ^ /usr/include/c++/v1/vector:724:9: note: candidate template ignored: deduced conflicting types for parameter '_ForwardIterator' ('unsigned int' vs. 'int') insert(const_iterator __position, _ForwardIterator __first, _ForwardIterator __last); ^ /usr/include/c++/v1/vector:695:14: note: candidate function not viable: requires 2 arguments, but 3 were provided iterator insert(const_iterator __position, const_reference __x); ^ build/engine/release/swigwrappers/python/fife_wrap.cc:22914:20: error: no matching member function for call to 'erase' result =3D (arg1)->erase(arg2); ~~~~~~~~^~~~~ /usr/include/c++/v1/vector:731:40: note: candidate function not viable: no known conversion from 'SwigValueWrapper >::iterator>' to 'const_iterator' (aka '__wrap_iter') for 1st argument _LIBCPP_INLINE_VISIBILITY iterator erase(const_iterator __position); ^ /usr/include/c++/v1/vector:732:14: note: candidate function not viable: requires 2 arguments, but 1 was provided iterator erase(const_iterator __first, const_iterator __last); ^ build/engine/release/swigwrappers/python/fife_wrap.cc:22967:20: error: no matching member function for call to 'erase' result =3D (arg1)->erase(arg2,arg3); ~~~~~~~~^~~~~ /usr/include/c++/v1/vector:732:14: note: candidate function not viable: no known conversion from 'SwigValueWrapper >::iterator>' to 'const_iterator' (aka '__wrap_iter') for 1st argument iterator erase(const_iterator __first, const_iterator __last); ^ /usr/include/c++/v1/vector:731:40: note: candidate function not viable: requires single argument '__position', but 2 arguments were provided _LIBCPP_INLINE_VISIBILITY iterator erase(const_iterator __position); ^ build/engine/release/swigwrappers/python/fife_wrap.cc:23390:20: error: no matching member function for call to 'insert' result =3D (arg1)->insert(arg2,(std::vector< std::pair< unsigned short,unsigned short > >::value_type const &)*arg3); ~~~~~~~~^~~~~~ /usr/include/c++/v1/vector:695:14: note: candidate function not viable: no known conversion from 'SwigValueWrapper >::iterator>' to 'const_iterator' (aka '__wrap_iter') for 1st argument iterator insert(const_iterator __position, const_reference __x); ^ /usr/include/c++/v1/vector:714:9: note: candidate function template not viable: requires 3 arguments, but 2 were provided insert(const_iterator __position, _InputIterator __first, _InputIterator __last); ^ /usr/include/c++/v1/vector:724:9: note: candidate function template not viable: requires 3 arguments, but 2 were provided insert(const_iterator __position, _ForwardIterator __first, _ForwardIterator __last); ^ /usr/include/c++/v1/vector:703:14: note: candidate function not viable: requires 3 arguments, but 2 were provided iterator insert(const_iterator __position, size_type __n, const_reference __x); ^ build/engine/release/swigwrappers/python/fife_wrap.cc:23452:11: error: no matching member function for call to 'insert' (arg1)->insert(arg2,arg3,(std::vector< std::pair< unsigned short,unsigned short > >::value_type const &)*arg4); ~~~~~~~~^~~~~~ /usr/include/c++/v1/vector:703:14: note: candidate function not viable: no known conversion from 'SwigValueWrapper >::iterator>' to 'const_iterator' (aka '__wrap_iter') for 1st argument iterator insert(const_iterator __position, size_type __n, const_reference __x); ^ /usr/include/c++/v1/vector:714:9: note: candidate template ignored: deduced conflicting types for parameter '_InputIterator' ('unsigned int' vs. 'std::__1::pair') insert(const_iterator __position, _InputIterator __first, _InputIterator __last); ^ /usr/include/c++/v1/vector:724:9: note: candidate template ignored: deduced conflicting types for parameter '_ForwardIterator' ('unsigned int' vs. 'std::__1::pair') insert(const_iterator __position, _ForwardIterator __first, _ForwardIterator __last); ^ /usr/include/c++/v1/vector:695:14: note: candidate function not viable: requires 2 arguments, but 3 were provided iterator insert(const_iterator __position, const_reference __x); ^ build/engine/release/swigwrappers/python/fife_wrap.cc:75695:24: error: no matching member function for call to 'erase' result =3D (arg1)->erase(arg2); ~~~~~~~~^~~~~ /usr/include/c++/v1/vector:731:40: note: candidate function not viable: no known conversion from 'SwigValueWrapper >::iterator>' to 'const_iterator' (aka '__wrap_iter') for 1st argument _LIBCPP_INLINE_VISIBILITY iterator erase(const_iterator __position); ^ /usr/include/c++/v1/vector:732:14: note: candidate function not viable: requires 2 arguments, but 1 was provided iterator erase(const_iterator __first, const_iterator __last); ^ build/engine/release/swigwrappers/python/fife_wrap.cc:75755:24: error: no matching member function for call to 'erase' result =3D (arg1)->erase(arg2,arg3); ~~~~~~~~^~~~~ /usr/include/c++/v1/vector:732:14: note: candidate function not viable: no known conversion from 'SwigValueWrapper >::iterator>' to 'const_iterator' (aka '__wrap_iter') for 1st argument iterator erase(const_iterator __first, const_iterator __last); ^ /usr/include/c++/v1/vector:731:40: note: candidate function not viable: requires single argument '__position', but 2 arguments were provided _LIBCPP_INLINE_VISIBILITY iterator erase(const_iterator __position); ^ build/engine/release/swigwrappers/python/fife_wrap.cc:76209:24: error: no matching member function for call to 'insert' result =3D (arg1)->insert(arg2,(std::vector< FIFE::PointType3D< int > >::value_type const &)*arg3); ~~~~~~~~^~~~~~ /usr/include/c++/v1/vector:695:14: note: candidate function not viable: no known conversion from 'SwigValueWrapper >::iterator>' to 'const_iterator' (aka '__wrap_iter') for 1st argument iterator insert(const_iterator __position, const_reference __x); ^ /usr/include/c++/v1/vector:714:9: note: candidate function template not viable: requires 3 arguments, but 2 were provided insert(const_iterator __position, _InputIterator __first, _InputIterator __last); ^ /usr/include/c++/v1/vector:724:9: note: candidate function template not viable: requires 3 arguments, but 2 were provided insert(const_iterator __position, _ForwardIterator __first, _ForwardIterator __last); ^ /usr/include/c++/v1/vector:703:14: note: candidate function not viable: requires 3 arguments, but 2 were provided iterator insert(const_iterator __position, size_type __n, const_reference __x); ^ build/engine/release/swigwrappers/python/fife_wrap.cc:76274:15: error: no matching member function for call to 'insert' (arg1)->insert(arg2,arg3,(std::vector< FIFE::PointType3D< int > >::value_type const &)*arg4); ~~~~~~~~^~~~~~ /usr/include/c++/v1/vector:703:14: note: candidate function not viable: no known conversion from 'SwigValueWrapper >::iterator>' to 'const_iterator' (aka '__wrap_iter') for 1st argument iterator insert(const_iterator __position, size_type __n, const_reference __x); ^ /usr/include/c++/v1/vector:714:9: note: candidate template ignored: deduced conflicting types for parameter '_InputIterator' ('unsigned int' vs. 'FIFE::PointType3D') insert(const_iterator __position, _InputIterator __first, _InputIterator __last); ^ /usr/include/c++/v1/vector:724:9: note: candidate template ignored: deduced conflicting types for parameter '_ForwardIterator' ('unsigned int' vs. 'FIFE::PointType3D') insert(const_iterator __position, _ForwardIterator __first, _ForwardIterator __last); ^ /usr/include/c++/v1/vector:695:14: note: candidate function not viable: requires 2 arguments, but 3 were provided iterator insert(const_iterator __position, const_reference __x); ^ build/engine/release/swigwrappers/python/fife_wrap.cc:77701:24: error: no matching member function for call to 'erase' result =3D (arg1)->erase(arg2); ~~~~~~~~^~~~~ /usr/include/c++/v1/vector:731:40: note: candidate function not viable: no known conversion from 'SwigValueWrapper >::iterator>' to 'const_iterator' (aka '__wrap_iter') for 1st argument _LIBCPP_INLINE_VISIBILITY iterator erase(const_iterator __position); ^ /usr/include/c++/v1/vector:732:14: note: candidate function not viable: requires 2 arguments, but 1 was provided iterator erase(const_iterator __first, const_iterator __last); ^ build/engine/release/swigwrappers/python/fife_wrap.cc:77761:24: error: no matching member function for call to 'erase' result =3D (arg1)->erase(arg2,arg3); ~~~~~~~~^~~~~ /usr/include/c++/v1/vector:732:14: note: candidate function not viable: no known conversion from 'SwigValueWrapper >::iterator>' to 'const_iterator' (aka '__wrap_iter') for 1st argument iterator erase(const_iterator __first, const_iterator __last); ^ /usr/include/c++/v1/vector:731:40: note: candidate function not viable: requires single argument '__position', but 2 arguments were provided _LIBCPP_INLINE_VISIBILITY iterator erase(const_iterator __position); ^ build/engine/release/swigwrappers/python/fife_wrap.cc:78215:24: error: no matching member function for call to 'insert' result =3D (arg1)->insert(arg2,(std::vector< FIFE::PointType3D< doubl= e > >::value_type const &)*arg3); ~~~~~~~~^~~~~~ /usr/include/c++/v1/vector:695:14: note: candidate function not viable: no known conversion from 'SwigValueWrapper >::iterator>' to 'const_iterator' (aka '__wrap_iter') for 1st argument iterator insert(const_iterator __position, const_reference __x); ^ /usr/include/c++/v1/vector:714:9: note: candidate function template not viable: requires 3 arguments, but 2 were provided insert(const_iterator __position, _InputIterator __first, _InputIterator __last); ^ /usr/include/c++/v1/vector:724:9: note: candidate function template not viable: requires 3 arguments, but 2 were provided insert(const_iterator __position, _ForwardIterator __first, _ForwardIterator __last); ^ /usr/include/c++/v1/vector:703:14: note: candidate function not viable: requires 3 arguments, but 2 were provided iterator insert(const_iterator __position, size_type __n, const_reference __x); ^ fatal error: too many errors emitted, stopping now [-ferror-limit=3D] 3 warnings and 20 errors generated. scons: *** [build/engine/release/swigwrappers/python/py_fife_wrap.os] Error 1 scons: building terminated because of errors. *** Error code 2 Stop. make: stopped in /usr/ports/games/py-fife =3D=3D=3D> Cleaning for fife-0.3.4 From owner-freebsd-python@FreeBSD.ORG Fri Dec 6 17:07:10 2013 Return-Path: Delivered-To: python@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 16FFAA5A for ; Fri, 6 Dec 2013 17:07:10 +0000 (UTC) Received: from mail-pd0-x229.google.com (mail-pd0-x229.google.com [IPv6:2607:f8b0:400e:c02::229]) (using TLSv1 with cipher ECDHE-RSA-RC4-SHA (128/128 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id DFF691F57 for ; Fri, 6 Dec 2013 17:07:09 +0000 (UTC) Received: by mail-pd0-f169.google.com with SMTP id v10so1341744pde.0 for ; Fri, 06 Dec 2013 09:07:09 -0800 (PST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20120113; h=mime-version:in-reply-to:references:date:message-id:subject:from:to :content-type; bh=Mou2MSv7t6sy10vDMJxThZW8HP7zrc0HYJJcbJQcpkI=; b=lU2Z6rTehBb5Lthi4a0BUBn5oGKt7iZqRjGcCb0xfgHs508TYRz/6/ECElRMXLVFeV 1xKrNXHXOgxhItuopWtEh5KAtzUZiqRB5ohQpef2uJ2oHuPZLroEsctZ5dbyB1KjY4rV RmVV/QUI9Gy6IX0pMUVv7Vanew2YLIudIlhROzwNiwipzrSbvZ69CMkShvO5dvjo/pV9 8qyvS/qmqWxcnl76KRv11/9qleUZYympfodmOS0R/FQuPwGu5xT7z1GJnfN2HjUEZ8IA xKqYxhDDm9j6inIFkK4h23Fl8VfjeJ18gbAwB5ASNhXCWaWiMFqL7vCuKbJoN+Ca3pJ8 YbZw== MIME-Version: 1.0 X-Received: by 10.66.227.39 with SMTP id rx7mr5339033pac.44.1386349629361; Fri, 06 Dec 2013 09:07:09 -0800 (PST) Received: by 10.70.92.137 with HTTP; Fri, 6 Dec 2013 09:07:09 -0800 (PST) Received: by 10.70.92.137 with HTTP; Fri, 6 Dec 2013 09:07:09 -0800 (PST) In-Reply-To: <201312052312.rB5NC2kZ081322@beefy1.isc.freebsd.org> References: <201312052312.rB5NC2kZ081322@beefy1.isc.freebsd.org> Date: Fri, 6 Dec 2013 21:07:09 +0400 Message-ID: Subject: Fwd: [REL - 10i386-default][games/py-fife] Failed for fife-0.3.4 in build From: Green Dog To: python@freebsd.org Content-Type: text/plain; charset=KOI8-R Content-Transfer-Encoding: quoted-printable X-Content-Filtered-By: Mailman/MimeDel 2.1.17 X-BeenThere: freebsd-python@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-Id: FreeBSD-specific Python issues List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 06 Dec 2013 17:07:10 -0000 ---------- =F0=C5=D2=C5=C1=C4=D2=C5=D3=CF=D7=C1=CE=CE=CF=C5 =D3=CF=CF=C2=DD= =C5=CE=C9=C5 ---------- =EF=D4: =E4=C1=D4=C1: 06.12.2013 3:12 =F4=C5=CD=C1: [REL - 10i386-default][games/py-fife] Failed for fife-0.3.4 i= n build =EB=CF=CD=D5: =EB=CF=D0=C9=D1: 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: fiziologus@gmail.com Last committer: bapt@FreeBSD.org Ident: $FreeBSD: head/games/py-fife/Makefile 327730 2013-09-20 17:36:33Z bapt $ Log URL: http://beefy1.isc.freebsd.org/bulk/10i386-default/2013-12-05_16h47m32s/logs= /fife-0.3.4.log Build URL: http://beefy1.isc.freebsd.org/bulk/10i386-default/2013-12-05_16h47m32s Log: =3D=3D=3D=3D>> Building games/py-fife build started at Thu Dec 5 23:07:59 UTC 2013 port directory: /usr/ports/games/py-fife building for: FreeBSD 10i386-default-job-18 10.0-BETA1 FreeBSD 10.0-BETA1 r256420 i386 maintained by: fiziologus@gmail.com Makefile ident: $FreeBSD: head/games/py-fife/Makefile 327730 2013-09-20 17:36:33Z bapt $ Poudriere version: 3.1-pre ---Begin Environment--- UNAME_m=3Di386 UNAME_p=3Di386 OSVERSION=3D1000500 UNAME_v=3DFreeBSD 10.0-BETA1 r256420 UNAME_r=3D10.0-BETA1 BLOCKSIZE=3DK MAIL=3D/var/mail/root PATH=3D/sbin:/bin:/usr/sbin:/usr/bin:/usr/games:/usr/local/sbin:/usr/local/= bin:/root/bin STATUS=3D1 MASTERMNT=3D/usr/local/poudriere/data/build/10i386-default/ref PKG_EXT=3Dtxz tpid=3D9456 POUDRIERE_BUILD_TYPE=3Dbulk PKGNG=3D1 PKGNAME=3Dfife-0.3.4 PKG_DELETE=3D/usr/local/sbin/pkg-static delete -y -f PKG_ADD=3D/usr/local/sbin/pkg-static add PWD=3D/root MASTERNAME=3D10i386-default USER=3Droot HOME=3D/root POUDRIERE_VERSION=3D3.1-pre LOCALBASE=3D/usr/local PACKAGE_BUILDING=3Dyes PKG_VERSION=3D/poudriere/pkg-static version PKG_BIN=3D/usr/local/sbin/pkg-static ---End Environment--- ---Begin OPTIONS List--- ---End OPTIONS List--- --CONFIGURE_ARGS-- --End CONFIGURE_ARGS-- --CONFIGURE_ENV-- TMPDIR=3D"/tmp" PYTHON=3D"/usr/local/bin/python2.7" SDL_CONFIG=3D/usr/local/bin/sdl-config PKG_CONFIG=3Dpkgconf SHELL=3D/bin/sh CONFIG_SHELL=3D/bin/sh --End CONFIGURE_ENV-- --MAKE_ENV-- TMPDIR=3D"/tmp" SDL_CONFIG=3D/usr/local/bin/sdl-config SHELL=3D/bin/sh NO_LINT=3DYES PREFIX=3D/usr/local LOCALBASE=3D/usr/local LIBDIR=3D"/usr/l= ib" CC=3D"cc" CFLAGS=3D"-O2 -pipe -fno-strict-aliasing" CPP=3D"cpp" CPPFLAGS= =3D"" LDFLAGS=3D"" CXX=3D"c++" CXXFLAGS=3D"-O2 -pipe -fno-strict-aliasing" MANPREFIX=3D"/usr/local" BSD_INSTALL_PROGRAM=3D"install -s -o root -g whe= el -m 555" BSD_INSTALL_LIB=3D"install -s -o root -g wheel -m 444" BSD_INSTALL_SCRIPT=3D"install -o root -g wheel -m 555" BSD_INSTALL_DATA=3D"install -o root -g wheel -m 444" BSD_INSTALL_MAN=3D"install -o root -g wheel -m 444" --End MAKE_ENV-- --SUB_LIST-- PREFIX=3D/usr/local LOCALBASE=3D/usr/local DATADIR=3D/usr/local/share/fife DOCSDIR=3D/usr/local/share/doc/fife EXAMPLESDIR=3D/usr/local/share/examples/fife WWWDIR=3D/usr/local/www/fife ETCDIR=3D/usr/local/etc/fife --End SUB_LIST-- ---Begin make.conf--- ARCH=3Di386 MACHINE=3Di386 MACHINE_ARCH=3Di386 USE_PACKAGE_DEPENDS=3Dyes BATCH=3Dyes WRKDIRPREFIX=3D/wrkdirs PORTSDIR=3D/usr/ports PACKAGES=3D/packages DISTDIR=3D/distfiles #### /usr/local/etc/poudriere.d/make.conf #### WITH_PKGNG=3Dyes NO_RESTRICTED=3Dyes DISABLE_MAKE_JOBS=3Dpoudriere ---End make.conf--- =3D=3D=3D> Cleaning for fife-0.3.4 =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D =3D=3D=3D> fife-0.3.4 depends on file: /usr/local/sbin/pkg - not found =3D=3D=3D> Verifying install for /usr/local/sbin/pkg in /usr/ports/ports-mgmt/pkg =3D=3D=3D> Installing existing package /packages/All/pkg-1.2.1.txz Installing pkg-1.2.1... done If you are upgrading from the old package format, first run: # pkg2ng =3D=3D=3D> Returning to build of fife-0.3.4 =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D =3D=3D=3D> Fetching all distfiles required by fife-0.3.4 for building =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D =3D=3D=3D> Fetching all distfiles required by fife-0.3.4 for building =3D> SHA256 Checksum OK for fife_0.3.4.tar.gz. =3D> SHA256 Checksum OK for fife_0.3.4_demos.tar.gz. =3D> SHA256 Checksum OK for fife_0.3.4_tools.tar.gz. =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D =3D=3D=3D> Fetching all distfiles required by fife-0.3.4 for building =3D=3D=3D> Extracting for fife-0.3.4 =3D> SHA256 Checksum OK for fife_0.3.4.tar.gz. =3D> SHA256 Checksum OK for fife_0.3.4_demos.tar.gz. =3D> SHA256 Checksum OK for fife_0.3.4_tools.tar.gz. =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D =3D=3D=3D> Patching for fife-0.3.4 /usr/bin/sed -i.bak -e 's/X11R6/local/g; s/libpng/ligpng15/g' /wrkdirs/usr/ports/games/py-fife/work/fife_0.3.4/build/openbsd4-config.py && /bin/mv /wrkdirs/usr/ports/games/py-fife/work/fife_0.3.4/build/openbsd4-config.py /wrkdirs/usr/ports/games/py-fife/work/fife_0.3.4/build/freebsd10-config.py =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D =3D=3D=3D> fife-0.3.4 depends on file: /usr/local/bin/swig - not found =3D=3D=3D> Verifying install for /usr/local/bin/swig in /usr/ports/devel= /swig13 =3D=3D=3D> Installing existing package /packages/All/swig13-1.3.40.txz Installing swig13-1.3.40... done =3D=3D=3D> Returning to build of fife-0.3.4 =3D=3D=3D> fife-0.3.4 depends on file: /usr/local/bin/python2.7 - not fou= nd =3D=3D=3D> Verifying install for /usr/local/bin/python2.7 in /usr/ports/lang/python27 =3D=3D=3D> Installing existing package /packages/All/python27-2.7.6.txz Installing python27-2.7.6...Installing gettext-0.18.3.1... done done =3D=3D=3D=3D Note that some of the standard modules are provided as separate ports since they require extra dependencies: bsddb databases/py-bsddb gdbm databases/py-gdbm sqlite3 databases/py-sqlite3 tkinter x11-toolkits/py-tkinter Install them as needed. =3D=3D=3D=3D =3D=3D=3D> Returning to build of fife-0.3.4 =3D=3D=3D> fife-0.3.4 depends on executable: python - not found =3D=3D=3D> Verifying install for python in /usr/ports/lang/python =3D=3D=3D> Installing existing package /packages/All/python-2.7_1,2.txz Installing python-2.7_1,2...Installing python2-2_1... done done =3D=3D=3D> Returning to build of fife-0.3.4 =3D=3D=3D> fife-0.3.4 depends on file: /usr/local/bin/sdl-config - not fo= und =3D=3D=3D> Verifying install for /usr/local/bin/sdl-config in /usr/ports/devel/sdl12 =3D=3D=3D> Installing existing package /packages/All/sdl-1.2.15_2,2.txz Installing sdl-1.2.15_2,2...Installing xproto-7.0.24... done Installing xf86vidmodeproto-2.3.1... done Installing xextproto-7.2.1... done Installing renderproto-0.11.1... done Installing randrproto-1.4.0... done Installing libxcb-1.9.1_1...Installing libXau-1.0.8... done Installing libXdmcp-1.1.1... done Installing libpthread-stubs-0.3_4... done Installing libxml2-2.8.0_3... done done Installing libXxf86vm-1.1.3...Installing libXext-1.3.2,1...Installing libX11-1.6.2,1...Installing kbproto-1.0.6... done done done done Installing libXrender-0.9.8... done Installing libXrandr-1.4.2... done Installing libXfixes-5.0.1...Installing fixesproto-5.0... done done Installing libXdamage-1.1.4...Installing damageproto-1.2.1... done done Installing dri2proto-2.8... done Installing expat-2.1.0... done Installing pciids-20131130... done Installing libdrm-2.4.17_1...Installing libpciaccess-0.13.2... done done Installing libGLU-9.0.0...Installing libGL-7.6.1_4... done done Installing aalib-1.4.r5_6... done done ---------------------------------------------------------------------------= --- Your SDL library has been built with libvgl support, which means that you can run almost any SDL application straight on your console (VESA 2.0 compatible videocard is required). To do this you have to load the vesa kernel module or enable it in your kernel, and set environment variable "SDL_VIDEODRIVER=3Dvgl". ---------------------------------------------------------------------------= --- =3D=3D=3D> Returning to build of fife-0.3.4 =3D=3D=3D> fife-0.3.4 depends on executable: pkgconf - not found =3D=3D=3D> Verifying install for pkgconf in /usr/ports/devel/pkgconf =3D=3D=3D> Installing existing package /packages/All/pkgconf-0.9.3.txz Installing pkgconf-0.9.3... done =3D=3D=3D> Returning to build of fife-0.3.4 =3D=3D=3D> fife-0.3.4 depends on file: /usr/local/libdata/pkgconfig/glpro= to.pc - not found =3D=3D=3D> Verifying install for /usr/local/libdata/pkgconfig/glproto.pc= in /usr/ports/x11/glproto =3D=3D=3D> Installing existing package /packages/All/glproto-1.4.16.txz Installing glproto-1.4.16... done =3D=3D=3D> Returning to build of fife-0.3.4 =3D=3D=3D> fife-0.3.4 depends on file: /usr/local/libdata/pkgconfig/dri2proto.pc - found =3D=3D=3D> fife-0.3.4 depends on file: /usr/local/libdata/pkgconfig/xcurs= or.pc - not found =3D=3D=3D> Verifying install for /usr/local/libdata/pkgconfig/xcursor.pc= in /usr/ports/x11/libXcursor (arg1)->insert(arg2,arg3,(std::vector< unsigned int >::value_type const &)*arg4); ~~~~~~~~^~~~~~ /usr/include/c++/v1/vector:703:14: note: candidate function not viable: no known conversion from 'SwigValueWrapper::iterator>' to 'const_iterator' (aka '__wrap_iter') for 1st argument iterator insert(const_iterator __position, size_type __n, const_reference __x); ^ /usr/include/c++/v1/vector:714:9: note: candidate template ignored: substitution failure [with _InputIterator =3D unsigned int]: no type named 'reference' in 'std::__1::iterator_traits' insert(const_iterator __position, _InputIterator __first, _InputIterator __last); ^ /usr/include/c++/v1/vector:724:9: note: candidate template ignored: substitution failure [with _ForwardIterator =3D unsigned int]: no type name= d 'reference' in 'std::__1::iterator_traits' insert(const_iterator __position, _ForwardIterator __first, _ForwardIterator __last); ^ /usr/include/c++/v1/vector:695:14: note: candidate function not viable: requires 2 arguments, but 3 were provided iterator insert(const_iterator __position, const_reference __x); ^ build/engine/release/swigwrappers/python/fife_wrap.cc:15778:20: error: no matching member function for call to 'erase' result =3D (arg1)->erase(arg2); ~~~~~~~~^~~~~ /usr/include/c++/v1/vector:731:40: note: candidate function not viable: no known conversion from 'SwigValueWrapper::iterator>' to 'const_iterator' (aka '__wrap_iter') for 1st argument _LIBCPP_INLINE_VISIBILITY iterator erase(const_iterator __position); ^ /usr/include/c++/v1/vector:732:14: note: candidate function not viable: requires 2 arguments, but 1 was provided iterator erase(const_iterator __first, const_iterator __last); ^ build/engine/release/swigwrappers/python/fife_wrap.cc:15831:20: error: no matching member function for call to 'erase' result =3D (arg1)->erase(arg2,arg3); ~~~~~~~~^~~~~ /usr/include/c++/v1/vector:732:14: note: candidate function not viable: no known conversion from 'SwigValueWrapper::iterator>' to 'const_iterator' (aka '__wrap_iter') for 1st argument iterator erase(const_iterator __first, const_iterator __last); ^ /usr/include/c++/v1/vector:731:40: note: candidate function not viable: requires single argument '__position', but 2 arguments were provided _LIBCPP_INLINE_VISIBILITY iterator erase(const_iterator __position); ^ build/engine/release/swigwrappers/python/fife_wrap.cc:16235:20: error: no matching member function for call to 'insert' result =3D (arg1)->insert(arg2,(std::vector< int >::value_type const &)*arg3); ~~~~~~~~^~~~~~ /usr/include/c++/v1/vector:695:14: note: candidate function not viable: no known conversion from 'SwigValueWrapper::iterator>' to 'const_iterator' (aka '__wrap_iter') for 1st argument iterator insert(const_iterator __position, const_reference __x); ^ /usr/include/c++/v1/vector:714:9: note: candidate function template not viable: requires 3 arguments, but 2 were provided insert(const_iterator __position, _InputIterator __first, _InputIterator __last); ^ /usr/include/c++/v1/vector:724:9: note: candidate function template not viable: requires 3 arguments, but 2 were provided insert(const_iterator __position, _ForwardIterator __first, _ForwardIterator __last); ^ /usr/include/c++/v1/vector:703:14: note: candidate function not viable: requires 3 arguments, but 2 were provided iterator insert(const_iterator __position, size_type __n, const_reference __x); ^ build/engine/release/swigwrappers/python/fife_wrap.cc:16292:11: error: no matching member function for call to 'insert' (arg1)->insert(arg2,arg3,(std::vector< int >::value_type const &)*arg4); ~~~~~~~~^~~~~~ /usr/include/c++/v1/vector:703:14: note: candidate function not viable: no known conversion from 'SwigValueWrapper::iterator>' to 'const_iterator' (aka '__wrap_iter') for 1st argument iterator insert(const_iterator __position, size_type __n, const_reference __x); ^ /usr/include/c++/v1/vector:714:9: note: candidate template ignored: deduced conflicting types for parameter '_InputIterator' ('unsigned int' vs. 'int') insert(const_iterator __position, _InputIterator __first, _InputIterator __last); ^ /usr/include/c++/v1/vector:724:9: note: candidate template ignored: deduced conflicting types for parameter '_ForwardIterator' ('unsigned int' vs. 'int') insert(const_iterator __position, _ForwardIterator __first, _ForwardIterator __last); ^ /usr/include/c++/v1/vector:695:14: note: candidate function not viable: requires 2 arguments, but 3 were provided iterator insert(const_iterator __position, const_reference __x); ^ build/engine/release/swigwrappers/python/fife_wrap.cc:22914:20: error: no matching member function for call to 'erase' result =3D (arg1)->erase(arg2); ~~~~~~~~^~~~~ /usr/include/c++/v1/vector:731:40: note: candidate function not viable: no known conversion from 'SwigValueWrapper >::iterator>' to 'const_iterator' (aka '__wrap_iter') for 1st argument _LIBCPP_INLINE_VISIBILITY iterator erase(const_iterator __position); ^ /usr/include/c++/v1/vector:732:14: note: candidate function not viable: requires 2 arguments, but 1 was provided iterator erase(const_iterator __first, const_iterator __last); ^ build/engine/release/swigwrappers/python/fife_wrap.cc:22967:20: error: no matching member function for call to 'erase' result =3D (arg1)->erase(arg2,arg3); ~~~~~~~~^~~~~ /usr/include/c++/v1/vector:732:14: note: candidate function not viable: no known conversion from 'SwigValueWrapper >::iterator>' to 'const_iterator' (aka '__wrap_iter') for 1st argument iterator erase(const_iterator __first, const_iterator __last); ^ /usr/include/c++/v1/vector:731:40: note: candidate function not viable: requires single argument '__position', but 2 arguments were provided _LIBCPP_INLINE_VISIBILITY iterator erase(const_iterator __position); ^ build/engine/release/swigwrappers/python/fife_wrap.cc:23390:20: error: no matching member function for call to 'insert' result =3D (arg1)->insert(arg2,(std::vector< std::pair< unsigned short,unsigned short > >::value_type const &)*arg3); ~~~~~~~~^~~~~~ /usr/include/c++/v1/vector:695:14: note: candidate function not viable: no known conversion from 'SwigValueWrapper >::iterator>' to 'const_iterator' (aka '__wrap_iter') for 1st argument iterator insert(const_iterator __position, const_reference __x); ^ /usr/include/c++/v1/vector:714:9: note: candidate function template not viable: requires 3 arguments, but 2 were provided insert(const_iterator __position, _InputIterator __first, _InputIterator __last); ^ /usr/include/c++/v1/vector:724:9: note: candidate function template not viable: requires 3 arguments, but 2 were provided insert(const_iterator __position, _ForwardIterator __first, _ForwardIterator __last); ^ /usr/include/c++/v1/vector:703:14: note: candidate function not viable: requires 3 arguments, but 2 were provided iterator insert(const_iterator __position, size_type __n, const_reference __x); ^ build/engine/release/swigwrappers/python/fife_wrap.cc:23452:11: error: no matching member function for call to 'insert' (arg1)->insert(arg2,arg3,(std::vector< std::pair< unsigned short,unsigned short > >::value_type const &)*arg4); ~~~~~~~~^~~~~~ /usr/include/c++/v1/vector:703:14: note: candidate function not viable: no known conversion from 'SwigValueWrapper >::iterator>' to 'const_iterator' (aka '__wrap_iter') for 1st argument iterator insert(const_iterator __position, size_type __n, const_reference __x); ^ /usr/include/c++/v1/vector:714:9: note: candidate template ignored: deduced conflicting types for parameter '_InputIterator' ('unsigned int' vs. 'std::__1::pair') insert(const_iterator __position, _InputIterator __first, _InputIterator __last); ^ /usr/include/c++/v1/vector:724:9: note: candidate template ignored: deduced conflicting types for parameter '_ForwardIterator' ('unsigned int' vs. 'std::__1::pair') insert(const_iterator __position, _ForwardIterator __first, _ForwardIterator __last); ^ /usr/include/c++/v1/vector:695:14: note: candidate function not viable: requires 2 arguments, but 3 were provided iterator insert(const_iterator __position, const_reference __x); ^ build/engine/release/swigwrappers/python/fife_wrap.cc:75695:24: error: no matching member function for call to 'erase' result =3D (arg1)->erase(arg2); ~~~~~~~~^~~~~ /usr/include/c++/v1/vector:731:40: note: candidate function not viable: no known conversion from 'SwigValueWrapper >::iterator>' to 'const_iterator' (aka '__wrap_iter') for 1st argument _LIBCPP_INLINE_VISIBILITY iterator erase(const_iterator __position); ^ /usr/include/c++/v1/vector:732:14: note: candidate function not viable: requires 2 arguments, but 1 was provided iterator erase(const_iterator __first, const_iterator __last); ^ build/engine/release/swigwrappers/python/fife_wrap.cc:75755:24: error: no matching member function for call to 'erase' result =3D (arg1)->erase(arg2,arg3); ~~~~~~~~^~~~~ /usr/include/c++/v1/vector:732:14: note: candidate function not viable: no known conversion from 'SwigValueWrapper >::iterator>' to 'const_iterator' (aka '__wrap_iter') for 1st argument iterator erase(const_iterator __first, const_iterator __last); ^ /usr/include/c++/v1/vector:731:40: note: candidate function not viable: requires single argument '__position', but 2 arguments were provided _LIBCPP_INLINE_VISIBILITY iterator erase(const_iterator __position); ^ build/engine/release/swigwrappers/python/fife_wrap.cc:76209:24: error: no matching member function for call to 'insert' result =3D (arg1)->insert(arg2,(std::vector< FIFE::PointType3D< int > >::value_type const &)*arg3); ~~~~~~~~^~~~~~ /usr/include/c++/v1/vector:695:14: note: candidate function not viable: no known conversion from 'SwigValueWrapper >::iterator>' to 'const_iterator' (aka '__wrap_iter') for 1st argument iterator insert(const_iterator __position, const_reference __x); ^ /usr/include/c++/v1/vector:714:9: note: candidate function template not viable: requires 3 arguments, but 2 were provided insert(const_iterator __position, _InputIterator __first, _InputIterator __last); ^ /usr/include/c++/v1/vector:724:9: note: candidate function template not viable: requires 3 arguments, but 2 were provided insert(const_iterator __position, _ForwardIterator __first, _ForwardIterator __last); ^ /usr/include/c++/v1/vector:703:14: note: candidate function not viable: requires 3 arguments, but 2 were provided iterator insert(const_iterator __position, size_type __n, const_reference __x); ^ build/engine/release/swigwrappers/python/fife_wrap.cc:76274:15: error: no matching member function for call to 'insert' (arg1)->insert(arg2,arg3,(std::vector< FIFE::PointType3D< int > >::value_type const &)*arg4); ~~~~~~~~^~~~~~ /usr/include/c++/v1/vector:703:14: note: candidate function not viable: no known conversion from 'SwigValueWrapper >::iterator>' to 'const_iterator' (aka '__wrap_iter') for 1st argument iterator insert(const_iterator __position, size_type __n, const_reference __x); ^ /usr/include/c++/v1/vector:714:9: note: candidate template ignored: deduced conflicting types for parameter '_InputIterator' ('unsigned int' vs. 'FIFE::PointType3D') insert(const_iterator __position, _InputIterator __first, _InputIterator __last); ^ /usr/include/c++/v1/vector:724:9: note: candidate template ignored: deduced conflicting types for parameter '_ForwardIterator' ('unsigned int' vs. 'FIFE::PointType3D') insert(const_iterator __position, _ForwardIterator __first, _ForwardIterator __last); ^ /usr/include/c++/v1/vector:695:14: note: candidate function not viable: requires 2 arguments, but 3 were provided iterator insert(const_iterator __position, const_reference __x); ^ build/engine/release/swigwrappers/python/fife_wrap.cc:77701:24: error: no matching member function for call to 'erase' result =3D (arg1)->erase(arg2); ~~~~~~~~^~~~~ /usr/include/c++/v1/vector:731:40: note: candidate function not viable: no known conversion from 'SwigValueWrapper >::iterator>' to 'const_iterator' (aka '__wrap_iter') for 1st argument _LIBCPP_INLINE_VISIBILITY iterator erase(const_iterator __position); ^ /usr/include/c++/v1/vector:732:14: note: candidate function not viable: requires 2 arguments, but 1 was provided iterator erase(const_iterator __first, const_iterator __last); ^ build/engine/release/swigwrappers/python/fife_wrap.cc:77761:24: error: no matching member function for call to 'erase' result =3D (arg1)->erase(arg2,arg3); ~~~~~~~~^~~~~ /usr/include/c++/v1/vector:732:14: note: candidate function not viable: no known conversion from 'SwigValueWrapper >::iterator>' to 'const_iterator' (aka '__wrap_iter') for 1st argument iterator erase(const_iterator __first, const_iterator __last); ^ /usr/include/c++/v1/vector:731:40: note: candidate function not viable: requires single argument '__position', but 2 arguments were provided _LIBCPP_INLINE_VISIBILITY iterator erase(const_iterator __position); ^ build/engine/release/swigwrappers/python/fife_wrap.cc:78215:24: error: no matching member function for call to 'insert' result =3D (arg1)->insert(arg2,(std::vector< FIFE::PointType3D< doubl= e > >::value_type const &)*arg3); ~~~~~~~~^~~~~~ /usr/include/c++/v1/vector:695:14: note: candidate function not viable: no known conversion from 'SwigValueWrapper >::iterator>' to 'const_iterator' (aka '__wrap_iter') for 1st argument iterator insert(const_iterator __position, const_reference __x); ^ /usr/include/c++/v1/vector:714:9: note: candidate function template not viable: requires 3 arguments, but 2 were provided insert(const_iterator __position, _InputIterator __first, _InputIterator __last); ^ /usr/include/c++/v1/vector:724:9: note: candidate function template not viable: requires 3 arguments, but 2 were provided insert(const_iterator __position, _ForwardIterator __first, _ForwardIterator __last); ^ /usr/include/c++/v1/vector:703:14: note: candidate function not viable: requires 3 arguments, but 2 were provided iterator insert(const_iterator __position, size_type __n, const_reference __x); ^ fatal error: too many errors emitted, stopping now [-ferror-limit=3D] 3 warnings and 20 errors generated. scons: *** [build/engine/release/swigwrappers/python/py_fife_wrap.os] Error 1 scons: building terminated because of errors. *** Error code 2 Stop. make: stopped in /usr/ports/games/py-fife =3D=3D=3D> Cleaning for fife-0.3.4 From owner-freebsd-python@FreeBSD.ORG Fri Dec 6 18:39:42 2013 Return-Path: Delivered-To: python@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 5EC7B96C for ; Fri, 6 Dec 2013 18:39:42 +0000 (UTC) Received: from mail-pb0-x230.google.com (mail-pb0-x230.google.com [IPv6:2607:f8b0:400e:c01::230]) (using TLSv1 with cipher ECDHE-RSA-RC4-SHA (128/128 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 333B215EA for ; Fri, 6 Dec 2013 18:39:42 +0000 (UTC) Received: by mail-pb0-f48.google.com with SMTP id md12so1542090pbc.21 for ; Fri, 06 Dec 2013 10:39:41 -0800 (PST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20120113; h=mime-version:in-reply-to:references:date:message-id:subject:from:to :content-type; bh=ZH3ax1UJh7J/5Yn00D/hU4ZwnnYZMFQaoIa3okyvIns=; b=oEybg+ymeLldLVh3pChADYslHZI7OIi4H7QPvE1i1nq8YNwyxpI45Xcid0Hw/lWQ/o g9KLAyL8bEtV5MoTDgMR6kgmrzpTPmntdiZRAgOJh5nwIdF5ECtDhdsWdwCgjahv5Pp0 9BdibDdBlvB53aNWoA9CKnCf71m7U8nqMFfcPOrgaTcdE7d83kC2OKEXwB5om9NVyX3W VXao9OOVN6cQjbQZ7YHSC/6Lbs3wG8Csx3apggdWSGs+dN0EZDwlHfcBtn5EB1Kd64Q5 69Ij6p4CtVk5LgvmxP93pS3lrYHKXetGT5fL7D7lMyxztUNipxBsNtN9yZtz6nhezI1h FKHw== MIME-Version: 1.0 X-Received: by 10.66.227.39 with SMTP id rx7mr5776874pac.44.1386355181581; Fri, 06 Dec 2013 10:39:41 -0800 (PST) Received: by 10.70.92.137 with HTTP; Fri, 6 Dec 2013 10:39:41 -0800 (PST) Received: by 10.70.92.137 with HTTP; Fri, 6 Dec 2013 10:39:41 -0800 (PST) In-Reply-To: <201312061838.rB6Ic1jF001532@beefy2.isc.freebsd.org> References: <201312061838.rB6Ic1jF001532@beefy2.isc.freebsd.org> Date: Fri, 6 Dec 2013 22:39:41 +0400 Message-ID: Subject: Fwd: [REL - head-amd64-default][games/py-fife] Failed for fife-0.3.4 in build From: Green Dog To: python@freebsd.org Content-Type: text/plain; charset=KOI8-R Content-Transfer-Encoding: quoted-printable X-Content-Filtered-By: Mailman/MimeDel 2.1.17 X-BeenThere: freebsd-python@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-Id: FreeBSD-specific Python issues List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 06 Dec 2013 18:39:42 -0000 ---------- =F0=C5=D2=C5=C1=C4=D2=C5=D3=CF=D7=C1=CE=CE=CF=C5 =D3=CF=CF=C2=DD= =C5=CE=C9=C5 ---------- =EF=D4: =E4=C1=D4=C1: 06.12.2013 22:38 =F4=C5=CD=C1: [REL - head-amd64-default][games/py-fife] Failed for fife-0.3= .4 in build =EB=CF=CD=D5: =EB=CF=D0=C9=D1: 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: fiziologus@gmail.com Last committer: bapt@FreeBSD.org Ident: $FreeBSD: head/games/py-fife/Makefile 327730 2013-09-20 17:36:33Z bapt $ Log URL: http://beefy2.isc.freebsd.org/bulk/head-amd64-default/2013-12-06_10h34m34s/= logs/fife-0.3.4.log Build URL: http://beefy2.isc.freebsd.org/bulk/head-amd64-default/2013-12-06_10h34m34s Log: =3D=3D=3D=3D>> Building games/py-fife build started at Fri Dec 6 18:32:46 UTC 2013 port directory: /usr/ports/games/py-fife building for: FreeBSD head-amd64-default-job-10 11.0-CURRENT FreeBSD 11.0-CURRENT r256430 amd64 maintained by: fiziologus@gmail.com Makefile ident: $FreeBSD: head/games/py-fife/Makefile 327730 2013-09-20 17:36:33Z bapt $ Poudriere version: 3.1-pre ---Begin Environment--- OSVERSION=3D1100000 UNAME_v=3DFreeBSD 11.0-CURRENT r256430 UNAME_r=3D11.0-CURRENT BLOCKSIZE=3DK MAIL=3D/var/mail/root PATH=3D/sbin:/bin:/usr/sbin:/usr/bin:/usr/games:/usr/local/sbin:/usr/local/= bin:/root/bin STATUS=3D1 MASTERMNT=3D/usr/local/poudriere/data/build/head-amd64-default/ref PKG_EXT=3Dtxz tpid=3D70151 POUDRIERE_BUILD_TYPE=3Dbulk PKGNG=3D1 PKGNAME=3Dfife-0.3.4 PKG_DELETE=3D/usr/local/sbin/pkg-static delete -y -f PKG_ADD=3D/usr/local/sbin/pkg-static add PWD=3D/root MASTERNAME=3Dhead-amd64-default USER=3Droot HOME=3D/root POUDRIERE_VERSION=3D3.1-pre LOCALBASE=3D/usr/local PACKAGE_BUILDING=3Dyes PKG_VERSION=3D/poudriere/pkg-static version PKG_BIN=3D/usr/local/sbin/pkg-static ---End Environment--- ---Begin OPTIONS List--- ---End OPTIONS List--- --CONFIGURE_ARGS-- --End CONFIGURE_ARGS-- --CONFIGURE_ENV-- TMPDIR=3D"/tmp" PYTHON=3D"/usr/local/bin/python2.7" SDL_CONFIG=3D/usr/local/bin/sdl-config PKG_CONFIG=3Dpkgconf SHELL=3D/bin/sh CONFIG_SHELL=3D/bin/sh --End CONFIGURE_ENV-- --MAKE_ENV-- TMPDIR=3D"/tmp" SDL_CONFIG=3D/usr/local/bin/sdl-config SHELL=3D/bin/sh NO_LINT=3DYES PREFIX=3D/usr/local LOCALBASE=3D/usr/local LIBDIR=3D"/usr/l= ib" CC=3D"cc" CFLAGS=3D"-O2 -pipe -fno-strict-aliasing" CPP=3D"cpp" CPPFLAGS= =3D"" LDFLAGS=3D"" CXX=3D"c++" CXXFLAGS=3D"-O2 -pipe -fno-strict-aliasing" MANPREFIX=3D"/usr/local" BSD_INSTALL_PROGRAM=3D"install -s -o root -g whe= el -m 555" BSD_INSTALL_LIB=3D"install -s -o root -g wheel -m 444" BSD_INSTALL_SCRIPT=3D"install -o root -g wheel -m 555" BSD_INSTALL_DATA=3D"install -o root -g wheel -m 444" BSD_INSTALL_MAN=3D"install -o root -g wheel -m 444" --End MAKE_ENV-- --SUB_LIST-- PREFIX=3D/usr/local LOCALBASE=3D/usr/local DATADIR=3D/usr/local/share/fife DOCSDIR=3D/usr/local/share/doc/fife EXAMPLESDIR=3D/usr/local/share/examples/fife WWWDIR=3D/usr/local/www/fife ETCDIR=3D/usr/local/etc/fife --End SUB_LIST-- ---Begin make.conf--- USE_PACKAGE_DEPENDS=3Dyes BATCH=3Dyes WRKDIRPREFIX=3D/wrkdirs PORTSDIR=3D/usr/ports PACKAGES=3D/packages DISTDIR=3D/distfiles #### /usr/local/etc/poudriere.d/make.conf #### WITH_PKGNG=3Dyes NO_RESTRICTED=3Dyes DISABLE_MAKE_JOBS=3Dpoudriere ---End make.conf--- =3D=3D=3D> Cleaning for fife-0.3.4 =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D =3D=3D=3D> fife-0.3.4 depends on file: /usr/local/sbin/pkg - not found =3D=3D=3D> Verifying install for /usr/local/sbin/pkg in /usr/ports/ports-mgmt/pkg =3D=3D=3D> Installing existing package /packages/All/pkg-1.2.1.txz Installing pkg-1.2.1... done If you are upgrading from the old package format, first run: # pkg2ng =3D=3D=3D> Returning to build of fife-0.3.4 =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D =3D=3D=3D> Fetching all distfiles required by fife-0.3.4 for building =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D =3D=3D=3D> Fetching all distfiles required by fife-0.3.4 for building =3D> SHA256 Checksum OK for fife_0.3.4.tar.gz. =3D> SHA256 Checksum OK for fife_0.3.4_demos.tar.gz. =3D> SHA256 Checksum OK for fife_0.3.4_tools.tar.gz. =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D =3D=3D=3D> Fetching all distfiles required by fife-0.3.4 for building =3D=3D=3D> Extracting for fife-0.3.4 =3D> SHA256 Checksum OK for fife_0.3.4.tar.gz. =3D> SHA256 Checksum OK for fife_0.3.4_demos.tar.gz. =3D> SHA256 Checksum OK for fife_0.3.4_tools.tar.gz. =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D =3D=3D=3D> Patching for fife-0.3.4 /usr/bin/sed -i.bak -e 's/X11R6/local/g; s/libpng/ligpng15/g' /wrkdirs/usr/ports/games/py-fife/work/fife_0.3.4/build/openbsd4-config.py && /bin/mv /wrkdirs/usr/ports/games/py-fife/work/fife_0.3.4/build/openbsd4-config.py /wrkdirs/usr/ports/games/py-fife/work/fife_0.3.4/build/freebsd11-config.py =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D =3D=3D=3D> fife-0.3.4 depends on file: /usr/local/bin/swig - not found =3D=3D=3D> Verifying install for /usr/local/bin/swig in /usr/ports/devel= /swig13 =3D=3D=3D> Installing existing package /packages/All/swig13-1.3.40.txz Installing swig13-1.3.40... done =3D=3D=3D> Returning to build of fife-0.3.4 =3D=3D=3D> fife-0.3.4 depends on file: /usr/local/bin/python2.7 - not fou= nd =3D=3D=3D> Verifying install for /usr/local/bin/python2.7 in /usr/ports/lang/python27 =3D=3D=3D> Installing existing package /packages/All/python27-2.7.6.txz Installing python27-2.7.6...Installing gettext-0.18.3.1... done done =3D=3D=3D=3D Note that some of the standard modules are provided as separate ports since they require extra dependencies: bsddb databases/py-bsddb gdbm databases/py-gdbm sqlite3 databases/py-sqlite3 tkinter x11-toolkits/py-tkinter Install them as needed. =3D=3D=3D=3D =3D=3D=3D> Returning to build of fife-0.3.4 =3D=3D=3D> fife-0.3.4 depends on executable: python - not found =3D=3D=3D> Verifying install for python in /usr/ports/lang/python =3D=3D=3D> Installing existing package /packages/All/python-2.7_1,2.txz Installing python-2.7_1,2...Installing python2-2_1... done done =3D=3D=3D> Returning to build of fife-0.3.4 =3D=3D=3D> fife-0.3.4 depends on file: /usr/local/bin/sdl-config - not fo= und =3D=3D=3D> Verifying install for /usr/local/bin/sdl-config in /usr/ports/devel/sdl12 =3D=3D=3D> Installing existing package /packages/All/sdl-1.2.15_2,2.txz Installing sdl-1.2.15_2,2...Installing xproto-7.0.24... done Installing xf86vidmodeproto-2.3.1... done Installing xextproto-7.2.1... done Installing renderproto-0.11.1... done Installing randrproto-1.4.0... done Installing libxcb-1.9.1_1...Installing libXau-1.0.8... done Installing libXdmcp-1.1.1... done Installing libpthread-stubs-0.3_4... done Installing libxml2-2.8.0_3... done done Installing libXxf86vm-1.1.3...Installing libXext-1.3.2,1...Installing libX11-1.6.2,1...Installing kbproto-1.0.6... done done done done Installing libXrender-0.9.8... done Installing libXrandr-1.4.2... done Installing libXfixes-5.0.1...Installing fixesproto-5.0... done done Installing libXdamage-1.1.4...Installing damageproto-1.2.1... done done Installing dri2proto-2.8... done Installing expat-2.1.0... done Installing pciids-20131130... done Installing libdrm-2.4.17_1...Installing libpciaccess-0.13.2... done done Installing libGLU-9.0.0...Installing libGL-7.6.1_4... done done Installing aalib-1.4.r5_6... done done ---------------------------------------------------------------------------= --- Your SDL library has been built with libvgl support, which means that you can run almost any SDL application straight on your console (VESA 2.0 compatible videocard is required). To do this you have to load the vesa kernel module or enable it in your kernel, and set environment variable "SDL_VIDEODRIVER=3Dvgl". ---------------------------------------------------------------------------= --- =3D=3D=3D> Returning to build of fife-0.3.4 =3D=3D=3D> fife-0.3.4 depends on executable: pkgconf - not found =3D=3D=3D> Verifying install for pkgconf in /usr/ports/devel/pkgconf =3D=3D=3D> Installing existing package /packages/All/pkgconf-0.9.3.txz Installing pkgconf-0.9.3... done =3D=3D=3D> Returning to build of fife-0.3.4 =3D=3D=3D> fife-0.3.4 depends on file: /usr/local/libdata/pkgconfig/glpro= to.pc - not found =3D=3D=3D> Verifying install for /usr/local/libdata/pkgconfig/glproto.pc= in /usr/ports/x11/glproto =3D=3D=3D> Installing existing package /packages/All/glproto-1.4.16.txz Installing glproto-1.4.16... done =3D=3D=3D> Returning to build of fife-0.3.4 =3D=3D=3D> fife-0.3.4 depends on file: /usr/local/libdata/pkgconfig/dri2proto.pc - found =3D=3D=3D> fife-0.3.4 depends on file: /usr/local/libdata/pkgconfig/xcurs= or.pc - not found =3D=3D=3D> Verifying install for /usr/local/libdata/pkgconfig/xcursor.pc= in /usr/ports/x11/libXcursor =3D=3D=3D> Installing existing package /packages/All/libXcursor-1.1.14.tx= z Installing libXcursor-1.1.14... done =3D=3D=3D> Returning to build of fife-0.3.4 =3D=3D=3D> fife-0.3.4 depends on file: /usr/local/bin/scons - not found =3D=3D=3D> Verifying install for /usr/local/bin/scons in /usr/ports/deve= l/scons (arg1)->insert(arg2,arg3,(std::vector< unsigned int >::value_type const &)*arg4); ~~~~~~~~^~~~~~ /usr/include/c++/v1/vector:703:14: note: candidate function not viable: no known conversion from 'SwigValueWrapper::iterator>' to 'const_iterator' (aka '__wrap_iter') for 1st argument iterator insert(const_iterator __position, size_type __n, const_reference __x); ^ /usr/include/c++/v1/vector:714:9: note: candidate template ignored: deduced conflicting types for parameter '_InputIterator' ('unsigned long' vs. 'unsigned int') insert(const_iterator __position, _InputIterator __first, _InputIterator __last); ^ /usr/include/c++/v1/vector:724:9: note: candidate template ignored: deduced conflicting types for parameter '_ForwardIterator' ('unsigned long' vs. 'unsigned int') insert(const_iterator __position, _ForwardIterator __first, _ForwardIterator __last); ^ /usr/include/c++/v1/vector:695:14: note: candidate function not viable: requires 2 arguments, but 3 were provided iterator insert(const_iterator __position, const_reference __x); ^ build/engine/release/swigwrappers/python/fife_wrap.cc:15778:20: error: no matching member function for call to 'erase' result =3D (arg1)->erase(arg2); ~~~~~~~~^~~~~ /usr/include/c++/v1/vector:731:40: note: candidate function not viable: no known conversion from 'SwigValueWrapper::iterator>' to 'const_iterator' (aka '__wrap_iter') for 1st argument _LIBCPP_INLINE_VISIBILITY iterator erase(const_iterator __position); ^ /usr/include/c++/v1/vector:732:14: note: candidate function not viable: requires 2 arguments, but 1 was provided iterator erase(const_iterator __first, const_iterator __last); ^ build/engine/release/swigwrappers/python/fife_wrap.cc:15831:20: error: no matching member function for call to 'erase' result =3D (arg1)->erase(arg2,arg3); ~~~~~~~~^~~~~ /usr/include/c++/v1/vector:732:14: note: candidate function not viable: no known conversion from 'SwigValueWrapper::iterator>' to 'const_iterator' (aka '__wrap_iter') for 1st argument iterator erase(const_iterator __first, const_iterator __last); ^ /usr/include/c++/v1/vector:731:40: note: candidate function not viable: requires single argument '__position', but 2 arguments were provided _LIBCPP_INLINE_VISIBILITY iterator erase(const_iterator __position); ^ build/engine/release/swigwrappers/python/fife_wrap.cc:16235:20: error: no matching member function for call to 'insert' result =3D (arg1)->insert(arg2,(std::vector< int >::value_type const &)*arg3); ~~~~~~~~^~~~~~ /usr/include/c++/v1/vector:695:14: note: candidate function not viable: no known conversion from 'SwigValueWrapper::iterator>' to 'const_iterator' (aka '__wrap_iter') for 1st argument iterator insert(const_iterator __position, const_reference __x); ^ /usr/include/c++/v1/vector:714:9: note: candidate function template not viable: requires 3 arguments, but 2 were provided insert(const_iterator __position, _InputIterator __first, _InputIterator __last); ^ /usr/include/c++/v1/vector:724:9: note: candidate function template not viable: requires 3 arguments, but 2 were provided insert(const_iterator __position, _ForwardIterator __first, _ForwardIterator __last); ^ /usr/include/c++/v1/vector:703:14: note: candidate function not viable: requires 3 arguments, but 2 were provided iterator insert(const_iterator __position, size_type __n, const_reference __x); ^ build/engine/release/swigwrappers/python/fife_wrap.cc:16292:11: error: no matching member function for call to 'insert' (arg1)->insert(arg2,arg3,(std::vector< int >::value_type const &)*arg4); ~~~~~~~~^~~~~~ /usr/include/c++/v1/vector:703:14: note: candidate function not viable: no known conversion from 'SwigValueWrapper::iterator>' to 'const_iterator' (aka '__wrap_iter') for 1st argument iterator insert(const_iterator __position, size_type __n, const_reference __x); ^ /usr/include/c++/v1/vector:714:9: note: candidate template ignored: deduced conflicting types for parameter '_InputIterator' ('unsigned long' vs. 'int'= ) insert(const_iterator __position, _InputIterator __first, _InputIterator __last); ^ /usr/include/c++/v1/vector:724:9: note: candidate template ignored: deduced conflicting types for parameter '_ForwardIterator' ('unsigned long' vs. 'int') insert(const_iterator __position, _ForwardIterator __first, _ForwardIterator __last); ^ /usr/include/c++/v1/vector:695:14: note: candidate function not viable: requires 2 arguments, but 3 were provided iterator insert(const_iterator __position, const_reference __x); ^ build/engine/release/swigwrappers/python/fife_wrap.cc:22914:20: error: no matching member function for call to 'erase' result =3D (arg1)->erase(arg2); ~~~~~~~~^~~~~ /usr/include/c++/v1/vector:731:40: note: candidate function not viable: no known conversion from 'SwigValueWrapper >::iterator>' to 'const_iterator' (aka '__wrap_iter') for 1st argument _LIBCPP_INLINE_VISIBILITY iterator erase(const_iterator __position); ^ /usr/include/c++/v1/vector:732:14: note: candidate function not viable: requires 2 arguments, but 1 was provided iterator erase(const_iterator __first, const_iterator __last); ^ build/engine/release/swigwrappers/python/fife_wrap.cc:22967:20: error: no matching member function for call to 'erase' result =3D (arg1)->erase(arg2,arg3); ~~~~~~~~^~~~~ /usr/include/c++/v1/vector:732:14: note: candidate function not viable: no known conversion from 'SwigValueWrapper >::iterator>' to 'const_iterator' (aka '__wrap_iter') for 1st argument iterator erase(const_iterator __first, const_iterator __last); ^ /usr/include/c++/v1/vector:731:40: note: candidate function not viable: requires single argument '__position', but 2 arguments were provided _LIBCPP_INLINE_VISIBILITY iterator erase(const_iterator __position); ^ build/engine/release/swigwrappers/python/fife_wrap.cc:23390:20: error: no matching member function for call to 'insert' result =3D (arg1)->insert(arg2,(std::vector< std::pair< unsigned short,unsigned short > >::value_type const &)*arg3); ~~~~~~~~^~~~~~ /usr/include/c++/v1/vector:695:14: note: candidate function not viable: no known conversion from 'SwigValueWrapper >::iterator>' to 'const_iterator' (aka '__wrap_iter') for 1st argument iterator insert(const_iterator __position, const_reference __x); ^ /usr/include/c++/v1/vector:714:9: note: candidate function template not viable: requires 3 arguments, but 2 were provided insert(const_iterator __position, _InputIterator __first, _InputIterator __last); ^ /usr/include/c++/v1/vector:724:9: note: candidate function template not viable: requires 3 arguments, but 2 were provided insert(const_iterator __position, _ForwardIterator __first, _ForwardIterator __last); ^ /usr/include/c++/v1/vector:703:14: note: candidate function not viable: requires 3 arguments, but 2 were provided iterator insert(const_iterator __position, size_type __n, const_reference __x); ^ build/engine/release/swigwrappers/python/fife_wrap.cc:23452:11: error: no matching member function for call to 'insert' (arg1)->insert(arg2,arg3,(std::vector< std::pair< unsigned short,unsigned short > >::value_type const &)*arg4); ~~~~~~~~^~~~~~ /usr/include/c++/v1/vector:703:14: note: candidate function not viable: no known conversion from 'SwigValueWrapper >::iterator>' to 'const_iterator' (aka '__wrap_iter') for 1st argument iterator insert(const_iterator __position, size_type __n, const_reference __x); ^ /usr/include/c++/v1/vector:714:9: note: candidate template ignored: deduced conflicting types for parameter '_InputIterator' ('unsigned long' vs. 'std::__1::pair') insert(const_iterator __position, _InputIterator __first, _InputIterator __last); ^ /usr/include/c++/v1/vector:724:9: note: candidate template ignored: deduced conflicting types for parameter '_ForwardIterator' ('unsigned long' vs. 'std::__1::pair') insert(const_iterator __position, _ForwardIterator __first, _ForwardIterator __last); ^ /usr/include/c++/v1/vector:695:14: note: candidate function not viable: requires 2 arguments, but 3 were provided iterator insert(const_iterator __position, const_reference __x); ^ build/engine/release/swigwrappers/python/fife_wrap.cc:75695:24: error: no matching member function for call to 'erase' result =3D (arg1)->erase(arg2); ~~~~~~~~^~~~~ /usr/include/c++/v1/vector:731:40: note: candidate function not viable: no known conversion from 'SwigValueWrapper >::iterator>' to 'const_iterator' (aka '__wrap_iter') for 1st argument _LIBCPP_INLINE_VISIBILITY iterator erase(const_iterator __position); ^ /usr/include/c++/v1/vector:732:14: note: candidate function not viable: requires 2 arguments, but 1 was provided iterator erase(const_iterator __first, const_iterator __last); ^ build/engine/release/swigwrappers/python/fife_wrap.cc:75755:24: error: no matching member function for call to 'erase' result =3D (arg1)->erase(arg2,arg3); ~~~~~~~~^~~~~ /usr/include/c++/v1/vector:732:14: note: candidate function not viable: no known conversion from 'SwigValueWrapper >::iterator>' to 'const_iterator' (aka '__wrap_iter') for 1st argument iterator erase(const_iterator __first, const_iterator __last); ^ /usr/include/c++/v1/vector:731:40: note: candidate function not viable: requires single argument '__position', but 2 arguments were provided _LIBCPP_INLINE_VISIBILITY iterator erase(const_iterator __position); ^ build/engine/release/swigwrappers/python/fife_wrap.cc:76209:24: error: no matching member function for call to 'insert' result =3D (arg1)->insert(arg2,(std::vector< FIFE::PointType3D< int > >::value_type const &)*arg3); ~~~~~~~~^~~~~~ /usr/include/c++/v1/vector:695:14: note: candidate function not viable: no known conversion from 'SwigValueWrapper >::iterator>' to 'const_iterator' (aka '__wrap_iter') for 1st argument iterator insert(const_iterator __position, const_reference __x); ^ /usr/include/c++/v1/vector:714:9: note: candidate function template not viable: requires 3 arguments, but 2 were provided insert(const_iterator __position, _InputIterator __first, _InputIterator __last); ^ /usr/include/c++/v1/vector:724:9: note: candidate function template not viable: requires 3 arguments, but 2 were provided insert(const_iterator __position, _ForwardIterator __first, _ForwardIterator __last); ^ /usr/include/c++/v1/vector:703:14: note: candidate function not viable: requires 3 arguments, but 2 were provided iterator insert(const_iterator __position, size_type __n, const_reference __x); ^ build/engine/release/swigwrappers/python/fife_wrap.cc:76274:15: error: no matching member function for call to 'insert' (arg1)->insert(arg2,arg3,(std::vector< FIFE::PointType3D< int > >::value_type const &)*arg4); ~~~~~~~~^~~~~~ /usr/include/c++/v1/vector:703:14: note: candidate function not viable: no known conversion from 'SwigValueWrapper >::iterator>' to 'const_iterator' (aka '__wrap_iter') for 1st argument iterator insert(const_iterator __position, size_type __n, const_reference __x); ^ /usr/include/c++/v1/vector:714:9: note: candidate template ignored: deduced conflicting types for parameter '_InputIterator' ('unsigned long' vs. 'FIFE::PointType3D') insert(const_iterator __position, _InputIterator __first, _InputIterator __last); ^ /usr/include/c++/v1/vector:724:9: note: candidate template ignored: deduced conflicting types for parameter '_ForwardIterator' ('unsigned long' vs. 'FIFE::PointType3D') insert(const_iterator __position, _ForwardIterator __first, _ForwardIterator __last); ^ /usr/include/c++/v1/vector:695:14: note: candidate function not viable: requires 2 arguments, but 3 were provided iterator insert(const_iterator __position, const_reference __x); ^ build/engine/release/swigwrappers/python/fife_wrap.cc:77701:24: error: no matching member function for call to 'erase' result =3D (arg1)->erase(arg2); ~~~~~~~~^~~~~ /usr/include/c++/v1/vector:731:40: note: candidate function not viable: no known conversion from 'SwigValueWrapper >::iterator>' to 'const_iterator' (aka '__wrap_iter') for 1st argument _LIBCPP_INLINE_VISIBILITY iterator erase(const_iterator __position); ^ /usr/include/c++/v1/vector:732:14: note: candidate function not viable: requires 2 arguments, but 1 was provided iterator erase(const_iterator __first, const_iterator __last); ^ build/engine/release/swigwrappers/python/fife_wrap.cc:77761:24: error: no matching member function for call to 'erase' result =3D (arg1)->erase(arg2,arg3); ~~~~~~~~^~~~~ /usr/include/c++/v1/vector:732:14: note: candidate function not viable: no known conversion from 'SwigValueWrapper >::iterator>' to 'const_iterator' (aka '__wrap_iter') for 1st argument iterator erase(const_iterator __first, const_iterator __last); ^ /usr/include/c++/v1/vector:731:40: note: candidate function not viable: requires single argument '__position', but 2 arguments were provided _LIBCPP_INLINE_VISIBILITY iterator erase(const_iterator __position); ^ build/engine/release/swigwrappers/python/fife_wrap.cc:78215:24: error: no matching member function for call to 'insert' result =3D (arg1)->insert(arg2,(std::vector< FIFE::PointType3D< doubl= e > >::value_type const &)*arg3); ~~~~~~~~^~~~~~ /usr/include/c++/v1/vector:695:14: note: candidate function not viable: no known conversion from 'SwigValueWrapper >::iterator>' to 'const_iterator' (aka '__wrap_iter') for 1st argument iterator insert(const_iterator __position, const_reference __x); ^ /usr/include/c++/v1/vector:714:9: note: candidate function template not viable: requires 3 arguments, but 2 were provided insert(const_iterator __position, _InputIterator __first, _InputIterator __last); ^ /usr/include/c++/v1/vector:724:9: note: candidate function template not viable: requires 3 arguments, but 2 were provided insert(const_iterator __position, _ForwardIterator __first, _ForwardIterator __last); ^ /usr/include/c++/v1/vector:703:14: note: candidate function not viable: requires 3 arguments, but 2 were provided iterator insert(const_iterator __position, size_type __n, const_reference __x); ^ fatal error: too many errors emitted, stopping now [-ferror-limit=3D] 3 warnings and 20 errors generated. scons: *** [build/engine/release/swigwrappers/python/py_fife_wrap.os] Error 1 scons: building terminated because of errors. *** Error code 2 Stop. make: stopped in /usr/ports/games/py-fife =3D=3D=3D> Cleaning for fife-0.3.4 From owner-freebsd-python@FreeBSD.ORG Sat Dec 7 08:28:48 2013 Return-Path: Delivered-To: python@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 6D86EAA2 for ; Sat, 7 Dec 2013 08:28:48 +0000 (UTC) Received: from portsmon.freebsd.org (portsmon.freebsd.org [IPv6:2001:1900:2254:206a::50:3]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 5BF121DA6 for ; Sat, 7 Dec 2013 08:28:48 +0000 (UTC) Received: from portsmon.freebsd.org ([127.0.1.104]) by portsmon.freebsd.org (8.14.7/8.14.7) with ESMTP id rB78SmK8018296 for ; Sat, 7 Dec 2013 08:28:48 GMT (envelope-from linimon@FreeBSD.org) Date: Sat, 7 Dec 2013 08:28:48 GMT Message-Id: <201312070828.rB78SmK8018296@portsmon.freebsd.org> From: linimon@FreeBSD.org To: python@freebsd.org Subject: FreeBSD ports that you maintain which are currently scheduled for deletion X-BeenThere: freebsd-python@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list Reply-To: portmgr-feedback@FreeBSD.org List-Id: FreeBSD-specific Python issues List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 07 Dec 2013 08:28:48 -0000 Dear FreeBSD port maintainer: As part of an ongoing effort to reduce the number of problems in the FreeBSD ports system, we periodically schedule removal of ports that have been judged to have outlived their usefulness. Often, this is due to a better alternative having become available and/or the cessation of development on the existing port. In some cases, ports are marked for removal because they fail to build and install correctly from their sources, or otherwise fail in operation. The ports, and the reason and date that they have been scheduled for removal, are listed below. If no one has stepped forward before that time to propose a way to fix the problems (such as via a PR), the ports will be deleted. portname: lang/python26 description: Interpreted object-oriented programming language maintainer: python@FreeBSD.org deprecated because: Python 2.6 is now end-of-life, please migrate to lang/python27 expiration date: 2014-01-01 build errors: none. overview: http://portsmon.FreeBSD.org/portoverview.py?category=lang&portname=python26 portname: lang/python31 description: Interpreted object-oriented programming language maintainer: python@FreeBSD.org deprecated because: Python 3.1 will be end-of-life soon, please migrate to lang/python33 expiration date: 2014-06-01 build errors: none. overview: http://portsmon.FreeBSD.org/portoverview.py?category=lang&portname=python31 If this problem is one that you are already aware of, please accept our apologies and ignore this message. On the other hand, if you no longer wish to maintain this port (or ports), please reply with a message stating that, and accept our thanks for your efforts in the past. Thanks for your efforts to help improve FreeBSD. From owner-freebsd-python@FreeBSD.ORG Sat Dec 7 17:00:33 2013 Return-Path: Delivered-To: freebsd-python@smarthost.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 12BE9773; Sat, 7 Dec 2013 17:00:33 +0000 (UTC) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:1900:2254:206c::16:87]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id DC3B4194C; Sat, 7 Dec 2013 17:00:32 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.7/8.14.7) with ESMTP id rB7H0WZv032368; Sat, 7 Dec 2013 17:00:32 GMT (envelope-from edwin@freefall.freebsd.org) Received: (from edwin@localhost) by freefall.freebsd.org (8.14.7/8.14.7/Submit) id rB7H0WjY032367; Sat, 7 Dec 2013 17:00:32 GMT (envelope-from edwin) Date: Sat, 7 Dec 2013 17:00:32 GMT Message-Id: <201312071700.rB7H0WjY032367@freefall.freebsd.org> To: edwin@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, freebsd-python@FreeBSD.org From: edwin@FreeBSD.org Subject: Re: ports/184572: [NEW PORT] science/py-pyaixi: Implementation of the MC-AIXI-CTW AI algorithm X-BeenThere: freebsd-python@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-Id: FreeBSD-specific Python issues List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 07 Dec 2013 17:00:33 -0000 Synopsis: [NEW PORT] science/py-pyaixi: Implementation of the MC-AIXI-CTW AI algorithm Responsible-Changed-From-To: freebsd-ports-bugs->freebsd-python Responsible-Changed-By: edwin Responsible-Changed-When: Sat Dec 7 17:00:32 UTC 2013 Responsible-Changed-Why: freebsd-python@ wants this port PRs (via the GNATS Auto Assign Tool) http://www.freebsd.org/cgi/query-pr.cgi?pr=184572 From owner-freebsd-python@FreeBSD.ORG Sat Dec 7 18:10:14 2013 Return-Path: Delivered-To: freebsd-python@smarthost.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id E6577223; Sat, 7 Dec 2013 18:10:14 +0000 (UTC) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:1900:2254:206c::16:87]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id BB31B1014; Sat, 7 Dec 2013 18:10:14 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.7/8.14.7) with ESMTP id rB7IAED9047846; Sat, 7 Dec 2013 18:10:14 GMT (envelope-from edwin@freefall.freebsd.org) Received: (from edwin@localhost) by freefall.freebsd.org (8.14.7/8.14.7/Submit) id rB7IAETA047845; Sat, 7 Dec 2013 18:10:14 GMT (envelope-from edwin) Date: Sat, 7 Dec 2013 18:10:14 GMT Message-Id: <201312071810.rB7IAETA047845@freefall.freebsd.org> To: edwin@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, freebsd-python@FreeBSD.org From: edwin@FreeBSD.org Subject: Re: ports/184581: [NEW PORT] devel/py-yunomi: Metrics library with rate, distribution and timing information X-BeenThere: freebsd-python@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-Id: FreeBSD-specific Python issues List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 07 Dec 2013 18:10:15 -0000 Synopsis: [NEW PORT] devel/py-yunomi: Metrics library with rate, distribution and timing information Responsible-Changed-From-To: freebsd-ports-bugs->freebsd-python Responsible-Changed-By: edwin Responsible-Changed-When: Sat Dec 7 18:10:14 UTC 2013 Responsible-Changed-Why: freebsd-python@ wants this port PRs (via the GNATS Auto Assign Tool) http://www.freebsd.org/cgi/query-pr.cgi?pr=184581 From owner-freebsd-python@FreeBSD.ORG Sat Dec 7 18:59:44 2013 Return-Path: Delivered-To: freebsd-python@smarthost.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 85776B4; Sat, 7 Dec 2013 18:59:44 +0000 (UTC) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:1900:2254:206c::16:87]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 59C231256; Sat, 7 Dec 2013 18:59:44 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.7/8.14.7) with ESMTP id rB7Ixiif059800; Sat, 7 Dec 2013 18:59:44 GMT (envelope-from wg@freefall.freebsd.org) Received: (from wg@localhost) by freefall.freebsd.org (8.14.7/8.14.7/Submit) id rB7IxiYP059799; Sat, 7 Dec 2013 18:59:44 GMT (envelope-from wg) Date: Sat, 7 Dec 2013 18:59:44 GMT Message-Id: <201312071859.rB7IxiYP059799@freefall.freebsd.org> To: wg@FreeBSD.org, freebsd-python@FreeBSD.org, wg@FreeBSD.org From: wg@FreeBSD.org Subject: Re: ports/184581: [NEW PORT] devel/py-yunomi: Metrics library with rate, distribution and timing information X-BeenThere: freebsd-python@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-Id: FreeBSD-specific Python issues List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 07 Dec 2013 18:59:44 -0000 Synopsis: [NEW PORT] devel/py-yunomi: Metrics library with rate, distribution and timing information Responsible-Changed-From-To: freebsd-python->wg Responsible-Changed-By: wg Responsible-Changed-When: Sat Dec 7 18:59:44 UTC 2013 Responsible-Changed-Why: I'll take it. http://www.freebsd.org/cgi/query-pr.cgi?pr=184581 From owner-freebsd-python@FreeBSD.ORG Sat Dec 7 21:40:09 2013 Return-Path: Delivered-To: freebsd-python@smarthost.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 2346C848; Sat, 7 Dec 2013 21:40:09 +0000 (UTC) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:1900:2254:206c::16:87]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id EC6811B3D; Sat, 7 Dec 2013 21:40:08 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.7/8.14.7) with ESMTP id rB7Le8Yx092703; Sat, 7 Dec 2013 21:40:08 GMT (envelope-from edwin@freefall.freebsd.org) Received: (from edwin@localhost) by freefall.freebsd.org (8.14.7/8.14.7/Submit) id rB7Le8JZ092702; Sat, 7 Dec 2013 21:40:08 GMT (envelope-from edwin) Date: Sat, 7 Dec 2013 21:40:08 GMT Message-Id: <201312072140.rB7Le8JZ092702@freefall.freebsd.org> To: edwin@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, freebsd-python@FreeBSD.org From: edwin@FreeBSD.org Subject: Re: ports/184584: [NEW PORT] math/py-bottleneck: Collection of fast NumPy array functions written in Cython X-BeenThere: freebsd-python@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-Id: FreeBSD-specific Python issues List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 07 Dec 2013 21:40:09 -0000 Synopsis: [NEW PORT] math/py-bottleneck: Collection of fast NumPy array functions written in Cython Responsible-Changed-From-To: freebsd-ports-bugs->freebsd-python Responsible-Changed-By: edwin Responsible-Changed-When: Sat Dec 7 21:40:08 UTC 2013 Responsible-Changed-Why: freebsd-python@ wants this port PRs (via the GNATS Auto Assign Tool) http://www.freebsd.org/cgi/query-pr.cgi?pr=184584