From owner-svn-soc-all@FreeBSD.ORG Sat May 3 20:38:01 2014 Return-Path: Delivered-To: svn-soc-all@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 774852F0 for ; Sat, 3 May 2014 20:38:01 +0000 (UTC) Received: from socsvn.freebsd.org (socsvn.freebsd.org [IPv6:2001:1900:2254:206a::50:2]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 63DB51347 for ; Sat, 3 May 2014 20:38:01 +0000 (UTC) Received: from socsvn.freebsd.org ([127.0.1.124]) by socsvn.freebsd.org (8.14.8/8.14.8) with ESMTP id s43Kc1MJ020696 for ; Sat, 3 May 2014 20:38:01 GMT (envelope-from gavin@FreeBSD.org) Received: (from www@localhost) by socsvn.freebsd.org (8.14.8/8.14.8/Submit) id s43Kc0hE020562 for svn-soc-all@FreeBSD.org; Sat, 3 May 2014 20:38:00 GMT (envelope-from gavin@FreeBSD.org) Date: Sat, 3 May 2014 20:38:00 GMT Message-Id: <201405032038.s43Kc0hE020562@socsvn.freebsd.org> X-Authentication-Warning: socsvn.freebsd.org: www set sender to gavin@FreeBSD.org using -f From: gavin@FreeBSD.org To: svn-soc-all@FreeBSD.org Subject: socsvn commit: r267165 - svnadmin/tools MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-soc-all@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-Id: SVN commit messages for the entire Summer of Code repository List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 03 May 2014 20:38:01 -0000 Author: gavin Date: Sat May 3 20:38:00 2014 New Revision: 267165 URL: http://svnweb.FreeBSD.org/socsvn/?view=rev&rev=267165 Log: Adjust the add-user script to always use the correct year in emails. Modified: svnadmin/tools/add-user.sh Modified: svnadmin/tools/add-user.sh ============================================================================== --- svnadmin/tools/add-user.sh Sat May 3 20:31:08 2014 (r267164) +++ svnadmin/tools/add-user.sh Sat May 3 20:38:00 2014 (r267165) @@ -56,6 +56,8 @@ exit 1 fi +year=`date +%Y` + mail -s "Your socsvn.freebsd.org account" "${name}@freebsd.org" <<-EOM We have configured your account on socsvn.freebsd.org. The base URL of the repository is: https://socsvn.freebsd.org/socsvn @@ -68,12 +70,12 @@ If you wish to change your password, please send soc-admins@freebsd.org an SHA password hash as generated by "htpasswd -s". - All authenticated users have write access to the /soc2013 tree. As a + All authenticated users have write access to the /soc${year} tree. As a matter of convention, please place all your working code under a - /soc2013/ directory. + /soc${year}/ directory. *** REPEAT: Your changes should all be relative to - *** https://socsvn.freebsd.org/socsvn/soc2013/${name}/ + *** https://socsvn.freebsd.org/socsvn/soc${year}/${name}/ A copy of the FreeBSD base subversion repository is under /mirror/FreeBSD and is updated hourly. If you are modifying the base @@ -82,7 +84,7 @@ directory. For example: svn cp https://socsvn.freebsd.org/socsvn/mirror/FreeBSD/head \ - https://socsvn.freebsd.org/socsvn/soc2013/${name}/myproject-head + https://socsvn.freebsd.org/socsvn/soc${year}/${name}/myproject-head You would then use subversion's merge operation to keep your branch up to date.