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 34AD758973 for ; Sun, 17 Jan 2016 07:57:58 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 5E30921C0F1; Sun, 17 Jan 2016 07:55:39 +0000 (UTC) Received: from out5-smtp.messagingengine.com (out5-smtp.messagingengine.com [66.111.4.29]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 8831621C050 for ; Sun, 17 Jan 2016 07:55:36 +0000 (UTC) Received: from compute6.internal (compute6.nyi.internal [10.202.2.46]) by mailout.nyi.internal (Postfix) with ESMTP id 2C16320992 for ; Sun, 17 Jan 2016 02:55:36 -0500 (EST) Received: from frontend1 ([10.202.2.160]) by compute6.internal (MEProxy); Sun, 17 Jan 2016 02:55:36 -0500 DKIM-Signature: v=1; a=rsa-sha1; c=relaxed/relaxed; d= messagingengine.com; h=cc:date:from:in-reply-to:message-id :references:subject:to:x-sasl-enc:x-sasl-enc; s=smtpout; bh=17e+ HcqumEvdIN1SrF7whmUQHeo=; b=F8Ncf/Kt9ty9g4D+o5O4Pn1v2L6pMQbY9T0z dfFioDK+bSmrfEXmByziu8aKjeTGSu4aOYK3g5mzkmaggYVdmZzNPY+cJ71h28lr RIWKfzn+i9Y3QsIgae0EMBhSkw1QnZFp2N1DHdrtbhJd3CeXLmhtgoYjJV83xJMU IXNCdY8= X-Sasl-enc: 2J/VmuiQqycWM/DlbQTX98ey7Phg/yKOjnY+uSFxzOem 1453017335 Received: from localhost.localdomain (cpe-142-105-208-68.stny.res.rr.com [142.105.208.68]) by mail.messagingengine.com (Postfix) with ESMTPA id CEF30C016C4; Sun, 17 Jan 2016 02:55:35 -0500 (EST) From: Gokturk Yuksek To: gentoo-dev@lists.gentoo.org, gentoo-doc@lists.gentoo.org Cc: Gokturk Yuksek Subject: [gentoo-doc] [PATCH 11/16] ebuild-maintenance: rewrite the subsection on moving ebuilds for git #558642 Date: Sun, 17 Jan 2016 02:55:14 -0500 Message-Id: <1453017319-2459-12-git-send-email-gokturk@binghamton.edu> X-Mailer: git-send-email 2.4.10 In-Reply-To: <1453017319-2459-1-git-send-email-gokturk@binghamton.edu> References: <1453017319-2459-1-git-send-email-gokturk@binghamton.edu> Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-doc@lists.gentoo.org Reply-to: gentoo-doc@lists.gentoo.org X-Archives-Salt: a64067b1-e17c-4fcd-9618-0829cf9d3f39 X-Archives-Hash: a8f70b272e21e950fac155c4901c2fbe Substitute the mentions of CVS with git. Rewrite CVS commands with their git equivalents. Remove the paragraph about deleting directories in CVS. X-Gentoo-Bug-URL: https://bugs.gentoo.org/show_bug.cgi?id=558642 Signed-off-by: Gokturk Yuksek diff --git a/ebuild-maintenance/text.xml b/ebuild-maintenance/text.xml index a1d92a1..8c542d0 100644 --- a/ebuild-maintenance/text.xml +++ b/ebuild-maintenance/text.xml @@ -298,7 +298,7 @@ Moving ebuilds is a two-step process:

-Firstly, you need to move the ebuild in CVS. To do this, you should +Firstly, you need to move the ebuild in the git tree. To do this, you should copy the ebuild to its new location and commit that as you would with a new ebuild.

@@ -323,23 +323,17 @@ for net-firewall/fwbuilder when they are available.

Once this step is concluded, you are allowed to remove the old package. -Simply issue a cvs remove -Rf $PN in the package category and commit +Simply issue a git rm -rf $PN in the package category and commit the changes afterwards with a meaningful commit message. Don't forget to update entries in files such as profiles/package.mask to reflect the new category. Finally remember to change the title to open bugs related to this package if needed.

-net-misc # cvs rm -Rf fwbuilder
-cvs remove: use `cvs commit' to remove these files permanently
-net-misc # cvs ci -m "Moving net-misc/fwbuilder to net-firewall/fwbuilder."
+net-misc # git rm -rf fwbuilder
+net-misc # git commit --gpg-sign -m "Moving net-misc/fwbuilder to net-firewall/fwbuilder."
 
- -CVS cannot destroy directories: it will simply not re-create them if -they are blank, providing you use CVS with the -P flag. - - -- 2.4.10