Gentoo Archives: gentoo-dev

From: Gokturk Yuksek <gokturk@××××××××××.edu>
To: devmanual@g.o
Cc: gentoo-dev@l.g.o
Subject: [gentoo-dev] [PATCH v2 13/19] ebuild-maintenance: rewrite the subsection on removing packages for git #558642
Date: Sun, 24 Jan 2016 08:51:28
Message-Id: 1453625173-9505-14-git-send-email-gokturk@binghamton.edu
In Reply to: [gentoo-dev] [PATCH v2 00/19] devmanual: update the docs for post git-migration 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 ebuild-maintenance/text.xml | 15 +++++----------
9 1 file changed, 5 insertions(+), 10 deletions(-)
10
11 diff --git a/ebuild-maintenance/text.xml b/ebuild-maintenance/text.xml
12 index 1a0e1a0..11ab2d4 100644
13 --- a/ebuild-maintenance/text.xml
14 +++ b/ebuild-maintenance/text.xml
15 @@ -428,20 +428,15 @@ When removing packages follow these steps:
16 <li>Send last rites to gentoo-dev-announce and gentoo-dev</li>
17 <li>Mask the package</li>
18 <li>Wait 30 days (or more)</li>
19 - <li>Remove from CVS unless the reason for removal has been fixed</li>
20 + <li>Remove from the git tree unless the reason for removal has been fixed</li>
21 <li>Remove package.mask entry</li>
22 <li>Close open bugs as WONTFIX</li>
23 </ol>
24
25 -<p>
26 -In order to remove a package completely from CVS, delete any files from the
27 -directory and commit this, CVS will take care of removing empty directories
28 -itself.
29 -</p>
30 -
31 -<pre caption="Removing a package from CVS"><comment>#</comment> <keyword>cd</keyword> app-admin
32 -<comment>#</comment> <keyword>cvs</keyword> rm -Rf scotty
33 -<comment>#</comment> <keyword>cvs</keyword> ci -m "app-admin/scotty removal (pending 21st July 2006), see #77501 for reference." scotty</pre>
34 +<pre caption="Removing a package from git">
35 +<comment>#</comment> <keyword>cd</keyword> app-admin
36 +<comment>#</comment> <keyword>git</keyword> rm -rf scotty
37 +<comment>#</comment> <keyword>git</keyword> commit --gpg-sign -m "app-admin/scotty: removal (pending 21st July 2006), see #77501 for reference." scotty</pre>
38
39 </body>
40 </section>
41 --
42 2.4.10