From owner-svn-doc-all@FreeBSD.ORG Sat Jul 14 16:32:28 2012 Return-Path: Delivered-To: svn-doc-all@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 2DA5A106564A; Sat, 14 Jul 2012 16:32:28 +0000 (UTC) (envelope-from issyl0@FreeBSD.org) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:4f8:fff6::2c]) by mx1.freebsd.org (Postfix) with ESMTP id 184ED8FC1B; Sat, 14 Jul 2012 16:32:28 +0000 (UTC) Received: from svn.freebsd.org (localhost [127.0.0.1]) by svn.freebsd.org (8.14.4/8.14.4) with ESMTP id q6EGWRKp095552; Sat, 14 Jul 2012 16:32:27 GMT (envelope-from issyl0@svn.freebsd.org) Received: (from issyl0@localhost) by svn.freebsd.org (8.14.4/8.14.4/Submit) id q6EGWRF3095550; Sat, 14 Jul 2012 16:32:27 GMT (envelope-from issyl0@svn.freebsd.org) Message-Id: <201207141632.q6EGWRF3095550@svn.freebsd.org> From: Isabell Long Date: Sat, 14 Jul 2012 16:32:27 +0000 (UTC) To: doc-committers@freebsd.org, svn-doc-all@freebsd.org, svn-doc-head@freebsd.org X-SVN-Group: doc-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Cc: Subject: svn commit: r39204 - head/en_US.ISO8859-1/books/porters-handbook X-BeenThere: svn-doc-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: "SVN commit messages for the entire doc trees \(except for " user" , " projects" , and " translations" \)" List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 14 Jul 2012 16:32:28 -0000 Author: issyl0 Date: Sat Jul 14 16:32:27 2012 New Revision: 39204 URL: http://svn.freebsd.org/changeset/doc/39204 Log: Add more information to the section of the porter's handbook about the MOVED file. Submitted by: issyl0 (as part of Google Code-In 2011) Reviewed by: gavin, gjb Approved by: gabor (mentor) Modified: head/en_US.ISO8859-1/books/porters-handbook/book.sgml Modified: head/en_US.ISO8859-1/books/porters-handbook/book.sgml ============================================================================== --- head/en_US.ISO8859-1/books/porters-handbook/book.sgml Sat Jul 14 15:25:52 2012 (r39203) +++ head/en_US.ISO8859-1/books/porters-handbook/book.sgml Sat Jul 14 16:32:27 2012 (r39204) @@ -10419,12 +10419,24 @@ as .putsy.conf and edit it. - If your port is deleted or renamed, you should add an - entry to /usr/ports/MOVED. Entries in - this file use the following format: + The /usr/ports/MOVED file is used to + list moved or removed ports. Each line in the file is made + up of the name of the port, where the port was moved to, when, + and why. If the port was removed, the section detailing where + it was moved to can be left blank. Each section must be + separated by the | (pipe) character, like + so: old name|new name (blank for deleted)|date of move|reason + The date should be entered in the form YYYY- + MM-DD. New entries should be added to the end + of the file to keep it in chronological order. + + If a port was removed but has since been restored, + delete the line in this file that states that it was + removed. + The changes can be validated with Tools/scripts/MOVEDlint.awk.