diff options
author | Marius Mauch <genone@gentoo.org> | 2006-08-04 13:43:23 +0000 |
---|---|---|
committer | Marius Mauch <genone@gentoo.org> | 2006-08-04 13:43:23 +0000 |
commit | 15c3f994e75859017a8deba60f084d41d2a7ee9c (patch) | |
tree | 443dc806479811ed6f1726ef75f6d5605fd05573 | |
parent | 4387d7989e2a91ef9cf78bafbaa266d70544f22a (diff) | |
download | portage-15c3f994e75859017a8deba60f084d41d2a7ee9c.tar.gz portage-15c3f994e75859017a8deba60f084d41d2a7ee9c.tar.bz2 portage-15c3f994e75859017a8deba60f084d41d2a7ee9c.zip |
ignore packages that were just fetched from being added to the worldfile
svn path=/main/trunk/; revision=4150
-rwxr-xr-x | bin/regenworld | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/bin/regenworld b/bin/regenworld index b99370962..7b14c2131 100755 --- a/bin/regenworld +++ b/bin/regenworld @@ -9,7 +9,7 @@ import os import portage, string, re __candidatematcher__ = re.compile("^[0-9]+: \\*\\*\\* emerge ") -__noncandidatematcher__ = re.compile(" sync( |$)| clean( |$)| search( |$)|--oneshot| unmerge( |$)") +__noncandidatematcher__ = re.compile(" sync( |$)| clean( |$)| search( |$)|--oneshot|--fetchonly| unmerge( |$)") def issyspkg(pkgline): return (pkgline[0] == "*") |