Gentoo Archives: gentoo-dev

From: Gokturk Yuksek <gokturk@××××××××××.edu>
To: gentoo-dev@l.g.o, gentoo-doc@l.g.o
Cc: Gokturk Yuksek <gokturk@××××××××××.edu>
Subject: [gentoo-dev] [PATCH 13/16] ebuild-maintenance: rewrite the subsection on removing packages for git #558642
Date: Sun, 17 Jan 2016 08:02:42
Message-Id: 1453017319-2459-14-git-send-email-gokturk@binghamton.edu
In Reply to: [gentoo-dev] [PATCH 00/16] devmanual: update the docs for post git-migration #558642 by Gokturk Yuksek
1 Substitute the mentions of CVS with git.
2 Rewrite CVS commands with their git equivalents.
3 Remove the paragraph about deleting directories in CVS.
4
5 X-Gentoo-Bug-URL: https://bugs.gentoo.org/show_bug.cgi?id=558642
6 Signed-off-by: Gokturk Yuksek <gokturk@××××××××××.edu>
7
8 diff --git a/ebuild-maintenance/text.xml b/ebuild-maintenance/text.xml
9 index 4078d46..7014689 100644
10 --- a/ebuild-maintenance/text.xml
11 +++ b/ebuild-maintenance/text.xml
12 @@ -396,20 +396,15 @@ When removing packages follow these steps:
13 <li>Send last rites to gentoo-dev-announce and gentoo-dev</li>
14 <li>Mask the package</li>
15 <li>Wait 30 days (or more)</li>
16 - <li>Remove from CVS unless the reason for removal has been fixed</li>
17 + <li>Remove from the git tree unless the reason for removal has been fixed</li>
18 <li>Remove package.mask entry</li>
19 <li>Close open bugs as WONTFIX</li>
20 </ol>
21
22 -<p>
23 -In order to remove a package completely from CVS, delete any files from the
24 -directory and commit this, CVS will take care of removing empty directories
25 -itself.
26 -</p>
27 -
28 -<pre caption="Removing a package from CVS"><comment>#</comment> <keyword>cd</keyword> app-admin
29 -<comment>#</comment> <keyword>cvs</keyword> rm -Rf scotty
30 -<comment>#</comment> <keyword>cvs</keyword> ci -m "app-admin/scotty removal (pending 21st July 2006), see #77501 for reference." scotty</pre>
31 +<pre caption="Removing a package from git">
32 +<comment>#</comment> <keyword>cd</keyword> app-admin
33 +<comment>#</comment> <keyword>git</keyword> rm -rf scotty
34 +<comment>#</comment> <keyword>git</keyword> commit --gpg-sign -m "app-admin/scotty: removal (pending 21st July 2006), see #77501 for reference." scotty</pre>
35
36 </body>
37 </section>
38 --
39 2.4.10