From owner-freebsd-python@FreeBSD.ORG Tue May 21 05:20:44 2013 Return-Path: Delivered-To: python@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by hub.freebsd.org (Postfix) with ESMTP id 3E3CCFE6; Tue, 21 May 2013 05:20:44 +0000 (UTC) (envelope-from trtrmitya@gmail.com) Received: from mail-la0-x235.google.com (mail-la0-x235.google.com [IPv6:2a00:1450:4010:c03::235]) by mx1.freebsd.org (Postfix) with ESMTP id EFAF18A; Tue, 21 May 2013 05:20:42 +0000 (UTC) Received: by mail-la0-f53.google.com with SMTP id ea20so218371lab.12 for ; Mon, 20 May 2013 22:20:41 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20120113; h=content-type:mime-version:subject:from:in-reply-to:date:cc :content-transfer-encoding:message-id:references:to:x-mailer; bh=ZFuU0e8wu8QUFAzm5a4lnS0VIpNpfG9yINIhtr4SaRU=; b=DH/wPNi8eGZ+yodWTvDvDfgyEBXltr2rC2AAATg5reOzxob0ba5FWFhtoQUT26Cf9g O74vJCAlb+8Tvm9OgWtW8lqp9zPeoF8/iLtsomPVoDOfDDQSgduBtyr23j7MD3YVleSZ /jgSV9+3kMsZlP7pq/BANcRzHMLbUscWtl6sTK1dF7h0vOnfSILV687qH9XiVJuiCKSb XE2clb29V7RPjDxiWGp+4RvbgssdVjHcj+slNVNSnES3vW5Oy25B2ZYTEtuSwscjrZsE JTQEGoWQ+5h9b9POkcud3IIxTZ3NDNQcNuacgMbGMhs2a4BcXUgPPpzlhWCfV+Jhw06L zM8g== X-Received: by 10.152.5.37 with SMTP id p5mr409830lap.13.1369113641347; Mon, 20 May 2013 22:20:41 -0700 (PDT) Received: from ?IPv6:2a02:6b8::408:310c:c116:782e:498b? ([2a02:6b8:0:408:310c:c116:782e:498b]) by mx.google.com with ESMTPSA id 9sm322285lbz.16.2013.05.20.22.20.39 for (version=TLSv1 cipher=ECDHE-RSA-RC4-SHA bits=128/128); Mon, 20 May 2013 22:20:40 -0700 (PDT) Content-Type: text/plain; charset=iso-8859-1 Mime-Version: 1.0 (Mac OS X Mail 6.3 \(1503\)) Subject: Re: svn commit: r318575 - in head/math/py-numpy: . files From: Dmitry Sivachenko In-Reply-To: <519B01BF.5040902@yandex.ru> Date: Tue, 21 May 2013 09:20:38 +0400 Content-Transfer-Encoding: quoted-printable Message-Id: <8B6A9B44-1223-462B-BED6-8B95067CBEEF@gmail.com> References: <201305200620.r4K6KTnO039444@svn.freebsd.org> <20130520072122.GA1287@medusa.sysfault.org> <6B980234-D2EA-4FEE-A7EF-829F5392E40B@FreeBSD.org> <20130520162827.GB1287@medusa.sysfault.org> <20130520184050.GB31335@slackbox.erewhon.net> <519A7C38.9020109@y.saltant.net> <519B01BF.5040902@yandex.ru> To: Ruslan Makhmatkhanov X-Mailer: Apple Mail (2.1503) Cc: svn-ports-head@FreeBSD.org, Roland Smith , svn-ports-all@FreeBSD.org, ports-committers@FreeBSD.org, "John W. O'Brien" , python@FreeBSD.org, Marcus von Appen X-BeenThere: freebsd-python@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: FreeBSD-specific Python issues List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 21 May 2013 05:20:44 -0000 On 21.05.2013, at 9:10, Ruslan Makhmatkhanov wrote: > John W. O'Brien wrote on 20.05.2013 23:40: >>=20 >> The attached patch should fix the bulk of the packing plist problems >> between pre- and post-PEP-3147 caches. I've smoke tested these with = py27 >> and py33. Improvements are welcome. >>=20 >> There is still one remaining problem, which is that the following are >> only, it seems, installed under py27 but not under py33. If needed, I >> should have some spare cycles later to track down the specific = condition. >=20 > John, would you please common pattern for this that already used in = the ports tree? Look at /usr/ports/databases/py-fdb/Makefile for = example. It's as easy as adding this lines to port's Makefile: >=20 > .if ${PYTHON_REL} >=3D 320 > .include "${FILESDIR}/py3k-fix-pkg-plist.inc" > .endif Yes, that seems to be a proper solution. As far as I remember it was an intention to add that into bsd.python.mk, = so every single python-related port does not include this. What is the status of this? Thanks!