From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) by finch.gentoo.org (Postfix) with ESMTP id 20B0F58973 for ; Fri, 5 Feb 2016 12:59:36 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id B691621C08A; Fri, 5 Feb 2016 12:59:24 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 58DF221C089 for ; Fri, 5 Feb 2016 12:59:23 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 801C6340B03 for ; Fri, 5 Feb 2016 12:59:22 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 96BF11021 for ; Fri, 5 Feb 2016 12:59:18 +0000 (UTC) From: "Ulrich Müller" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Ulrich Müller" Message-ID: <1454677100.63b9e0d68438e359e03846af22bf5da7902ce113.ulm@gentoo> Subject: [gentoo-commits] proj/devmanual:master commit in: ebuild-maintenance/ X-VCS-Repository: proj/devmanual X-VCS-Files: ebuild-maintenance/text.xml X-VCS-Directories: ebuild-maintenance/ X-VCS-Committer: ulm X-VCS-Committer-Name: Ulrich Müller X-VCS-Revision: 63b9e0d68438e359e03846af22bf5da7902ce113 X-VCS-Branch: master Date: Fri, 5 Feb 2016 12:59:18 +0000 (UTC) Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-commits@lists.gentoo.org X-Archives-Salt: 235d4707-01f1-4810-aad2-f8cd30e5e44d X-Archives-Hash: 70e029dee3b91daa52be39c2433d0b5c commit: 63b9e0d68438e359e03846af22bf5da7902ce113 Author: Gokturk Yuksek binghamton edu> AuthorDate: Thu Feb 4 00:57:41 2016 +0000 Commit: Ulrich Müller gentoo org> CommitDate: Fri Feb 5 12:58:20 2016 +0000 URL: https://gitweb.gentoo.org/proj/devmanual.git/commit/?id=63b9e0d6 ebuild-maintenance: rewrite the subsection on removing packages for git #558642 Substitute the mentions of CVS with git. Rewrite CVS commands with their git equivalents. Remove the paragraph about deleting directories in CVS. Gentoo-Bug: https://bugs.gentoo.org/show_bug.cgi?id=558642 Signed-off-by: Gokturk Yuksek binghamton.edu> ebuild-maintenance/text.xml | 28 +++++++++++++++++++++------- 1 file changed, 21 insertions(+), 7 deletions(-) diff --git a/ebuild-maintenance/text.xml b/ebuild-maintenance/text.xml index d388d6d..b9c6327 100644 --- a/ebuild-maintenance/text.xml +++ b/ebuild-maintenance/text.xml @@ -428,20 +428,34 @@ When removing packages follow these steps:
  • Send last rites to gentoo-dev-announce and gentoo-dev
  • Mask the package
  • Wait 30 days (or more)
  • -
  • Remove from CVS unless the reason for removal has been fixed
  • +
  • Remove from the git tree unless the reason for removal has been fixed
  • Remove package.mask entry
  • Close open bugs as WONTFIX
  • -In order to remove a package completely from CVS, delete any files from the -directory and commit this, CVS will take care of removing empty directories -itself. +Here is a list of commands that will delete dev-util/pmk +from the tree:

    -
    # cd app-admin
    -# cvs rm -Rf scotty
    -# cvs ci -m "app-admin/scotty removal (pending 21st July 2006), see #77501 for reference." scotty
    +
    +# cd dev-util
    +# git rm -rf pmk
    +# git commit --gpg-sign
    + +

    +An example commit message is shown below: +

    + +
    +commit e0bbcf8291501dc7de6b4b120d4372061367dd7a
    +Author: Michael Palimaka <kensington@gentoo.org>
    +Date:   Fri Jan 29 07:11:01 2016 +1100
    +
    +  dev-util/pmk: remove last-rited package
    +
    +  Gentoo-bug: 541522
    +