Gentoo Archives: gentoo-commits

From: "Markos Chandras (hwoarang)" <hwoarang@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo commit in xml/htdocs/proj/en/devrel/handbook: hb-introduction-new-devs.xml
Date: Sun, 05 Jan 2014 00:32:02
Message-Id: 20140105003157.6EE0D2004C@flycatcher.gentoo.org
1 hwoarang 14/01/05 00:31:56
2
3 Modified: hb-introduction-new-devs.xml
4 Log:
5 Update handbook to mention the new repos.conf configuration. Patch by floppym. Bug #480210
6
7 Revision Changes Path
8 1.19 xml/htdocs/proj/en/devrel/handbook/hb-introduction-new-devs.xml
9
10 file : http://sources.gentoo.org/viewvc.cgi/gentoo/xml/htdocs/proj/en/devrel/handbook/hb-introduction-new-devs.xml?rev=1.19&view=markup
11 plain: http://sources.gentoo.org/viewvc.cgi/gentoo/xml/htdocs/proj/en/devrel/handbook/hb-introduction-new-devs.xml?rev=1.19&content-type=text/plain
12 diff : http://sources.gentoo.org/viewvc.cgi/gentoo/xml/htdocs/proj/en/devrel/handbook/hb-introduction-new-devs.xml?r1=1.18&r2=1.19
13
14 Index: hb-introduction-new-devs.xml
15 ===================================================================
16 RCS file: /var/cvsroot/gentoo/xml/htdocs/proj/en/devrel/handbook/hb-introduction-new-devs.xml,v
17 retrieving revision 1.18
18 retrieving revision 1.19
19 diff -u -r1.18 -r1.19
20 --- hb-introduction-new-devs.xml 10 May 2013 18:57:40 -0000 1.18
21 +++ hb-introduction-new-devs.xml 5 Jan 2014 00:31:56 -0000 1.19
22 @@ -4,7 +4,7 @@
23 <!-- The content of this document is licensed under the CC-BY-SA license -->
24 <!-- See http://creativecommons.org/licenses/by-sa/1.0 -->
25
26 -<!-- $Header: /var/cvsroot/gentoo/xml/htdocs/proj/en/devrel/handbook/hb-introduction-new-devs.xml,v 1.18 2013/05/10 18:57:40 hwoarang Exp $ -->
27 +<!-- $Header: /var/cvsroot/gentoo/xml/htdocs/proj/en/devrel/handbook/hb-introduction-new-devs.xml,v 1.19 2014/01/05 00:31:56 hwoarang Exp $ -->
28
29 <sections>
30 <version>1.2</version>
31 @@ -99,12 +99,18 @@
32
33 <p>
34 If you want to use CVS as your primary Portage tree, you can add the following
35 -lines to <path>/etc/make.conf</path>, replacing <c>you</c> with your username:
36 +lines to <path>/etc/portage/repos.conf</path>, replacing <c>username</c> with your username:
37 </p>
38
39 -<pre caption="Changing /etc/make.conf for use with CVS">
40 -SYNC="cvs://you@××××××××××.org:/var/cvsroot"
41 -CVSROOT=":ext:you@××××××××××.org:/var/cvsroot"
42 +<pre caption="Configuring repos.conf for use with CVS">
43 +[DEFAULT]
44 +main-repo = gentoo
45 +
46 +[gentoo]
47 +location = /home/username/gentoo-x86
48 +sync-type = cvs
49 +sync-uri = :ext:username@××××××××××.org:/var/cvsroot
50 +sync-cvs-repo = gentoo-x86
51 </pre>
52
53 <note>