summaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
...
* Don't try to match call best_match_to_list() on "blocks" nodes for bug #149576.Zac Medico2006-09-301-12/+8
| | | | svn path=/main/trunk/; revision=4566
* Update CONFIG_PROTECT docs to reflect that files are now supported.Zac Medico2006-09-291-4/+4
| | | | svn path=/main/trunk/; revision=4565
* Update installsources docs for bug #149491.Zac Medico2006-09-291-2/+2
| | | | svn path=/main/trunk/; revision=4564
* Document the new COLLISION_IGNORE variable.Zac Medico2006-09-291-0/+6
| | | | svn path=/main/trunk/; revision=4563
* For bug #149412, add a COLLISION_IGNORE user config option that behaves ↵Zac Medico2006-09-291-0/+10
| | | | | | similar to CONFIG_PROTECT_MASK, but for collision-protect. svn path=/main/trunk/; revision=4562
* Document the new --with-bdeps option.Zac Medico2006-09-291-4/+13
| | | | svn path=/main/trunk/; revision=4561
* Allow options contained in EMERGE_DEFAULT_OPTS to be overridden by the real ↵Zac Medico2006-09-291-1/+2
| | | | | | command line options. svn path=/main/trunk/; revision=4560
* Move installed sources into ${CATEGORY} subdirectories in order to prevent ↵Zac Medico2006-09-291-3/+5
| | | | | | collisions for bug #149491. svn path=/main/trunk/; revision=4559
* Allow env.d file names with 3 characters. This is a regression from r4451.Zac Medico2006-09-291-1/+1
| | | | svn path=/main/trunk/; revision=4558
* Fix quoting of ${D} in make arguments for einstall(). Thanks to Volkov ↵Zac Medico2006-09-291-12/+12
| | | | | | Peter <pva@gentoo.org> for this patch from bug #149494. svn path=/main/trunk/; revision=4557
* Fix broken [ -z "" ] test. Thanks to Volkov Peter <pva@gentoo.org> for this ↵Zac Medico2006-09-291-1/+1
| | | | | | patch from bug #149494. svn path=/main/trunk/; revision=4556
* Fix inverted --with-bdeps logic.Zac Medico2006-09-291-1/+1
| | | | svn path=/main/trunk/; revision=4555
* Call sys.stdout.flush() after print statements so that output has the ↵Zac Medico2006-09-291-0/+5
| | | | | | correct order when multiple processes output to a shared pipe. svn path=/main/trunk/; revision=4554
* Properly treat myopts as a dict.Zac Medico2006-09-291-1/+1
| | | | svn path=/main/trunk/; revision=4553
* Remove some unreachable code.Zac Medico2006-09-291-2/+0
| | | | svn path=/main/trunk/; revision=4552
* Use dict.pop(k, None) to delete items if they exist.Zac Medico2006-09-291-2/+1
| | | | svn path=/main/trunk/; revision=4551
* Store myopts in the mtimedb as a list for backward compatibility.Zac Medico2006-09-291-6/+9
| | | | svn path=/main/trunk/; revision=4550
* Add missing calls to iteritems() from the last commit.Zac Medico2006-09-291-2/+2
| | | | svn path=/main/trunk/; revision=4549
* Add a --with-bdeps=[y,n] option for bug #148870.Zac Medico2006-09-281-12/+38
| | | | svn path=/main/trunk/; revision=4548
* Convert myopts into a dictionary so that it can be used for more that ↵Zac Medico2006-09-281-17/+16
| | | | | | boolean flags. svn path=/main/trunk/; revision=4547
* Convert emerge option parsing to use python's optparse module. This patch ↵Zac Medico2006-09-281-51/+46
| | | | | | makes the minimum changes necessary for the conversion and is supposed to be 100% compatible with previous parsing behavior. svn path=/main/trunk/; revision=4546
* Catch a ValueError caused by corrupt cache for bug #149134.Zac Medico2006-09-281-1/+5
| | | | svn path=/main/trunk/; revision=4545
* In dep_zapdeps preference selection, use package names instead of the real ↵Zac Medico2006-09-271-2/+4
| | | | | | atoms for an initial rough match against installed packages. More specific preference selection is handled later via slot and version comparison. Thanks to Jason Stubbs for this patch from bug #147766. svn path=/main/trunk/; revision=4543
* Revert dep_zapdeps fakedbapi usage as per comment #31 on bug #147766.Zac Medico2006-09-271-11/+5
| | | | svn path=/main/trunk/; revision=4542
* Fix --update so that it updates direct dependencies for bug #149208.Zac Medico2006-09-271-5/+8
| | | | svn path=/main/trunk/; revision=4541
* Make sure that all packages are in the dbapi when doing the blocker validation.Zac Medico2006-09-271-0/+11
| | | | svn path=/main/trunk/; revision=4540
* Add SLOT support to fakedbapi then use it for depgraph blocker handling and ↵Zac Medico2006-09-272-47/+49
| | | | | | dep_zapdeps preference selection. svn path=/main/trunk/; revision=4539
* Add a warning about the portage group and the possiblility of exploits for ↵Zac Medico2006-09-251-0/+11
| | | | | | bug #149062. svn path=/main/trunk/; revision=4530
* Clean up the logic a little for bug #149092.Zac Medico2006-09-251-2/+4
| | | | svn path=/main/trunk/; revision=4529
* Check the dep_check return value and fail with a message if an error has ↵Zac Medico2006-09-251-17/+13
| | | | | | occurred. svn path=/main/trunk/; revision=4528
* Make `emerge world` (without --deep) work as expected for bug #149092.Zac Medico2006-09-251-0/+1
| | | | svn path=/main/trunk/; revision=4527
* print errors to stderr, not stdoutMike Frysinger2006-09-251-6/+6
| | | | svn path=/main/trunk/; revision=4526
* For bug #149028, don't lock the tbz2 file because the filesytem could be ↵Zac Medico2006-09-251-3/+5
| | | | | | readonly or shared by a cluster. svn path=/main/trunk/; revision=4525
* Clean up and simplify depgraph params logic. This fixes bug #148893.Zac Medico2006-09-242-15/+8
| | | | svn path=/main/trunk/; revision=4524
* Remove depgraph params for depclean since it no longer uses the depgraph.Zac Medico2006-09-241-3/+0
| | | | svn path=/main/trunk/; revision=4523
* In order to ensure correct merge order such that build time dependencies ↵Zac Medico2006-09-241-1/+6
| | | | | | will really be usable, don't treat RDEPEND as soft_deps. Thanks for Jason Stubbs for recognizing this issue. svn path=/main/trunk/; revision=4522
* Use the same directories for binary package merges as would be used for ↵Zac Medico2006-09-241-31/+13
| | | | | | source based merges (since the normal PORTAGE_BUILDDIR is already used by the setup, preinst, and postinst phases anyway). svn path=/main/trunk/; revision=4521
* Fix portage.pkgmerge() so that it locks files and directories when in use.Zac Medico2006-09-231-64/+94
| | | | svn path=/main/trunk/; revision=4520
* Remove pkgmerge since it's apparent that nobody uses it (it's been broken ↵Zac Medico2006-09-232-143/+0
| | | | | | for a long time, anyway). svn path=/main/trunk/; revision=4519
* Remove doebuild_environment return value checks since it no raises and ↵Zac Medico2006-09-232-10/+3
| | | | | | exception if necessary. svn path=/main/trunk/; revision=4518
* Make doebuild_environment raise an exception so that we never have to check ↵Zac Medico2006-09-231-3/+2
| | | | | | the return value. svn path=/main/trunk/; revision=4516
* Only lock PORTAGE_BUILDDIR if the ebuild exists (otherwise we don't run ↵Zac Medico2006-09-231-3/+3
| | | | | | prerm and postrm). svn path=/main/trunk/; revision=4515
* Lock PORTAGE_BUILDDIR all the way through prerm, unmerge, and postrm.Zac Medico2006-09-231-50/+60
| | | | svn path=/main/trunk/; revision=4514
* Always check the return value of doebuild_environment().Zac Medico2006-09-232-2/+5
| | | | svn path=/main/trunk/; revision=4513
* Move PORTAGE_BUILDDIR locking out of doebuild and into emerge in order to ↵Zac Medico2006-09-232-71/+78
| | | | | | ensure that emerge maintains it's lock through all phases. svn path=/main/trunk/; revision=4512
* Remove outdated "Unable to run required binary" messages that are now ↵Zac Medico2006-09-231-16/+0
| | | | | | unreachable. svn path=/main/trunk/; revision=4511
* Move PORTAGE_LOG_FILE initialization from doebuild to prepare_build_dirs.Zac Medico2006-09-231-14/+14
| | | | svn path=/main/trunk/; revision=4510
* Pass in the correct arg= value to select_dep.Zac Medico2006-09-231-2/+6
| | | | svn path=/main/trunk/; revision=4509
* Never allow packages explicitly requested on the command line to be tagged ↵Zac Medico2006-09-231-12/+17
| | | | | | "nomerge" unless --noreplace has been specified. This patch accomplishes the same goal as r4494 but without the potential for causing inconsistency in the depgraph. svn path=/main/trunk/; revision=4508
* Ensure that soft_dep is a plain boolean (not vardb match results).Zac Medico2006-09-221-1/+1
| | | | svn path=/main/trunk/; revision=4507