summaryrefslogtreecommitdiffstats
path: root/pym
Commit message (Collapse)AuthorAgeFilesLines
* For userpriv, call setgroups with all groups that the portage user belongs ↵Zac Medico2006-10-192-3/+12
| | | | | | to (bug #137610). svn path=/main/trunk/; revision=4760
* Add more dependency priority levels for merge order calculations. ↵Zac Medico2006-10-181-16/+7
| | | | | | Previously, all installed deps were categorized at the same level with other soft deps. Now there are 3 priority levels for soft deps: satisfied buildtime, satisfied runtime, and other. svn path=/main/trunk/; revision=4745
* Eliminate an unnecessary string concatenation.Zac Medico2006-10-171-3/+2
| | | | svn path=/main/trunk/; revision=4744
* Make empty digest-* files 0 bytes instead of 1 byte. Thanks to Sven Wegener ↵Zac Medico2006-10-171-2/+6
| | | | | | for reporting this. svn path=/main/trunk/; revision=4743
* Fix CONFIG_PROTECT so that is works with symlinked directories for bug #151502.Zac Medico2006-10-171-0/+10
| | | | svn path=/main/trunk/; revision=4742
* Filter empty elements in cumulative env-update variables. Thanks to Brian ↵Zac Medico2006-10-171-2/+2
| | | | | | Harring for this patch from bug #151694. svn path=/main/trunk/; revision=4741
* Add -* support to stack_lists() and use dict.pop() for removal of flags when ↵Zac Medico2006-10-171-3/+7
| | | | | | appropriate. svn path=/main/trunk/; revision=4736
* Stack use.mask/package.use.mask together at each level of the profile for ↵Zac Medico2006-10-171-41/+47
| | | | | | bug #151586, and do the same with use.force/package.use.force. svn path=/main/trunk/; revision=4735
* Merge package.use and USE from make.defaults together at each level of the ↵Zac Medico2006-10-171-24/+31
| | | | | | profile stack. This is analogous to how use.mask and package.use.mask are planned to be merged for bug #151586. svn path=/main/trunk/; revision=4734
* For bug #133908, prevent collisions in ${PKGDIR}/All/ by automatically ↵Zac Medico2006-10-161-55/+168
| | | | | | bumping colliding packages to ${PKGDIR}/${CATEGORY}/ just before a collision would occur. Newly built packages are always stored in ${PKGDIR}/All/, should this be 100% compatible with previous behavior. svn path=/main/trunk/; revision=4722
* Simplify and optimize grabdict. Thanks to Brian Harring for suggesting this.Zac Medico2006-10-151-10/+6
| | | | svn path=/main/trunk/; revision=4719
* Make grabdict incremental, so that keys occuring multiple times will stack ↵Zac Medico2006-10-151-3/+10
| | | | | | up instead of overwritting eachother. Thanks to Sven Wegener for this suggestion. svn path=/main/trunk/; revision=4718
* Trigger binarytree population on bindbapi.cpv_all() calls.Zac Medico2006-10-151-0/+5
| | | | svn path=/main/trunk/; revision=4712
* Add a missing method parameter.Zac Medico2006-10-151-1/+1
| | | | svn path=/main/trunk/; revision=4708
* Simplify binarytree.getname().Zac Medico2006-10-151-5/+2
| | | | svn path=/main/trunk/; revision=4704
* Implement per-package default USE flags at the ebuild and profile levels for ↵Zac Medico2006-10-141-10/+45
| | | | | | bug #61732. svn path=/main/trunk/; revision=4679
* Fix the new env-update lib dirs logic to properly account for $ROOT.Zac Medico2006-10-121-1/+1
| | | | svn path=/main/trunk/; revision=4664
* Make an mtime change force an ldconfig run, since it's possible that ↵Zac Medico2006-10-111-1/+1
| | | | | | pre/postinst made changes in lib dirs (noted by Brian Harring). svn path=/main/trunk/; revision=4662
* Use contents to avoid unnecessary ldconfig calls for bug #136488.Zac Medico2006-10-111-7/+26
| | | | svn path=/main/trunk/; revision=4661
* Make manifest2AuxfileFilter() slightly more efficient and also ignore any ↵Zac Medico2006-10-111-3/+5
| | | | | | hidden files. svn path=/main/trunk/; revision=4656
* For bug #150121, generate an error in digestcheck() if a file is found that ↵Zac Medico2006-10-111-0/+16
| | | | | | is not listed in the Manifest. svn path=/main/trunk/; revision=4655
* Move PORTAGE_BUILDDIR in to a category subdirectory and clean up the ↵Zac Medico2006-10-111-11/+62
| | | | | | category directory if empty (while holding lock). This this will help avoid PORTAGE_BUILDDIR collisions for parallel builds and will also hack around bug #150454. svn path=/main/trunk/; revision=4654
* Add more self.modifying() checks in order to detect modifcations to locked ↵Zac Medico2006-10-101-1/+6
| | | | | | config objects. svn path=/main/trunk/; revision=4652
* Only unlink .installed after the collision-protect has completed ↵Zac Medico2006-10-101-11/+10
| | | | | | successfully (reported by axxo). svn path=/main/trunk/; revision=4648
* Only do a slotmove on a slot dep atom if the slotmove atom has no operator ↵Zac Medico2006-10-101-2/+2
| | | | | | (otherwise there's not enough information to perform the slotmove). svn path=/main/trunk/; revision=4647
* Simplify the needlessly complex virtuals preferencing logic that lead to bug ↵Zac Medico2006-10-101-82/+25
| | | | | | #150377. svn path=/main/trunk/; revision=4644
* Avoid unnecessary population of the bintree by populating it as late as ↵Zac Medico2006-10-101-16/+9
| | | | | | possible. svn path=/main/trunk/; revision=4643
* Catch UnpicklingError when loading the mtimedb (reported by marienz).Zac Medico2006-10-091-1/+1
| | | | svn path=/main/trunk/; revision=4638
* Remove unnecessary config.reset() calls in portage.create_trees().Zac Medico2006-10-091-3/+0
| | | | svn path=/main/trunk/; revision=4637
* Use a local_config flag to replace PORTAGE_CALLER == repoman conditionals.Zac Medico2006-10-091-23/+23
| | | | svn path=/main/trunk/; revision=4631
* Remove the single parent constraint in profiles.Zac Medico2006-10-081-3/+2
| | | | svn path=/main/trunk/; revision=4625
* Make the .installed invalidation conditional on srcroot and destroot being ↵Zac Medico2006-10-081-7/+8
| | | | | | located on the same filesystem (st_dev). svn path=/main/trunk/; revision=4623
* Make the merge phase automatically invalidate the ↵Zac Medico2006-10-081-0/+10
| | | | | | ${PORTAGE_BUILDDIR}/.installed flag since it may move files out of the image directory. svn path=/main/trunk/; revision=4622
* 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
* 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
* 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
* 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
* 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-041-3/+3
| | | | 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