From owner-freebsd-python@FreeBSD.ORG Thu Sep 25 14:40:04 2014 Return-Path: <owner-freebsd-python@FreeBSD.ORG> Delivered-To: freebsd-python@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 5A5E4DE for <freebsd-python@freebsd.org>; Thu, 25 Sep 2014 14:40:04 +0000 (UTC) Received: from na01-bn1-obe.outbound.protection.outlook.com (mail-bn1bon0132.outbound.protection.outlook.com [157.56.111.132]) (using TLSv1 with cipher ECDHE-RSA-AES256-SHA (256/256 bits)) (Client CN "mail.protection.outlook.com", Issuer "MSIT Machine Auth CA 2" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id F41AA7F1 for <freebsd-python@freebsd.org>; Thu, 25 Sep 2014 14:40:03 +0000 (UTC) Received: from DM2PR0301MB0845.namprd03.prod.outlook.com (25.160.215.143) by DM2PR0301MB1231.namprd03.prod.outlook.com (25.160.219.20) with Microsoft SMTP Server (TLS) id 15.0.1034.13; Thu, 25 Sep 2014 14:24:59 +0000 Received: from [IPv6:2601:2:4780:2fd:3cfa:1b41:db29:34df] (2601:2:4780:2fd:3cfa:1b41:db29:34df) by DM2PR0301MB0845.namprd03.prod.outlook.com (25.160.215.143) with Microsoft SMTP Server (TLS) id 15.0.1034.13; Thu, 25 Sep 2014 14:25:02 +0000 Message-ID: <542425AD.7040103@my.hennepintech.edu> Date: Thu, 25 Sep 2014 09:24:45 -0500 From: Andrew Berg <aberg010@my.hennepintech.edu> User-Agent: Mozilla/5.0 (Windows NT 6.2; WOW64; rv:31.0) Gecko/20100101 Thunderbird/31.1.1 MIME-Version: 1.0 To: <freebsd-python@freebsd.org> Subject: Re: Building for python3 instead of python2 References: <A949998A-065C-4F6F-A376-50E20CE14E50@Chaos1.DE> In-Reply-To: <A949998A-065C-4F6F-A376-50E20CE14E50@Chaos1.DE> Content-Type: text/plain; charset="utf-8" Content-Transfer-Encoding: 7bit X-Originating-IP: [2601:2:4780:2fd:3cfa:1b41:db29:34df] X-ClientProxiedBy: CO2PR06CA034.namprd06.prod.outlook.com (10.141.242.34) To DM2PR0301MB0845.namprd03.prod.outlook.com (25.160.215.143) X-Microsoft-Antispam: UriScan:;UriScan:; X-Microsoft-Antispam: BCL:0;PCL:0;RULEID:;SRVR:DM2PR0301MB0845; X-Forefront-PRVS: 0345CFD558 X-Forefront-Antispam-Report: SFV:NSPM; SFS:(10019020)(6009001)(189002)(24454002)(51704005)(53754006)(199003)(101416001)(64706001)(89122001)(83072002)(65956001)(64126003)(97736003)(77096002)(106356001)(76176999)(2351001)(50986999)(92726001)(92566001)(105586002)(85852003)(88552001)(95666004)(31966008)(77982003)(102836001)(42186005)(83506001)(110136001)(20776003)(50466002)(90102001)(33656002)(79102003)(85306004)(87266999)(99136001)(65816999)(120916001)(86362001)(107886001)(47776003)(80316001)(80022003)(21056001)(74662003)(54356999)(75432002)(87976001)(10300001)(74502003)(65806001)(4396001)(46102003)(23676002)(76482002)(81342003)(81542003)(99396003)(83322001)(107046002)(89472002)(3826002); DIR:OUT; SFP:1102; SCL:1; SRVR:DM2PR0301MB0845; H:[IPv6:2601:2:4780:2fd:3cfa:1b41:db29:34df]; FPR:; MLV:sfv; PTR:InfoNoRecords; MX:1; A:0; LANG:en; X-Microsoft-Antispam: BCL:0;PCL:0;RULEID:;SRVR:DM2PR0301MB1231; X-OriginatorOrg: my.hennepintech.edu X-BeenThere: freebsd-python@freebsd.org X-Mailman-Version: 2.1.18-1 Precedence: list List-Id: FreeBSD-specific Python issues <freebsd-python.freebsd.org> List-Unsubscribe: <http://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: <http://lists.freebsd.org/mailman/listinfo/freebsd-python>, <mailto:freebsd-python-request@freebsd.org?subject=subscribe> X-List-Received-Date: Thu, 25 Sep 2014 14:40:04 -0000 On 2014.09.25 09:07, Axel Rau wrote: > Hi all, > > I have a port with > USES= python > but it insists installing python2.7 instead of installed python3.4 > I played with > DEFAULT_VERSIONS= python3:3.4 > without luck. That's because it's the wrong syntax. You want something like this: DEFAULT_VERSIONS=php=5.5 mysql=5.6 python=3.4 python2=2.7 python3=3.4