summaryrefslogtreecommitdiffstats
path: root/pym
Commit message (Collapse)AuthorAgeFilesLines
* Remove unused filter_phases, filter_mergephases, and filter_unmergephasesv2.2_rc56Zac Medico2009-12-071-20/+0
| | | | | | functions. svn path=/main/trunk/; revision=14958
* Remove unnecessary elog_process() phasefilter arguements.Zac Medico2009-12-071-6/+3
| | | | svn path=/main/trunk/; revision=14957
* Make more code conditional on existence of PORTAGE_BUILDDIR insideZac Medico2009-12-071-15/+16
| | | | | | dblink._merge(). svn path=/main/trunk/; revision=14955
* Inside dblink._merge(), make sure PORTAGE_BUILDDIR still exists before tryingZac Medico2009-12-071-10/+16
| | | | | | | to call ebuild success/die hooks, since it might have already been removed by fail-clean (and the hooks would have already been called). svn path=/main/trunk/; revision=14953
* Fix possibly unsafe modification of list during iteration insideZac Medico2009-12-071-1/+1
| | | | | | update_config_files(). svn path=/main/trunk/; revision=14951
* Bug #295715 - Implement a register_success_hook function to complementZac Medico2009-12-065-22/+70
| | | | | | | register_die_hook, and also add code to ensure the die hooks are called even when the failure is on the python side (like for file collisions). svn path=/main/trunk/; revision=14936
* Add 'tla' to the lists of live eclasses.Zac Medico2009-12-061-1/+2
| | | | svn path=/main/trunk/; revision=14935
* Fix _spawn_misc_sh() to properly unset EBUILD_PHASE, and add a 'phase'Zac Medico2009-12-061-4/+5
| | | | | | description parameter for use in messages. svn path=/main/trunk/; revision=14934
* Add a AbstractEbuildProcess class for MiscFunctionsProcess to inherit theZac Medico2009-12-063-23/+34
| | | | | | _pipe and _can_log methods that used to be in the EbuildProcess class. svn path=/main/trunk/; revision=14933
* Use portage.StringIO to avoid duplicate import fallback code.Zac Medico2009-12-063-22/+3
| | | | svn path=/main/trunk/; revision=14931
* Move code for handling missing sandbox binary out of the config constructor.Zac Medico2009-12-061-15/+18
| | | | svn path=/main/trunk/; revision=14930
* Bug #295805 - Fix ValueError with python3 inside update_config_files().Zac Medico2009-12-051-4/+9
| | | | svn path=/main/trunk/; revision=14929
* Bug #162404 - Automatically disable logging if sesandbox is enabled and aZac Medico2009-12-053-4/+30
| | | | | | | pty is not available for some reason (currently they are never available with python3). svn path=/main/trunk/; revision=14928
* Always append QA Notices resulting from the build log search to the end ofZac Medico2009-12-052-5/+37
| | | | | | the log. Thanks to Diego E. Pettenò for reporting. svn path=/main/trunk/; revision=14927
* Bug #280336, comment #2 - Clear the package selection cache when packagesv2.2_rc55Zac Medico2009-12-031-0/+1
| | | | | | | are added to the graph. This fixes incorrect choices that happen in some cases. svn path=/main/trunk/; revision=14922
* Bug #295351 - Make update_dbentries() return unicode if it's given unicode,Zac Medico2009-12-021-3/+7
| | | | | | and bytes if it's given bytes. svn path=/main/trunk/; revision=14921
* Fix deprecated usage of dep_getkey(). Thanks to Sebastian Mingramm (few)v2.2_rc54Zac Medico2009-11-281-2/+2
| | | | | | for reporting. svn path=/main/trunk/; revision=14915
* Bug #294945 - Fix blocker satistfied state handling inside depgraph, toZac Medico2009-11-281-4/+10
| | | | | | avoid a KeyError when displaying blockers. svn path=/main/trunk/; revision=14914
* Revert r14901 since it doesn't solve the problem (bug #294945).Zac Medico2009-11-281-5/+1
| | | | svn path=/main/trunk/; revision=14913
* In FakeVartree.sync(), skip the aux_get wrapper when populating old-stylev2.2_rc53Zac Medico2009-11-271-1/+7
| | | | | | | virtuals, in order to avoid unwanted cache generation with --nodeps (reported by Arfrever). svn path=/main/trunk/; revision=14909
* Handle a KeyError in depgraph._ordered_tree_display(), reported on irc byZac Medico2009-11-271-1/+5
| | | | | | romildo. svn path=/main/trunk/; revision=14901
* Add a note about lack of nanosecond precision in movefile().Zac Medico2009-11-271-0/+3
| | | | svn path=/main/trunk/; revision=14900
* In calc_depclean(), load the FakeVartree before using it. This fixesZac Medico2009-11-271-1/+1
| | | | | | | a regression which causes incomplete graph creation (since r14773). Thanks to Vlastimil Babka <caster@g.o> for reporting. svn path=/main/trunk/; revision=14899
* Fix logic from previous commit so it only applies when a 'newmtime' parameterZac Medico2009-11-271-3/+5
| | | | | | has not been specified (this is always the case when called by portage). svn path=/main/trunk/; revision=14898
* In movefile(), skip os.utime() when os.rename() succeeds, in order toZac Medico2009-11-261-0/+2
| | | | | | completely preserve mtime resolution. svn path=/main/trunk/; revision=14897
* Set built=True when creating Package instances. This fixes a problem withv2.2_rc52Zac Medico2009-11-251-1/+1
| | | | | | --resume, reported by Sebastian Mingramm (few). svn path=/main/trunk/; revision=14886
* Add a test case which simply compiles all modules, useful for testing syntaxZac Medico2009-11-233-0/+23
| | | | | | compatibility with the current version of python. svn path=/main/trunk/; revision=14876
* Bug #293614 - When the backtracking limit is reached and there is a SLOTZac Medico2009-11-231-0/+8
| | | | | | | conflict to display, hint that a larger --backtrack value might solve the conflict automatically. svn path=/main/trunk/; revision=14875
* Add "repository" attribute to CategorySet (revert r11597). Thanks to TGLZac Medico2009-11-221-2/+11
| | | | | | <tom.gl@free.fr> for this patch, posted on bug #291414. svn path=/main/trunk/; revision=14874
* Bug #293998 - Use OSError.errno instead of trying to subscript the exceptionZac Medico2009-11-221-4/+2
| | | | | | | when handling errno.EXDEV in movefile(), since exceptions do not support subscripting in python3. svn path=/main/trunk/; revision=14873
* Optimized the code for bug #288083 and make it handle more cases. Now Packagev2.2_rc51Zac Medico2009-11-214-97/+116
| | | | | | | instances have 'visible' and 'masks' attributes, since this information needs to be accessed in more places now. svn path=/main/trunk/; revision=14859
* Tweak logic from previous commit.Zac Medico2009-11-211-4/+4
| | | | svn path=/main/trunk/; revision=14858
* In depgraph._serialize_tasks(), ensure that unsolvable blockers can't beZac Medico2009-11-211-1/+3
| | | | | | accidentally marked as satisfied. svn path=/main/trunk/; revision=14857
* Fix blocker display to work properly with --tree --unordered-display.Zac Medico2009-11-211-10/+10
| | | | svn path=/main/trunk/; revision=14856
* Fix depgraph._prune_tree_display() to preserve uninstall tasks. Thanks toZac Medico2009-11-201-1/+1
| | | | | | Jonathan Callen <abcd@g.o> for reporting. svn path=/main/trunk/; revision=14855
* Bug #293730 - Fix bad || choices triggered in some cases insideZac Medico2009-11-201-1/+4
| | | | | | _dep_check_composite_db._visible() when --update is not enabled. svn path=/main/trunk/; revision=14854
* Disable backtracking in the depgraph constructor call when appropriate.Zac Medico2009-11-201-1/+1
| | | | svn path=/main/trunk/; revision=14853
* Bug #293603 - Blacklist EPREFIX and EROOT variables, in addition to ED.Zac Medico2009-11-201-1/+2
| | | | svn path=/main/trunk/; revision=14852
* Bug #293603 - Add $ED to the blacklist, to prevent interference with relatedZac Medico2009-11-191-1/+1
| | | | | | prefix code in eclasses and ebuilds. svn path=/main/trunk/; revision=14851
* Check for updates masked by license for any installed packages that have beenZac Medico2009-11-171-2/+3
| | | | | | added to the graph (regardless of --deep or --complete-graph).. svn path=/main/trunk/; revision=14845
* Bug #293448 - Fix TypeError when sending mail with python3, triggered by thisZac Medico2009-11-171-1/+3
| | | | | | | issue: http://bugs.python.org/issue6521. Thanks to Albert W. Hopkins <marduk@python.net> for this patch. svn path=/main/trunk/; revision=14844
* In the code from bug #288083, only show one LICENSE masking message per slot.Zac Medico2009-11-151-0/+4
| | | | svn path=/main/trunk/; revision=14823
* Bug #288083 - Always warn about installed packages masked by license, sinceZac Medico2009-11-152-7/+53
| | | | | | | | the user likely wants to adjust ACCEPT_LICENSE. For updates masked by license, warn if --complete-graph or --deep is given, since otherwise it is likely a waste of time. svn path=/main/trunk/; revision=14822
* Bug #291200 - Make --quiet-build set PORTAGE_QUIET=1, so that --unmerge isZac Medico2009-11-141-1/+1
| | | | | | quiet. svn path=/main/trunk/; revision=14821
* Inside LinkageMap.rebuild(), ensure that all preserved libraries have anZac Medico2009-11-131-0/+13
| | | | | | | | entry in self._obj_properties, even when they fail to appear in scanelf output. This is important in order to prevent findConsumers from raising an unwanted KeyError. svn path=/main/trunk/; revision=14820
* Bug #292820 - Make the Package constructor handle invalid SLOT values.Zac Medico2009-11-121-2/+4
| | | | svn path=/main/trunk/; revision=14819
* Bug #292910 - Don't mix print() and writemsg_stdout(), in order to avoidZac Medico2009-11-121-12/+16
| | | | | | buffering issues. svn path=/main/trunk/; revision=14818
* Implement dblink.__hash__ and __eq__, so that `portageq owners` correctly groupsZac Medico2009-11-121-1/+9
| | | | | | | search results. Also, increase iter_owners dblink cache size from 25 to 100 instances. svn path=/main/trunk/; revision=14817
* Add setup phases to the tail of the merge queue instead of the front, sinceZac Medico2009-11-121-1/+1
| | | | | | | | otherwise when merging binary packages we sometimes tend to get a large number of setup phases flooding the queue and preventing queued installs from running. svn path=/main/trunk/; revision=14816
* Inside iter_owners, only cache a maximum of 25 dblink instances, in orderZac Medico2009-11-111-0/+6
| | | | | | to avoid potentially running out of memory. svn path=/main/trunk/; revision=14815