summaryrefslogtreecommitdiffstats
path: root/pym
Commit message (Collapse)AuthorAgeFilesLines
* Fix profile and config arguments to NewsItem.isRelevant() inside ↵Zac Medico2007-06-161-1/+11
| | | | | | NewsManager.updateItems(). svn path=/main/trunk/; revision=6862
* Go ahead and unlink symlinks to directories when they're actually recorded ↵Zac Medico2007-06-151-5/+7
| | | | | | as symlinks in the contents. svn path=/main/trunk/; revision=6860
* Make the collision-protect loop check for existance of the destination file ↵Zac Medico2007-06-151-0/+9
| | | | | | before checking if it's owned. svn path=/main/trunk/; revision=6858
* For bug #182021, use active voice when notifying the user that superuser ↵Zac Medico2007-06-151-2/+2
| | | | | | access is required. svn path=/main/trunk/; revision=6854
* Handle another case where removing a symlink to a directory can be harmful.Zac Medico2007-06-151-0/+5
| | | | svn path=/main/trunk/; revision=6852
* For bug #182157, don't let unmerge-orphans unlink symlinks to directories ↵Zac Medico2007-06-151-0/+3
| | | | | | since that can remove /lib and /usr/lib symlinks. svn path=/main/trunk/; revision=6850
* For bug #182157, never chmod 0 symlinks before unlinking them.Zac Medico2007-06-151-1/+1
| | | | svn path=/main/trunk/; revision=6848
* For bug #182105, fix the spelling of the fd_pipes paremeter.Zac Medico2007-06-151-1/+1
| | | | svn path=/main/trunk/; revision=6846
* Fix broken \!found logic so that any missing files are properly skipped.Zac Medico2007-06-141-6/+2
| | | | svn path=/main/trunk/; revision=6843
* Pass existing portdbapi and vardbapi instances into the NewsManager constructor.Zac Medico2007-06-132-16/+18
| | | | svn path=/main/trunk/; revision=6841
* Make display_news_notification() reuse the existing portdbapi instance.Zac Medico2007-06-131-7/+10
| | | | svn path=/main/trunk/; revision=6840
* Pass all the of the existing package databases into post_emerge() so that we ↵Zac Medico2007-06-131-8/+12
| | | | | | can use them for news and preserve-libs. svn path=/main/trunk/; revision=6839
* For bug #181953, prevent the circular_blocks code from selecting a node ↵Zac Medico2007-06-131-2/+10
| | | | | | that's already been selected by the normal node selection process. svn path=/main/trunk/; revision=6837
* Get registry object from vardbapi directly instead of creating another oneMarius Mauch2007-06-131-9/+7
| | | | svn path=/main/trunk/; revision=6836
* Add portageq command to list preserved libsMarius Mauch2007-06-131-2/+2
| | | | svn path=/main/trunk/; revision=6835
* In dblink.treewalk(), handle the case where the current cpv is already ↵Zac Medico2007-06-131-0/+5
| | | | | | installed but it has a different slot (multislot or unapplied slotmove). svn path=/main/trunk/; revision=6833
* For bug #134620, add a FEATURES=unmerge-orphans option that causes unmerge ↵Zac Medico2007-06-131-2/+20
| | | | | | to remove files more aggressively. If a file is not claimed by another package in the same slot and it is not protected by CONFIG_PROTECT, unmerge it even if the modification time or checksum differs from the file that was originally installed. This is enabled in make.globals since the vast majority of users probably want this. svn path=/main/trunk/; revision=6829
* Fix dblink.isowner() so it works properly when ROOT!=/.Zac Medico2007-06-131-1/+1
| | | | svn path=/main/trunk/; revision=6827
* Use cached dblink instances for collision-protect.Zac Medico2007-06-131-17/+3
| | | | svn path=/main/trunk/; revision=6825
* Cache dblink instances for security checks and reference counts during ↵Zac Medico2007-06-131-45/+53
| | | | | | merge/unmerge so that each CONTENTS only has to be parsed once. These can also be reused for collision-protect. svn path=/main/trunk/; revision=6823
* Reuse previously acquired lstat results.Zac Medico2007-06-121-1/+1
| | | | svn path=/main/trunk/; revision=6821
* Remove some useless dircache code.Zac Medico2007-06-121-7/+2
| | | | svn path=/main/trunk/; revision=6818
* Always return a dict from dblink.getcontents() since callers never expect to ↵Zac Medico2007-06-121-5/+12
| | | | | | get None. svn path=/main/trunk/; revision=6816
* For bug #181021, during unmerge use all slot matches for reference counts ↵Zac Medico2007-06-121-22/+16
| | | | | | (in case the user has set AUTOCLEAN=no). svn path=/main/trunk/; revision=6814
* For consistency with other xterm titles code, redirect $PROMPT_COMMAND ↵Zac Medico2007-06-111-1/+10
| | | | | | output to stderr. svn path=/main/trunk/; revision=6799
* Remove the "missing left parenthesis" test for now since it gives false ↵Zac Medico2007-06-111-3/+0
| | | | | | positives. svn path=/main/trunk/; revision=6797
* For bug #181355, detect parenthesis mismatch in paren_reduce(), raise an ↵Zac Medico2007-06-113-10/+37
| | | | | | InvalidDependString exception, and make sure that all callers handle the exception properly. svn path=/main/trunk/; revision=6796
* Fix the suid/sgid check so it only looks at regular files since it can ↵Zac Medico2007-06-101-1/+2
| | | | | | generate false positives otherwise. svn path=/main/trunk/; revision=6794
* Don't bother to warn about hardlinks to suid/sgid files before unlink since ↵Zac Medico2007-06-101-6/+3
| | | | | | it can give false positives and the existing suid/sgid security check should spot problems before this anyway. svn path=/main/trunk/; revision=6793
* For bug #81097, detect and report suspicious hardlinks to suid/sgid files. ↵Zac Medico2007-06-102-0/+57
| | | | | | False positives are prevented by doing reference counts for each inode having suid/sgid bits and multiple hardlinks. The security check is done prior to each merge or unmerge phase and it will cause the phase to abort if a problem is found (so that the user can investigate before any files are removed). svn path=/main/trunk/; revision=6792
* For bug #181551, support slot deps in package.keywords.Zac Medico2007-06-101-3/+4
| | | | svn path=/main/trunk/; revision=6790
* Preserve order of flags from IUSE in wildcard expansion.Zac Medico2007-06-101-1/+1
| | | | svn path=/main/trunk/; revision=6786
* For bug #148702, use the * token to trigger wildcard expansion of IUSE. ↵Zac Medico2007-06-091-13/+26
| | | | | | This adds flexibility and prevents flags from being enabled unexpectedly. svn path=/main/trunk/; revision=6784
* When an update is discarded due to confmem, record it's mtime in the ↵Zac Medico2007-06-091-1/+1
| | | | | | contents (it's md5 is already recorded there too). svn path=/main/trunk/; revision=6782
* For bug #148702, automatically enable flags from IUSE if they correspond to ↵Zac Medico2007-06-091-2/+17
| | | | | | unset USE_EXPAND variables such as LINGUAS. The variable only has to be set to some value or an empty string in order to disable these flags. svn path=/main/trunk/; revision=6780
* For bug #181387, fix an UnboundLocalError for the mymtime variable that is ↵Zac Medico2007-06-091-2/+7
| | | | | | triggered by confmem. svn path=/main/trunk/; revision=6778
* Only execute $PROMPT_COMMAND when appropriate.Zac Medico2007-06-091-1/+2
| | | | svn path=/main/trunk/; revision=6772
* For bug #152828, run ${CHOST}-ldconfig when ${CBUILD} != ${CHOST}.Zac Medico2007-06-092-10/+20
| | | | svn path=/main/trunk/; revision=6770
* For bug #139383, in xtermTitleReset() use os.system() instead of ↵Zac Medico2007-06-081-1/+2
| | | | | | commands.getoutput() since the latter puts too much restriction on what $PROMPT_COMMAND may contain. svn path=/main/trunk/; revision=6768
* Ignore InvalidDependString exceptions from the RESTRICT of "nomerge" nodes.Zac Medico2007-06-071-4/+7
| | | | svn path=/main/trunk/; revision=6751
* Make all the python code respect USE conditionals in RESTRICT. It's already ↵Zac Medico2007-06-073-14/+26
| | | | | | handled on the bash side since RESTRICT is assigned the value of PORTAGE_RESTRICT. svn path=/main/trunk/; revision=6750
* Make pkgsplit and catpkgsplit return imutable tuples instead of mutable ↵Zac Medico2007-06-072-6/+7
| | | | | | lists so that cached values can be safely returned without cloning them first. Thanks to Brian Harring for the suggestion. svn path=/main/trunk/; revision=6749
* Fix strange _DevNull instance has no attribute 'isatty' warnings that occur ↵Zac Medico2007-06-071-1/+1
| | | | | | when epydoc generates docs. svn path=/main/trunk/; revision=6748
* When using a pty for logging, use setsid() to create a new session and make ↵Zac Medico2007-06-073-11/+72
| | | | | | the pty into the controlling terminal of the new session. This makes interactive ebuild behave properly in interactive cases like check_license() where ${PAGER:-less} is invoked. svn path=/main/trunk/; revision=6747
* Return copies of the cached values from pkgsplit and catpkgsplit.Zac Medico2007-06-061-2/+2
| | | | svn path=/main/trunk/; revision=6746
* For bug #181021, don't compare attributes of contents entries when deciding ↵Zac Medico2007-06-061-1/+1
| | | | | | which files not to unmerge. Simply keep any file that's listed in the new contents in order to avoid problematic scenarios such as those described in comments #32 and #40 of bug #8423. svn path=/main/trunk/; revision=6745
* For bug #82378, only set permissions on PORT_LOGDIR if it is created ↵Zac Medico2007-06-061-2/+4
| | | | | | automatically. svn path=/main/trunk/; revision=6743
* For bug #156536, update --resume docs to show that the resume history is ↵Zac Medico2007-06-061-4/+9
| | | | | | capable of storing two merge lists. svn path=/main/trunk/; revision=6742
* Comment in portage.movefile() that it's impossible to preserve timestamps of ↵Zac Medico2007-06-061-0/+2
| | | | | | a symlink since utime() only works on the target. svn path=/main/trunk/; revision=6740
* For bug #181021, preserve timestamps from ${D} during merge. For ↵Zac Medico2007-06-061-95/+49
| | | | | | replacement operations, the unmerge phase checks the contents of the newer instance in order to prevent identical files in the newer instance from being unmerged. svn path=/main/trunk/; revision=6739