Clean up/sync docs for emerge --sync, and add a note about PORTAGE_SYNC_STALE.
authorZac Medico <zmedico@gentoo.org>
Mon, 8 Mar 2010 22:01:28 +0000 (22:01 -0000)
committerZac Medico <zmedico@gentoo.org>
Mon, 8 Mar 2010 22:01:28 +0000 (22:01 -0000)
svn path=/main/trunk/; revision=15776

man/emerge.1
pym/_emerge/help.py

index d138d991c3ae782fda1368828f4fece3e85a2640..072553432eb17ffd22f06cac6331b705e9c23b58 100644 (file)
@@ -212,11 +212,26 @@ the package name.  \fBTake caution\fR as the descriptions are also
 matched as regular expressions.
 .TP
 .BR \-\-sync
-Initiates a portage tree update with one of the rsync.gentoo.org
-mirrors.  \fBNote that any changes you have made to the portage
-tree will be erased\fR.  Except for special circumstances, 
-this uses \fBrsync\fR to do the update.  See \fBmake.conf\fR(5)'s 
-description of PORTDIR_OVERLAY for a method to avoid deletions.
+This updates the portage tree that is located in the
+directory that the PORTDIR variable refers to (default
+location is /usr/portage). The SYNC variable specifies
+the remote URI from which files will be synchronized.
+The \fBPORTAGE_SYNC_STALE\fR variable configures
+warnings that are shown when emerge \-\-sync has not
+been executed recently.
+
+\fBWARNING:\fR
+The emerge \-\-sync action will modify and/or delete
+files located inside the directory that the PORTDIR
+variable refers to (default location is /usr/portage).
+For more information, see the PORTDIR documentation in
+the make.conf(5) man page.
+
+\fBNOTE:\fR
+The \fBemerge\-webrsync\fR program will download the entire
+portage tree as a tarball, which is much faster than emerge
+\-\-sync for first time syncs.
+
 .TP
 .BR "\-\-unmerge " (\fB\-C\fR)
 \fBWARNING: This action can remove important packages!\fR Removes
index 1dfb63a47bd919a853ee8a1a70c32c04c93322f1..ac36d0cccf8ff90d1af2afeb633c88b006369292 100644 (file)
@@ -198,18 +198,31 @@ def help(myopts, havecolor=1):
                print("                emerge -S 'perl.*module'")
                print()
                print("       "+green("--sync"))
-               print("              Tells emerge to update the Portage tree as specified in")
-               print("              The SYNC variable found in /etc/make.conf.  By default, SYNC instructs")
-               print("              emerge to perform an rsync-style update with rsync.gentoo.org.")
-               print()
-               print("              'emerge-webrsync' exists as a helper app to emerge --sync, providing a")
-               print("              method to receive the entire portage tree as a tarball that can be")
-               print("              extracted and used. First time syncs would benefit greatly from this.")
-               print()
-               print("              "+turquoise("WARNING:"))
-               print("              If using our rsync server, emerge will clean out all files that do not")
-               print("              exist on it, including ones that you may have created. The exceptions")
-               print("              to this are the distfiles, local and packages directories.")
+               desc = "This updates the portage tree that is located in the " + \
+                       "directory that the PORTDIR variable refers to (default " + \
+                       "location is /usr/portage). The SYNC variable specifies " + \
+                       "the remote URI from which files will be synchronized. " + \
+                       "The PORTAGE_SYNC_STALE variable configures " + \
+                       "warnings that are shown when emerge --sync has not " + \
+                       "been executed recently."
+               for line in wrap(desc, desc_width):
+                       print(desc_indent + line)
+               print()
+               print(desc_indent + turquoise("WARNING:"))
+               desc = "The emerge --sync action will modify and/or delete " + \
+                       "files located inside the directory that the PORTDIR " + \
+                       "variable refers to (default location is /usr/portage). " + \
+                       "For more information, see the PORTDIR documentation in " + \
+                       "the make.conf(5) man page."
+               for line in wrap(desc, desc_width):
+                       print(desc_indent + line)
+               print()
+               print(desc_indent + green("NOTE:"))
+               desc = "The emerge-webrsync program will download the entire " + \
+                       "portage tree as a tarball, which is much faster than emerge " + \
+                       "--sync for first time syncs."
+               for line in wrap(desc, desc_width):
+                       print(desc_indent + line)
                print()
                print("       "+green("--unmerge")+" ("+green("-C")+" short option)")
                print("              "+turquoise("WARNING: This action can remove important packages!"))