From owner-freebsd-perl@FreeBSD.ORG Wed Jun 26 06:03:21 2013 Return-Path: Delivered-To: perl@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) by hub.freebsd.org (Postfix) with ESMTP id 3E6376E3 for ; Wed, 26 Jun 2013 06:03:21 +0000 (UTC) (envelope-from andrej.zverev@gmail.com) Received: from mail-oa0-x22e.google.com (mail-oa0-x22e.google.com [IPv6:2607:f8b0:4003:c02::22e]) by mx1.freebsd.org (Postfix) with ESMTP id 0F18A1FB5 for ; Wed, 26 Jun 2013 06:03:21 +0000 (UTC) Received: by mail-oa0-f46.google.com with SMTP id h1so14433211oag.5 for ; Tue, 25 Jun 2013 23:03:20 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20120113; h=mime-version:sender:in-reply-to:references:date :x-google-sender-auth:message-id:subject:from:to:cc:content-type; bh=nEqQ5FJ0kbHiiILd1HamJgLmgfq+79YfRIhFZzQ9jMI=; b=r2gCkAU5cIynNbZFGPTXuTawUtrKZV8A9x2+8ukxdmeEoCu0Ikt04jdTyUdvao0Tk0 YIIc3m/oTQ1HMw/Q+lLfz85+Lh/jj8VxWCOXI0HgRuoxJ9PDsWz8kK0FMGuwcM/ElwXx P1tFTa4o5CNDm8nBMQXB2LAi6PBPKfLYhyeNWiB22EKql4Jcj6iT/X1S+n4XxoA8UAt3 WtSZXeNL7iAdj23K53IlpC1LRYtSVN8R8j8hLcZGfOzQ84ctccJIol8d7cz9K0+KoVep 84kSdCyWvcWUBd25rO4j/Chww3kwHLOtCNbTcr/v2HL7aVv1AO25y8H0yu2ZF+S+hQ8c iFHA== MIME-Version: 1.0 X-Received: by 10.60.124.134 with SMTP id mi6mr1011928oeb.85.1372226600675; Tue, 25 Jun 2013 23:03:20 -0700 (PDT) Sender: andrej.zverev@gmail.com Received: by 10.182.144.34 with HTTP; Tue, 25 Jun 2013 23:03:20 -0700 (PDT) In-Reply-To: <20130626050818.GA36424@aura.veggiechinese.net> References: <20130625235659.GB22016@aura.veggiechinese.net> <7EF1D860-B7C3-4891-890D-A213144920E0@gmail.com> <20130626050818.GA36424@aura.veggiechinese.net> Date: Wed, 26 Jun 2013 10:03:20 +0400 X-Google-Sender-Auth: jIhMneWlN1OJLyX43m6dJXD1kH0 Message-ID: Subject: Re: module dep From: Andrej Zverev To: Will Yardley Content-Type: text/plain; charset=ISO-8859-1 Cc: "perl@FreeBSD.org" X-BeenThere: freebsd-perl@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: maintainer of a number of perl-related ports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 26 Jun 2013 06:03:21 -0000 On Wed, Jun 26, 2013 at 9:08 AM, Will Yardley wrote: > On Wed, Jun 26, 2013 at 07:54:19AM +0400, Andrej Zverev wrote: >> On 26.06.2013, at 3:56, Will Yardley >> wrote: >> > devel/p5-Module-Build seems to rely on p5-version >= .87: >> > >> > ===> Building for p5-Module-Build-0.4005 >> > version version 0.87 required--this is only version 0.82 at >> > /usr/local/lib/perl5/site_perl/5.12/Module/Metadata.pm line 20. >> > >> > However, the Makefile doesn't seem to have that dependency. > >> In your case is this only warning or port fail to build? > > Port fails to build (in this case, sub-dependency of p5-Mail-SPF). > > The module build itself barfs when version is < 0.87 [after that > warning]. > > w > Try to rebuild p5-Module-Build and all it dependency (portmaster or portupgrade or only p5-version). Logic for p5-Module-Build can hadle such situation, but some how it fails for you. .if ${PERL_LEVEL} < 501400 ... BUILD_DEPENDS= p5-version>=0.87:${PORTSDIR}/devel/p5-version ...