summaryrefslogtreecommitdiff
path: root/pym
Commit message (Collapse)AuthorAgeFilesLines
* 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
* 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-031-25/+26
| | | | | | 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
* Add a digraph.NONE constant to represent no priority.Zac Medico2006-10-031-0/+1
| | | | svn path=/main/trunk/; revision=4579
* 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
* Fix depgraph.altlist() so that it can identify a group of nodes that ↵Zac Medico2006-10-021-2/+8
| | | | | | completely satisfy eachothers non-soft deps. This should complete the fix for bug #149881. svn path=/main/trunk/; revision=4572