From owner-svn-ports-all@FreeBSD.ORG Sat Jun 6 07:50:28 2015 Return-Path: Delivered-To: svn-ports-all@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 50E329B4; Sat, 6 Jun 2015 07:50:28 +0000 (UTC) (envelope-from antoine.brodin.freebsd@gmail.com) Received: from mail-wg0-x234.google.com (mail-wg0-x234.google.com [IPv6:2a00:1450:400c:c00::234]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (Client CN "smtp.gmail.com", Issuer "Google Internet Authority G2" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id DD79A122C; Sat, 6 Jun 2015 07:50:27 +0000 (UTC) (envelope-from antoine.brodin.freebsd@gmail.com) Received: by wgez8 with SMTP id z8so70678648wge.0; Sat, 06 Jun 2015 00:50:26 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20120113; h=mime-version:sender:in-reply-to:references:date:message-id:subject :from:to:cc:content-type; bh=j2Skgo4YXv1iARuoY0Hx8aErHOj/5QAMucqIJ2vNibQ=; b=BD01tAIH2GL/OMo6eabricomCyc3xVuWSMc1QsTO+sZ5yojQmTWX7w/V0yRIZ0jH5p MIl0fWFTYkO1WG+NPuoXVWEEO7geXRBRQKxCFTkMQT+shacaqlnbcm3swfjEDNCQoH9I RulgrJSglObeQFWLDSMAhVYsPhjhg3Z3D/hDoRB0+QsM8K8YmMmzrtiuj7/Usa0NKnyY u7cVteLm2aEaGPTNAMffYRO/YihE5zkcgNllD+1Xx+zvpBJu2Xd9d8lsbNC4nfDs/2+p SJiuv3CAD+MnF+iGQCm1Z183l0cvjl0JHql2UjvbWSs5xDTwz5FafTTo23BFYevbiBWc nG8Q== MIME-Version: 1.0 X-Received: by 10.180.94.106 with SMTP id db10mr3648377wib.1.1433577026404; Sat, 06 Jun 2015 00:50:26 -0700 (PDT) Sender: antoine.brodin.freebsd@gmail.com Received: by 10.194.17.130 with HTTP; Sat, 6 Jun 2015 00:50:26 -0700 (PDT) In-Reply-To: <557296AD.8080300@FreeBSD.org> References: <201506060624.t566OkG8031879@svn.freebsd.org> <557296AD.8080300@FreeBSD.org> Date: Sat, 6 Jun 2015 09:50:26 +0200 X-Google-Sender-Auth: 3u9x9uQOLjvNDSfquZgaWetaZog Message-ID: Subject: Re: svn commit: r388656 - head/www/py-aiohttp From: Antoine Brodin To: koobs@freebsd.org Cc: "ports-committers@freebsd.org" , "svn-ports-all@freebsd.org" , "svn-ports-head@freebsd.org" Content-Type: text/plain; charset=UTF-8 X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 06 Jun 2015 07:50:28 -0000 On Sat, Jun 6, 2015 at 8:43 AM, Kubilay Kocak wrote: > On 6/06/2015 4:24 PM, Antoine Brodin wrote: >> Author: antoine >> Date: Sat Jun 6 06:24:45 2015 >> New Revision: 388656 >> URL: https://svnweb.freebsd.org/changeset/ports/388656 >> >> Log: >> Ignore on the package builders >> >> Reported by: pkg-fallout >> >> Modified: >> head/www/py-aiohttp/Makefile >> >> Modified: head/www/py-aiohttp/Makefile >> ============================================================================== >> --- head/www/py-aiohttp/Makefile Sat Jun 6 06:20:45 2015 (r388655) >> +++ head/www/py-aiohttp/Makefile Sat Jun 6 06:24:45 2015 (r388656) >> @@ -30,6 +30,9 @@ USE_PYTHON= autoplist distutils >> .if ${PYTHON_REL} < 3400 >> RUN_DEPENDS+= ${PYTHON_PKGNAMEPREFIX}asyncio>0:${PORTSDIR}/devel/py-asyncio >> .endif >> +.if defined(PACKAGE_BUILDING) && ${PYTHON_VER} != ${PYTHON_DEFAULT} >> +IGNORE= you have python ${PYTHON_DEFAULT} set as the default, and this needs ${PYTHON_VER} >> +.endif >> >> regression-test: build >> @cd ${WRKSRC} && ${PYTHON_CMD} ${PYDISTUTILS_SETUP} test >> > > If this is the only solution pending improvements in the framework > and/or poudriere, then might it better be accomplished globally for > Python ! 2.7 (or > 2.7) ports in the framework, rather than in every port? If you have a patch doing this at the python.mk level, and that doesn't prevent packaging stuff like gnome3 or blender (they are currently packaged despite depending on python3.4), please submit it for exp-run. Cheers, Antoine