From owner-cvs-all@FreeBSD.ORG Tue Sep 6 19:28:38 2005 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 086DA16A41F; Tue, 6 Sep 2005 19:28:38 +0000 (GMT) (envelope-from cperciva@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id CB1B143D46; Tue, 6 Sep 2005 19:28:37 +0000 (GMT) (envelope-from cperciva@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.1/8.13.1) with ESMTP id j86JSbM4047264; Tue, 6 Sep 2005 19:28:37 GMT (envelope-from cperciva@repoman.freebsd.org) Received: (from cperciva@localhost) by repoman.freebsd.org (8.13.1/8.13.1/Submit) id j86JSbgb047263; Tue, 6 Sep 2005 19:28:37 GMT (envelope-from cperciva) Message-Id: <200509061928.j86JSbgb047263@repoman.freebsd.org> From: Colin Percival Date: Tue, 6 Sep 2005 19:28:37 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: src/etc portsnap.conf src/share/man/man5 portsnap.conf.5 src/usr.sbin/portsnap/portsnap portsnap.sh X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 06 Sep 2005 19:28:38 -0000 cperciva 2005-09-06 19:28:37 UTC FreeBSD src repository Modified files: etc portsnap.conf share/man/man5 portsnap.conf.5 usr.sbin/portsnap/portsnap portsnap.sh Log: Teach portsnap how to ignore unwanted parts of the ports tree. A line of the form "REFUSE foo" in portsnap.conf will result in parts of the tree matching "^foo" being (a) not extracted by "portsnap extract", (b) not updated by "portsnap update", and (c) not having any patches or new ports downloaded by "portsnap fetch" or "portsnap cron". The example shown in portsnap.conf demonstrates ignoring all the language categories. As mentioned in portsnap.conf.5, the use of an imcomplete ports tree is not officially supported; but this is something which many users have requested, so I'm adding it anyway. PR: bin/85619 (but not the patch provided therein) MFC after: 1 month Revision Changes Path 1.2 +6 -0 src/etc/portsnap.conf 1.2 +36 -2 src/share/man/man5/portsnap.conf.5 1.9 +66 -6 src/usr.sbin/portsnap/portsnap/portsnap.sh