From owner-svn-ports-head@FreeBSD.ORG Sun Mar 31 15:45:29 2013 Return-Path: Delivered-To: svn-ports-head@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 5DFD4D7D for ; Sun, 31 Mar 2013 15:45:29 +0000 (UTC) (envelope-from lists@eitanadler.com) Received: from mail-pb0-f50.google.com (mail-pb0-f50.google.com [209.85.160.50]) by mx1.freebsd.org (Postfix) with ESMTP id 3596F144 for ; Sun, 31 Mar 2013 15:45:29 +0000 (UTC) Received: by mail-pb0-f50.google.com with SMTP id jt11so830172pbb.23 for ; Sun, 31 Mar 2013 08:45:23 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=eitanadler.com; s=0xdeadbeef; h=x-received:mime-version:sender:in-reply-to:references:from:date :x-google-sender-auth:message-id:subject:to:cc:content-type; bh=7v1C1wZNWp1eeUkhpMj0KJwzhGlce2UHsOh2H0Bna3s=; b=aUV8o8kYRwd2NQRpnjoNtzmmeA5fs+CkuTqFN/UBkwc8BZPBvLWow1qGCYPcRKblio VT3HmsW95S5/YQ/swDOpOpz/FV0Sap7Uz8H3uSzNwe52yAaH+8WkQplzpa5KXqyiKmZK RCGJC/CegacJ0tZmVaY0f0dKAPSRp3asEAiQw= X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=google.com; s=20120113; h=x-received:mime-version:sender:in-reply-to:references:from:date :x-google-sender-auth:message-id:subject:to:cc:content-type :x-gm-message-state; bh=7v1C1wZNWp1eeUkhpMj0KJwzhGlce2UHsOh2H0Bna3s=; b=l9VQO9k+ejPfutmfKvFU4G0jlBw7KxXt0cy/IkwO1WNkKejMDvMS7yQCqAbmr+AdgN kMm0l4WDqxZZJY9RJkwufEzLFqV0PpMsFEJVaqFYl4OaK0CbX5zcn6/pcqNL8DmYa8oQ 8mM5U58C8cqO3JkUnwZYXec0/3CcoCclUqrsITv0O4bKQtl8AlgqN09svS7OgQzHVWw4 nM3haWOphzB/SCywdYnr5v8uys1rf+xUfnzkQ2G31w8sQzhP8HMHLWQK1O8EH3UzT/ta 8hzKxi9Elz8zDRnXg/vZQMspqCeF5XUaTZomrM5kFFD25kYh0my5lLSljtH88PqnuBv3 vQbg== X-Received: by 10.68.241.132 with SMTP id wi4mr13846657pbc.8.1364744723317; Sun, 31 Mar 2013 08:45:23 -0700 (PDT) MIME-Version: 1.0 Sender: lists@eitanadler.com Received: by 10.66.246.201 with HTTP; Sun, 31 Mar 2013 08:44:53 -0700 (PDT) In-Reply-To: References: <201303310808.r2V88xPC061608@svn.freebsd.org> <3306521.EebOH7VTQr@dragon.dg> <87DE97D5-0019-4667-BA78-5A485F3ADA06@freebsd.org> From: Eitan Adler Date: Sun, 31 Mar 2013 11:44:53 -0400 X-Google-Sender-Auth: CLqvqykiP_ALGR62n2t8D0-u7sw Message-ID: Subject: Re: svn commit: r315629 - head/lang/pypy To: Martin Wilke , Ruslan Mahmatkhanov Content-Type: text/plain; charset=UTF-8 X-Gm-Message-State: ALoCoQmu6NtmYfcdFMXDTtd5jUTx892Om0HT9aX6a29j6vjhfuNnon5v7k5MIF4QgVR4p4vwixxh Cc: svn-ports-head@freebsd.org, svn-ports-all@freebsd.org, bdrewery@freebsd.org, David Naylor , ports-committers@freebsd.org X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.14 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: Sun, 31 Mar 2013 15:45:29 -0000 On 31 March 2013 11:42, Eitan Adler wrote: > On 31 March 2013 05:04, Martin Wilke wrote: >> To answer your question pointyhat ends up in a never ending run process whish i have to kill manual. > > Out of curiosity, how long did you let it run? > >> Considering you did not respond I have it mark broken. > > pypy is special and may take an enormous amount of ram to build. > > I can confirm that the port is *not* broken and does build on certain > hardware in correct configurations. > > The correct thing to do here is set MANUAL_PACKAGE_BUILD. > Another option is NO_PACKAGE but I think it would be useful to offer > prebuilt packages. Slightly better patch (removing the BROKEN) Index: Makefile =================================================================== --- Makefile (revision 315638) +++ Makefile (working copy) @@ -17,8 +17,6 @@ LICENSE_COMB= multi LIB_DEPENDS= expat:${PORTSDIR}/textproc/expat2 \ ffi:${PORTSDIR}/devel/libffi -BROKEN= does not build - CLI_DESC= (BROKEN) Translate a CLI (.NET) based pypy JVM_DESC= (BROKEN) Translate a JVM (Java) based pypy PYPY_DESC= Use pypy to translate (faster but uses more memory) @@ -31,6 +29,8 @@ LOCALBASE?= /usr/local OPTIONS_DEFINE+= PYPY .endif +MANUAL_PACKAGE_BUILD= Takes enormous amounts of ram + ALL_TARGET= ${PYPY_NAMES} BUILD_WRKSRC= ${WRKDIR} USE_BZIP2= yes -- Eitan Adler Source, Ports, Doc committer Bugmeister, Ports Security teams