summaryrefslogtreecommitdiffstats
path: root/pym
Commit message (Collapse)AuthorAgeFilesLines
* Fix logic for USE_EXPAND variables that are incremental (there are none ↵Zac Medico2007-05-261-9/+17
| | | | | | currently). svn path=/main/trunk/; revision=6635
* Fix broken dict.get logic.Zac Medico2007-05-261-2/+4
| | | | svn path=/main/trunk/; revision=6634
* Create the Packages index whether or not $PKGDIR/All/ exists so that ↵Zac Medico2007-05-261-38/+37
| | | | | | improved binarytree.populate() performance will be available in either case. When dealing with packages in $PKGDIR/All/, it's assumed that the file name, size, and timestamp are enough information to avoid reading the xpak data. svn path=/main/trunk/; revision=6633
* Store flags as a set inside the USE incremental loop.Zac Medico2007-05-251-10/+8
| | | | svn path=/main/trunk/; revision=6627
* Call tcgetattr and tcsetattr on the slave end of the pty in order to avoid ↵Zac Medico2007-05-251-2/+2
| | | | | | an "invalid argument" error on Solaris. Thanks to grobian. svn path=/main/trunk/; revision=6625
* For bug #179766, expand USE_EXPAND variables inside the USE incremental loop ↵Zac Medico2007-05-251-24/+25
| | | | | | so that USE"-*" will not always destroy them. svn path=/main/trunk/; revision=6623
* To ease the namespace transition, automatically translate cache.* to ↵Zac Medico2007-05-252-2/+12
| | | | | | portage.cache.* if an ImportError occurs. svn path=/main/trunk/; revision=6620
* Don't treat KEYWORDS="-*" like KEYWORDS="*", because it's never been that ↵Zac Medico2007-05-241-2/+3
| | | | | | way and the * behavior was already annoying enough. svn path=/main/trunk/; revision=6617
* Make PackageIndex.write() omit USE when appropriate.Zac Medico2007-05-241-3/+4
| | | | svn path=/main/trunk/; revision=6613
* Remember to call the superclass constructor.Zac Medico2007-05-241-0/+1
| | | | svn path=/main/trunk/; revision=6612
* Make PackageIndex.write() alphabetize the metadata keys.Zac Medico2007-05-241-2/+6
| | | | svn path=/main/trunk/; revision=6611
* Fix paren_normalize logic.Zac Medico2007-05-241-6/+3
| | | | svn path=/main/trunk/; revision=6610
* Add more relevant package metadata to the Packages index, including ↵Zac Medico2007-05-242-0/+61
| | | | | | dependencies with USE conditionals collapsed. svn path=/main/trunk/; revision=6609
* Pass a temporary file name to the package phase in the environment variable ↵Zac Medico2007-05-232-4/+30
| | | | | | PORTAGE_BINPKG_TMPFILE and move the temporary file into place inside binarytree.inject(). This allows binarytree.inject() to perform the move while holding a lock. svn path=/main/trunk/; revision=6591
* Save memory by not holding a reference to the PackageIndex when it's not ↵Zac Medico2007-05-231-10/+9
| | | | | | being used. svn path=/main/trunk/; revision=6590
* Lock the Packages index while it's being updated with a packages that was ↵Zac Medico2007-05-231-12/+36
| | | | | | just built. svn path=/main/trunk/; revision=6589
* Store the path of $PKGDIR/Packages as binarytree._pkgindex_file.Zac Medico2007-05-231-4/+4
| | | | svn path=/main/trunk/; revision=6588
* Lock $PKGDIR/Packages during population so that it won't get out of sync if ↵Zac Medico2007-05-231-0/+12
| | | | | | another process updates it. svn path=/main/trunk/; revision=6587
* Update /Packages as each package is built (MD5 is done here since it won't ↵Zac Medico2007-05-232-4/+49
| | | | | | hurt performance). svn path=/main/trunk/; revision=6586
* Discard metadata from the Packages file if there's no MTIME attribute.Zac Medico2007-05-221-10/+4
| | | | svn path=/main/trunk/; revision=6585
* Split reading/writing of $PKGDIR/Packages into a PackageIndex class.Zac Medico2007-05-222-22/+38
| | | | svn path=/main/trunk/; revision=6584
* Fix missing red import.Zac Medico2007-05-221-1/+1
| | | | svn path=/main/trunk/; revision=6583
* Punt the portdbapi.getsize() function since it's unused and broken (mysum ↵Zac Medico2007-05-221-13/+0
| | | | | | referenced before assignment). svn path=/main/trunk/; revision=6582
* More namespace fixes.Zac Medico2007-05-221-2/+2
| | | | svn path=/main/trunk/; revision=6581
* Fix namespace for S_ISUID and S_ISGID.Zac Medico2007-05-221-1/+1
| | | | svn path=/main/trunk/; revision=6580
* - cleaner version of the hardlink basic suid protection. actually check that ↵Ned Ludd2007-05-221-5/+6
| | | | | | the file is setXid svn path=/main/trunk/; revision=6579
* Handle a KeyError if an MTIME is missing from the Packages index.Zac Medico2007-05-221-2/+2
| | | | svn path=/main/trunk/; revision=6571
* Fix size comparison logic.Zac Medico2007-05-221-2/+2
| | | | svn path=/main/trunk/; revision=6570
* Cache xpak metadata in ${PKGDIR}/Packages in order to minimize disk load ↵Zac Medico2007-05-222-2/+122
| | | | | | when binarytree.populate() is called. This does not do all the keys that genpkgindex does but it will copy metadata from the existing Packages file if it appears valid. The binarytree.populate() code is performance critical, so the MD5 will certainly have to be done elsewhere (like just after a package is built). svn path=/main/trunk/; revision=6569
* When ${PKGDIR}/All/ doesn't exist, put packages in ${PKGDIR}/${CATEGORY}/ ↵Zac Medico2007-05-222-9/+9
| | | | | | instead. This new layout is backward compatible with portage-2.1.2 and it will be a requirement for new PORTAGE_BINHOST support that is comming. svn path=/main/trunk/; revision=6568
* Use bash to spawn FETCHCOMMAND under selinux since most other binaries are ↵Zac Medico2007-05-221-0/+2
| | | | | | forbidden as entrypoints into the fetch domain. Thanks to Justin Heesemann <jh@ionium.org> for reporting. svn path=/main/trunk/; revision=6566
* Add a missing newline to the writemsg output.Zac Medico2007-05-211-1/+2
| | | | svn path=/main/trunk/; revision=6564
* - blind chmod 0 before unlinking files to avoid anybody doing sneaky stuff ↵Ned Ludd2007-05-211-0/+4
| | | | | | via hardlinks svn path=/main/trunk/; revision=6563
* In fetch(), don't try to parse digests unless the "O" variable is defined.Zac Medico2007-05-201-2/+7
| | | | svn path=/main/trunk/; revision=6561
* For bug #179206, improve efficiency by using a containment test instead of ↵Zac Medico2007-05-201-2/+2
| | | | | | str.count inside update_dbentry. Thanks to Jason Lai <jason.lai@gmail.com>. svn path=/main/trunk/; revision=6560
* Add edges to shown_edges at the first oportunity.Zac Medico2007-05-191-6/+3
| | | | svn path=/main/trunk/; revision=6557
* In --tree output, keep track of which graph edges have already been ↵Zac Medico2007-05-191-2/+14
| | | | | | displayed and try not to display a given edge more than once. svn path=/main/trunk/; revision=6556
* Avoid permission errors when trying to lock repo_path. Note that the lock ↵Zac Medico2007-05-191-1/+6
| | | | | | file should be mapped into /var somewhere. svn path=/main/trunk/; revision=6555
* Fall back to pickle if cPickle is unavailable. Thanks to Michael ↵Zac Medico2007-05-181-1/+5
| | | | | | Haubenwallner <michael.haubenwallner@salomon.at> for reporting. svn path=/main/trunk/; revision=6552
* Only show extra whitespace where there are some news items to display.Zac Medico2007-05-181-4/+6
| | | | svn path=/main/trunk/; revision=6551
* Catch a potential OSError if the child process has already died.Zac Medico2007-05-181-1/+4
| | | | svn path=/main/trunk/; revision=6550
* Enable elog functionality for the python side of portageMarius Mauch2007-05-1810-119/+213
| | | | svn path=/main/trunk/; revision=6548
* Display notification about unread news in all situations specified by glep 42Marius Mauch2007-05-181-16/+28
| | | | svn path=/main/trunk/; revision=6547
* - store newsid in unread file, not the path to the news itemMarius Mauch2007-05-181-52/+52
| | | | | | | | - use octal numbers to specify file permissions - use descriptive exceptions when (not) creating NewsItem objects - code style cleanups svn path=/main/trunk/; revision=6546
* Add registration support for preserved library objects, move the ↵Marius Mauch2007-05-182-45/+168
| | | | | | | | | library->consumer map code out of vardbapi and fix a bug in the setup code for preserve-libs and collision-protect caused by using relative paths with os.path.islink() svn path=/main/trunk/; revision=6545
* wrap linesZac Medico2007-05-171-9/+9
| | | | svn path=/main/trunk/; revision=6542
* For bug #162404, use a pseudo-terminal device pair (instead of a normal ↵Zac Medico2007-05-171-25/+47
| | | | | | pipe) for moving ouput out of the sesandbox domain. svn path=/main/trunk/; revision=6541
* Don't protect USE_EXPAND variables from -* anymore because the really ↵Zac Medico2007-05-161-1/+1
| | | | | | critical ones should all be in use.force now (typically kernel_linux, elibc_glibc, and userland_GNU). svn path=/main/trunk/; revision=6540
* fix syntax (merged from branches/prefix r6534)Zac Medico2007-05-141-1/+1
| | | | svn path=/main/trunk/; revision=6537
* For bug #178293, don't write digest-* files unnecessarily when SRC_URI is empty.Zac Medico2007-05-131-2/+5
| | | | svn path=/main/trunk/; revision=6535