From owner-freebsd-python@freebsd.org  Sun Oct  2 17:52:30 2016
Return-Path: <owner-freebsd-python@freebsd.org>
Delivered-To: freebsd-python@mailman.ysv.freebsd.org
Received: from mx1.freebsd.org (mx1.freebsd.org
 [IPv6:2001:1900:2254:206a::19:1])
 by mailman.ysv.freebsd.org (Postfix) with ESMTP id 8E3A9AF1EF1
 for <freebsd-python@mailman.ysv.freebsd.org>;
 Sun,  2 Oct 2016 17:52:30 +0000 (UTC)
 (envelope-from bugzilla-noreply@freebsd.org)
Received: from mailman.ysv.freebsd.org (mailman.ysv.freebsd.org
 [IPv6:2001:1900:2254:206a::50:5])
 by mx1.freebsd.org (Postfix) with ESMTP id 77928D45
 for <freebsd-python@freebsd.org>; Sun,  2 Oct 2016 17:52:30 +0000 (UTC)
 (envelope-from bugzilla-noreply@freebsd.org)
Received: by mailman.ysv.freebsd.org (Postfix)
 id 76BA7AF1EF0; Sun,  2 Oct 2016 17:52:30 +0000 (UTC)
Delivered-To: python@mailman.ysv.freebsd.org
Received: from mx1.freebsd.org (mx1.freebsd.org
 [IPv6:2001:1900:2254:206a::19:1])
 by mailman.ysv.freebsd.org (Postfix) with ESMTP id 7660AAF1EEF
 for <python@mailman.ysv.freebsd.org>; Sun,  2 Oct 2016 17:52:30 +0000 (UTC)
 (envelope-from bugzilla-noreply@freebsd.org)
Received: from kenobi.freebsd.org (kenobi.freebsd.org
 [IPv6:2001:1900:2254:206a::16:76])
 (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits))
 (Client did not present a certificate)
 by mx1.freebsd.org (Postfix) with ESMTPS id 659E2D44
 for <python@FreeBSD.org>; Sun,  2 Oct 2016 17:52:30 +0000 (UTC)
 (envelope-from bugzilla-noreply@freebsd.org)
Received: from bugs.freebsd.org ([127.0.1.118])
 by kenobi.freebsd.org (8.15.2/8.15.2) with ESMTP id u92HqUsf089082
 for <python@FreeBSD.org>; Sun, 2 Oct 2016 17:52:30 GMT
 (envelope-from bugzilla-noreply@freebsd.org)
From: bugzilla-noreply@freebsd.org
To: python@FreeBSD.org
Subject: [Bug 204519] Mk/bsd.default-versions.mk: Set Python 3.5 as the
 default 3.x version
Date: Sun, 02 Oct 2016 17:52:30 +0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: Ports & Packages
X-Bugzilla-Component: Ports Framework
X-Bugzilla-Version: Latest
X-Bugzilla-Keywords: needs-patch, needs-qa
X-Bugzilla-Severity: Affects Only Me
X-Bugzilla-Who: rm@FreeBSD.org
X-Bugzilla-Status: Open
X-Bugzilla-Resolution: 
X-Bugzilla-Priority: ---
X-Bugzilla-Assigned-To: rm@FreeBSD.org
X-Bugzilla-Flags: exp-run?
X-Bugzilla-Changed-Fields: 
Message-ID: <bug-204519-21822-DPyKYSPmjY@https.bugs.freebsd.org/bugzilla/>
In-Reply-To: <bug-204519-21822@https.bugs.freebsd.org/bugzilla/>
References: <bug-204519-21822@https.bugs.freebsd.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: https://bugs.freebsd.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-BeenThere: freebsd-python@freebsd.org
X-Mailman-Version: 2.1.23
Precedence: list
List-Id: FreeBSD-specific Python issues <freebsd-python.freebsd.org>
List-Unsubscribe: <https://lists.freebsd.org/mailman/options/freebsd-python>, 
 <mailto:freebsd-python-request@freebsd.org?subject=unsubscribe>
List-Archive: <http://lists.freebsd.org/pipermail/freebsd-python/>
List-Post: <mailto:freebsd-python@freebsd.org>
List-Help: <mailto:freebsd-python-request@freebsd.org?subject=help>
List-Subscribe: <https://lists.freebsd.org/mailman/listinfo/freebsd-python>,
 <mailto:freebsd-python-request@freebsd.org?subject=subscribe>
X-List-Received-Date: Sun, 02 Oct 2016 17:52:30 -0000

https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=3D204519

--- Comment #27 from Ruslan Makhmatkhanov <rm@FreeBSD.org> ---
Antoine, I reread what you said and it looks we doing something different: I
mean sysutils/qzeitgeist stuff. qzeitgeist needs python for build and there=
 is
no particular python version set in Makefile, so it should build just fine =
with
default python version (2.7).=20

As far I understand, you also changed "python" version in DEFAULT_VERSIONS,=
 so
your poudriere make.conf looks like that:

DEFAULT_VERSIONS=3Dpython=3D3.5 python3=3D3.5

while it should looked like that

DEFAULT_VERSIONS=3Dpython=3D2.7 python2=3D2.7 python3=3D3.5

because now I only interested in ports, that define python:3 or python:3.3+=
 in
USES. I don't count that every port that have USES=3Dpython can be built wi=
th 3.5
or with 3.x ever. We now only want to change default python3 (3.4 -> 3.5)
version, not the python version at all.=20

Would you please limit your port list for testing to only those that set:
USES=3Dpython3
USES=3Dpython3.3+
USES=3Dpython:3,build
USES=3Dpython:3,run
USES=3Dpython:3.3+,build
USES=3Dpython:3.3+,run

and let me know what's broken with 3.5 now? Thanks a lot!

--=20
You are receiving this mail because:
You are on the CC list for the bug.=