summaryrefslogtreecommitdiffstats
path: root/pym
Commit message (Collapse)AuthorAgeFilesLines
* Make fixpackages use a new "#" symbol for /var/db updates (previously '*'v2.1.6_rc3Zac Medico2008-12-051-2/+11
| | | | | | which means 'binary update' was used). (trunk r12159) svn path=/main/branches/2.1.6/; revision=12160
* Make fixpackages less noisy by only generting '*' characters for packagesZac Medico2008-12-042-5/+14
| | | | | | that are modified by updates. (trunk r12155) svn path=/main/branches/2.1.6/; revision=12158
* Make sure depgraph._slot_conflict_explanation() doesn't display the sameZac Medico2008-12-041-1/+1
| | | | | | atom more than once. (trunk r12150) svn path=/main/branches/2.1.6/; revision=12151
* Bug #249185 - For common cases in which USE deps trigger SLOT conflicts, giveZac Medico2008-12-041-18/+98
| | | | | | | a short explanation and suggest a course of action to solve the problem. (trunk r12148) svn path=/main/branches/2.1.6/; revision=12149
* Break references between the depgraph and the dropped tasks insideZac Medico2008-12-031-0/+1
| | | | | | | Scheduler._calc_resume_list(), since the tasks are now saved for display at the end. (trunk r12146) svn path=/main/branches/2.1.6/; revision=12147
* When --keep-going drops packages due to unsatisfied dependencies, includeZac Medico2008-12-031-0/+1
| | | | | | | | them in the list of packgaes that "failed to build or install" that's displayed at the end. Thanks to Jeremy Olexa <darkside@g.o> for the suggestion. (trunk r12144) svn path=/main/branches/2.1.6/; revision=12145
* Fix depgraph._dep_check_composite_db._visible() to reject installed packagesZac Medico2008-12-021-7/+7
| | | | | | | | | that are masked. This is necessary for correct choices in || deps when we want to ensure that installed masked packages are not preferred over other available choices that are not masked. Thanks to Jan Kundrát <jkt@g.o> for reporting this issue and testing the patch. (trunk r12138) svn path=/main/branches/2.1.6/; revision=12139
* Bug #249185 - For more useful output in cases when one or more USE depsZac Medico2008-12-011-50/+122
| | | | | | | | trigger "SLOT conflicts", show the specific atoms that triggered the conflict. TODO: Distiguish between various possible causes and tailor messages to suit them. (trunk r12125) svn path=/main/branches/2.1.6/; revision=12128
* Change depgraph._slot_collision_info() from a set to a dict that containsZac Medico2008-12-011-11/+16
| | | | | | | sets of packages pulled into a given slot. This will make the data easier to analyze when implementing a fix for bug #249185. (trunk r12124) svn path=/main/branches/2.1.6/; revision=12127
* Add a sanity check inside depgraph._add_pkg() to ensure that the dependenciesZac Medico2008-11-291-1/+5
| | | | | | of the same package are never processed more than once. (trunk r12122) svn path=/main/branches/2.1.6/; revision=12123
* Use stat st_dev attributes instead of the older approach. (trunk r12117)v2.1.6_rc2Zac Medico2008-11-271-2/+1
| | | | svn path=/main/branches/2.1.6/; revision=12118
* Don't call prepare_build_dirs() inside doebuild() when called for parallelZac Medico2008-11-271-1/+4
| | | | | | fetching. (trunk r12115) svn path=/main/branches/2.1.6/; revision=12116
* For bug #235642, include the stat mode, uid, and gid bits in the hardlink key.Zac Medico2008-11-261-1/+2
| | | | | | (trunk r12113) svn path=/main/branches/2.1.6/; revision=12114
* In movefile(), ignore the hardlink_candidates parameter when it's an empty list.Zac Medico2008-11-261-1/+1
| | | | | | (trunk r12111) svn path=/main/branches/2.1.6/; revision=12112
* Bug #235642 - Create hardlinks when merging identical files. This works by ↵Zac Medico2008-11-262-7/+58
| | | | | | | | | using a tuple of (md5, st_size) as a key to a list of hardlink candidates. Multiple candidates are used in case some happen to be merged to separate devices. (trunk r12109) svn path=/main/branches/2.1.6/; revision=12110
* Make Scheduler.merge() bail out early if PORTAGE_TMPDIR is not properly set.Zac Medico2008-11-261-0/+16
| | | | | | (trunk r12103) svn path=/main/branches/2.1.6/; revision=12104
* Add some more clarification to the 'ebuild phase exited unexpectedly' message.Zac Medico2008-11-261-3/+14
| | | | | | (trunk r12101) svn path=/main/branches/2.1.6/; revision=12102
* Bug #248603 - Disable warnings about missing repo_name entries for now, ↵Zac Medico2008-11-261-1/+1
| | | | | | | | | since it's not really a pressing matter and we still need to update docs and maybe add an emaint command to generate missing entries for users who just want the warning to go away. svn path=/main/branches/2.1.6/; revision=12100
* Bug #248782 - Handle permission error in EbuildFetchonly.execute() if ↵Zac Medico2008-11-261-1/+6
| | | | | | | | PORTAGE_TMPDIR is not writable. (trunk r12092) svn path=/main/branches/2.1.6/; revision=12093
* Add note in --depclean docs about link level dependency breakage.Zac Medico2008-11-251-1/+4
| | | | svn path=/main/branches/2.1.6/; revision=12088
* Remove world and system targets for emerge --help since it no longer works ↵Zac Medico2008-11-251-29/+0
| | | | | | | | now that they are sets rather than actions. (trunk r12086) svn path=/main/branches/2.1.6/; revision=12087
* Bug #248599 - Remove remaining references to packages sets and preserve-libs.Zac Medico2008-11-242-13/+3
| | | | svn path=/main/branches/2.1.6/; revision=12085
* Also add 2 spaces after newline, for alignment. (trunk r12079)v2.1.6_rc1Zac Medico2008-11-241-1/+1
| | | | svn path=/main/branches/2.1.6/; revision=12080
* Add one newline, to wrap the "Global Updates" key to less than 80 columns.Zac Medico2008-11-241-1/+1
| | | | | | (trunk r12077) svn path=/main/branches/2.1.6/; revision=12078
* Remove unused package sets and glsa stuff.Zac Medico2008-11-2413-1193/+0
| | | | svn path=/main/branches/2.1.6/; revision=12076
* Add back the --depclean warning about "link level dependencies" since theZac Medico2008-11-241-0/+4
| | | | | | 2.1.6 branch doesn't have lib awareness. svn path=/main/branches/2.1.6/; revision=12074
* Add support for parsing EAPI labels in contained in 'eapi' files in theZac Medico2008-11-241-0/+11
| | | | | | | | | profiles, and bail out if the profile contains an unsupported EAPI value in any one of it's directories. We don't necessarily have to use this but at least it gives us some way to make emerge bail out early if a profile contains unsupported EAPI features. (trunk r12068) svn path=/main/branches/2.1.6/; revision=12069
* Make emerge detect an invalid profile an bail out for anything exceptZac Medico2008-11-242-1/+23
| | | | | | | | --help, --info, --sync, and --version actions. When bailing out, suggest to revert back to the previous profile configuration advise the user which actions are allowed with an invalid profile. (trunk r12064:12066) svn path=/main/branches/2.1.6/; revision=12067
* Fix the code from bug #245358 so that it's guaranteed to traverse all theZac Medico2008-11-231-6/+8
| | | | | | way to a root node, even when circular deps are encountered. (trunk r12051) svn path=/main/branches/2.1.6/; revision=12052
* Bug #247548 - Remove 'last' and 'lfull' commands since nobody uses them.Zac Medico2008-11-231-1/+1
| | | | | | Thanks to Alec Warner <antarus@g.o>. (trunk r12049) svn path=/main/branches/2.1.6/; revision=12050
* When displaying anscestors of an unstatisfied dependency (code from bugZac Medico2008-11-231-0/+5
| | | | | | | | #245358), avoid a potential infinite loop and memory leak triggered by circular dependencies. Thanks to Peter Weller <welp@g.o> for reporting. (trunk r12045) svn path=/main/branches/2.1.6/; revision=12046
* Add some hints about bash binary corruption and hardware malfunction to theZac Medico2008-11-221-1/+3
| | | | | | message that's displayed when bash exits unexpectedly. (trunk r12041) svn path=/main/branches/2.1.6/; revision=12042
* Make sure the dict returned from _parse_data() contains all of _known_keys.Zac Medico2008-11-221-0/+3
| | | | | | (trunk r12028) svn path=/main/branches/2.1.6/; revision=12029
* Add missing '%' symbol (for binary package moves) to the key that's displayedZac Medico2008-11-221-1/+1
| | | | | | | by _global_updates(). Thanks to Andrew Gaffney <agaffney@g.o> for reporting. (trunk r12026) svn path=/main/branches/2.1.6/; revision=12027
* Fix some cases in dep_zapdeps() where blocker atoms are inappropriately testedZac Medico2008-11-221-1/+4
| | | | | | | for availablity. Thanks to Jorge Manuel B. S. Vicetto <jmbsvicetto@g.o> for reporting. (trunk r12024) svn path=/main/branches/2.1.6/; revision=12025
* Bug #247776 - Show a warning message if CONFIG_PROTECT is empty. (trunk r12022)Zac Medico2008-11-211-0/+9
| | | | svn path=/main/branches/2.1.6/; revision=12023
* Bug #248059 - Make --depclean more tolerant of invalid atoms in dependenciesZac Medico2008-11-212-7/+14
| | | | | | of packages that will be uninstalled anyway. (trunk r12020) svn path=/main/branches/2.1.6/; revision=12021
* Bug #248059 - In action_depclean(), ignore invalid atoms in deps of packagesZac Medico2008-11-211-1/+4
| | | | | | to be uninstalled. (trunk r12018) svn path=/main/branches/2.1.6/; revision=12019
* In EbuildProcess._start(), don't open the log file during the clean phaseZac Medico2008-11-211-1/+5
| | | | | | | | since the open file can result in an nfs lock on $T/build.log which prevents the clean phase from removing $T. Thanks to Jeremy Olexa <darkside@g.o> for reporting. (trunk r12016) svn path=/main/branches/2.1.6/; revision=12017
* In JobStatusDisplay, always flush the output stream after writing to it.Zac Medico2008-11-211-0/+4
| | | | | | (trunk r12014) svn path=/main/branches/2.1.6/; revision=12015
* When given an ambiguous ebuild name to install, format the list of choicesZac Medico2008-11-211-8/+37
| | | | | | | | in emerge --search format if --quiet mode is not enabled, otherwise just show a brief list. Thanks to Markus Meier <maekke@g.o> for the suggestion. (trunk r12012) svn path=/main/branches/2.1.6/; revision=12013
* Remove inappropriate backslash escaping inside _db_escape_string(). (trunkZac Medico2008-11-201-1/+2
| | | | | | r12010) svn path=/main/branches/2.1.6/; revision=12011
* Inside _parse_data(), don't rely on the magic 22 line count for the flat_listZac Medico2008-11-201-27/+18
| | | | | | | | format, since it doesn't make a significant performance difference and it places an artificial limit on the number of keys that can be stored. (trunk r12008) svn path=/main/branches/2.1.6/; revision=12009
* Bug #247370 - Use a private PORTAGE_TMPDIR for --fetchonly mode in orderZac Medico2008-11-202-8/+15
| | | | | | | | | | | do avoid locking the normal build dir location (similar to bug #245231). The EbuildFetchPretend class is renamed to EbuildFetchonly and it's used for --fetchonly mode regardless of whether --pretend is enabled. Also, fix stdout/stderr flushing in JobStatusDisplay.displayMessage() and portage.spawn() to ensure output always occurs in the correct order when displaying pkg_nofetch() output in --fetchonly mode. (trunk r12006) svn path=/main/branches/2.1.6/; revision=12007
* Remove --fetchonly --resume time.sleep() call which is an artifact from theZac Medico2008-11-191-5/+0
| | | | | | previous parallel-fetch implementation. (trunk r12001) svn path=/main/branches/2.1.6/; revision=12002
* Bug #245716 - When generating QA notices for 'command not found' messages inZac Medico2008-11-191-1/+3
| | | | | | | the build log, exclude messages that are emitted from configure scripts since those are normal in some cases. (trunk r11999) svn path=/main/branches/2.1.6/; revision=12000
* When warning about 'missing repo_name', also give the exact path where theZac Medico2008-11-181-15/+27
| | | | | | | | entry should exist, and explain that it should be a plain text file containing a unique name of the first line. This should give the users enough information to correct the problem without needing to seek help. (trunk r11993:11995) svn path=/main/branches/2.1.6/; revision=11996
* Make serialize_eclasses() sort eclass names. (trunk r11992)Zac Medico2008-11-181-2/+2
| | | | svn path=/main/branches/2.1.6/; revision=11993
* For emerge --metadata runs, update _eclasses_ metadata to insert local eclassZac Medico2008-11-182-19/+40
| | | | | | paths. (trunk r11990) svn path=/main/branches/2.1.6/; revision=11991
* Store the _eclasses_ field instead of INHERITED. (trunk r11986)Zac Medico2008-11-171-8/+0
| | | | svn path=/main/branches/2.1.6/; revision=11987