summaryrefslogtreecommitdiffstats
path: root/pym/emerge
Commit message (Collapse)AuthorAgeFilesLines
...
* Discard "nomerge" nodes to speed up depgraph.altlist() since those nodes ↵Zac Medico2007-06-281-0/+3
| | | | | | aren't used and the --tree algorithm does a good job of regenerating them when appropriate. svn path=/main/trunk/; revision=7067
* Just use a containment test for matching pprovided args since it works ↵Zac Medico2007-06-281-3/+1
| | | | | | correctly and match_to_list() isn't appropriate for this. svn path=/main/trunk/; revision=7065
* Cache aux_get() metadata in depgraph.create() and use PROVIDE for matching ↵Zac Medico2007-06-281-33/+34
| | | | | | packages to arguments. svn path=/main/trunk/; revision=7064
* Improve tracking of correspondence between arguments and packages in the ↵Zac Medico2007-06-271-5/+40
| | | | | | depgraph. svn path=/main/trunk/; revision=7063
* Instead of just a list, use a cat/pkg dict for matching packages against ↵Zac Medico2007-06-271-6/+12
| | | | | | args in the depgraph. svn path=/main/trunk/; revision=7061
* For bug #142473, account for $ROOT when deciding if a package is part of ↵Zac Medico2007-06-271-1/+1
| | | | | | world or not. svn path=/main/trunk/; revision=7059
* For bug #144333, add a --reinstall=changed-use option which behaves similar ↵Zac Medico2007-06-271-12/+29
| | | | | | to how --newuse behaved in portage-2.0.x days. svn path=/main/trunk/; revision=7052
* Send the ebuild die message through eerror and make sure that elog_process() ↵Zac Medico2007-06-271-1/+2
| | | | | | gets called when an ebuild dies. This makes the elog echo module display the die message last in case other elog messages push the original die message off of the top of the screen. svn path=/main/trunk/; revision=7047
* For bug #183167, explicitly call elog_process() when --buildpkgonly is enabled.Zac Medico2007-06-251-0/+3
| | | | svn path=/main/trunk/; revision=7034
* For bug #142473, add 4 color classes corresponding to combinations of ↵Zac Medico2007-06-251-16/+26
| | | | | | world/merge/nomerge attributes of each package. svn path=/main/trunk/; revision=7031
* Fix typo.Zac Medico2007-06-251-1/+1
| | | | svn path=/main/trunk/; revision=7029
* Use a set to optimize containment lookups.Zac Medico2007-06-241-1/+1
| | | | svn path=/main/trunk/; revision=7008
* For bug #180706, add sorting and a trailing newline in the rest of the cases ↵Zac Medico2007-06-241-1/+1
| | | | | | where the world file is written. svn path=/main/trunk/; revision=6999
* highlight world packages in --pretend output (bug #142473)Marius Mauch2007-06-231-7/+15
| | | | svn path=/main/trunk/; revision=6979
* sort the world file before writing it and ensure that it's terminated by a ↵Marius Mauch2007-06-231-3/+5
| | | | | | newline svn path=/main/trunk/; revision=6976
* syntax errorMarius Mauch2007-06-231-1/+1
| | | | svn path=/main/trunk/; revision=6974
* Allow sync for unpriviledges users if they have write access to $PORTDIRMarius Mauch2007-06-231-3/+3
| | | | svn path=/main/trunk/; revision=6973
* Revert r6967 since shutil.move() is broken internally.Zac Medico2007-06-231-5/+2
| | | | svn path=/main/trunk/; revision=6970
* For bug #182964, replace os.rename() with shutil.move() in order to handle ↵Zac Medico2007-06-231-2/+5
| | | | | | EXDEV errors that are triggered by layered filesystems. svn path=/main/trunk/; revision=6967
* Make elog finalize() handling safe for PORTAGE_CONFIGROOT.Zac Medico2007-06-221-5/+2
| | | | svn path=/main/trunk/; revision=6955
* Dump mod_echo elog output inside post_emerge(), just before the other ↵Zac Medico2007-06-221-0/+8
| | | | | | notifications that happen at exit. svn path=/main/trunk/; revision=6953
* Remove lots of unnecessary list generation via dict.keys().Zac Medico2007-06-211-8/+8
| | | | svn path=/main/trunk/; revision=6911
* Don't generate a list of keys for a containment test.Zac Medico2007-06-211-1/+1
| | | | svn path=/main/trunk/; revision=6909
* Don't call digraph.hasallzeros() in --resume mode because the digraph isn't ↵Zac Medico2007-06-211-5/+5
| | | | | | currently populated in that case. svn path=/main/trunk/; revision=6907
* Use the the optparse options for --ignore-default-opts since that allows ↵Zac Medico2007-06-201-1/+1
| | | | | | option abreviation to work. svn path=/main/trunk/; revision=6890
* Show a "world problems" warning for packages that aren't installed, even if ↵Zac Medico2007-06-201-1/+1
| | | | | | they are available. svn path=/main/trunk/; revision=6887
* Make all the classes inherit from object.Zac Medico2007-06-201-2/+2
| | | | svn path=/main/trunk/; revision=6886
* If a package is in the world set but it's not installed, go ahead and ↵Zac Medico2007-06-201-4/+16
| | | | | | install it if it's available (instead of telling the user to run emaint). svn path=/main/trunk/; revision=6883
* 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
* Pass existing portdbapi and vardbapi instances into the NewsManager constructor.Zac Medico2007-06-131-7/+11
| | | | 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
* 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-071-2/+12
| | | | | | 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-071-1/+1
| | | | | | 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
* 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
* Improve support for slot deps atoms given on the command line. Thanks to ↵Zac Medico2007-06-041-2/+5
| | | | | | Flameeyes for reporting. svn path=/main/trunk/; revision=6730
* Add --getbinpkg digest verification.Zac Medico2007-06-011-3/+26
| | | | svn path=/main/trunk/; revision=6709
* Make automatic "global updates" always use the config instance that's ↵Zac Medico2007-05-311-2/+2
| | | | | | associated with /, since the rest of the code is targeted at /. svn path=/main/trunk/; revision=6687
* Only check ChangeLog if we're dealing with an ebuild (bug #170604)Marius Mauch2007-05-311-2/+6
| | | | svn path=/main/trunk/; revision=6685
* For bug #61732, support -flag in USE (instead of just +flag). Given the ↵Zac Medico2007-05-301-1/+1
| | | | | | current default USE_ORDER, -flag in IUSE has no effect. svn path=/main/trunk/; revision=6671
* For bug #180009, add a PORTAGE_RSYNC_INITIAL_TIMEOUT config variable. The ↵Zac Medico2007-05-281-2/+10
| | | | | | default is 15 seconds and it can be disabled by setting it to 0. svn path=/main/trunk/; revision=6650
* For bug #180079, fix a KeyError so that a search for the empty string will ↵Zac Medico2007-05-281-2/+2
| | | | | | go ahead and match all packages. svn path=/main/trunk/; revision=6648
* Pass a temporary file name to the package phase in the environment variable ↵Zac Medico2007-05-231-1/+6
| | | | | | 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
* Update /Packages as each package is built (MD5 is done here since it won't ↵Zac Medico2007-05-231-2/+1
| | | | | | hurt performance). svn path=/main/trunk/; revision=6586
* 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
* Only show extra whitespace where there are some news items to display.Zac Medico2007-05-181-4/+6
| | | | svn path=/main/trunk/; revision=6551