From owner-freebsd-pkg@freebsd.org Wed Dec 6 09:55:39 2017 Return-Path: Delivered-To: freebsd-pkg@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 6D8B9E9AF7D for ; Wed, 6 Dec 2017 09:55:39 +0000 (UTC) (envelope-from matthew@FreeBSD.org) Received: from smtp.infracaninophile.co.uk (smtp.infracaninophile.co.uk [81.2.117.100]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client CN "smtp.infracaninophile.co.uk", Issuer "infracaninophile.co.uk" (not verified)) by mx1.freebsd.org (Postfix) with ESMTPS id 321EE6B340 for ; Wed, 6 Dec 2017 09:55:38 +0000 (UTC) (envelope-from matthew@FreeBSD.org) Received: from leaf.local (unknown [88.202.132.43]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) (Authenticated sender: m.seaman@infracaninophile.co.uk) by smtp.infracaninophile.co.uk (Postfix) with ESMTPSA id C4AC71B6F for ; Wed, 6 Dec 2017 09:55:35 +0000 (UTC) Authentication-Results: smtp.infracaninophile.co.uk; dmarc=none (p=none dis=none) header.from=FreeBSD.org Subject: Re: Question about poudriere "queued" ports? To: freebsd-pkg@freebsd.org References: From: Matthew Seaman Message-ID: <27a8c236-1fc4-aacd-1274-00fb839b843c@FreeBSD.org> Date: Wed, 6 Dec 2017 09:55:35 +0000 User-Agent: Mozilla/5.0 (Macintosh; Intel Mac OS X 10.13; rv:52.0) Gecko/20100101 Thunderbird/52.5.0 MIME-Version: 1.0 In-Reply-To: Content-Type: text/plain; charset=utf-8 Content-Language: en-GB Content-Transfer-Encoding: 7bit X-BeenThere: freebsd-pkg@freebsd.org X-Mailman-Version: 2.1.25 Precedence: list List-Id: Binary package management and package tools discussion List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 06 Dec 2017 09:55:39 -0000 On 05/12/2017 20:47, rainer@ultra-secure.de wrote: > after updating poudriere, I get a lot of ports showing up in the "Queued > ports" section, with the reason being "listed". > > > What does that mean? 'Queued ports' is the list of packages poudriere has calculated should be in the repository. Those given as 'listed' are the ones you've specifically told poudriere to build -- you should also see build- and run- time dependencies of those ports. I think the ordering is significant (BICBW) -- it shows what order poudriere will try and build packages, although this is complicated by some packages taking ages to build and holding up everything else that depends on them (llvm40, openjdk8 are frequently this sort of culprit.) This is not the list of packages that poudriere will actually be rebuilding, unless you're doing a 'poudriere bulk -c' to rebuild everything from scratch. The list is filtered to pull out any packages where an update is available, plus anything that depends on the updatable package. Cheers, Matthew