From owner-freebsd-ports@FreeBSD.ORG Mon Mar 3 12:44:02 2014 Return-Path: Delivered-To: ports@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 7BCDE75E for ; Mon, 3 Mar 2014 12:44:02 +0000 (UTC) Received: from mail-qc0-x233.google.com (mail-qc0-x233.google.com [IPv6:2607:f8b0:400d:c01::233]) (using TLSv1 with cipher ECDHE-RSA-RC4-SHA (128/128 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 3E476612 for ; Mon, 3 Mar 2014 12:44:02 +0000 (UTC) Received: by mail-qc0-f179.google.com with SMTP id m20so3401035qcx.10 for ; Mon, 03 Mar 2014 04:44:01 -0800 (PST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20120113; h=mime-version:date:message-id:subject:from:cc:content-type; bh=OaNeumNvjBSIIOICKGSQXhwbyO4DQ7EHhXWy9H/lnh4=; b=OUpvc7mp26v434ltFWS5F3KfS8Sf4waXUo2LbrBQKn+6jgjvwMTP62WkZtOu83xJ6+ 3TLah547C4WMSMv+BklTaBrOEqZpLDMT8e/JDwtW3JXTjMv48KCAcSxuo2tYAK6MLxTV 9weEsYb9CoQQQi8IuIhpoO59EwnAlDMEY0QbFyrcCBs/WaBKa4kwhzsNqYkHBeAkoYig UYlxavFEt8bTmHDra3v9K6EKd3SKQEmjIj9GtrGQNo7uUMnSJHw3Zvws6/WeRZNgH4ES 78+XECaqz6xdT941k/C4RdnfcPvsa3MJBO1bPGpzAaZf1X4LzeLtmUnmduRwLFwlQ5t5 yhog== MIME-Version: 1.0 X-Received: by 10.140.89.167 with SMTP id v36mr22127746qgd.27.1393850641358; Mon, 03 Mar 2014 04:44:01 -0800 (PST) Received: by 10.229.81.5 with HTTP; Mon, 3 Mar 2014 04:44:01 -0800 (PST) Date: Mon, 3 Mar 2014 13:44:01 +0100 Message-ID: Subject: Issues with Poudriere builing packages depending on Perl From: Big Lebowski Content-Type: text/plain; charset=UTF-8 X-Content-Filtered-By: Mailman/MimeDel 2.1.17 Cc: ports@freebsd.org X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 03 Mar 2014 12:44:02 -0000 Hi, I am trying to build bunch on packages in Poudriere on 10-R for 10-R and 9.2-R. The packages are building fine, but for some reason at least one of them builds with two different perl versions, 5.16 and 5.18. I would like to get all my packages built with 5.18, so in my make.conf for Poudriere jails I've the following: WITH_PKGNG=yes WITHOUT_X11=yes WITHOUT_X=yes PERL5_DEFAULT=5.18 PERL_PORT=perl5.18 DEFAULT_VERSIONS= perl5=5.18 However, when trying to install it, I am getting the following result: root@machine:~ # pkg install nrpe Updating repository catalogue The following 4 packages will be installed: Installing perl5: 5.16.3_7 [FreeBSD] Installing perl5.18: 5.18.2_1 [FreeBSD] Installing nagios-plugins: 1.5_1,1 [localrepo] Installing nrpe: 2.15 [localrepo] The installation will require 97 MB more space and then the installation of course fails due to the perl dependency config. Has anyone a clue how to untangle that Poudriere/Perl mess? Also, any advices on the make.conf settings to absolutely avoid anything related to x11/examples/docs? Thanks in advance!