From owner-freebsd-questions@FreeBSD.ORG Sun Mar 6 04:17:59 2011 Return-Path: Delivered-To: freebsd-questions@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 3AF06106564A for ; Sun, 6 Mar 2011 04:17:59 +0000 (UTC) (envelope-from bf1783@googlemail.com) Received: from mail-gy0-f182.google.com (mail-gy0-f182.google.com [209.85.160.182]) by mx1.freebsd.org (Postfix) with ESMTP id EDB9C8FC14 for ; Sun, 6 Mar 2011 04:17:58 +0000 (UTC) Received: by gyh4 with SMTP id 4so1460984gyh.13 for ; Sat, 05 Mar 2011 20:17:58 -0800 (PST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=googlemail.com; s=gamma; h=domainkey-signature:mime-version:reply-to:date:message-id:subject :from:to:cc:content-type; bh=C9kWA4lNvdEAEW8lLwFIE+vQ3VebN6paf+mCX3bKQrs=; b=xRPQr4bWJUqcFrX8wbPbwzO1Fqq2Ssv/pj8jV4gAKlSScLRfrUvHy2H8hZ98AK2RQ/ Q/pPOMvfmt82nkEK+jDf4rB/eCwKy8TpEkdWpOXEn2aXhdUmWE2YXaNGmeBsynE1BL/X z60c30RR8LPbDgtOI7VpDbUTLq6uNzB3Kvkxg= DomainKey-Signature: a=rsa-sha1; c=nofws; d=googlemail.com; s=gamma; h=mime-version:reply-to:date:message-id:subject:from:to:cc :content-type; b=r8pk+PVMVaTQWevb0E5GXZXgwyKB7akaGCaUsDY1+sIC45cDaogxcY4U7dI3s58LJd MpVTTrCdas9m7zsAGQuTYIXewiU+JB0d7bW9UV91m63Nb1jXeUG5J+suAJM4t/HYx8RT LXM9kKu3dMfwZsQmTl0qd+cc+flGkQY6W0v3c= MIME-Version: 1.0 Received: by 10.236.191.7 with SMTP id f7mr788936yhn.89.1299385077301; Sat, 05 Mar 2011 20:17:57 -0800 (PST) Received: by 10.236.108.44 with HTTP; Sat, 5 Mar 2011 20:17:57 -0800 (PST) Date: Sun, 6 Mar 2011 04:17:57 +0000 Message-ID: From: "b. f." To: ajtiM Content-Type: text/plain; charset=ISO-8859-1 Cc: freebsd-questions@FreeBSD.org Subject: Re: python27 update X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: bf1783@gmail.com List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 06 Mar 2011 04:17:59 -0000 ... > I tried to update python26 to python27. I did as I red in /usr/ports/UPDATING: > > portmaster -o lang/python27 lang/python26 and than > > cd /usr/ports/lang/python && make upgrade-site-packages -DUSE_PORTMASTER > > and after one day and a half of pressing yes for deleting old files I got: Has it been a day and a half already? ;) Seriously, though, read the portmaster manpage and learn how you can take some shortcuts, like running 'portmaster -y --clean-distfiles', or using other flags to lower the amount of interaction required. > ----- > error: Comand" cc - shared -pthread -02 -pipe -WI, -rpath > -/usr/local/lib/gcc45 -fno -strict -aliasing build/temp. freebsd-8.2-RELEASE- > i386-2.7/build/src.freebsd-8.2-RELEASE-i386-2.7/numpy/core/src/-sortmudele.o - > Lbuild/temp.freebsd-8.2-RELEASE-i386-2.7-lm -o build/lib-freebsd-8.2-RELEASE- > i386-2.7/numpy/core/-sortss" > failed with exit status 1 > ***Error code 1 > > > Stop in /usr/ports/math/py-numpy > =>>>make failed for math/py-numpy > =>> Aborting update > =>> Update fpr py26-numpy-1.5.1,1 failled > Aborting update > Update for opencv-2.1.0 failed > aborting update > > Terminated > ***Error code 143 > Stop in /usr/ports/lang/python > You need to update your ports tree to make sure that you pick up: http://lists.freebsd.org/pipermail/cvs-ports/2011-March/213081.html which should fix the above problem. > Is it possible to save this problem, please? Do I need run again cd > /usr/ports/lang/python && make upgrade-site-packages -DUSE_PORTMASTER and wait > one day more or will portmaster continue where it stopped? Try: ... make upgrade-site-packages -DUSE_PORTMASTER PORTUPGRADE_ARGS="-R" Even if that doesn't work, you won't have to repeat all of your previous work, because those ports that were successfully updated in the last run will no longer have files in the old python26 library directories, and so won't be rebuilt by re-running upgrade site-packages, unless you were to run portmaster with additional flags. b.