From mail@sysfault.org  Sun Dec  8 13:43:21 2013
Return-Path: <mail@sysfault.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 65797FBA
	for <FreeBSD-gnats-submit@freebsd.org>; Sun,  8 Dec 2013 13:43:21 +0000 (UTC)
Received: from smtprelay03.ispgateway.de (smtprelay03.ispgateway.de [80.67.31.41])
	(using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits))
	(No client certificate requested)
	by mx1.freebsd.org (Postfix) with ESMTPS id 1E1CA1399
	for <FreeBSD-gnats-submit@freebsd.org>; Sun,  8 Dec 2013 13:43:20 +0000 (UTC)
Received: from [89.183.23.49] (helo=medusa.sysfault.org)
	by smtprelay03.ispgateway.de with esmtpsa (TLSv1:AES256-SHA:256)
	(Exim 4.68)
	(envelope-from <mail@sysfault.org>)
	id 1Vpecf-0004oW-E6
	for FreeBSD-gnats-submit@freebsd.org; Sun, 08 Dec 2013 14:42:13 +0100
Received: from localhost ([127.0.0.1] helo=medusa.sysfault.org)
	by medusa.sysfault.org with esmtp (Exim 4.80.1 (FreeBSD))
	(envelope-from <mail@sysfault.org>)
	id 1Vpece-0009ic-AQ
	for FreeBSD-gnats-submit@freebsd.org; Sun, 08 Dec 2013 14:42:12 +0100
Received: (from marcus@localhost)
	by medusa.sysfault.org (8.14.7/8.14.7/Submit) id rB8DgC9s037361;
	Sun, 8 Dec 2013 14:42:12 +0100 (CET)
	(envelope-from marcus)
Message-Id: <201312081342.rB8DgC9s037361@medusa.sysfault.org>
Date: Sun, 8 Dec 2013 14:42:12 +0100 (CET)
From: Marcus von Appen <mva@FreeBSD.org>
Reply-To: Marcus von Appen <mva@FreeBSD.org>
To: FreeBSD-gnats-submit@freebsd.org
Cc:
Subject: [exp-run]: Removal of lang/python as implicit dependency for USE_PYTHON
X-Send-Pr-Version: 3.114
X-GNATS-Notify:

>Number:         184591
>Category:       ports
>Synopsis:       [exp-run]: Removal of lang/python as implicit dependency for USE_PYTHON
>Confidential:   no
>Severity:       non-critical
>Priority:       medium
>Responsible:    mva
>State:          closed
>Quarter:        
>Keywords:       
>Date-Required:  
>Class:          sw-bug
>Submitter-Id:   current-users
>Arrival-Date:   Sun Dec 08 13:50:00 UTC 2013
>Closed-Date:    Wed Dec 18 18:37:49 UTC 2013
>Last-Modified:  Wed Dec 18 18:37:49 UTC 2013
>Originator:     Marcus von Appen
>Release:        FreeBSD 9.2-PRERELEASE amd64
>Organization:
>Environment:
System: FreeBSD medusa.sysfault.org 9.2-PRERELEASE FreeBSD 9.2-PRERELEASE #11 r255414: Mon Sep 9 15:04:24 CEST 2013 root@medusa.sysfault.org:/usr/obj/usr/src/sys/MEDUSA amd64

>Description:
	lang/python has to vanish as RUN_DEPENDS  and BUILD_DEPENDS from
    bsd.python.mk to allow clean package builds for different python
    versions. The patch below requires an exp-run to fix the direct or
    indirect usage of `python` and build or installation time of ports.

>How-To-Repeat:
	n/a
>Fix:

Index: Mk/bsd.python.mk
===================================================================
--- Mk/bsd.python.mk	(revision 335877)
+++ Mk/bsd.python.mk	(working copy)
@@ -578,15 +578,13 @@

 .if ${PYTHON_NO_DEPENDS} == "NO"
 .if defined(USE_PYTHON_BUILD)
-BUILD_DEPENDS+=	${PYTHON_CMD}:${PYTHON_PORTSDIR} \
-				python:${PORTSDIR}/lang/python
+BUILD_DEPENDS+=	${PYTHON_CMD}:${PYTHON_PORTSDIR}
 .if defined(_WANTS_META_PORT)
 BUILD_DEPENDS+=	python${_WANTS_META_PORT}:${PORTSDIR}/lang/python${_WANTS_META_PORT}
 .endif
 .endif
 .if defined(USE_PYTHON_RUN)
-RUN_DEPENDS+=	${PYTHON_CMD}:${PYTHON_PORTSDIR} \
-				python:${PORTSDIR}/lang/python
+RUN_DEPENDS+=	${PYTHON_CMD}:${PYTHON_PORTSDIR}
 .if defined(_WANTS_META_PORT)
 RUN_DEPENDS+=	python${_WANTS_META_PORT}:${PORTSDIR}/lang/python${_WANTS_META_PORT}
 .endif
>Release-Note:
>Audit-Trail:
Responsible-Changed-From-To: freebsd-ports-bugs->freebsd-python 
Responsible-Changed-By: edwin 
Responsible-Changed-When: Sun Dec 8 13:50:08 UTC 2013 
Responsible-Changed-Why:  
Over to maintainer (via the GNATS Auto Assign Tool) 

http://www.freebsd.org/cgi/query-pr.cgi?pr=184591 
Responsible-Changed-From-To: freebsd-python->portmgr 
Responsible-Changed-By: mva 
Responsible-Changed-When: Sun Dec 8 14:02:12 UTC 2013 
Responsible-Changed-Why:  
exp-runs are to be done by portmgr 

http://www.freebsd.org/cgi/query-pr.cgi?pr=184591 
Responsible-Changed-From-To: portmgr->bdrewery 
Responsible-Changed-By: bdrewery 
Responsible-Changed-When: Tue Dec 10 06:56:05 CST 2013 
Responsible-Changed-Why:  
take for exp-run 

http://www.freebsd.org/cgi/query-pr.cgi?pr=184591 
Responsible-Changed-From-To: bdrewery->mva 
Responsible-Changed-By: bdrewery 
Responsible-Changed-When: Thu Dec 12 06:27:35 CST 2013 
Responsible-Changed-Why:  
exp-run done 

http://www.freebsd.org/cgi/query-pr.cgi?pr=184591 

From: Bryan Drewery <bdrewery@FreeBSD.org>
To: bug-followup@FreeBSD.org, mva@FreeBSD.org
Cc:  
Subject: Re: ports/184591: [exp-run]: Removal of lang/python as implicit dependency
 for USE_PYTHON
Date: Thu, 12 Dec 2013 06:28:54 -0600

 This is an OpenPGP/MIME signed message (RFC 4880 and 3156)
 --I7EXdGtK7ujPREc8oM102CdKiwWVuaCUd
 Content-Type: text/plain; charset=ISO-8859-1
 Content-Transfer-Encoding: quoted-printable
 
 exp-run done.
 
 The server the logs are on is having networking issues so you may be
 unable to fetch them for now. I have alerted clusteradm. I looked
 through a few and they are getting 'python: not found'.
 
 http://package21.nyi.freebsd.org/bulk/91amd64-default-pr_184591/2013-12-1=
 1_13h04m41s
 
 new failures:
 
 > + {"origin"=3D>"biology/fasta3", "pkgname"=3D>"fasta3-36.3.6d", "phase"=
 =3D>"fetch", "errortype"=3D>"fetch"}
 > + {"origin"=3D>"databases/percona55-client", "pkgname"=3D>"percona55-cl=
 ient-5.5.34.32.0", "phase"=3D>"fetch", "errortype"=3D>"fetch"}
 > + {"origin"=3D>"databases/percona56-client", "pkgname"=3D>"percona56-cl=
 ient-5.6.14.r62.0", "phase"=3D>"fetch", "errortype"=3D>"fetch"}
 > + {"origin"=3D>"databases/postgresql-libpqxx3", "pkgname"=3D>"postgresq=
 l-libpqxx3-3.1.1", "phase"=3D>"build", "errortype"=3D>"makefile"}
 > + {"origin"=3D>"deskutils/semantik", "pkgname"=3D>"semantik-0.8.4", "ph=
 ase"=3D>"configure", "errortype"=3D>"cluster"}
 > + {"origin"=3D>"devel/kdevplatform", "pkgname"=3D>"kdevplatform-1.5.2",=
  "phase"=3D>"build", "errortype"=3D>"process_failed"}
 > + {"origin"=3D>"devel/libredblack", "pkgname"=3D>"libredblack-1.3_1", "=
 phase"=3D>"package", "errortype"=3D>"cluster"}
 > + {"origin"=3D>"devel/llvm32", "pkgname"=3D>"llvm32-3.2_2", "phase"=3D>=
 "build", "errortype"=3D>"gcc4_error"}
 > + {"origin"=3D>"emulators/mess", "pkgname"=3D>"mess-0.150_1", "phase"=3D=
 >"build", "errortype"=3D>"process_failed"}
 > + {"origin"=3D>"emulators/seabios-devel", "pkgname"=3D>"seabios-devel-1=
 =2E6.3.1", "phase"=3D>"build", "errortype"=3D>"process_failed"}
 > + {"origin"=3D>"emulators/virtualbox-ose", "pkgname"=3D>"virtualbox-ose=
 -4.2.20", "phase"=3D>"build", "errortype"=3D>"cluster"}
 > + {"origin"=3D>"emulators/virtualbox-ose-legacy", "pkgname"=3D>"virtual=
 box-ose-legacy-4.1.24_1", "phase"=3D>"build", "errortype"=3D>"cluster"}
 > + {"origin"=3D>"french/tvdownloader", "pkgname"=3D>"fr-tvdownloader-0.7=
 =2E2_4", "phase"=3D>"build", "errortype"=3D>"cluster"}
 > + {"origin"=3D>"games/battletanks", "pkgname"=3D>"btanks-0.9.8083_6", "=
 phase"=3D>"build", "errortype"=3D>"cluster"}
 > + {"origin"=3D>"games/liquidwar", "pkgname"=3D>"liquidwar-5.6.4_3", "ph=
 ase"=3D>"install", "errortype"=3D>"cluster"}
 > + {"origin"=3D>"games/pykawari", "pkgname"=3D>"pykawari-8.2.8_4", "phas=
 e"=3D>"build", "errortype"=3D>"bad_C++_code"}
 > + {"origin"=3D>"games/starfighter", "pkgname"=3D>"starfighter-1.2_1", "=
 phase"=3D>"build", "errortype"=3D>"process_failed"}
 > + {"origin"=3D>"games/teeworlds", "pkgname"=3D>"teeworlds-0.6.2", "phas=
 e"=3D>"build", "errortype"=3D>"cluster"}
 > + {"origin"=3D>"graphics/jogamp-jogl", "pkgname"=3D>"jogamp-jogl-2.0.20=
 100914", "phase"=3D>"build", "errortype"=3D>"cluster"}
 > + {"origin"=3D>"graphics/kipi-plugin-kioexport", "pkgname"=3D>"kipi-plu=
 gin-kioexport-3.2.0", "phase"=3D>"build", "errortype"=3D>"process_failed"=
 }
 > + {"origin"=3D>"graphics/lcms-python", "pkgname"=3D>"lcms-python-1.19",=
  "phase"=3D>"install", "errortype"=3D>"install_error"}
 > + {"origin"=3D>"graphics/lensfun", "pkgname"=3D>"lensfun-0.2.7", "phase=
 "=3D>"configure", "errortype"=3D>"configure_error"}
 > + {"origin"=3D>"graphics/libosmesa", "pkgname"=3D>"libosmesa-9.2.3", "p=
 hase"=3D>"configure", "errortype"=3D>"configure_error"}
 > + {"origin"=3D>"graphics/nathive", "pkgname"=3D>"nathive-0.924", "phase=
 "=3D>"build", "errortype"=3D>"process_failed"}
 > + {"origin"=3D>"graphics/opencolorio", "pkgname"=3D>"opencolorio-1.0.8_=
 2", "phase"=3D>"build", "errortype"=3D>"cluster"}
 > + {"origin"=3D>"graphics/oyranos", "pkgname"=3D>"oyranos-0.9.4_1", "pha=
 se"=3D>"build", "errortype"=3D>"coredump"}
 > + {"origin"=3D>"graphics/pecomato", "pkgname"=3D>"pecomato-0.0.15", "ph=
 ase"=3D>"build", "errortype"=3D>"cluster"}
 > + {"origin"=3D>"japanese/mozc-server", "pkgname"=3D>"ja-mozc-server-1.1=
 1.1502.102", "phase"=3D>"build", "errortype"=3D>"process_failed"}
 > + {"origin"=3D>"java/java3d", "pkgname"=3D>"java3d-1.5.2_2", "phase"=3D=
 >"build", "errortype"=3D>"cluster"}
 > + {"origin"=3D>"java/jboss72", "pkgname"=3D>"jboss72-7.2.0_1", "phase"=3D=
 >"build", "errortype"=3D>"cluster"}
 > + {"origin"=3D>"lang/tinypy", "pkgname"=3D>"tinypy-1.1", "phase"=3D>"in=
 stall", "errortype"=3D>"install_error"}
 > + {"origin"=3D>"lang/x10", "pkgname"=3D>"x10-2.2.1", "phase"=3D>"build"=
 , "errortype"=3D>"cluster"}
 > + {"origin"=3D>"math/biggles", "pkgname"=3D>"biggles-1.6.6_2", "phase"=3D=
 >"build", "errortype"=3D>"missing_header"}
 > + {"origin"=3D>"math/petsc", "pkgname"=3D>"petsc-2.3.3.p0_8,1", "phase"=
 =3D>"configure", "errortype"=3D>"configure_error"}
 > + {"origin"=3D>"misc/cuecat", "pkgname"=3D>"cuecat-1.1_4", "phase"=3D>"=
 install", "errortype"=3D>"cluster"}
 > + {"origin"=3D>"misc/pylize", "pkgname"=3D>"pylize-1.3.b_3", "phase"=3D=
 >"build", "errortype"=3D>"cluster"}
 > + {"origin"=3D>"net-im/cjc", "pkgname"=3D>"cjc-1.2.1", "phase"=3D>"inst=
 all", "errortype"=3D>"cluster"}
 > + {"origin"=3D>"net-im/telepathy-idle", "pkgname"=3D>"telepathy-idle-0.=
 1.11", "phase"=3D>"configure", "errortype"=3D>"configure_error"}
 > + {"origin"=3D>"net-mgmt/wmi-client", "pkgname"=3D>"wmi-client-1.3.16",=
  "phase"=3D>"build", "errortype"=3D>"cluster"}
 > + {"origin"=3D>"net/mpich2", "pkgname"=3D>"mpich2-1.3.2.p1_2,5", "phase=
 "=3D>"configure", "errortype"=3D>"configure_error"}
 > + {"origin"=3D>"net/neubot", "pkgname"=3D>"neubot-0.4.16.9", "phase"=3D=
 >"stage", "errortype"=3D>"cluster"}
 > + {"origin"=3D>"net/py-pypcap", "pkgname"=3D>"py27-pypcap-1.1_4", "phas=
 e"=3D>"build", "errortype"=3D>"cluster"}
 > + {"origin"=3D>"net/rabbitmq", "pkgname"=3D>"rabbitmq-3.1.5", "phase"=3D=
 >"build", "errortype"=3D>"process_failed"}
 > + {"origin"=3D>"net/rabbitmq-c", "pkgname"=3D>"rabbitmq-c-0.0.1_1", "ph=
 ase"=3D>"configure", "errortype"=3D>"configure_error"}
 > + {"origin"=3D>"net/rabbitmq-c-devel", "pkgname"=3D>"rabbitmq-c-devel-0=
 =2E0.1_2", "phase"=3D>"configure", "errortype"=3D>"configure_error"}
 > + {"origin"=3D>"net/samba4", "pkgname"=3D>"samba4-4.0.13", "phase"=3D>"=
 configure", "errortype"=3D>"configure_error"}
 > + {"origin"=3D>"net/xorp-devel", "pkgname"=3D>"xorp-devel-2009120801_2"=
 , "phase"=3D>"build", "errortype"=3D>"process_failed"}
 > + {"origin"=3D>"science/abinit", "pkgname"=3D>"abinit-5.7.3_12", "phase=
 "=3D>"configure", "errortype"=3D>"cluster"}
 > + {"origin"=3D>"security/cfv", "pkgname"=3D>"cfv-1.18.3", "phase"=3D>"b=
 uild", "errortype"=3D>"cluster"}
 > + {"origin"=3D>"security/py-pyme", "pkgname"=3D>"py27-pyme-0.8.1_5", "p=
 hase"=3D>"build", "errortype"=3D>"process_failed"}
 > + {"origin"=3D>"shells/jailkit", "pkgname"=3D>"jailkit-2.15", "phase"=3D=
 >"configure", "errortype"=3D>"configure_error"}
 > + {"origin"=3D>"sysutils/epylog", "pkgname"=3D>"epylog-1.0.3_2", "phase=
 "=3D>"configure", "errortype"=3D>"configure_error"}
 > + {"origin"=3D>"sysutils/slurm-hpc", "pkgname"=3D>"slurm-hpc-2.6.4", "p=
 hase"=3D>"build", "errortype"=3D>"termios"}
 > + {"origin"=3D>"sysutils/x86info", "pkgname"=3D>"x86info-1.30", "phase"=
 =3D>"build", "errortype"=3D>"process_failed"}
 > + {"origin"=3D>"sysutils/xen-tools", "pkgname"=3D>"xen-tools-4.1.3_3", =
 "phase"=3D>"build", "errortype"=3D>"process_failed"}
 > + {"origin"=3D>"sysutils/zeitgeist", "pkgname"=3D>"zeitgeist-0.8.2_1", =
 "phase"=3D>"configure", "errortype"=3D>"configure_error"}
 > + {"origin"=3D>"textproc/py-pyx12", "pkgname"=3D>"py27-pyx12-1.5.0", "p=
 hase"=3D>"install", "errortype"=3D>"cluster"}
 > + {"origin"=3D>"textproc/py-tvgrab", "pkgname"=3D>"py27-TVGrab-0.5.1_3"=
 , "phase"=3D>"configure", "errortype"=3D>"cluster"}
 > + {"origin"=3D>"textproc/queequeg", "pkgname"=3D>"queequeg-0.91_1", "ph=
 ase"=3D>"build", "errortype"=3D>"cluster"}
 > + {"origin"=3D>"textproc/rubber", "pkgname"=3D>"rubber-1.1_4", "phase"=3D=
 >"configure", "errortype"=3D>"configure_error"}
 > + {"origin"=3D>"textproc/xqilla", "pkgname"=3D>"xqilla-2.3.0_1,1", "pha=
 se"=3D>"build/runaway", "errortype"=3D>"runaway_process"}
 > + {"origin"=3D>"www/mod_pagespeed", "pkgname"=3D>"mod_pagespeed-1.2.24.=
 2_1,1", "phase"=3D>"configure", "errortype"=3D>"cluster"}
 > + {"origin"=3D>"www/node", "pkgname"=3D>"node-0.10.22", "phase"=3D>"con=
 figure", "errortype"=3D>"configure_error"}
 > + {"origin"=3D>"www/node-devel", "pkgname"=3D>"node-devel-0.11.8", "pha=
 se"=3D>"configure", "errortype"=3D>"configure_error"}
 > + {"origin"=3D>"www/py-webware", "pkgname"=3D>"py27-webware-1.1.1", "ph=
 ase"=3D>"install", "errortype"=3D>"cluster"}
 > + {"origin"=3D>"www/webkit-gtk3", "pkgname"=3D>"webkit-gtk3-1.8.3_1", "=
 phase"=3D>"configure", "errortype"=3D>"configure_error"}
 > + {"origin"=3D>"x11-fm/twander", "pkgname"=3D>"twander-3.231_1", "phase=
 "=3D>"build", "errortype"=3D>"cluster"}
 > + {"origin"=3D>"x11-wm/awesome2", "pkgname"=3D>"awesome2-2.3.6_4", "pha=
 se"=3D>"build", "errortype"=3D>"makefile"}
 > + {"origin"=3D>"x11-wm/ede", "pkgname"=3D>"ede-2.0_2", "phase"=3D>"buil=
 d", "errortype"=3D>"cluster"}
 
 
 
 --=20
 Regards,
 Bryan Drewery
 
 
 --I7EXdGtK7ujPREc8oM102CdKiwWVuaCUd
 Content-Type: application/pgp-signature; name="signature.asc"
 Content-Description: OpenPGP digital signature
 Content-Disposition: attachment; filename="signature.asc"
 
 -----BEGIN PGP SIGNATURE-----
 Version: GnuPG v1.4.10 (MingW32)
 Comment: Using GnuPG with Thunderbird - http://www.enigmail.net/
 
 iQEcBAEBAgAGBQJSqawGAAoJEDXXcbtuRpfPRJAH/ApBYRekab+b6MFxrclBuCuf
 dGfqKmtq/EJL7xD51XWuEKq/296FrYThHO1y2pq1f/Hxkimm9Q5NFhvR61brpxxQ
 A4v+NvaKqRUAFH47QiWW/6AkzrPX+/siN/N9ZB9b/CRk3ypSStf0JSedR1ciOx1d
 2ggu5xCduejC7+svU53aL3UOsgA6/Bi2Jx8dYKGzQK9IkHd7s+kG8PwffHAPg0z9
 /FfA+uRPl94Ur9tik71HubQlk4w1KnwNHprOaCg/SYbwfExvpx9nO/1aiPKx6KpK
 HUSC60SYw/tYKDIDdhbapjP2bZvrSnUuSxTGiNn26hihwu1lAy4aCHlNkrwUPz0=
 =AcCQ
 -----END PGP SIGNATURE-----
 
 --I7EXdGtK7ujPREc8oM102CdKiwWVuaCUd--

From: Marcus von Appen <mva@FreeBSD.org>
To: bug-followup@FreeBSD.org, Bryan Drewery <bdrewery@FreeBSD.org>
Cc:  
Subject: Re: ports/184591: [exp-run]: Removal of lang/python as implicit
 dependency for USE_PYTHON
Date: Sun, 15 Dec 2013 22:45:48 +0100

 --nFreZHaLTZJo0R7j
 Content-Type: text/plain; charset=us-ascii
 Content-Disposition: inline
 
 On, Thu Dec 12, 2013, Bryan Drewery wrote:
 
 > exp-run done.
 >
 > The server the logs are on is having networking issues so you may be
 > unable to fetch them for now. I have alerted clusteradm. I looked
 > through a few and they are getting 'python: not found'.
 >
 > http://package21.nyi.freebsd.org/bulk/91amd64-default-pr_184591/2013-12-11_13h04m41s
 >
 [...]
 
 We should have fixed most of the issues related to the change. Can you
 please run it again, so we can check the skipped ones?
 
 Thanks a lot!
 Marcus
 
 --nFreZHaLTZJo0R7j
 Content-Type: application/pgp-signature
 
 -----BEGIN PGP SIGNATURE-----
 Version: GnuPG v2.0.22 (FreeBSD)
 
 iEYEARECAAYFAlKuIwwACgkQi68/ErJnpkdcfgCgqCBuUFzWfjW/IasTLLsD2veE
 bMEAnRfgUYTMrWA+2Z6LOo9AKM0xTLmd
 =r56E
 -----END PGP SIGNATURE-----
 
 --nFreZHaLTZJo0R7j--
Responsible-Changed-From-To: mva->bdrewery 
Responsible-Changed-By: bdrewery 
Responsible-Changed-When: Sun Dec 15 20:37:09 CST 2013 
Responsible-Changed-Why:  
take for another exp-run 

http://www.freebsd.org/cgi/query-pr.cgi?pr=184591 
Responsible-Changed-From-To: bdrewery->mva 
Responsible-Changed-By: bdrewery 
Responsible-Changed-When: Mon Dec 16 19:50:44 CST 2013 
Responsible-Changed-Why:  
back to mva 

http://www.freebsd.org/cgi/query-pr.cgi?pr=184591 

From: Bryan Drewery <bdrewery@FreeBSD.org>
To: bug-followup@FreeBSD.org, mva@FreeBSD.org
Cc:  
Subject: Re: ports/184591: [exp-run]: Removal of lang/python as implicit dependency
 for USE_PYTHON
Date: Mon, 16 Dec 2013 19:50:22 -0600

 This is an OpenPGP/MIME signed message (RFC 4880 and 3156)
 --rKoUdc2jusXxWRLgC2o9tMdfrr99TbsSV
 Content-Type: text/plain; charset=ISO-8859-1
 Content-Transfer-Encoding: quoted-printable
 
 Latest results have these new failures:
 
 http://package20.nyi.freebsd.org/bulk/91amd64-default-pr_184591/2013-12-1=
 6_02h38m39s
 
 > + {"origin"=3D>"audio/mp3splt-gtk", "pkgname"=3D>"mp3splt-gtk-0.8.2", "=
 phase"=3D>"package", "errortype"=3D>"cluster"}
 > + {"origin"=3D>"biology/fasta3", "pkgname"=3D>"fasta3-36.3.6d", "phase"=
 =3D>"fetch", "errortype"=3D>"fetch"}
 > + {"origin"=3D>"comms/gnuradio", "pkgname"=3D>"gnuradio-3.6.5_2", "phas=
 e"=3D>"build", "errortype"=3D>"cluster"}
 > + {"origin"=3D>"databases/percona55-client", "pkgname"=3D>"percona55-cl=
 ient-5.5.34.32.0", "phase"=3D>"fetch", "errortype"=3D>"fetch"}
 > + {"origin"=3D>"databases/percona56-client", "pkgname"=3D>"percona56-cl=
 ient-5.6.14.r62.0", "phase"=3D>"fetch", "errortype"=3D>"fetch"}
 > + {"origin"=3D>"games/liquidwar", "pkgname"=3D>"liquidwar-5.6.4_3", "ph=
 ase"=3D>"install", "errortype"=3D>"cluster"}
 > + {"origin"=3D>"java/jboss72", "pkgname"=3D>"jboss72-7.2.0_1", "phase"=3D=
 >"build/runaway", "errortype"=3D>"runaway_process"}
 > + {"origin"=3D>"net-im/kopete-kde4", "pkgname"=3D>"kopete-4.10.5_1", "p=
 hase"=3D>"build", "errortype"=3D>"process_failed"}
 > + {"origin"=3D>"net/p5-Net-RabbitMQ", "pkgname"=3D>"p5-Net-RabbitMQ-0.2=
 =2E0", "phase"=3D>"run-depends", "errortype"=3D>"cluster"}
 > + {"origin"=3D>"science/ncs", "pkgname"=3D>"ncs-2.0.4_2", "phase"=3D>"c=
 onfigure", "errortype"=3D>"configure_error"}
 > + {"origin"=3D>"www/mod_spdy", "pkgname"=3D>"mod_spdy-0.9.4.1", "phase"=
 =3D>"configure", "errortype"=3D>"cluster"}
 > + {"origin"=3D>"www/py-webware", "pkgname"=3D>"py27-webware-1.1.1", "ph=
 ase"=3D>"install", "errortype"=3D>"cluster"}
 
 
 Most look unrelated but the py ones perhaps. Approved once you feel it
 is ready.
 
 --=20
 Regards,
 Bryan Drewery
 
 
 --rKoUdc2jusXxWRLgC2o9tMdfrr99TbsSV
 Content-Type: application/pgp-signature; name="signature.asc"
 Content-Description: OpenPGP digital signature
 Content-Disposition: attachment; filename="signature.asc"
 
 -----BEGIN PGP SIGNATURE-----
 Version: GnuPG v1.4.10 (MingW32)
 Comment: Using GnuPG with Thunderbird - http://www.enigmail.net/
 
 iQEcBAEBAgAGBQJSr63fAAoJEDXXcbtuRpfPXUUIAM8wK9CXzi5dc03jho3DmR4w
 y0KOmgpDIVJMMeK8PkHpjA2RTn049LZirN6WoQe2n0YZ/e+CtFhPHgN+/8wMMgvI
 WczWRP5gspjrgSMFgTdxcHt4dnt0dE+zWU0fXGQidFlKXYSmqhErGTZtORO/0Hld
 3IBZ6wbjko7WfaSi2ViS3VSVekK5XJNe52zQJwUTuCB5KF+jeJFxQw8PUFtXckak
 Gny7NQY8PbVOxd+AvNFx5StYrxmvast7gT30dOvWvxF2aACBBOSPcvCgT2wf3OpI
 9ZW9gsFcCz6wDEfioyElw/wku71SK6sWHYdchSsalPY66tDSv3E0m4iUwTvnrWI=
 =rodG
 -----END PGP SIGNATURE-----
 
 --rKoUdc2jusXxWRLgC2o9tMdfrr99TbsSV--
State-Changed-From-To: open->closed 
State-Changed-By: mva 
State-Changed-When: Wed Dec 18 18:37:48 UTC 2013 
State-Changed-Why:  
Committed. Thanks! 

http://www.freebsd.org/cgi/query-pr.cgi?pr=184591 
>Unformatted:
