From owner-freebsd-stable@FreeBSD.ORG Thu Apr 21 18:24:26 2011 Return-Path: Delivered-To: freebsd-stable@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 6E477106566B for ; Thu, 21 Apr 2011 18:24:26 +0000 (UTC) (envelope-from dan@dan.emsphone.com) Received: from email2.allantgroup.com (email2.emsphone.com [199.67.51.116]) by mx1.freebsd.org (Postfix) with ESMTP id 3205B8FC1B for ; Thu, 21 Apr 2011 18:24:25 +0000 (UTC) Received: from dan.emsphone.com (dan.emsphone.com [199.67.51.101]) by email2.allantgroup.com (8.14.4/8.14.4) with ESMTP id p3LIOM6c007156 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-SHA bits=256 verify=NO); Thu, 21 Apr 2011 13:24:22 -0500 (CDT) (envelope-from dan@dan.emsphone.com) Received: from dan.emsphone.com (smmsp@localhost [127.0.0.1]) by dan.emsphone.com (8.14.4/8.14.4) with ESMTP id p3LIOM9W029318 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-SHA bits=256 verify=NO); Thu, 21 Apr 2011 13:24:22 -0500 (CDT) (envelope-from dan@dan.emsphone.com) Received: (from dan@localhost) by dan.emsphone.com (8.14.4/8.14.4/Submit) id p3LIOMOg029317; Thu, 21 Apr 2011 13:24:22 -0500 (CDT) (envelope-from dan) Date: Thu, 21 Apr 2011 13:24:22 -0500 From: Dan Nelson To: Doug Barton Message-ID: <20110421182422.GE98632@dan.emsphone.com> References: <20110419235038.GA8892@icarus.home.lan> <20110421024359.GB96423@laa.zp.ua> <4DB0657F.4040502@FreeBSD.org> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <4DB0657F.4040502@FreeBSD.org> X-OS: FreeBSD 8.2-PRERELEASE User-Agent: Mutt/1.5.21 (2010-09-15) X-Virus-Scanned: clamav-milter 0.97 at email2.allantgroup.com X-Virus-Status: Clean X-Greylist: Sender IP whitelisted, not delayed by milter-greylist-4.2.6 (email2.allantgroup.com [199.67.51.78]); Thu, 21 Apr 2011 13:24:22 -0500 (CDT) X-Scanned-By: MIMEDefang 2.68 on 199.67.51.78 Cc: freebsd-stable@freebsd.org, Lystopad Olexandr Subject: Re: Large number of SATA commits (MFCs) to RELENG_8 X-BeenThere: freebsd-stable@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Production branch of FreeBSD source code List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 21 Apr 2011 18:24:26 -0000 In the last episode (Apr 21), Doug Barton said: > On 04/20/2011 19:43, Lystopad Olexandr wrote: > > May be we need another one file, like src/ChangeLog ? > > Users who run a -stable branch are expected to read > freebsd-stable@FreeBSD.org (note, not just subscribe), AND read the > commit mail for their branch; just like users who run HEAD are expected > to read freebsd-current@ and the relevant commit mail. I use a small shell script called "update" that does a "svn update", and also prints a line at the end that you can copy&paste into another terminal to get the log of what was just pulled. #! /bin/sh stat=$(svn status --depth empty -v -u) localrev=$(echo "$stat" | cut -c10- | awk 'NR==1 {print $2}') latestrev=$(echo "$stat" | awk 'NR==2 {print $4}') repo=$(svn info | sed -ne '/^URL/s/^.*: //p') echo "$stat" svn info | grep Revision svn update if [ "$localrev" != "$latestrev" ] ; then echo "Log:" echo "svn log -v -r $(($localrev+1)):$latestrev $repo" fi Sample output: (root@dan) /usr/src # ./update M 220902 220902 jilles . Status against revision: 220927 Revision: 220902 U sbin/conscontrol/conscontrol.c U sbin/conscontrol/conscontrol.8 U sbin/conscontrol U sys/kern/uipc_sockbuf.c U sys/kern/kern_exit.c U sys/netgraph/ng_base.c U sys/contrib/pf U sys/contrib/dev/acpica U sys/cddl/contrib/opensolaris U sys/amd64/include/xen U sys/sys/proc.h U sys Updated to revision 220927. Log: svn log -v -r 220903:220927 svn://svn.freebsd.org/base/stable/8 -- Dan Nelson dnelson@allantgroup.com