From owner-svn-ports-head@FreeBSD.ORG Sat Jun 6 06:44:09 2015 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 015762AD; Sat, 6 Jun 2015 06:44:08 +0000 (UTC) (envelope-from koobs.freebsd@gmail.com) Received: from mail-pd0-x22f.google.com (mail-pd0-x22f.google.com [IPv6:2607:f8b0:400e:c02::22f]) (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 C44491512; Sat, 6 Jun 2015 06:44:08 +0000 (UTC) (envelope-from koobs.freebsd@gmail.com) Received: by pdjm12 with SMTP id m12so66750678pdj.3; Fri, 05 Jun 2015 23:44:08 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20120113; h=sender:reply-to:subject:references:to:from:message-id:date :user-agent:mime-version:in-reply-to:content-type :content-transfer-encoding; bh=SjCRZvTs3p9k4LiwxMaO91qLIZk0RRQ4nGaFnP0Eyx0=; b=hFer34niF8bl1IKhSEUXDY/SnYrBDUZePxJ2YnZ4kcbGiOXhKs8Yo2NmpXaG96AuYp LMV4gy4VERu51ErLxnbmj5ZAp2gmWcLY9NiTPQpohaRQtw/1aE5f7vD9KcDWr3GQFy36 +HeZwRllnYyWDcJ3RXo6FDzkh1ATaJto/3vXZQwD2SFp+JRMr2ZhL6WTEwx8t9RzJjL+ bpCJdJVXxZAlYSDXVByjfwxkI6LEeoJ3ZlJy56ilnF0IZL2JJ8xb+gTWMD9/yKu9pVro VbDfbg5CWu8xNPJSJhNfOYSyLI0XRbBTqlSF/BEVAdvSzHpuXPHKm2Zz5i222F25RFuZ Ow6Q== X-Received: by 10.70.135.195 with SMTP id pu3mr12065404pdb.0.1433573048277; Fri, 05 Jun 2015 23:44:08 -0700 (PDT) Received: from [192.168.1.104] (ppp59-167-128-11.static.internode.on.net. [59.167.128.11]) by mx.google.com with ESMTPSA id pc9sm8598667pdb.6.2015.06.05.23.44.05 (version=TLSv1.2 cipher=ECDHE-RSA-AES128-GCM-SHA256 bits=128/128); Fri, 05 Jun 2015 23:44:07 -0700 (PDT) Sender: Kubilay Kocak Reply-To: koobs@FreeBSD.org Subject: Re: svn commit: r388656 - head/www/py-aiohttp References: <201506060624.t566OkG8031879@svn.freebsd.org> To: Antoine Brodin , ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org From: Kubilay Kocak Message-ID: <557296AD.8080300@FreeBSD.org> Date: Sat, 6 Jun 2015 16:43:57 +1000 User-Agent: Mozilla/5.0 (Windows NT 6.1; WOW64; rv:38.0) Gecko/20100101 Thunderbird/38.0 MIME-Version: 1.0 In-Reply-To: <201506060624.t566OkG8031879@svn.freebsd.org> Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 7bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 06 Jun 2015 06:44:09 -0000 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?