From owner-freebsd-ports@freebsd.org Sat Feb 4 09:51:05 2017 Return-Path: Delivered-To: freebsd-ports@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 64AC6CCF1B8 for ; Sat, 4 Feb 2017 09:51:05 +0000 (UTC) (envelope-from herbert@mailbox.org) Received: from mx1.mailbox.org (mx1.mailbox.org [80.241.60.212]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client CN "*.mailbox.org", Issuer "SwissSign Server Silver CA 2014 - G22" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 299C1D74 for ; Sat, 4 Feb 2017 09:51:05 +0000 (UTC) (envelope-from herbert@mailbox.org) Received: from smtp1.mailbox.org (smtp1.mailbox.org [80.241.60.240]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.mailbox.org (Postfix) with ESMTPS id CA9C8458C7 for ; Sat, 4 Feb 2017 10:50:55 +0100 (CET) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=mailbox.org; h= content-type:content-type:mime-version:references:in-reply-to :subject:subject:from:from:message-id:date:date:received; s= mail20150812; t=1486201851; bh=oUNCPQMUJ4//SAeL9HOF9nEWsZgwO1mII DcqhEFhZTQ=; b=jc6qyTaLR7wwPgw8X4DmBDxjY7OEEXPs8Tg9Kv7g1BMWhd0+J +kZqm0bpdzwEPaPzhnHbUJ0t+nHNf03rHErvaBi2uXftYHKIOv/cc/MdxMrzMCzf SQP1yE4H3e0+m3qpX3RCzKSEtPfhzGB+B/U85r8jdBHKGnHz7H7OAf+VkY4n9L+Y 6/e+7u5MNseIfYRLMQ3A5csf4x0RZYU/8b+qCO2Q0I2sJsl4v61OoielfCjcMCDF g36uSQWQfYSQaN0/9mP+hZm5Z36C98DQiMKnwBX7y/6lKcaqbY6vyjaozsE7CMHH BoiFqTK5TcRW1CmH4Xv+oociwm1Xwx20Q3DCw== X-Virus-Scanned: amavisd-new at heinlein-support.de Received: from smtp1.mailbox.org ([80.241.60.240]) by hefe.heinlein-support.de (hefe.heinlein-support.de [91.198.250.172]) (amavisd-new, port 10030) with ESMTP id iLeSW3-EJdeP for ; Sat, 4 Feb 2017 10:50:51 +0100 (CET) Date: Sat, 04 Feb 2017 10:50:50 +0100 Message-ID: <8637fugu85.wl-herbert@mailbox.org> From: "Herbert J. Skuhra" To: freebsd-ports@freebsd.org Subject: Re: How to see package dependencies In-Reply-To: <65bbf996-d0a2-ac78-eaa2-3b7138481b4f@fechner.net> References: <65bbf996-d0a2-ac78-eaa2-3b7138481b4f@fechner.net> MIME-Version: 1.0 Content-Type: text/plain; charset=US-ASCII X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 04 Feb 2017 09:51:05 -0000 Matthias Fechner skrev: > > Hi all, > I just tried: > > pkg delete ccache (as I do not need it on servers, poudriere should > install it automatically if required?) > > > But it tries to deinstall: > > Installed packages to be REMOVED: > ccache-3.2.5_2 > scponly-4.8.20110526_2 > > How can I find out why it tries to deinstall scponly if I try to > deinstall ccache? > (that does not make any sense) % man pkg % man pkg-info % man pkg-delete 'pkg info -r' and 'pkg info -d'. 'pkg delete -f ccache' should delete only ccache. -- Herbert