summaryrefslogtreecommitdiffstats
Commit message (Expand)AuthorAgeFilesLines
* Document the new --with-bdeps option.Zac Medico2006-09-291-4/+13
* Allow options contained in EMERGE_DEFAULT_OPTS to be overridden by the real c...Zac Medico2006-09-291-1/+2
* Move installed sources into ${CATEGORY} subdirectories in order to prevent co...Zac Medico2006-09-291-3/+5
* Allow env.d file names with 3 characters. This is a regression from r4451.Zac Medico2006-09-291-1/+1
* Fix quoting of ${D} in make arguments for einstall(). Thanks to Volkov Peter...Zac Medico2006-09-291-12/+12
* Fix broken [ -z "" ] test. Thanks to Volkov Peter <pva@gentoo.org> for this ...Zac Medico2006-09-291-1/+1
* Fix inverted --with-bdeps logic.Zac Medico2006-09-291-1/+1
* Call sys.stdout.flush() after print statements so that output has the correct...Zac Medico2006-09-291-0/+5
* Properly treat myopts as a dict.Zac Medico2006-09-291-1/+1
* Remove some unreachable code.Zac Medico2006-09-291-2/+0
* Use dict.pop(k, None) to delete items if they exist.Zac Medico2006-09-291-2/+1
* Store myopts in the mtimedb as a list for backward compatibility.Zac Medico2006-09-291-6/+9
* Add missing calls to iteritems() from the last commit.Zac Medico2006-09-291-2/+2
* Add a --with-bdeps=[y,n] option for bug #148870.Zac Medico2006-09-281-12/+38
* Convert myopts into a dictionary so that it can be used for more that boolean...Zac Medico2006-09-281-17/+16
* Convert emerge option parsing to use python's optparse module. This patch ma...Zac Medico2006-09-281-51/+46
* Catch a ValueError caused by corrupt cache for bug #149134.Zac Medico2006-09-281-1/+5
* In dep_zapdeps preference selection, use package names instead of the real at...Zac Medico2006-09-271-2/+4
* Revert dep_zapdeps fakedbapi usage as per comment #31 on bug #147766.Zac Medico2006-09-271-11/+5
* Fix --update so that it updates direct dependencies for bug #149208.Zac Medico2006-09-271-5/+8
* Make sure that all packages are in the dbapi when doing the blocker validation.Zac Medico2006-09-271-0/+11
* Add SLOT support to fakedbapi then use it for depgraph blocker handling and d...Zac Medico2006-09-272-47/+49
* Add a warning about the portage group and the possiblility of exploits for bu...Zac Medico2006-09-251-0/+11
* Clean up the logic a little for bug #149092.Zac Medico2006-09-251-2/+4
* Check the dep_check return value and fail with a message if an error has occu...Zac Medico2006-09-251-17/+13
* Make `emerge world` (without --deep) work as expected for bug #149092.Zac Medico2006-09-251-0/+1
* print errors to stderr, not stdoutMike Frysinger2006-09-251-6/+6
* For bug #149028, don't lock the tbz2 file because the filesytem could be read...Zac Medico2006-09-251-3/+5
* Clean up and simplify depgraph params logic. This fixes bug #148893.Zac Medico2006-09-242-15/+8
* Remove depgraph params for depclean since it no longer uses the depgraph.Zac Medico2006-09-241-3/+0
* In order to ensure correct merge order such that build time dependencies will...Zac Medico2006-09-241-1/+6
* Use the same directories for binary package merges as would be used for sourc...Zac Medico2006-09-241-31/+13
* Fix portage.pkgmerge() so that it locks files and directories when in use.Zac Medico2006-09-231-64/+94
* Remove pkgmerge since it's apparent that nobody uses it (it's been broken for...Zac Medico2006-09-232-143/+0
* Remove doebuild_environment return value checks since it no raises and except...Zac Medico2006-09-232-10/+3
* Make doebuild_environment raise an exception so that we never have to check t...Zac Medico2006-09-231-3/+2
* Only lock PORTAGE_BUILDDIR if the ebuild exists (otherwise we don't run prerm...Zac Medico2006-09-231-3/+3
* Lock PORTAGE_BUILDDIR all the way through prerm, unmerge, and postrm.Zac Medico2006-09-231-50/+60
* Always check the return value of doebuild_environment().Zac Medico2006-09-232-2/+5
* Move PORTAGE_BUILDDIR locking out of doebuild and into emerge in order to ens...Zac Medico2006-09-232-71/+78
* Remove outdated "Unable to run required binary" messages that are now unreach...Zac Medico2006-09-231-16/+0
* Move PORTAGE_LOG_FILE initialization from doebuild to prepare_build_dirs.Zac Medico2006-09-231-14/+14
* Pass in the correct arg= value to select_dep.Zac Medico2006-09-231-2/+6
* Never allow packages explicitly requested on the command line to be tagged "n...Zac Medico2006-09-231-12/+17
* Ensure that soft_dep is a plain boolean (not vardb match results).Zac Medico2006-09-221-1/+1
* Move the open call out of the inner try block.Zac Medico2006-09-221-4/+2
* Make it possible, once again, to use --noreplace to add a package to the worl...Zac Medico2006-09-221-6/+3
* Use finally: to ensure that the file is closed properly.Zac Medico2006-09-221-8/+9
* Don't use LazyLoad for cache pulls because it causes a race condition.Zac Medico2006-09-221-11/+1
* Improve and simplify __getitem__ error handling.Zac Medico2006-09-221-14/+8