Gentoo Archives: gentoo-doc-cvs

From: "Sven Vermeulen (swift)" <swift@g.o>
To: gentoo-doc-cvs@l.g.o
Subject: [gentoo-doc-cvs] gentoo commit in xml/htdocs/doc/en/handbook: hb-working-portage.xml hb-working-use.xml
Date: Tue, 17 Dec 2013 11:29:25
Message-Id: 20131217112920.A39D62004B@flycatcher.gentoo.org
1 swift 13/12/17 11:29:20
2
3 Modified: hb-working-portage.xml hb-working-use.xml
4 Log:
5 Fix bug #490320 - Use correct syntax for world set
6
7 Revision Changes Path
8 1.85 xml/htdocs/doc/en/handbook/hb-working-portage.xml
9
10 file : http://sources.gentoo.org/viewvc.cgi/gentoo/xml/htdocs/doc/en/handbook/hb-working-portage.xml?rev=1.85&view=markup
11 plain: http://sources.gentoo.org/viewvc.cgi/gentoo/xml/htdocs/doc/en/handbook/hb-working-portage.xml?rev=1.85&content-type=text/plain
12 diff : http://sources.gentoo.org/viewvc.cgi/gentoo/xml/htdocs/doc/en/handbook/hb-working-portage.xml?r1=1.84&r2=1.85
13
14 Index: hb-working-portage.xml
15 ===================================================================
16 RCS file: /var/cvsroot/gentoo/xml/htdocs/doc/en/handbook/hb-working-portage.xml,v
17 retrieving revision 1.84
18 retrieving revision 1.85
19 diff -u -r1.84 -r1.85
20 --- hb-working-portage.xml 17 Sep 2013 07:25:28 -0000 1.84
21 +++ hb-working-portage.xml 17 Dec 2013 11:29:20 -0000 1.85
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/2.5 -->
25
26 -<!-- $Header: /var/cvsroot/gentoo/xml/htdocs/doc/en/handbook/hb-working-portage.xml,v 1.84 2013/09/17 07:25:28 swift Exp $ -->
27 +<!-- $Header: /var/cvsroot/gentoo/xml/htdocs/doc/en/handbook/hb-working-portage.xml,v 1.85 2013/12/17 11:29:20 swift Exp $ -->
28
29 <sections>
30
31 @@ -13,8 +13,8 @@
32 maintain the software on his system.
33 </abstract>
34
35 -<version>10</version>
36 -<date>2013-09-17</date>
37 +<version>11</version>
38 +<date>2013-12-17</date>
39
40 <section>
41 <title>Welcome to Portage</title>
42 @@ -289,13 +289,13 @@
43 security updates) you need to update your system regularly. Since Portage only
44 checks the ebuilds in your Portage tree you first have to update your Portage
45 tree. When your Portage tree is updated, you can update your system with
46 -<c>emerge --update world</c>. In the next example, we'll also use the
47 +<c>emerge --update @world</c>. In the next example, we'll also use the
48 <c>--ask</c> switch which will tell Portage to display the list of packages it
49 wants to upgrade and ask you if you want to continue:
50 </p>
51
52 <pre caption="Updating your system">
53 -# <i>emerge --update --ask world</i>
54 +# <i>emerge --update --ask @world</i>
55 </pre>
56
57 <p>
58 @@ -308,7 +308,7 @@
59 </p>
60
61 <pre caption="Updating your system with dependencies">
62 -# <i>emerge --update --deep world</i>
63 +# <i>emerge --update --deep @world</i>
64 </pre>
65
66 <p>
67 @@ -320,7 +320,7 @@
68 </p>
69
70 <pre caption="Updating your entire system">
71 -# <i>emerge --update --deep --with-bdeps=y world</i>
72 +# <i>emerge --update --deep --with-bdeps=y @world</i>
73 </pre>
74
75 <p>
76 @@ -337,7 +337,7 @@
77 </p>
78
79 <pre caption="Performing a full update">
80 -# <i>emerge --update --deep --with-bdeps=y --newuse world</i>
81 +# <i>emerge --update --deep --with-bdeps=y --newuse @world</i>
82 </pre>
83
84 </body>
85 @@ -374,7 +374,7 @@
86 </p>
87
88 <pre caption="Removing orphaned dependencies">
89 -# <i>emerge --update --deep --newuse world</i>
90 +# <i>emerge --update --deep --newuse @world</i>
91 # <i>emerge --depclean</i>
92 # <i>revdep-rebuild</i>
93 </pre>
94
95
96
97 1.55 xml/htdocs/doc/en/handbook/hb-working-use.xml
98
99 file : http://sources.gentoo.org/viewvc.cgi/gentoo/xml/htdocs/doc/en/handbook/hb-working-use.xml?rev=1.55&view=markup
100 plain: http://sources.gentoo.org/viewvc.cgi/gentoo/xml/htdocs/doc/en/handbook/hb-working-use.xml?rev=1.55&content-type=text/plain
101 diff : http://sources.gentoo.org/viewvc.cgi/gentoo/xml/htdocs/doc/en/handbook/hb-working-use.xml?r1=1.54&r2=1.55
102
103 Index: hb-working-use.xml
104 ===================================================================
105 RCS file: /var/cvsroot/gentoo/xml/htdocs/doc/en/handbook/hb-working-use.xml,v
106 retrieving revision 1.54
107 retrieving revision 1.55
108 diff -u -r1.54 -r1.55
109 --- hb-working-use.xml 23 Jul 2013 20:14:45 -0000 1.54
110 +++ hb-working-use.xml 17 Dec 2013 11:29:20 -0000 1.55
111 @@ -4,7 +4,7 @@
112 <!-- The content of this document is licensed under the CC-BY-SA license -->
113 <!-- See http://creativecommons.org/licenses/by-sa/2.5 -->
114
115 -<!-- $Header: /var/cvsroot/gentoo/xml/htdocs/doc/en/handbook/hb-working-use.xml,v 1.54 2013/07/23 20:14:45 swift Exp $ -->
116 +<!-- $Header: /var/cvsroot/gentoo/xml/htdocs/doc/en/handbook/hb-working-use.xml,v 1.55 2013/12/17 11:29:20 swift Exp $ -->
117
118 <sections>
119
120 @@ -13,8 +13,8 @@
121 work with USE flags and understand how USE flags interact with your system.
122 </abstract>
123
124 -<version>5</version>
125 -<date>2013-07-23</date>
126 +<version>6</version>
127 +<date>2013-12-17</date>
128
129 <section>
130 <title>What are USE flags?</title>
131 @@ -281,7 +281,7 @@
132 </p>
133
134 <pre caption="Rebuilding your entire system">
135 -# <i>emerge --update --deep --newuse world</i>
136 +# <i>emerge --update --deep --newuse @world</i>
137 </pre>
138
139 <p>