public inbox for gentoo-commits@lists.gentoo.org
 help / color / mirror / Atom feed
* [gentoo-commits] gentoo commit in xml/htdocs/proj/en/portage/doc: faq.xml
@ 2007-09-21 23:40 Zac Medico (zmedico)
  0 siblings, 0 replies; 30+ messages in thread
From: Zac Medico (zmedico) @ 2007-09-21 23:40 UTC (permalink / raw
  To: gentoo-commits

zmedico     07/09/21 23:40:17

  Modified:             faq.xml
  Log:
  Remove the questionable USE-deps and "Why is portage slow?" sections and remove the disclaimer="draft" guide attribute.

Revision  Changes    Path
1.25                 xml/htdocs/proj/en/portage/doc/faq.xml

file : http://sources.gentoo.org/viewcvs.py/gentoo/xml/htdocs/proj/en/portage/doc/faq.xml?rev=1.25&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo/xml/htdocs/proj/en/portage/doc/faq.xml?rev=1.25&content-type=text/plain
diff : http://sources.gentoo.org/viewcvs.py/gentoo/xml/htdocs/proj/en/portage/doc/faq.xml?r1=1.24&r2=1.25

Index: faq.xml
===================================================================
RCS file: /var/cvsroot/gentoo/xml/htdocs/proj/en/portage/doc/faq.xml,v
retrieving revision 1.24
retrieving revision 1.25
diff -u -r1.24 -r1.25
--- faq.xml	6 Apr 2006 00:28:15 -0000	1.24
+++ faq.xml	21 Sep 2007 23:40:16 -0000	1.25
@@ -1,8 +1,8 @@
 <?xml version="1.0" encoding="UTF-8"?>
 <!DOCTYPE guide SYSTEM "/dtd/guide.dtd">
-<!-- $Header: /var/cvsroot/gentoo/xml/htdocs/proj/en/portage/doc/faq.xml,v 1.24 2006/04/06 00:28:15 chriswhite Exp $ -->
+<!-- $Header: /var/cvsroot/gentoo/xml/htdocs/proj/en/portage/doc/faq.xml,v 1.25 2007/09/21 23:40:16 zmedico Exp $ -->
 
-<guide link="/proj/en/portage/doc/faq.xml" lang="en" disclaimer="draft">
+<guide link="/proj/en/portage/doc/faq.xml" lang="en">
 <title>Portage Frequently Asked Questions (FAQ)</title>
 
 <author title="Author">
@@ -25,42 +25,6 @@
 <chapter>
 <title>Frequently Asked Questions</title>
 <section>
-<title>Why don't we have USE-based DEPEND atoms yet?</title>
-<body>
-
-<p>
-USE-based DEPEND atoms, ie DEPEND=”app-foo/bar[baz]” where baz is in IUSE of app-foo/bar are tricky to implement properly. Imagine a package with DEPEND=”app-foo/bar[baz] app-foo/coolpkg” Then in app-foo/coolpkg... DEPEND=”app-foo/bar[-baz]”. Here we have a depgraph with -baz and baz, how do we satisfy the depgraph? Also when automagically flipping flags on ( for instance, an app deps on app-foo/bar[baz] so we set USE=”baz” ) causes other fun depgraph issues and cycles. All of these must be accounted for in the code. Not to mention the depgraph code must process dependencies in a sane timeframe.
-</p>
-
-</body>
-</section>
-<section>
-<title>Why is portage so slow? / Why don't you rewrite portage in $RANDOM_LANGUAGE</title>
-<body>
-
-<p>
-Portage's speed (or lack thereof) has very little to do with Python the 
-language. The 2.0 codebase is old and was not well designed. The 
-developers have been talking of a redesigned codebase that attempts to 
-achieve many goals; being faster is one of them. For a current example 
-try in a shell:
-</p>
-
-<pre caption="Pre Portage Timing">
-$ <i>time python -c 'import portage'</i>
-</pre>
-
-<p>
-On many systems this can take up to and above 10 seconds, because portage needs
-to scan the tree for virtual providers and initialize all it’s configuration data.
-This is just one place where older coding habits and conventions render the 2.0
-codebase difficult to work with.  Zac Medico has patched the 2.1 series in a late
-revision to implement lazy loading of virtuals that should speed up import times.
-</p>
-
-</body>
-</section>
-<section>
 <title>Can I mount the portage tree ( /usr/portage ) via NFS?</title>
 <body>
 



-- 
gentoo-commits@gentoo.org mailing list



^ permalink raw reply	[flat|nested] 30+ messages in thread

* [gentoo-commits] gentoo commit in xml/htdocs/proj/en/portage/doc: faq.xml
@ 2007-09-22  0:47 Zac Medico (zmedico)
  0 siblings, 0 replies; 30+ messages in thread
From: Zac Medico (zmedico) @ 2007-09-22  0:47 UTC (permalink / raw
  To: gentoo-commits

zmedico     07/09/22 00:47:31

  Modified:             faq.xml
  Log:
  Add a new section: "Why is it that emerge does not update all packages?"

Revision  Changes    Path
1.26                 xml/htdocs/proj/en/portage/doc/faq.xml

file : http://sources.gentoo.org/viewcvs.py/gentoo/xml/htdocs/proj/en/portage/doc/faq.xml?rev=1.26&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo/xml/htdocs/proj/en/portage/doc/faq.xml?rev=1.26&content-type=text/plain
diff : http://sources.gentoo.org/viewcvs.py/gentoo/xml/htdocs/proj/en/portage/doc/faq.xml?r1=1.25&r2=1.26

Index: faq.xml
===================================================================
RCS file: /var/cvsroot/gentoo/xml/htdocs/proj/en/portage/doc/faq.xml,v
retrieving revision 1.25
retrieving revision 1.26
diff -u -r1.25 -r1.26
--- faq.xml	21 Sep 2007 23:40:16 -0000	1.25
+++ faq.xml	22 Sep 2007 00:47:30 -0000	1.26
@@ -1,12 +1,13 @@
 <?xml version="1.0" encoding="UTF-8"?>
 <!DOCTYPE guide SYSTEM "/dtd/guide.dtd">
-<!-- $Header: /var/cvsroot/gentoo/xml/htdocs/proj/en/portage/doc/faq.xml,v 1.25 2007/09/21 23:40:16 zmedico Exp $ -->
+<!-- $Header: /var/cvsroot/gentoo/xml/htdocs/proj/en/portage/doc/faq.xml,v 1.26 2007/09/22 00:47:30 zmedico Exp $ -->
 
 <guide link="/proj/en/portage/doc/faq.xml" lang="en">
 <title>Portage Frequently Asked Questions (FAQ)</title>
 
 <author title="Author">
   <mail link="antarus@gentoo.org">Alec Warner</mail>
+  <mail link="zmedico@gentoo.org">Zac Medico</mail>
 </author>
 <author title="GuideXML">
   <mail link="chriswhite@gentoo.org">Chris White</mail>
@@ -25,6 +26,37 @@
 <chapter>
 <title>Frequently Asked Questions</title>
 <section>
+<title>Why is it that emerge does not update all packages?</title>
+<body>
+
+<p>
+By default, the dependency graph may not include some packages. For example,
+it will not include any packages that are listed in the output of
+<c>emerge --pretend --depclean</c>. It will also not include any build time
+dependencies for installed packages or binary packages. If you would like to
+include such build time dependencies even though they are not strictly
+required, use <c>--with-bdeps=y</c>. You can set
+<c>EMERGE_DEFAULT_OPTS="--with-bdeps=y"</c> in <path>/etc/make.conf</path> if
+you would like this option to be enabled by default.
+If you would like a specific package to be updated in any case, you can use
+<c>emerge --noreplace &lt;atom&gt;</c> to have it added to the world set.
+</p>
+<p>
+After running <c>emerge --deep --with-bdeps=y world</c>, it is a good idea to
+use <c>emerge --pretend --depclean</c> to see if there are any packages that
+it would remove. If that command shows a package that you would like to keep,
+use <c>emerge --noreplace &lt;atom&gt;</c> to have it added to the world set.
+</p>
+<warn>When you use <c>emerge --depclean</c> to remove unwanted packages, it is
+a good idea to run <c>revdep-rebuild</c> (from the gentoolkit package)
+afterwards.</warn>
+<note>Run <c>man emerge</c> to view the manual page which documents all
+<c>emerge</c> options.</note>
+
+</body>
+</section>
+
+<section>
 <title>Can I mount the portage tree ( /usr/portage ) via NFS?</title>
 <body>
 



-- 
gentoo-commits@gentoo.org mailing list



^ permalink raw reply	[flat|nested] 30+ messages in thread

* [gentoo-commits] gentoo commit in xml/htdocs/proj/en/portage/doc: faq.xml
@ 2007-09-22  1:31 Zac Medico (zmedico)
  0 siblings, 0 replies; 30+ messages in thread
From: Zac Medico (zmedico) @ 2007-09-22  1:31 UTC (permalink / raw
  To: gentoo-commits

zmedico     07/09/22 01:31:33

  Modified:             faq.xml
  Log:
  Add an author tag for myself.

Revision  Changes    Path
1.27                 xml/htdocs/proj/en/portage/doc/faq.xml

file : http://sources.gentoo.org/viewcvs.py/gentoo/xml/htdocs/proj/en/portage/doc/faq.xml?rev=1.27&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo/xml/htdocs/proj/en/portage/doc/faq.xml?rev=1.27&content-type=text/plain
diff : http://sources.gentoo.org/viewcvs.py/gentoo/xml/htdocs/proj/en/portage/doc/faq.xml?r1=1.26&r2=1.27

Index: faq.xml
===================================================================
RCS file: /var/cvsroot/gentoo/xml/htdocs/proj/en/portage/doc/faq.xml,v
retrieving revision 1.26
retrieving revision 1.27
diff -u -r1.26 -r1.27
--- faq.xml	22 Sep 2007 00:47:30 -0000	1.26
+++ faq.xml	22 Sep 2007 01:31:32 -0000	1.27
@@ -1,12 +1,14 @@
 <?xml version="1.0" encoding="UTF-8"?>
 <!DOCTYPE guide SYSTEM "/dtd/guide.dtd">
-<!-- $Header: /var/cvsroot/gentoo/xml/htdocs/proj/en/portage/doc/faq.xml,v 1.26 2007/09/22 00:47:30 zmedico Exp $ -->
+<!-- $Header: /var/cvsroot/gentoo/xml/htdocs/proj/en/portage/doc/faq.xml,v 1.27 2007/09/22 01:31:32 zmedico Exp $ -->
 
 <guide link="/proj/en/portage/doc/faq.xml" lang="en">
 <title>Portage Frequently Asked Questions (FAQ)</title>
 
 <author title="Author">
   <mail link="antarus@gentoo.org">Alec Warner</mail>
+</author>
+<author title="Contributor">
   <mail link="zmedico@gentoo.org">Zac Medico</mail>
 </author>
 <author title="GuideXML">



-- 
gentoo-commits@gentoo.org mailing list



^ permalink raw reply	[flat|nested] 30+ messages in thread

* [gentoo-commits] gentoo commit in xml/htdocs/proj/en/portage/doc: faq.xml
@ 2007-09-22  5:18 Zac Medico (zmedico)
  0 siblings, 0 replies; 30+ messages in thread
From: Zac Medico (zmedico) @ 2007-09-22  5:18 UTC (permalink / raw
  To: gentoo-commits

zmedico     07/09/22 05:18:12

  Modified:             faq.xml
  Log:
  In the portage tree via NFS section, add a note about the metadata_overlay cache module.

Revision  Changes    Path
1.28                 xml/htdocs/proj/en/portage/doc/faq.xml

file : http://sources.gentoo.org/viewcvs.py/gentoo/xml/htdocs/proj/en/portage/doc/faq.xml?rev=1.28&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo/xml/htdocs/proj/en/portage/doc/faq.xml?rev=1.28&content-type=text/plain
diff : http://sources.gentoo.org/viewcvs.py/gentoo/xml/htdocs/proj/en/portage/doc/faq.xml?r1=1.27&r2=1.28

Index: faq.xml
===================================================================
RCS file: /var/cvsroot/gentoo/xml/htdocs/proj/en/portage/doc/faq.xml,v
retrieving revision 1.27
retrieving revision 1.28
diff -u -r1.27 -r1.28
--- faq.xml	22 Sep 2007 01:31:32 -0000	1.27
+++ faq.xml	22 Sep 2007 05:18:11 -0000	1.28
@@ -1,6 +1,6 @@
 <?xml version="1.0" encoding="UTF-8"?>
 <!DOCTYPE guide SYSTEM "/dtd/guide.dtd">
-<!-- $Header: /var/cvsroot/gentoo/xml/htdocs/proj/en/portage/doc/faq.xml,v 1.27 2007/09/22 01:31:32 zmedico Exp $ -->
+<!-- $Header: /var/cvsroot/gentoo/xml/htdocs/proj/en/portage/doc/faq.xml,v 1.28 2007/09/22 05:18:11 zmedico Exp $ -->
 
 <guide link="/proj/en/portage/doc/faq.xml" lang="en">
 <title>Portage Frequently Asked Questions (FAQ)</title>
@@ -24,7 +24,7 @@
 <license/>
 
 <version>1.0</version>
-<date>2006-04-04</date>
+<date>2007-09-21</date>
 <chapter>
 <title>Frequently Asked Questions</title>
 <section>
@@ -66,7 +66,15 @@
 Mounting <path>/usr/portage</path> over NFS is possible.  However you must be
 careful to run <c>emerge --metadata</c> on all clients who are mounting the tree 
 over NFS.  Otherwise their Portage cache's will be stable and Portage will run rather
-slowly. You need not run <c>emerge --sync</c> on every client.  If you encounter
+slowly. You need not run <c>emerge --sync</c> on every client.
+</p>
+<note>It is unnecessary to run <c>emerge --metadata</c> if the
+metadata_overlay cache module is enabled in <path>/etc/portage/modules</path>.
+The portage manual page (run <c>man portage</c>) describes the steps necessary
+to enable this.
+</note>
+<p>
+If you encounter
 problems with an NFS setup it is important that you ensure you have the proper locking
 daemons on both the NFS client machines and the NFS server machine.  Portage uses
 hardlinks over NFS in an attempt to lock files; if the locking daemon fails to lock



-- 
gentoo-commits@gentoo.org mailing list



^ permalink raw reply	[flat|nested] 30+ messages in thread

* [gentoo-commits] gentoo commit in xml/htdocs/proj/en/portage/doc: faq.xml
@ 2007-09-23 20:16 Zac Medico (zmedico)
  0 siblings, 0 replies; 30+ messages in thread
From: Zac Medico (zmedico) @ 2007-09-23 20:16 UTC (permalink / raw
  To: gentoo-commits

zmedico     07/09/23 20:16:02

  Modified:             faq.xml
  Log:
  Re-word the first part of the NFS section.

Revision  Changes    Path
1.29                 xml/htdocs/proj/en/portage/doc/faq.xml

file : http://sources.gentoo.org/viewcvs.py/gentoo/xml/htdocs/proj/en/portage/doc/faq.xml?rev=1.29&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo/xml/htdocs/proj/en/portage/doc/faq.xml?rev=1.29&content-type=text/plain
diff : http://sources.gentoo.org/viewcvs.py/gentoo/xml/htdocs/proj/en/portage/doc/faq.xml?r1=1.28&r2=1.29

Index: faq.xml
===================================================================
RCS file: /var/cvsroot/gentoo/xml/htdocs/proj/en/portage/doc/faq.xml,v
retrieving revision 1.28
retrieving revision 1.29
diff -u -r1.28 -r1.29
--- faq.xml	22 Sep 2007 05:18:11 -0000	1.28
+++ faq.xml	23 Sep 2007 20:16:01 -0000	1.29
@@ -1,6 +1,6 @@
 <?xml version="1.0" encoding="UTF-8"?>
 <!DOCTYPE guide SYSTEM "/dtd/guide.dtd">
-<!-- $Header: /var/cvsroot/gentoo/xml/htdocs/proj/en/portage/doc/faq.xml,v 1.28 2007/09/22 05:18:11 zmedico Exp $ -->
+<!-- $Header: /var/cvsroot/gentoo/xml/htdocs/proj/en/portage/doc/faq.xml,v 1.29 2007/09/23 20:16:01 zmedico Exp $ -->
 
 <guide link="/proj/en/portage/doc/faq.xml" lang="en">
 <title>Portage Frequently Asked Questions (FAQ)</title>
@@ -63,13 +63,16 @@
 <body>
 
 <p>
-Mounting <path>/usr/portage</path> over NFS is possible.  However you must be
-careful to run <c>emerge --metadata</c> on all clients who are mounting the tree 
-over NFS.  Otherwise their Portage cache's will be stable and Portage will run rather
-slowly. You need not run <c>emerge --sync</c> on every client.
+It is possible to share the portage tree (<path>/usr/portage</path>) over NFS
+so that <c>emerge --sync</c> only needs to be run on an NFS server. However,
+even though NFS clients do not need to run <c>emerge --sync</c>, they must run
+<c>emerge --metadata</c> each time that the portage tree
+is updated since otherwise their dependency calculations will slow down due to
+their metadata cache (located in <path>/var/cache/edb/dep</path>) becoming
+stale.
 </p>
-<note>It is unnecessary to run <c>emerge --metadata</c> if the
-metadata_overlay cache module is enabled in <path>/etc/portage/modules</path>.
+<note>NFS clients do not need to run <c>emerge --metadata</c> if they have the
+metadata_overlay cache module enabled in <path>/etc/portage/modules</path>.
 The portage manual page (run <c>man portage</c>) describes the steps necessary
 to enable this.
 </note>



-- 
gentoo-commits@gentoo.org mailing list



^ permalink raw reply	[flat|nested] 30+ messages in thread

* [gentoo-commits] gentoo commit in xml/htdocs/proj/en/portage/doc: faq.xml
@ 2007-10-23 19:39 Zac Medico (zmedico)
  0 siblings, 0 replies; 30+ messages in thread
From: Zac Medico (zmedico) @ 2007-10-23 19:39 UTC (permalink / raw
  To: gentoo-commits

zmedico     07/10/23 19:39:54

  Modified:             faq.xml
  Log:
  Add --noreplace to the suggested options for a world
  update command.

Revision  Changes    Path
1.30                 xml/htdocs/proj/en/portage/doc/faq.xml

file : http://sources.gentoo.org/viewcvs.py/gentoo/xml/htdocs/proj/en/portage/doc/faq.xml?rev=1.30&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo/xml/htdocs/proj/en/portage/doc/faq.xml?rev=1.30&content-type=text/plain
diff : http://sources.gentoo.org/viewcvs.py/gentoo/xml/htdocs/proj/en/portage/doc/faq.xml?r1=1.29&r2=1.30

Index: faq.xml
===================================================================
RCS file: /var/cvsroot/gentoo/xml/htdocs/proj/en/portage/doc/faq.xml,v
retrieving revision 1.29
retrieving revision 1.30
diff -u -r1.29 -r1.30
--- faq.xml	23 Sep 2007 20:16:01 -0000	1.29
+++ faq.xml	23 Oct 2007 19:39:54 -0000	1.30
@@ -1,6 +1,6 @@
 <?xml version="1.0" encoding="UTF-8"?>
 <!DOCTYPE guide SYSTEM "/dtd/guide.dtd">
-<!-- $Header: /var/cvsroot/gentoo/xml/htdocs/proj/en/portage/doc/faq.xml,v 1.29 2007/09/23 20:16:01 zmedico Exp $ -->
+<!-- $Header: /var/cvsroot/gentoo/xml/htdocs/proj/en/portage/doc/faq.xml,v 1.30 2007/10/23 19:39:54 zmedico Exp $ -->
 
 <guide link="/proj/en/portage/doc/faq.xml" lang="en">
 <title>Portage Frequently Asked Questions (FAQ)</title>
@@ -44,7 +44,8 @@
 <c>emerge --noreplace &lt;atom&gt;</c> to have it added to the world set.
 </p>
 <p>
-After running <c>emerge --deep --with-bdeps=y world</c>, it is a good idea to
+After running <c>emerge --deep --with-bdeps=y --noreplace world</c>,
+it is a good idea to
 use <c>emerge --pretend --depclean</c> to see if there are any packages that
 it would remove. If that command shows a package that you would like to keep,
 use <c>emerge --noreplace &lt;atom&gt;</c> to have it added to the world set.



-- 
gentoo-commits@gentoo.org mailing list



^ permalink raw reply	[flat|nested] 30+ messages in thread

* [gentoo-commits] gentoo commit in xml/htdocs/proj/en/portage/doc: faq.xml
@ 2007-10-23 19:56 Zac Medico (zmedico)
  0 siblings, 0 replies; 30+ messages in thread
From: Zac Medico (zmedico) @ 2007-10-23 19:56 UTC (permalink / raw
  To: gentoo-commits

zmedico     07/10/23 19:56:47

  Modified:             faq.xml
  Log:
  On second thought, suggest --update instead of --noreplace.

Revision  Changes    Path
1.31                 xml/htdocs/proj/en/portage/doc/faq.xml

file : http://sources.gentoo.org/viewcvs.py/gentoo/xml/htdocs/proj/en/portage/doc/faq.xml?rev=1.31&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo/xml/htdocs/proj/en/portage/doc/faq.xml?rev=1.31&content-type=text/plain
diff : http://sources.gentoo.org/viewcvs.py/gentoo/xml/htdocs/proj/en/portage/doc/faq.xml?r1=1.30&r2=1.31

Index: faq.xml
===================================================================
RCS file: /var/cvsroot/gentoo/xml/htdocs/proj/en/portage/doc/faq.xml,v
retrieving revision 1.30
retrieving revision 1.31
diff -u -r1.30 -r1.31
--- faq.xml	23 Oct 2007 19:39:54 -0000	1.30
+++ faq.xml	23 Oct 2007 19:56:46 -0000	1.31
@@ -1,6 +1,6 @@
 <?xml version="1.0" encoding="UTF-8"?>
 <!DOCTYPE guide SYSTEM "/dtd/guide.dtd">
-<!-- $Header: /var/cvsroot/gentoo/xml/htdocs/proj/en/portage/doc/faq.xml,v 1.30 2007/10/23 19:39:54 zmedico Exp $ -->
+<!-- $Header: /var/cvsroot/gentoo/xml/htdocs/proj/en/portage/doc/faq.xml,v 1.31 2007/10/23 19:56:46 zmedico Exp $ -->
 
 <guide link="/proj/en/portage/doc/faq.xml" lang="en">
 <title>Portage Frequently Asked Questions (FAQ)</title>
@@ -44,7 +44,7 @@
 <c>emerge --noreplace &lt;atom&gt;</c> to have it added to the world set.
 </p>
 <p>
-After running <c>emerge --deep --with-bdeps=y --noreplace world</c>,
+After running <c>emerge --deep --with-bdeps=y --update world</c>,
 it is a good idea to
 use <c>emerge --pretend --depclean</c> to see if there are any packages that
 it would remove. If that command shows a package that you would like to keep,



-- 
gentoo-commits@gentoo.org mailing list



^ permalink raw reply	[flat|nested] 30+ messages in thread

* [gentoo-commits] gentoo commit in xml/htdocs/proj/en/portage/doc: faq.xml
@ 2007-11-24 19:05 Zac Medico (zmedico)
  0 siblings, 0 replies; 30+ messages in thread
From: Zac Medico (zmedico) @ 2007-11-24 19:05 UTC (permalink / raw
  To: gentoo-commits

zmedico     07/11/24 19:05:36

  Modified:             faq.xml
  Log:
  Add a section about how to check for reverse dependencies to see
  if a package can be safely uninstalled.

Revision  Changes    Path
1.32                 xml/htdocs/proj/en/portage/doc/faq.xml

file : http://sources.gentoo.org/viewcvs.py/gentoo/xml/htdocs/proj/en/portage/doc/faq.xml?rev=1.32&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo/xml/htdocs/proj/en/portage/doc/faq.xml?rev=1.32&content-type=text/plain
diff : http://sources.gentoo.org/viewcvs.py/gentoo/xml/htdocs/proj/en/portage/doc/faq.xml?r1=1.31&r2=1.32

Index: faq.xml
===================================================================
RCS file: /var/cvsroot/gentoo/xml/htdocs/proj/en/portage/doc/faq.xml,v
retrieving revision 1.31
retrieving revision 1.32
diff -u -r1.31 -r1.32
--- faq.xml	23 Oct 2007 19:56:46 -0000	1.31
+++ faq.xml	24 Nov 2007 19:05:35 -0000	1.32
@@ -1,6 +1,6 @@
 <?xml version="1.0" encoding="UTF-8"?>
 <!DOCTYPE guide SYSTEM "/dtd/guide.dtd">
-<!-- $Header: /var/cvsroot/gentoo/xml/htdocs/proj/en/portage/doc/faq.xml,v 1.31 2007/10/23 19:56:46 zmedico Exp $ -->
+<!-- $Header: /var/cvsroot/gentoo/xml/htdocs/proj/en/portage/doc/faq.xml,v 1.32 2007/11/24 19:05:35 zmedico Exp $ -->
 
 <guide link="/proj/en/portage/doc/faq.xml" lang="en">
 <title>Portage Frequently Asked Questions (FAQ)</title>
@@ -60,6 +60,23 @@
 </section>
 
 <section>
+<title>
+How can I check for reverse dependencies of a package,
+to know if it can be safely uninstalled?
+</title>
+<body>
+
+<p>
+Run <c>emerge --depclean --pretend --verbose [atom]...</c> to see if there
+are any reverse dependencies for matched packages.
+</p>
+<warn>When you use <c>emerge --depclean</c> to remove unwanted packages, it
+is a good idea to run <c>revdep-rebuild</c> (from the gentoolkit package)
+afterwards.</warn>
+</body>
+</section>
+
+<section>
 <title>Can I mount the portage tree ( /usr/portage ) via NFS?</title>
 <body>
 



-- 
gentoo-commits@gentoo.org mailing list



^ permalink raw reply	[flat|nested] 30+ messages in thread

* [gentoo-commits] gentoo commit in xml/htdocs/proj/en/portage/doc: faq.xml
@ 2008-04-16 20:49 Zac Medico (zmedico)
  0 siblings, 0 replies; 30+ messages in thread
From: Zac Medico (zmedico) @ 2008-04-16 20:49 UTC (permalink / raw
  To: gentoo-commits

zmedico     08/04/16 20:49:00

  Modified:             faq.xml
  Log:
  Add a new section about how "blocks" between packages can be resolved.

Revision  Changes    Path
1.33                 xml/htdocs/proj/en/portage/doc/faq.xml

file : http://sources.gentoo.org/viewcvs.py/gentoo/xml/htdocs/proj/en/portage/doc/faq.xml?rev=1.33&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo/xml/htdocs/proj/en/portage/doc/faq.xml?rev=1.33&content-type=text/plain
diff : http://sources.gentoo.org/viewcvs.py/gentoo/xml/htdocs/proj/en/portage/doc/faq.xml?r1=1.32&r2=1.33

Index: faq.xml
===================================================================
RCS file: /var/cvsroot/gentoo/xml/htdocs/proj/en/portage/doc/faq.xml,v
retrieving revision 1.32
retrieving revision 1.33
diff -u -r1.32 -r1.33
--- faq.xml	24 Nov 2007 19:05:35 -0000	1.32
+++ faq.xml	16 Apr 2008 20:48:59 -0000	1.33
@@ -1,6 +1,6 @@
 <?xml version="1.0" encoding="UTF-8"?>
 <!DOCTYPE guide SYSTEM "/dtd/guide.dtd">
-<!-- $Header: /var/cvsroot/gentoo/xml/htdocs/proj/en/portage/doc/faq.xml,v 1.32 2007/11/24 19:05:35 zmedico Exp $ -->
+<!-- $Header: /var/cvsroot/gentoo/xml/htdocs/proj/en/portage/doc/faq.xml,v 1.33 2008/04/16 20:48:59 zmedico Exp $ -->
 
 <guide link="/proj/en/portage/doc/faq.xml" lang="en">
 <title>Portage Frequently Asked Questions (FAQ)</title>
@@ -27,6 +27,19 @@
 <date>2007-09-21</date>
 <chapter>
 <title>Frequently Asked Questions</title>
+
+<section>
+<title>
+How can "blocks" between packages be resolved?
+</title>
+<body>
+<p> See the <uri
+link="http://www.gentoo.org/doc/en/handbook/handbook-x86.xml?full=1#blocked">
+Blocked Packages section in the Gentoo Handbook</uri>.
+</p>
+</body>
+</section>
+
 <section>
 <title>Why is it that emerge does not update all packages?</title>
 <body>



-- 
gentoo-commits@lists.gentoo.org mailing list



^ permalink raw reply	[flat|nested] 30+ messages in thread

* [gentoo-commits] gentoo commit in xml/htdocs/proj/en/portage/doc: faq.xml
@ 2008-04-21 22:28 Zac Medico (zmedico)
  0 siblings, 0 replies; 30+ messages in thread
From: Zac Medico (zmedico) @ 2008-04-21 22:28 UTC (permalink / raw
  To: gentoo-commits

zmedico     08/04/21 22:28:25

  Modified:             faq.xml
  Log:
  Update the "portage tree via NFS" with relevant new information about
  FEATURES="metadata-transfer" in >=portage-2.1.5_rc6.

Revision  Changes    Path
1.34                 xml/htdocs/proj/en/portage/doc/faq.xml

file : http://sources.gentoo.org/viewcvs.py/gentoo/xml/htdocs/proj/en/portage/doc/faq.xml?rev=1.34&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo/xml/htdocs/proj/en/portage/doc/faq.xml?rev=1.34&content-type=text/plain
diff : http://sources.gentoo.org/viewcvs.py/gentoo/xml/htdocs/proj/en/portage/doc/faq.xml?r1=1.33&r2=1.34

Index: faq.xml
===================================================================
RCS file: /var/cvsroot/gentoo/xml/htdocs/proj/en/portage/doc/faq.xml,v
retrieving revision 1.33
retrieving revision 1.34
diff -u -r1.33 -r1.34
--- faq.xml	16 Apr 2008 20:48:59 -0000	1.33
+++ faq.xml	21 Apr 2008 22:28:25 -0000	1.34
@@ -1,6 +1,6 @@
 <?xml version="1.0" encoding="UTF-8"?>
 <!DOCTYPE guide SYSTEM "/dtd/guide.dtd">
-<!-- $Header: /var/cvsroot/gentoo/xml/htdocs/proj/en/portage/doc/faq.xml,v 1.33 2008/04/16 20:48:59 zmedico Exp $ -->
+<!-- $Header: /var/cvsroot/gentoo/xml/htdocs/proj/en/portage/doc/faq.xml,v 1.34 2008/04/21 22:28:25 zmedico Exp $ -->
 
 <guide link="/proj/en/portage/doc/faq.xml" lang="en">
 <title>Portage Frequently Asked Questions (FAQ)</title>
@@ -90,7 +90,7 @@
 </section>
 
 <section>
-<title>Can I mount the portage tree ( /usr/portage ) via NFS?</title>
+<title>Can I mount the portage tree (/usr/portage) via NFS?</title>
 <body>
 
 <p>
@@ -107,6 +107,12 @@
 The portage manual page (run <c>man portage</c>) describes the steps necessary
 to enable this.
 </note>
+<note>With versions of portage >=2.1.5_rc6 there is never any need to run
+<c>emerge --metadata</c> as long as the user has not enabled
+FEATURES="metadata-transfer" in make.conf. When metadata-transfer is disabled,
+metadata cache from the ${PORTDIR}/metadata/cache/ directory will be used
+directly. Run <c>man make.conf</c> to learn more about metadata-transfer.
+</note>
 <p>
 If you encounter
 problems with an NFS setup it is important that you ensure you have the proper locking



-- 
gentoo-commits@lists.gentoo.org mailing list



^ permalink raw reply	[flat|nested] 30+ messages in thread

* [gentoo-commits] gentoo commit in xml/htdocs/proj/en/portage/doc: faq.xml
@ 2008-04-21 22:30 Zac Medico (zmedico)
  0 siblings, 0 replies; 30+ messages in thread
From: Zac Medico (zmedico) @ 2008-04-21 22:30 UTC (permalink / raw
  To: gentoo-commits

zmedico     08/04/21 22:30:58

  Modified:             faq.xml
  Log:
  Use a <path> tag for /usr/portage/metadata/cache/.

Revision  Changes    Path
1.35                 xml/htdocs/proj/en/portage/doc/faq.xml

file : http://sources.gentoo.org/viewcvs.py/gentoo/xml/htdocs/proj/en/portage/doc/faq.xml?rev=1.35&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo/xml/htdocs/proj/en/portage/doc/faq.xml?rev=1.35&content-type=text/plain
diff : http://sources.gentoo.org/viewcvs.py/gentoo/xml/htdocs/proj/en/portage/doc/faq.xml?r1=1.34&r2=1.35

Index: faq.xml
===================================================================
RCS file: /var/cvsroot/gentoo/xml/htdocs/proj/en/portage/doc/faq.xml,v
retrieving revision 1.34
retrieving revision 1.35
diff -u -r1.34 -r1.35
--- faq.xml	21 Apr 2008 22:28:25 -0000	1.34
+++ faq.xml	21 Apr 2008 22:30:58 -0000	1.35
@@ -1,6 +1,6 @@
 <?xml version="1.0" encoding="UTF-8"?>
 <!DOCTYPE guide SYSTEM "/dtd/guide.dtd">
-<!-- $Header: /var/cvsroot/gentoo/xml/htdocs/proj/en/portage/doc/faq.xml,v 1.34 2008/04/21 22:28:25 zmedico Exp $ -->
+<!-- $Header: /var/cvsroot/gentoo/xml/htdocs/proj/en/portage/doc/faq.xml,v 1.35 2008/04/21 22:30:58 zmedico Exp $ -->
 
 <guide link="/proj/en/portage/doc/faq.xml" lang="en">
 <title>Portage Frequently Asked Questions (FAQ)</title>
@@ -110,8 +110,9 @@
 <note>With versions of portage >=2.1.5_rc6 there is never any need to run
 <c>emerge --metadata</c> as long as the user has not enabled
 FEATURES="metadata-transfer" in make.conf. When metadata-transfer is disabled,
-metadata cache from the ${PORTDIR}/metadata/cache/ directory will be used
-directly. Run <c>man make.conf</c> to learn more about metadata-transfer.
+metadata cache from the <path>/usr/portage/metadata/cache/</path>
+directory will be used directly. Run <c>man make.conf</c> to
+learn more about metadata-transfer.
 </note>
 <p>
 If you encounter



-- 
gentoo-commits@lists.gentoo.org mailing list



^ permalink raw reply	[flat|nested] 30+ messages in thread

* [gentoo-commits] gentoo commit in xml/htdocs/proj/en/portage/doc: faq.xml
@ 2009-03-24 17:46 Zac Medico (zmedico)
  0 siblings, 0 replies; 30+ messages in thread
From: Zac Medico (zmedico) @ 2009-03-24 17:46 UTC (permalink / raw
  To: gentoo-commits

zmedico     09/03/24 17:46:20

  Modified:             faq.xml
  Log:
  Add a faq entry about bug 230257.

Revision  Changes    Path
1.36                 xml/htdocs/proj/en/portage/doc/faq.xml

file : http://sources.gentoo.org/viewcvs.py/gentoo/xml/htdocs/proj/en/portage/doc/faq.xml?rev=1.36&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo/xml/htdocs/proj/en/portage/doc/faq.xml?rev=1.36&content-type=text/plain
diff : http://sources.gentoo.org/viewcvs.py/gentoo/xml/htdocs/proj/en/portage/doc/faq.xml?r1=1.35&r2=1.36

Index: faq.xml
===================================================================
RCS file: /var/cvsroot/gentoo/xml/htdocs/proj/en/portage/doc/faq.xml,v
retrieving revision 1.35
retrieving revision 1.36
diff -u -r1.35 -r1.36
--- faq.xml	21 Apr 2008 22:30:58 -0000	1.35
+++ faq.xml	24 Mar 2009 17:46:20 -0000	1.36
@@ -1,6 +1,6 @@
 <?xml version="1.0" encoding="UTF-8"?>
 <!DOCTYPE guide SYSTEM "/dtd/guide.dtd">
-<!-- $Header: /var/cvsroot/gentoo/xml/htdocs/proj/en/portage/doc/faq.xml,v 1.35 2008/04/21 22:30:58 zmedico Exp $ -->
+<!-- $Header: /var/cvsroot/gentoo/xml/htdocs/proj/en/portage/doc/faq.xml,v 1.36 2009/03/24 17:46:20 zmedico Exp $ -->
 
 <guide link="/proj/en/portage/doc/faq.xml" lang="en">
 <title>Portage Frequently Asked Questions (FAQ)</title>
@@ -24,7 +24,7 @@
 <license/>
 
 <version>1.0</version>
-<date>2007-09-21</date>
+<date>2009-03-24</date>
 <chapter>
 <title>Frequently Asked Questions</title>
 
@@ -125,5 +125,24 @@
 
 </body>
 </section>
+
+<section>
+	<title>
+	Why does the @preserved-rebuild set contain packages that have
+	already been rebuilt?
+	</title>
+	<body>
+		<p>
+		This is a <uri link="http://bugs.gentoo.org/show_bug.cgi?id=230257">
+		common problem</uri> which indicates that the build system for the
+		given ebuild causes the package to inappropriately link against the
+		old (preserved) version of the library, instead of the new one. As a
+		workaround, you can manually remove the old library (such as
+		libreadline.so.5.2) and then run revdep-rebuild in order to rebuild
+		the packages which linked against it.
+		</p>
+	</body>
+</section>
+
 </chapter>
 </guide>






^ permalink raw reply	[flat|nested] 30+ messages in thread

* [gentoo-commits] gentoo commit in xml/htdocs/proj/en/portage/doc: faq.xml
@ 2009-03-24 17:48 Zac Medico (zmedico)
  0 siblings, 0 replies; 30+ messages in thread
From: Zac Medico (zmedico) @ 2009-03-24 17:48 UTC (permalink / raw
  To: gentoo-commits

zmedico     09/03/24 17:48:47

  Modified:             faq.xml
  Log:
  Wrap revdep-rebuild in a <c> element.

Revision  Changes    Path
1.37                 xml/htdocs/proj/en/portage/doc/faq.xml

file : http://sources.gentoo.org/viewcvs.py/gentoo/xml/htdocs/proj/en/portage/doc/faq.xml?rev=1.37&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo/xml/htdocs/proj/en/portage/doc/faq.xml?rev=1.37&content-type=text/plain
diff : http://sources.gentoo.org/viewcvs.py/gentoo/xml/htdocs/proj/en/portage/doc/faq.xml?r1=1.36&r2=1.37

Index: faq.xml
===================================================================
RCS file: /var/cvsroot/gentoo/xml/htdocs/proj/en/portage/doc/faq.xml,v
retrieving revision 1.36
retrieving revision 1.37
diff -u -r1.36 -r1.37
--- faq.xml	24 Mar 2009 17:46:20 -0000	1.36
+++ faq.xml	24 Mar 2009 17:48:47 -0000	1.37
@@ -1,6 +1,6 @@
 <?xml version="1.0" encoding="UTF-8"?>
 <!DOCTYPE guide SYSTEM "/dtd/guide.dtd">
-<!-- $Header: /var/cvsroot/gentoo/xml/htdocs/proj/en/portage/doc/faq.xml,v 1.36 2009/03/24 17:46:20 zmedico Exp $ -->
+<!-- $Header: /var/cvsroot/gentoo/xml/htdocs/proj/en/portage/doc/faq.xml,v 1.37 2009/03/24 17:48:47 zmedico Exp $ -->
 
 <guide link="/proj/en/portage/doc/faq.xml" lang="en">
 <title>Portage Frequently Asked Questions (FAQ)</title>
@@ -138,8 +138,8 @@
 		given ebuild causes the package to inappropriately link against the
 		old (preserved) version of the library, instead of the new one. As a
 		workaround, you can manually remove the old library (such as
-		libreadline.so.5.2) and then run revdep-rebuild in order to rebuild
-		the packages which linked against it.
+		libreadline.so.5.2) and then run <c>revdep-rebuild</c> in order to
+		rebuild the packages which linked against it.
 		</p>
 	</body>
 </section>






^ permalink raw reply	[flat|nested] 30+ messages in thread

* [gentoo-commits] gentoo commit in xml/htdocs/proj/en/portage/doc: faq.xml
@ 2009-03-28  0:29 Zac Medico (zmedico)
  0 siblings, 0 replies; 30+ messages in thread
From: Zac Medico (zmedico) @ 2009-03-28  0:29 UTC (permalink / raw
  To: gentoo-commits

zmedico     09/03/28 00:29:34

  Modified:             faq.xml
  Log:
  Bug #262145 - Explain why some packages aren't installed immediately after
  they have finished building in parallel with --jobs.

Revision  Changes    Path
1.38                 xml/htdocs/proj/en/portage/doc/faq.xml

file : http://sources.gentoo.org/viewcvs.py/gentoo/xml/htdocs/proj/en/portage/doc/faq.xml?rev=1.38&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo/xml/htdocs/proj/en/portage/doc/faq.xml?rev=1.38&content-type=text/plain
diff : http://sources.gentoo.org/viewcvs.py/gentoo/xml/htdocs/proj/en/portage/doc/faq.xml?r1=1.37&r2=1.38

Index: faq.xml
===================================================================
RCS file: /var/cvsroot/gentoo/xml/htdocs/proj/en/portage/doc/faq.xml,v
retrieving revision 1.37
retrieving revision 1.38
diff -u -r1.37 -r1.38
--- faq.xml	24 Mar 2009 17:48:47 -0000	1.37
+++ faq.xml	28 Mar 2009 00:29:34 -0000	1.38
@@ -1,6 +1,6 @@
 <?xml version="1.0" encoding="UTF-8"?>
 <!DOCTYPE guide SYSTEM "/dtd/guide.dtd">
-<!-- $Header: /var/cvsroot/gentoo/xml/htdocs/proj/en/portage/doc/faq.xml,v 1.37 2009/03/24 17:48:47 zmedico Exp $ -->
+<!-- $Header: /var/cvsroot/gentoo/xml/htdocs/proj/en/portage/doc/faq.xml,v 1.38 2009/03/28 00:29:34 zmedico Exp $ -->
 
 <guide link="/proj/en/portage/doc/faq.xml" lang="en">
 <title>Portage Frequently Asked Questions (FAQ)</title>
@@ -24,7 +24,7 @@
 <license/>
 
 <version>1.0</version>
-<date>2009-03-24</date>
+<date>2009-03-27</date>
 <chapter>
 <title>Frequently Asked Questions</title>
 
@@ -144,5 +144,25 @@
 	</body>
 </section>
 
+<section>
+	<title>
+		When packages are built in parallel with the --jobs option, why
+		aren't some packages installed immediately after they have
+		finished building? They are installed only after a long delay.
+	</title>
+	<body>
+		<p>
+			As a safety precaution, installation actions for system packages
+			and their deep dependecies are executed only when no other
+			packages are building. This behavior is required in order to avoid
+			cases like
+			<uri link="http://bugs.gentoo.org/show_bug.cgi?id=256616">
+			bug 256616 (unspecified system dependencies)</uri> and
+			<uri link="http://bugs.gentoo.org/show_bug.cgi?id=259954">
+			bug 259954 (temporarily unsatisfied system dependencies)</uri>.
+		</p>
+	</body>
+</section>
+
 </chapter>
 </guide>






^ permalink raw reply	[flat|nested] 30+ messages in thread

* [gentoo-commits] gentoo commit in xml/htdocs/proj/en/portage/doc: faq.xml
@ 2010-04-26  3:35 Zac Medico (zmedico)
  0 siblings, 0 replies; 30+ messages in thread
From: Zac Medico (zmedico) @ 2010-04-26  3:35 UTC (permalink / raw
  To: gentoo-commits

zmedico     10/04/26 03:35:17

  Modified:             faq.xml
  Log:
  Bug #317215 - Add an entry about USE=multislot.

Revision  Changes    Path
1.39                 xml/htdocs/proj/en/portage/doc/faq.xml

file : http://sources.gentoo.org/viewcvs.py/gentoo/xml/htdocs/proj/en/portage/doc/faq.xml?rev=1.39&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo/xml/htdocs/proj/en/portage/doc/faq.xml?rev=1.39&content-type=text/plain
diff : http://sources.gentoo.org/viewcvs.py/gentoo/xml/htdocs/proj/en/portage/doc/faq.xml?r1=1.38&r2=1.39

Index: faq.xml
===================================================================
RCS file: /var/cvsroot/gentoo/xml/htdocs/proj/en/portage/doc/faq.xml,v
retrieving revision 1.38
retrieving revision 1.39
diff -u -r1.38 -r1.39
--- faq.xml	28 Mar 2009 00:29:34 -0000	1.38
+++ faq.xml	26 Apr 2010 03:35:17 -0000	1.39
@@ -1,6 +1,6 @@
 <?xml version="1.0" encoding="UTF-8"?>
 <!DOCTYPE guide SYSTEM "/dtd/guide.dtd">
-<!-- $Header: /var/cvsroot/gentoo/xml/htdocs/proj/en/portage/doc/faq.xml,v 1.38 2009/03/28 00:29:34 zmedico Exp $ -->
+<!-- $Header: /var/cvsroot/gentoo/xml/htdocs/proj/en/portage/doc/faq.xml,v 1.39 2010/04/26 03:35:17 zmedico Exp $ -->
 
 <guide link="/proj/en/portage/doc/faq.xml" lang="en">
 <title>Portage Frequently Asked Questions (FAQ)</title>
@@ -164,5 +164,23 @@
 	</body>
 </section>
 
+<section>
+	<title>
+		Why doesn't emerge --pretend output show the correct SLOT for a
+		package with USE=multislot enabled?
+	</title>
+	<body>
+		<p>
+			Since ebuilds that support USE=multislot violate established rules
+			about "constant metadata", cached SLOT value differs from the SLOT
+			value that you will actually get once the package is installed.
+			There is nothing portage can do about this except to implement an
+			extension such as
+			<uri link="http://bugs.gentoo.org/show_bug.cgi?id=174407">
+			bug #174407</uri>.
+		</p>
+	</body>
+</section>
+
 </chapter>
 </guide>






^ permalink raw reply	[flat|nested] 30+ messages in thread

* [gentoo-commits] gentoo commit in xml/htdocs/proj/en/portage/doc: faq.xml
@ 2010-05-07 17:08 Zac Medico (zmedico)
  0 siblings, 0 replies; 30+ messages in thread
From: Zac Medico (zmedico) @ 2010-05-07 17:08 UTC (permalink / raw
  To: gentoo-commits

zmedico     10/05/07 17:08:26

  Modified:             faq.xml
  Log:
  Add note about portageq list_preserved_libs.

Revision  Changes    Path
1.40                 xml/htdocs/proj/en/portage/doc/faq.xml

file : http://sources.gentoo.org/viewcvs.py/gentoo/xml/htdocs/proj/en/portage/doc/faq.xml?rev=1.40&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo/xml/htdocs/proj/en/portage/doc/faq.xml?rev=1.40&content-type=text/plain
diff : http://sources.gentoo.org/viewcvs.py/gentoo/xml/htdocs/proj/en/portage/doc/faq.xml?r1=1.39&r2=1.40

Index: faq.xml
===================================================================
RCS file: /var/cvsroot/gentoo/xml/htdocs/proj/en/portage/doc/faq.xml,v
retrieving revision 1.39
retrieving revision 1.40
diff -u -r1.39 -r1.40
--- faq.xml	26 Apr 2010 03:35:17 -0000	1.39
+++ faq.xml	7 May 2010 17:08:26 -0000	1.40
@@ -1,6 +1,6 @@
 <?xml version="1.0" encoding="UTF-8"?>
 <!DOCTYPE guide SYSTEM "/dtd/guide.dtd">
-<!-- $Header: /var/cvsroot/gentoo/xml/htdocs/proj/en/portage/doc/faq.xml,v 1.39 2010/04/26 03:35:17 zmedico Exp $ -->
+<!-- $Header: /var/cvsroot/gentoo/xml/htdocs/proj/en/portage/doc/faq.xml,v 1.40 2010/05/07 17:08:26 zmedico Exp $ -->
 
 <guide link="/proj/en/portage/doc/faq.xml" lang="en">
 <title>Portage Frequently Asked Questions (FAQ)</title>
@@ -139,7 +139,9 @@
 		old (preserved) version of the library, instead of the new one. As a
 		workaround, you can manually remove the old library (such as
 		libreadline.so.5.2) and then run <c>revdep-rebuild</c> in order to
-		rebuild the packages which linked against it.
+		rebuild the packages which linked against it. A list of all preserved
+		libraries may be obtained from the command
+		<c>portageq list_preserved_libs /</c>
 		</p>
 	</body>
 </section>






^ permalink raw reply	[flat|nested] 30+ messages in thread

* [gentoo-commits] gentoo commit in xml/htdocs/proj/en/portage/doc: faq.xml
@ 2010-05-07 18:20 Zac Medico (zmedico)
  0 siblings, 0 replies; 30+ messages in thread
From: Zac Medico (zmedico) @ 2010-05-07 18:20 UTC (permalink / raw
  To: gentoo-commits

zmedico     10/05/07 18:20:09

  Modified:             faq.xml
  Log:
  Add backticks and missin period.

Revision  Changes    Path
1.41                 xml/htdocs/proj/en/portage/doc/faq.xml

file : http://sources.gentoo.org/viewcvs.py/gentoo/xml/htdocs/proj/en/portage/doc/faq.xml?rev=1.41&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo/xml/htdocs/proj/en/portage/doc/faq.xml?rev=1.41&content-type=text/plain
diff : http://sources.gentoo.org/viewcvs.py/gentoo/xml/htdocs/proj/en/portage/doc/faq.xml?r1=1.40&r2=1.41

Index: faq.xml
===================================================================
RCS file: /var/cvsroot/gentoo/xml/htdocs/proj/en/portage/doc/faq.xml,v
retrieving revision 1.40
retrieving revision 1.41
diff -u -r1.40 -r1.41
--- faq.xml	7 May 2010 17:08:26 -0000	1.40
+++ faq.xml	7 May 2010 18:20:09 -0000	1.41
@@ -1,6 +1,6 @@
 <?xml version="1.0" encoding="UTF-8"?>
 <!DOCTYPE guide SYSTEM "/dtd/guide.dtd">
-<!-- $Header: /var/cvsroot/gentoo/xml/htdocs/proj/en/portage/doc/faq.xml,v 1.40 2010/05/07 17:08:26 zmedico Exp $ -->
+<!-- $Header: /var/cvsroot/gentoo/xml/htdocs/proj/en/portage/doc/faq.xml,v 1.41 2010/05/07 18:20:09 zmedico Exp $ -->
 
 <guide link="/proj/en/portage/doc/faq.xml" lang="en">
 <title>Portage Frequently Asked Questions (FAQ)</title>
@@ -141,7 +141,7 @@
 		libreadline.so.5.2) and then run <c>revdep-rebuild</c> in order to
 		rebuild the packages which linked against it. A list of all preserved
 		libraries may be obtained from the command
-		<c>portageq list_preserved_libs /</c>
+		`<c>portageq list_preserved_libs /</c>`.
 		</p>
 	</body>
 </section>






^ permalink raw reply	[flat|nested] 30+ messages in thread

* [gentoo-commits] gentoo commit in xml/htdocs/proj/en/portage/doc: faq.xml
@ 2010-08-23  3:49 Zac Medico (zmedico)
  0 siblings, 0 replies; 30+ messages in thread
From: Zac Medico (zmedico) @ 2010-08-23  3:49 UTC (permalink / raw
  To: gentoo-commits

zmedico     10/08/23 03:49:35

  Modified:             faq.xml
  Log:
  Add a "Why is portage-2.2_rc masked?" section that refers to bug #253802.

Revision  Changes    Path
1.42                 xml/htdocs/proj/en/portage/doc/faq.xml

file : http://sources.gentoo.org/viewvc.cgi/gentoo/xml/htdocs/proj/en/portage/doc/faq.xml?rev=1.42&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo/xml/htdocs/proj/en/portage/doc/faq.xml?rev=1.42&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo/xml/htdocs/proj/en/portage/doc/faq.xml?r1=1.41&r2=1.42

Index: faq.xml
===================================================================
RCS file: /var/cvsroot/gentoo/xml/htdocs/proj/en/portage/doc/faq.xml,v
retrieving revision 1.41
retrieving revision 1.42
diff -u -r1.41 -r1.42
--- faq.xml	7 May 2010 18:20:09 -0000	1.41
+++ faq.xml	23 Aug 2010 03:49:35 -0000	1.42
@@ -1,6 +1,6 @@
 <?xml version="1.0" encoding="UTF-8"?>
 <!DOCTYPE guide SYSTEM "/dtd/guide.dtd">
-<!-- $Header: /var/cvsroot/gentoo/xml/htdocs/proj/en/portage/doc/faq.xml,v 1.41 2010/05/07 18:20:09 zmedico Exp $ -->
+<!-- $Header: /var/cvsroot/gentoo/xml/htdocs/proj/en/portage/doc/faq.xml,v 1.42 2010/08/23 03:49:35 zmedico Exp $ -->
 
 <guide link="/proj/en/portage/doc/faq.xml" lang="en">
 <title>Portage Frequently Asked Questions (FAQ)</title>
@@ -184,5 +184,19 @@
 	</body>
 </section>
 
+<section>
+	<title>
+		Why is portage-2.2_rc masked?
+	</title>
+	<body>
+		<p>
+			Portage 2.2 is masked due to known bugs in the package sets and
+			preserve-libs features. See
+			<uri link="http://bugs.gentoo.org/show_bug.cgi?id=253802">
+			bug #253802</uri> for details.
+		</p>
+	</body>
+</section>
+
 </chapter>
 </guide>






^ permalink raw reply	[flat|nested] 30+ messages in thread

* [gentoo-commits] gentoo commit in xml/htdocs/proj/en/portage/doc: faq.xml
@ 2010-09-22  5:48 Zac Medico (zmedico)
  0 siblings, 0 replies; 30+ messages in thread
From: Zac Medico (zmedico) @ 2010-09-22  5:48 UTC (permalink / raw
  To: gentoo-commits

zmedico     10/09/22 05:48:19

  Modified:             faq.xml
  Log:
  Add links to sets and preserve-libs tracker bugs in the portage-2.2 section.

Revision  Changes    Path
1.43                 xml/htdocs/proj/en/portage/doc/faq.xml

file : http://sources.gentoo.org/viewvc.cgi/gentoo/xml/htdocs/proj/en/portage/doc/faq.xml?rev=1.43&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo/xml/htdocs/proj/en/portage/doc/faq.xml?rev=1.43&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo/xml/htdocs/proj/en/portage/doc/faq.xml?r1=1.42&r2=1.43

Index: faq.xml
===================================================================
RCS file: /var/cvsroot/gentoo/xml/htdocs/proj/en/portage/doc/faq.xml,v
retrieving revision 1.42
retrieving revision 1.43
diff -u -r1.42 -r1.43
--- faq.xml	23 Aug 2010 03:49:35 -0000	1.42
+++ faq.xml	22 Sep 2010 05:48:19 -0000	1.43
@@ -1,6 +1,6 @@
 <?xml version="1.0" encoding="UTF-8"?>
 <!DOCTYPE guide SYSTEM "/dtd/guide.dtd">
-<!-- $Header: /var/cvsroot/gentoo/xml/htdocs/proj/en/portage/doc/faq.xml,v 1.42 2010/08/23 03:49:35 zmedico Exp $ -->
+<!-- $Header: /var/cvsroot/gentoo/xml/htdocs/proj/en/portage/doc/faq.xml,v 1.43 2010/09/22 05:48:19 zmedico Exp $ -->
 
 <guide link="/proj/en/portage/doc/faq.xml" lang="en">
 <title>Portage Frequently Asked Questions (FAQ)</title>
@@ -190,8 +190,12 @@
 	</title>
 	<body>
 		<p>
-			Portage 2.2 is masked due to known bugs in the package sets and
-			preserve-libs features. See
+			Portage 2.2 is masked due to known bugs in the package sets
+			(<uri link="http://bugs.gentoo.org/show_bug.cgi?id=144480">
+			bug #144480</uri>) and
+			preserve-libs features (
+			<uri link="http://bugs.gentoo.org/show_bug.cgi?id=240323">
+			bug #240323</uri>). See
 			<uri link="http://bugs.gentoo.org/show_bug.cgi?id=253802">
 			bug #253802</uri> for details.
 		</p>






^ permalink raw reply	[flat|nested] 30+ messages in thread

* [gentoo-commits] gentoo commit in xml/htdocs/proj/en/portage/doc: faq.xml
@ 2010-10-23 12:39 Zac Medico (zmedico)
  0 siblings, 0 replies; 30+ messages in thread
From: Zac Medico (zmedico) @ 2010-10-23 12:39 UTC (permalink / raw
  To: gentoo-commits

zmedico     10/10/23 12:39:26

  Modified:             faq.xml
  Log:
  Refer to portage-2.2* instead of 2.2_rc, since we have 2.2.0_alpha now.

Revision  Changes    Path
1.44                 xml/htdocs/proj/en/portage/doc/faq.xml

file : http://sources.gentoo.org/viewvc.cgi/gentoo/xml/htdocs/proj/en/portage/doc/faq.xml?rev=1.44&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo/xml/htdocs/proj/en/portage/doc/faq.xml?rev=1.44&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo/xml/htdocs/proj/en/portage/doc/faq.xml?r1=1.43&r2=1.44

Index: faq.xml
===================================================================
RCS file: /var/cvsroot/gentoo/xml/htdocs/proj/en/portage/doc/faq.xml,v
retrieving revision 1.43
retrieving revision 1.44
diff -u -r1.43 -r1.44
--- faq.xml	22 Sep 2010 05:48:19 -0000	1.43
+++ faq.xml	23 Oct 2010 12:39:26 -0000	1.44
@@ -1,6 +1,6 @@
 <?xml version="1.0" encoding="UTF-8"?>
 <!DOCTYPE guide SYSTEM "/dtd/guide.dtd">
-<!-- $Header: /var/cvsroot/gentoo/xml/htdocs/proj/en/portage/doc/faq.xml,v 1.43 2010/09/22 05:48:19 zmedico Exp $ -->
+<!-- $Header: /var/cvsroot/gentoo/xml/htdocs/proj/en/portage/doc/faq.xml,v 1.44 2010/10/23 12:39:26 zmedico Exp $ -->
 
 <guide link="/proj/en/portage/doc/faq.xml" lang="en">
 <title>Portage Frequently Asked Questions (FAQ)</title>
@@ -186,7 +186,7 @@
 
 <section>
 	<title>
-		Why is portage-2.2_rc masked?
+		Why is portage-2.2* masked?
 	</title>
 	<body>
 		<p>






^ permalink raw reply	[flat|nested] 30+ messages in thread

* [gentoo-commits] gentoo commit in xml/htdocs/proj/en/portage/doc: faq.xml
@ 2011-05-13 19:35 Zac Medico (zmedico)
  0 siblings, 0 replies; 30+ messages in thread
From: Zac Medico (zmedico) @ 2011-05-13 19:35 UTC (permalink / raw
  To: gentoo-commits

zmedico     11/05/13 19:35:33

  Modified:             faq.xml
  Log:
  Add a section about "waiting for lock" messages.

Revision  Changes    Path
1.45                 xml/htdocs/proj/en/portage/doc/faq.xml

file : http://sources.gentoo.org/viewvc.cgi/gentoo/xml/htdocs/proj/en/portage/doc/faq.xml?rev=1.45&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo/xml/htdocs/proj/en/portage/doc/faq.xml?rev=1.45&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo/xml/htdocs/proj/en/portage/doc/faq.xml?r1=1.44&r2=1.45

Index: faq.xml
===================================================================
RCS file: /var/cvsroot/gentoo/xml/htdocs/proj/en/portage/doc/faq.xml,v
retrieving revision 1.44
retrieving revision 1.45
diff -u -r1.44 -r1.45
--- faq.xml	23 Oct 2010 12:39:26 -0000	1.44
+++ faq.xml	13 May 2011 19:35:33 -0000	1.45
@@ -1,6 +1,6 @@
 <?xml version="1.0" encoding="UTF-8"?>
 <!DOCTYPE guide SYSTEM "/dtd/guide.dtd">
-<!-- $Header: /var/cvsroot/gentoo/xml/htdocs/proj/en/portage/doc/faq.xml,v 1.44 2010/10/23 12:39:26 zmedico Exp $ -->
+<!-- $Header: /var/cvsroot/gentoo/xml/htdocs/proj/en/portage/doc/faq.xml,v 1.45 2011/05/13 19:35:33 zmedico Exp $ -->
 
 <guide link="/proj/en/portage/doc/faq.xml" lang="en">
 <title>Portage Frequently Asked Questions (FAQ)</title>
@@ -128,6 +128,30 @@
 
 <section>
 	<title>
+	Why does emerge display "waiting for lock" messages?
+	</title>
+	<body>
+		<p>
+		The most common reason is due to <c>FEATURES="parallel-fetch"</c>
+		which is enabled by default in
+		<path>/usr/share/portage/config/make.globals</path>. Set
+		<c>FEATURES="-parallel-fetch"</c> in <path>/etc/make.conf</path>
+		if you would like to disable this feature. Refer to the make.conf
+		manual page (run <c>man make.conf</c>) for more information about
+		<c>FEATURES</c>.
+		</p>
+		<p>
+		If the <c>emerge</c> is invoked multiple times
+		concurrently, or if <c>DISTDIR</c> is on a shared network
+		file system, this may also trigger similar "waiting for lock"
+		messages. Such locks are necessary in order to prevent
+		interference between concurrently running processes.
+		</p>
+	</body>
+</section>
+
+<section>
+	<title>
 	Why does the @preserved-rebuild set contain packages that have
 	already been rebuilt?
 	</title>






^ permalink raw reply	[flat|nested] 30+ messages in thread

* [gentoo-commits] gentoo commit in xml/htdocs/proj/en/portage/doc: faq.xml
@ 2011-05-18  7:09 Zac Medico (zmedico)
  0 siblings, 0 replies; 30+ messages in thread
From: Zac Medico (zmedico) @ 2011-05-18  7:09 UTC (permalink / raw
  To: gentoo-commits

zmedico     11/05/18 07:09:09

  Modified:             faq.xml
  Log:
  Add a section about reverse dependencies and emerge --complete-graph.

Revision  Changes    Path
1.46                 xml/htdocs/proj/en/portage/doc/faq.xml

file : http://sources.gentoo.org/viewvc.cgi/gentoo/xml/htdocs/proj/en/portage/doc/faq.xml?rev=1.46&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo/xml/htdocs/proj/en/portage/doc/faq.xml?rev=1.46&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo/xml/htdocs/proj/en/portage/doc/faq.xml?r1=1.45&r2=1.46

Index: faq.xml
===================================================================
RCS file: /var/cvsroot/gentoo/xml/htdocs/proj/en/portage/doc/faq.xml,v
retrieving revision 1.45
retrieving revision 1.46
diff -u -r1.45 -r1.46
--- faq.xml	13 May 2011 19:35:33 -0000	1.45
+++ faq.xml	18 May 2011 07:09:08 -0000	1.46
@@ -1,6 +1,6 @@
 <?xml version="1.0" encoding="UTF-8"?>
 <!DOCTYPE guide SYSTEM "/dtd/guide.dtd">
-<!-- $Header: /var/cvsroot/gentoo/xml/htdocs/proj/en/portage/doc/faq.xml,v 1.45 2011/05/13 19:35:33 zmedico Exp $ -->
+<!-- $Header: /var/cvsroot/gentoo/xml/htdocs/proj/en/portage/doc/faq.xml,v 1.46 2011/05/18 07:09:08 zmedico Exp $ -->
 
 <guide link="/proj/en/portage/doc/faq.xml" lang="en">
 <title>Portage Frequently Asked Questions (FAQ)</title>
@@ -24,7 +24,7 @@
 <license/>
 
 <version>1.0</version>
-<date>2009-03-27</date>
+<date>2011-05-17</date>
 <chapter>
 <title>Frequently Asked Questions</title>
 
@@ -90,6 +90,24 @@
 </section>
 
 <section>
+<title>
+Why doesn't emerge account for reverse dependencies sometimes?
+</title>
+<body>
+<p>
+Complete accounting for reverse dependencies is time-consuming, and many
+users would be likely complain about if this was the default behavior.
+So, reverse dependencies will often be neglected by dependency
+calculations unless the <c>emerge --complete-graph</c> option is enabled.
+You can set <c>EMERGE_DEFAULT_OPTS="--complete-graph"</c> in
+<path>/etc/make.conf</path> if you would like this option to be enabled
+by default. Refer to the <c>emerge</c> manual page (run <c>man emerge</c>)
+or more information about the <c>--complete-graph</c> option.
+</p>
+</body>
+</section>
+
+<section>
 <title>Can I mount the portage tree (/usr/portage) via NFS?</title>
 <body>
 






^ permalink raw reply	[flat|nested] 30+ messages in thread

* [gentoo-commits] gentoo commit in xml/htdocs/proj/en/portage/doc: faq.xml
@ 2011-05-18 14:35 Zac Medico (zmedico)
  0 siblings, 0 replies; 30+ messages in thread
From: Zac Medico (zmedico) @ 2011-05-18 14:35 UTC (permalink / raw
  To: gentoo-commits

zmedico     11/05/18 14:35:10

  Modified:             faq.xml
  Log:
  Fix incomplete sentence in reverse dependencies / --complete-graph section.

Revision  Changes    Path
1.47                 xml/htdocs/proj/en/portage/doc/faq.xml

file : http://sources.gentoo.org/viewvc.cgi/gentoo/xml/htdocs/proj/en/portage/doc/faq.xml?rev=1.47&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo/xml/htdocs/proj/en/portage/doc/faq.xml?rev=1.47&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo/xml/htdocs/proj/en/portage/doc/faq.xml?r1=1.46&r2=1.47

Index: faq.xml
===================================================================
RCS file: /var/cvsroot/gentoo/xml/htdocs/proj/en/portage/doc/faq.xml,v
retrieving revision 1.46
retrieving revision 1.47
diff -u -r1.46 -r1.47
--- faq.xml	18 May 2011 07:09:08 -0000	1.46
+++ faq.xml	18 May 2011 14:35:10 -0000	1.47
@@ -1,6 +1,6 @@
 <?xml version="1.0" encoding="UTF-8"?>
 <!DOCTYPE guide SYSTEM "/dtd/guide.dtd">
-<!-- $Header: /var/cvsroot/gentoo/xml/htdocs/proj/en/portage/doc/faq.xml,v 1.46 2011/05/18 07:09:08 zmedico Exp $ -->
+<!-- $Header: /var/cvsroot/gentoo/xml/htdocs/proj/en/portage/doc/faq.xml,v 1.47 2011/05/18 14:35:10 zmedico Exp $ -->
 
 <guide link="/proj/en/portage/doc/faq.xml" lang="en">
 <title>Portage Frequently Asked Questions (FAQ)</title>
@@ -96,7 +96,8 @@
 <body>
 <p>
 Complete accounting for reverse dependencies is time-consuming, and many
-users would be likely complain about if this was the default behavior.
+users would be likely complain about poor performance if this was the
+default behavior.
 So, reverse dependencies will often be neglected by dependency
 calculations unless the <c>emerge --complete-graph</c> option is enabled.
 You can set <c>EMERGE_DEFAULT_OPTS="--complete-graph"</c> in






^ permalink raw reply	[flat|nested] 30+ messages in thread

* [gentoo-commits] gentoo commit in xml/htdocs/proj/en/portage/doc: faq.xml
@ 2011-05-18 14:37 Zac Medico (zmedico)
  0 siblings, 0 replies; 30+ messages in thread
From: Zac Medico (zmedico) @ 2011-05-18 14:37 UTC (permalink / raw
  To: gentoo-commits

zmedico     11/05/18 14:37:06

  Modified:             faq.xml
  Log:
  Fix another typo in reverse dependencies / --complete-graph section.

Revision  Changes    Path
1.48                 xml/htdocs/proj/en/portage/doc/faq.xml

file : http://sources.gentoo.org/viewvc.cgi/gentoo/xml/htdocs/proj/en/portage/doc/faq.xml?rev=1.48&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo/xml/htdocs/proj/en/portage/doc/faq.xml?rev=1.48&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo/xml/htdocs/proj/en/portage/doc/faq.xml?r1=1.47&r2=1.48

Index: faq.xml
===================================================================
RCS file: /var/cvsroot/gentoo/xml/htdocs/proj/en/portage/doc/faq.xml,v
retrieving revision 1.47
retrieving revision 1.48
diff -u -r1.47 -r1.48
--- faq.xml	18 May 2011 14:35:10 -0000	1.47
+++ faq.xml	18 May 2011 14:37:06 -0000	1.48
@@ -1,6 +1,6 @@
 <?xml version="1.0" encoding="UTF-8"?>
 <!DOCTYPE guide SYSTEM "/dtd/guide.dtd">
-<!-- $Header: /var/cvsroot/gentoo/xml/htdocs/proj/en/portage/doc/faq.xml,v 1.47 2011/05/18 14:35:10 zmedico Exp $ -->
+<!-- $Header: /var/cvsroot/gentoo/xml/htdocs/proj/en/portage/doc/faq.xml,v 1.48 2011/05/18 14:37:06 zmedico Exp $ -->
 
 <guide link="/proj/en/portage/doc/faq.xml" lang="en">
 <title>Portage Frequently Asked Questions (FAQ)</title>
@@ -103,7 +103,7 @@
 You can set <c>EMERGE_DEFAULT_OPTS="--complete-graph"</c> in
 <path>/etc/make.conf</path> if you would like this option to be enabled
 by default. Refer to the <c>emerge</c> manual page (run <c>man emerge</c>)
-or more information about the <c>--complete-graph</c> option.
+for more information about the <c>--complete-graph</c> option.
 </p>
 </body>
 </section>






^ permalink raw reply	[flat|nested] 30+ messages in thread

* [gentoo-commits] gentoo commit in xml/htdocs/proj/en/portage/doc: faq.xml
@ 2011-05-18 14:40 Zac Medico (zmedico)
  0 siblings, 0 replies; 30+ messages in thread
From: Zac Medico (zmedico) @ 2011-05-18 14:40 UTC (permalink / raw
  To: gentoo-commits

zmedico     11/05/18 14:40:53

  Modified:             faq.xml
  Log:
  Fix grammer in reverse dependencies / --complete-graph section.

Revision  Changes    Path
1.49                 xml/htdocs/proj/en/portage/doc/faq.xml

file : http://sources.gentoo.org/viewvc.cgi/gentoo/xml/htdocs/proj/en/portage/doc/faq.xml?rev=1.49&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo/xml/htdocs/proj/en/portage/doc/faq.xml?rev=1.49&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo/xml/htdocs/proj/en/portage/doc/faq.xml?r1=1.48&r2=1.49

Index: faq.xml
===================================================================
RCS file: /var/cvsroot/gentoo/xml/htdocs/proj/en/portage/doc/faq.xml,v
retrieving revision 1.48
retrieving revision 1.49
diff -u -r1.48 -r1.49
--- faq.xml	18 May 2011 14:37:06 -0000	1.48
+++ faq.xml	18 May 2011 14:40:53 -0000	1.49
@@ -1,6 +1,6 @@
 <?xml version="1.0" encoding="UTF-8"?>
 <!DOCTYPE guide SYSTEM "/dtd/guide.dtd">
-<!-- $Header: /var/cvsroot/gentoo/xml/htdocs/proj/en/portage/doc/faq.xml,v 1.48 2011/05/18 14:37:06 zmedico Exp $ -->
+<!-- $Header: /var/cvsroot/gentoo/xml/htdocs/proj/en/portage/doc/faq.xml,v 1.49 2011/05/18 14:40:53 zmedico Exp $ -->
 
 <guide link="/proj/en/portage/doc/faq.xml" lang="en">
 <title>Portage Frequently Asked Questions (FAQ)</title>
@@ -96,7 +96,7 @@
 <body>
 <p>
 Complete accounting for reverse dependencies is time-consuming, and many
-users would be likely complain about poor performance if this was the
+users would be likely to complain about poor performance if this was the
 default behavior.
 So, reverse dependencies will often be neglected by dependency
 calculations unless the <c>emerge --complete-graph</c> option is enabled.






^ permalink raw reply	[flat|nested] 30+ messages in thread

* [gentoo-commits] gentoo commit in xml/htdocs/proj/en/portage/doc: faq.xml
@ 2011-05-18 16:13 Zac Medico (zmedico)
  0 siblings, 0 replies; 30+ messages in thread
From: Zac Medico (zmedico) @ 2011-05-18 16:13 UTC (permalink / raw
  To: gentoo-commits

zmedico     11/05/18 16:13:01

  Modified:             faq.xml
  Log:
  Remove note about metadata_overlay cache module which has been obsolete since portage-2.1.6.

Revision  Changes    Path
1.50                 xml/htdocs/proj/en/portage/doc/faq.xml

file : http://sources.gentoo.org/viewvc.cgi/gentoo/xml/htdocs/proj/en/portage/doc/faq.xml?rev=1.50&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo/xml/htdocs/proj/en/portage/doc/faq.xml?rev=1.50&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo/xml/htdocs/proj/en/portage/doc/faq.xml?r1=1.49&r2=1.50

Index: faq.xml
===================================================================
RCS file: /var/cvsroot/gentoo/xml/htdocs/proj/en/portage/doc/faq.xml,v
retrieving revision 1.49
retrieving revision 1.50
diff -u -r1.49 -r1.50
--- faq.xml	18 May 2011 14:40:53 -0000	1.49
+++ faq.xml	18 May 2011 16:13:01 -0000	1.50
@@ -1,6 +1,6 @@
 <?xml version="1.0" encoding="UTF-8"?>
 <!DOCTYPE guide SYSTEM "/dtd/guide.dtd">
-<!-- $Header: /var/cvsroot/gentoo/xml/htdocs/proj/en/portage/doc/faq.xml,v 1.49 2011/05/18 14:40:53 zmedico Exp $ -->
+<!-- $Header: /var/cvsroot/gentoo/xml/htdocs/proj/en/portage/doc/faq.xml,v 1.50 2011/05/18 16:13:01 zmedico Exp $ -->
 
 <guide link="/proj/en/portage/doc/faq.xml" lang="en">
 <title>Portage Frequently Asked Questions (FAQ)</title>
@@ -121,11 +121,6 @@
 their metadata cache (located in <path>/var/cache/edb/dep</path>) becoming
 stale.
 </p>
-<note>NFS clients do not need to run <c>emerge --metadata</c> if they have the
-metadata_overlay cache module enabled in <path>/etc/portage/modules</path>.
-The portage manual page (run <c>man portage</c>) describes the steps necessary
-to enable this.
-</note>
 <note>With versions of portage >=2.1.5_rc6 there is never any need to run
 <c>emerge --metadata</c> as long as the user has not enabled
 FEATURES="metadata-transfer" in make.conf. When metadata-transfer is disabled,






^ permalink raw reply	[flat|nested] 30+ messages in thread

* [gentoo-commits] gentoo commit in xml/htdocs/proj/en/portage/doc: faq.xml
@ 2011-06-10 10:21 Zac Medico (zmedico)
  0 siblings, 0 replies; 30+ messages in thread
From: Zac Medico (zmedico) @ 2011-06-10 10:21 UTC (permalink / raw
  To: gentoo-commits

zmedico     11/06/10 10:21:09

  Modified:             faq.xml
  Log:
  Add "Why does emerge --depclean sometimes remove system packages?"
  section for bug #370295.

Revision  Changes    Path
1.51                 xml/htdocs/proj/en/portage/doc/faq.xml

file : http://sources.gentoo.org/viewvc.cgi/gentoo/xml/htdocs/proj/en/portage/doc/faq.xml?rev=1.51&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo/xml/htdocs/proj/en/portage/doc/faq.xml?rev=1.51&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo/xml/htdocs/proj/en/portage/doc/faq.xml?r1=1.50&r2=1.51

Index: faq.xml
===================================================================
RCS file: /var/cvsroot/gentoo/xml/htdocs/proj/en/portage/doc/faq.xml,v
retrieving revision 1.50
retrieving revision 1.51
diff -u -r1.50 -r1.51
--- faq.xml	18 May 2011 16:13:01 -0000	1.50
+++ faq.xml	10 Jun 2011 10:21:09 -0000	1.51
@@ -1,6 +1,6 @@
 <?xml version="1.0" encoding="UTF-8"?>
 <!DOCTYPE guide SYSTEM "/dtd/guide.dtd">
-<!-- $Header: /var/cvsroot/gentoo/xml/htdocs/proj/en/portage/doc/faq.xml,v 1.50 2011/05/18 16:13:01 zmedico Exp $ -->
+<!-- $Header: /var/cvsroot/gentoo/xml/htdocs/proj/en/portage/doc/faq.xml,v 1.51 2011/06/10 10:21:09 zmedico Exp $ -->
 
 <guide link="/proj/en/portage/doc/faq.xml" lang="en">
 <title>Portage Frequently Asked Questions (FAQ)</title>
@@ -91,6 +91,24 @@
 
 <section>
 <title>
+Why does emerge --depclean sometimes remove system packages?
+</title>
+<body>
+<p>
+For system dependencies that are specified as virtuals, such as
+virtual/editor, it's common to have multiple packages installed that
+are capable of satisfying the dependency. In this case, redundant
+packages may be removed by <c>emerge --depclean</c> unless they are
+explicitly added to the world set. You can use <c>emerge --noreplace
+&lt;atom&gt;</c> to have a package added to the world set, and this
+will guarantee that this package will not be removed by
+<c>emerge --depclean</c>.
+</p>
+</body>
+</section>
+
+<section>
+<title>
 Why doesn't emerge account for reverse dependencies sometimes?
 </title>
 <body>






^ permalink raw reply	[flat|nested] 30+ messages in thread

* [gentoo-commits] gentoo commit in xml/htdocs/proj/en/portage/doc: faq.xml
@ 2011-08-28 20:17 Zac Medico (zmedico)
  0 siblings, 0 replies; 30+ messages in thread
From: Zac Medico (zmedico) @ 2011-08-28 20:17 UTC (permalink / raw
  To: gentoo-commits

zmedico     11/08/28 20:17:50

  Modified:             faq.xml
  Log:
  Add a package.env example, for bug #379737.

Revision  Changes    Path
1.52                 xml/htdocs/proj/en/portage/doc/faq.xml

file : http://sources.gentoo.org/viewvc.cgi/gentoo/xml/htdocs/proj/en/portage/doc/faq.xml?rev=1.52&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo/xml/htdocs/proj/en/portage/doc/faq.xml?rev=1.52&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo/xml/htdocs/proj/en/portage/doc/faq.xml?r1=1.51&r2=1.52

Index: faq.xml
===================================================================
RCS file: /var/cvsroot/gentoo/xml/htdocs/proj/en/portage/doc/faq.xml,v
retrieving revision 1.51
retrieving revision 1.52
diff -u -r1.51 -r1.52
--- faq.xml	10 Jun 2011 10:21:09 -0000	1.51
+++ faq.xml	28 Aug 2011 20:17:50 -0000	1.52
@@ -1,6 +1,6 @@
 <?xml version="1.0" encoding="UTF-8"?>
 <!DOCTYPE guide SYSTEM "/dtd/guide.dtd">
-<!-- $Header: /var/cvsroot/gentoo/xml/htdocs/proj/en/portage/doc/faq.xml,v 1.51 2011/06/10 10:21:09 zmedico Exp $ -->
+<!-- $Header: /var/cvsroot/gentoo/xml/htdocs/proj/en/portage/doc/faq.xml,v 1.52 2011/08/28 20:17:50 zmedico Exp $ -->
 
 <guide link="/proj/en/portage/doc/faq.xml" lang="en">
 <title>Portage Frequently Asked Questions (FAQ)</title>
@@ -241,6 +241,26 @@
 </section>
 
 <section>
+<title>
+How do I configure environment variable settings that apply only to specific
+packages?
+</title>
+<body>
+<p>
+Put an entry such as "sys-libs/glibc debug.conf" in
+<path>/etc/portage/package.env</path>, and put your variable settings
+in <path>/etc/portage/env/debug.conf</path> (using the same format as
+<path>make.conf</path>). An example debug.conf might appear as follows:
+</p>
+<pre caption="debug.conf">
+CFLAGS="${CFLAGS} -ggdb"
+CXXFLAGS="${CXXFLAGS} -ggdb"
+FEATURES="${FEATURES} installsources splitdebug"
+</pre>
+</body>
+</section>
+
+<section>
 	<title>
 		Why is portage-2.2* masked?
 	</title>






^ permalink raw reply	[flat|nested] 30+ messages in thread

* [gentoo-commits] gentoo commit in xml/htdocs/proj/en/portage/doc: faq.xml
@ 2013-01-29  2:40 Zac Medico (zmedico)
  0 siblings, 0 replies; 30+ messages in thread
From: Zac Medico (zmedico) @ 2013-01-29  2:40 UTC (permalink / raw
  To: gentoo-commits

zmedico     13/01/29 02:40:59

  Modified:             faq.xml
  Log:
  Refer to make.conf in /etc/portage/.

Revision  Changes    Path
1.54                 xml/htdocs/proj/en/portage/doc/faq.xml

file : http://sources.gentoo.org/viewvc.cgi/gentoo/xml/htdocs/proj/en/portage/doc/faq.xml?rev=1.54&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo/xml/htdocs/proj/en/portage/doc/faq.xml?rev=1.54&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo/xml/htdocs/proj/en/portage/doc/faq.xml?r1=1.53&r2=1.54

Index: faq.xml
===================================================================
RCS file: /var/cvsroot/gentoo/xml/htdocs/proj/en/portage/doc/faq.xml,v
retrieving revision 1.53
retrieving revision 1.54
diff -u -r1.53 -r1.54
--- faq.xml	28 Oct 2012 15:21:10 -0000	1.53
+++ faq.xml	29 Jan 2013 02:40:59 -0000	1.54
@@ -1,6 +1,6 @@
 <?xml version="1.0" encoding="UTF-8"?>
 <!DOCTYPE guide SYSTEM "/dtd/guide.dtd">
-<!-- $Header: /var/cvsroot/gentoo/xml/htdocs/proj/en/portage/doc/faq.xml,v 1.53 2012/10/28 15:21:10 swift Exp $ -->
+<!-- $Header: /var/cvsroot/gentoo/xml/htdocs/proj/en/portage/doc/faq.xml,v 1.54 2013/01/29 02:40:59 zmedico Exp $ -->
 
 <guide lang="en">
 <title>Portage Frequently Asked Questions (FAQ)</title>
@@ -24,7 +24,7 @@
 <license/>
 
 <version>1.0</version>
-<date>2011-05-17</date>
+<date>2013-01-29</date>
 <chapter>
 <title>Frequently Asked Questions</title>
 
@@ -51,7 +51,7 @@
 dependencies for installed packages or binary packages. If you would like to
 include such build time dependencies even though they are not strictly
 required, use <c>--with-bdeps=y</c>. You can set
-<c>EMERGE_DEFAULT_OPTS="--with-bdeps=y"</c> in <path>/etc/make.conf</path> if
+<c>EMERGE_DEFAULT_OPTS="--with-bdeps=y"</c> in <path>/etc/portage/make.conf</path> if
 you would like this option to be enabled by default.
 If you would like a specific package to be updated in any case, you can use
 <c>emerge --noreplace &lt;atom&gt;</c> to have it added to the world set.
@@ -119,7 +119,7 @@
 So, reverse dependencies will often be neglected by dependency
 calculations unless the <c>emerge --complete-graph</c> option is enabled.
 You can set <c>EMERGE_DEFAULT_OPTS="--complete-graph"</c> in
-<path>/etc/make.conf</path> if you would like this option to be enabled
+<path>/etc/portage/make.conf</path> if you would like this option to be enabled
 by default. Refer to the <c>emerge</c> manual page (run <c>man emerge</c>)
 for more information about the <c>--complete-graph</c> option.
 </p>
@@ -167,7 +167,7 @@
 		The most common reason is due to <c>FEATURES="parallel-fetch"</c>
 		which is enabled by default in
 		<path>/usr/share/portage/config/make.globals</path>. Set
-		<c>FEATURES="-parallel-fetch"</c> in <path>/etc/make.conf</path>
+		<c>FEATURES="-parallel-fetch"</c> in <path>/etc/portage/make.conf</path>
 		if you would like to disable this feature. Refer to the make.conf
 		manual page (run <c>man make.conf</c>) for more information about
 		<c>FEATURES</c>.





^ permalink raw reply	[flat|nested] 30+ messages in thread

* [gentoo-commits] gentoo commit in xml/htdocs/proj/en/portage/doc: faq.xml
@ 2014-02-17  7:39 Mike Frysinger (vapier)
  0 siblings, 0 replies; 30+ messages in thread
From: Mike Frysinger (vapier) @ 2014-02-17  7:39 UTC (permalink / raw
  To: gentoo-commits

vapier      14/02/17 07:39:18

  Modified:             faq.xml
  Log:
  drop old masked section #501460 by Patric Schmitz

Revision  Changes    Path
1.55                 xml/htdocs/proj/en/portage/doc/faq.xml

file : http://sources.gentoo.org/viewvc.cgi/gentoo/xml/htdocs/proj/en/portage/doc/faq.xml?rev=1.55&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo/xml/htdocs/proj/en/portage/doc/faq.xml?rev=1.55&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo/xml/htdocs/proj/en/portage/doc/faq.xml?r1=1.54&r2=1.55

Index: faq.xml
===================================================================
RCS file: /var/cvsroot/gentoo/xml/htdocs/proj/en/portage/doc/faq.xml,v
retrieving revision 1.54
retrieving revision 1.55
diff -u -r1.54 -r1.55
--- faq.xml	29 Jan 2013 02:40:59 -0000	1.54
+++ faq.xml	17 Feb 2014 07:39:18 -0000	1.55
@@ -1,6 +1,6 @@
 <?xml version="1.0" encoding="UTF-8"?>
 <!DOCTYPE guide SYSTEM "/dtd/guide.dtd">
-<!-- $Header: /var/cvsroot/gentoo/xml/htdocs/proj/en/portage/doc/faq.xml,v 1.54 2013/01/29 02:40:59 zmedico Exp $ -->
+<!-- $Header: /var/cvsroot/gentoo/xml/htdocs/proj/en/portage/doc/faq.xml,v 1.55 2014/02/17 07:39:18 vapier Exp $ -->
 
 <guide lang="en">
 <title>Portage Frequently Asked Questions (FAQ)</title>
@@ -23,8 +23,8 @@
 <!-- See http://creativecommons.org/licenses/by-sa/2.5 -->
 <license/>
 
-<version>1.0</version>
-<date>2013-01-29</date>
+<version>1.1</version>
+<date>2014-02-17</date>
 <chapter>
 <title>Frequently Asked Questions</title>
 
@@ -260,23 +260,5 @@
 </body>
 </section>
 
-<section>
-	<title>
-		Why is portage-2.2* masked?
-	</title>
-	<body>
-		<p>
-			Portage 2.2 is masked due to known bugs in the package sets
-			(<uri link="http://bugs.gentoo.org/show_bug.cgi?id=144480">
-			bug #144480</uri>) and
-			preserve-libs features (
-			<uri link="http://bugs.gentoo.org/show_bug.cgi?id=240323">
-			bug #240323</uri>). See
-			<uri link="http://bugs.gentoo.org/show_bug.cgi?id=253802">
-			bug #253802</uri> for details.
-		</p>
-	</body>
-</section>
-
 </chapter>
 </guide>





^ permalink raw reply	[flat|nested] 30+ messages in thread

end of thread, other threads:[~2014-02-17  7:39 UTC | newest]

Thread overview: 30+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2011-08-28 20:17 [gentoo-commits] gentoo commit in xml/htdocs/proj/en/portage/doc: faq.xml Zac Medico (zmedico)
  -- strict thread matches above, loose matches on Subject: below --
2014-02-17  7:39 Mike Frysinger (vapier)
2013-01-29  2:40 Zac Medico (zmedico)
2011-06-10 10:21 Zac Medico (zmedico)
2011-05-18 16:13 Zac Medico (zmedico)
2011-05-18 14:40 Zac Medico (zmedico)
2011-05-18 14:37 Zac Medico (zmedico)
2011-05-18 14:35 Zac Medico (zmedico)
2011-05-18  7:09 Zac Medico (zmedico)
2011-05-13 19:35 Zac Medico (zmedico)
2010-10-23 12:39 Zac Medico (zmedico)
2010-09-22  5:48 Zac Medico (zmedico)
2010-08-23  3:49 Zac Medico (zmedico)
2010-05-07 18:20 Zac Medico (zmedico)
2010-05-07 17:08 Zac Medico (zmedico)
2010-04-26  3:35 Zac Medico (zmedico)
2009-03-28  0:29 Zac Medico (zmedico)
2009-03-24 17:48 Zac Medico (zmedico)
2009-03-24 17:46 Zac Medico (zmedico)
2008-04-21 22:30 Zac Medico (zmedico)
2008-04-21 22:28 Zac Medico (zmedico)
2008-04-16 20:49 Zac Medico (zmedico)
2007-11-24 19:05 Zac Medico (zmedico)
2007-10-23 19:56 Zac Medico (zmedico)
2007-10-23 19:39 Zac Medico (zmedico)
2007-09-23 20:16 Zac Medico (zmedico)
2007-09-22  5:18 Zac Medico (zmedico)
2007-09-22  1:31 Zac Medico (zmedico)
2007-09-22  0:47 Zac Medico (zmedico)
2007-09-21 23:40 Zac Medico (zmedico)

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox