summaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
* Add support for slot based dep matching in all dbapi derived classes. The ↵Zac Medico2006-10-052-4/+45
| | | | | | supported syntax is ${CATEGORY}/${PN}:${SLOT} (identical to that used by paludis and pkgcore). svn path=/main/trunk/; revision=4594
* Share duplicate code between dep_getkey() and dep_getcpv().Zac Medico2006-10-041-10/+1
| | | | svn path=/main/trunk/; revision=4593
* Don't create /cvs-src since the cvs.eclass will do that automatically.Zac Medico2006-10-041-1/+1
| | | | svn path=/main/trunk/; revision=4591
* Fix a typo for the file mode in ${T}.Zac Medico2006-10-041-2/+2
| | | | svn path=/main/trunk/; revision=4590
* Don't apply the sticky bits until we have a complete plan for bug #149062.Zac Medico2006-10-042-4/+4
| | | | svn path=/main/trunk/; revision=4589
* Properly write all fifo and device nodes to CONTENTS for bug #144781. Code ↵Zac Medico2006-10-041-4/+4
| | | | | | to parse these entries has already in place and they are never unmerged. svn path=/main/trunk/; revision=4588
* Remove redundant PORTAGE_BUILDDIR creation.Zac Medico2006-10-041-6/+0
| | | | svn path=/main/trunk/; revision=4587
* When gathering a group of nodes to merge (with circular RDEPEND), make sure ↵Zac Medico2006-10-041-5/+16
| | | | | | not to prematurely merge any nodes that have unsatisfied hard deps. svn path=/main/trunk/; revision=4586
* Make PORTAGE_BUILDDIR and subdirectories group writable for now (reverts ↵Zac Medico2006-10-041-7/+22
| | | | | | some of the changes from bug #149062). One major problem is that the first phase (setup) is often run as root. We need a way to tell portage about a less privileged user that may need to be given permission on files and directories. svn path=/main/trunk/; revision=4585
* Don't set the gid unnecessarily on $PORTAGE_BUILDDIR/distdir.Zac Medico2006-10-031-2/+1
| | | | svn path=/main/trunk/; revision=4584
* For userpriv support, chown files in ${T} if necessary after priveleged phases.Zac Medico2006-10-031-1/+8
| | | | svn path=/main/trunk/; revision=4583
* Use 01775 permissions for subdirectories of PORTAGE_TMPDIR, and 0755 ↵Zac Medico2006-10-032-26/+28
| | | | | | permissions for other directories (bug #149062). svn path=/main/trunk/; revision=4582
* Use 755 permissions for ${PORTAGE_WORKDIR}/distdir (bug #149062).Zac Medico2006-10-031-1/+2
| | | | svn path=/main/trunk/; revision=4581
* Print a message about make.globals if PORTDIR is undefined.Zac Medico2006-10-031-1/+4
| | | | svn path=/main/trunk/; revision=4580
* Add a digraph.NONE constant to represent no priority.Zac Medico2006-10-032-1/+3
| | | | svn path=/main/trunk/; revision=4579
* Refector depgraph.altlist() reverse/ignore_priority handling.Zac Medico2006-10-031-18/+8
| | | | svn path=/main/trunk/; revision=4578
* Remove a len(nodes) == 1 test that's never True.Zac Medico2006-10-031-1/+1
| | | | svn path=/main/trunk/; revision=4577
* In depgraph.altlist(), use a recursive fuction to gather groups of nodes ↵Zac Medico2006-10-031-12/+9
| | | | | | that RDEPEND on eachother. svn path=/main/trunk/; revision=4576
* Fix priority logic in digraph.add().Zac Medico2006-10-031-2/+2
| | | | svn path=/main/trunk/; revision=4575
* Optimize varexpand for bug #149900.Zac Medico2006-10-021-4/+4
| | | | svn path=/main/trunk/; revision=4574
* Remove unnecessary set creation.Zac Medico2006-10-021-1/+0
| | | | svn path=/main/trunk/; revision=4573
* Fix depgraph.altlist() so that it can identify a group of nodes that ↵Zac Medico2006-10-022-4/+40
| | | | | | completely satisfy eachothers non-soft deps. This should complete the fix for bug #149881. svn path=/main/trunk/; revision=4572
* Add medium priority level into the digraph (in addition to the existing hard andZac Medico2006-10-022-46/+50
| | | | svn path=/main/trunk/; revision=4571
* For bug #149781, exclude symlinks to directories when creating binary ↵Zac Medico2006-10-011-1/+5
| | | | | | package with quickpkg. svn path=/main/trunk/; revision=4570
* Fix misspelling of dependencies for bug #149645.Zac Medico2006-09-301-1/+1
| | | | svn path=/main/trunk/; revision=4568
* Emulate old --update world/system behavior for bug #149527.Zac Medico2006-09-301-1/+1
| | | | svn path=/main/trunk/; revision=4567
* 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