summaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
* For bug #140021, remove autoaddcvs from the docs. Thanks to exg for this patch.Zac Medico2006-10-082-11/+3
| | | | svn path=/main/trunk/; revision=4618
* Fix dep_transform breakage (regression from r4596).Zac Medico2006-10-081-1/+3
| | | | svn path=/main/trunk/; revision=4617
* Stack negative user virtuals in the correct order for incremental behavior.Zac Medico2006-10-071-1/+2
| | | | svn path=/main/trunk/; revision=4616
* For bug #150377, make virtual preferences in a profile override the ↵Zac Medico2006-10-071-1/+0
| | | | | | preferences of parent profiles. svn path=/main/trunk/; revision=4615
* Remove redundant quotes from PORTAGE_RSYNC_OPTS.Zac Medico2006-10-071-1/+1
| | | | svn path=/main/trunk/; revision=4614
* Remove redunant quotes for bug #150381. This change is related to the shlex ↵Zac Medico2006-10-071-1/+1
| | | | | | posix mode used to fix bug #14215. svn path=/main/trunk/; revision=4613
* Fix package type assumptions in depgraph.display() for bug #150359.Zac Medico2006-10-071-13/+4
| | | | svn path=/main/trunk/; revision=4612
* Add a heading for portage-2.1.2.Zac Medico2006-10-071-1/+5
| | | | svn path=/main/trunk/; revision=4611
* Add a release note about --with-bdeps.Zac Medico2006-10-071-0/+2
| | | | svn path=/main/trunk/; revision=4610
* Add news about major bug fixes in 2.1.2.Zac Medico2006-10-071-0/+9
| | | | svn path=/main/trunk/; revision=4609
* Delete some temporary variables after use.Zac Medico2006-10-061-0/+3
| | | | svn path=/main/trunk/; revision=4608
* In update_dbentries(), use != rather than "is not" to make sure that updates ↵Zac Medico2006-10-061-1/+1
| | | | | | never occur unnecessarily. svn path=/main/trunk/; revision=4607
* Reject installed packages if they have a matching masked ebuild in the tree.Zac Medico2006-10-061-1/+9
| | | | svn path=/main/trunk/; revision=4606
* For bug #48195, fall back to the installed packages when there are no other ↵Zac Medico2006-10-061-1/+40
| | | | | | choices. Global updates are automatically performed on *DEPEND if necessary in order to clean up stale atoms (we do single packages as necessary because it's too time consuming to do the whole vdb at once). svn path=/main/trunk/; revision=4605
* Make repoman generate a syntax error if a slot dep is used with EAPI == 0.Zac Medico2006-10-061-1/+2
| | | | svn path=/main/trunk/; revision=4604
* Don't call varexpand inside getconfig for env.d/profile.env values.Zac Medico2006-10-062-5/+8
| | | | svn path=/main/trunk/; revision=4603
* For bug #14215, put the shlex parser in posix mode so that it properly ↵Zac Medico2006-10-061-3/+3
| | | | | | recognizes escaped quotes. svn path=/main/trunk/; revision=4602
* For bug #150163, remove unnecessary validation of new_protect_filename() ↵Zac Medico2006-10-061-4/+0
| | | | | | parameters. svn path=/main/trunk/; revision=4601
* For bug #150178, print an error message when emerge is called with both ↵Zac Medico2006-10-061-1/+6
| | | | | | --config and --pretend. svn path=/main/trunk/; revision=4600
* Add news about slot deps.Zac Medico2006-10-051-0/+5
| | | | svn path=/main/trunk/; revision=4599
* Improve best_match_to_list() and include support for slot deps.Zac Medico2006-10-051-6/+22
| | | | svn path=/main/trunk/; revision=4598
* Fix package moves/slotmoves to work with slot deps.Zac Medico2006-10-051-4/+15
| | | | svn path=/main/trunk/; revision=4597
* Just use a simple replace for the needlessly complex dep_transform function. ↵Zac Medico2006-10-051-20/+1
| | | | | | This will make it compatible with slot deps. svn path=/main/trunk/; revision=4596
* For bug #4698, use slot deps to ensure that all installed slots are ↵Zac Medico2006-10-051-1/+12
| | | | | | automatically updated. svn path=/main/trunk/; revision=4595
* 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