summaryrefslogtreecommitdiff
Commit message (Collapse)AuthorAgeFilesLines
* Make --deselect work for sets (bug 268798)Sebastian Luther2010-05-273-14/+20
|
* emerge --help: Add --ignore-default-opts (closes bug 246491)Sebastian Luther2010-05-271-0/+8
|
* Add _emerge.Package.iuse.get_missing_iuse to return missing IUSE flags. ↵Sebastian Luther2010-05-252-2/+15
| | | | Restore original behavior of is_valid_flag.
* _emerge.depgraph._show_unsatisfied_dep(): Do an ealier missing IUSE check ↵Sebastian Luther2010-05-251-10/+7
| | | | and simplify some related code
* _emerge.Package.iuse.is_valid_flags should return a list of flags missing ↵Sebastian Luther2010-05-251-2/+3
| | | | from IUSE
* Simplify code by passing a list of flags to Package.iuse.is_valid_flagSebastian Luther2010-05-251-5/+1
|
* Allow _emerge.Package.iuse.is_valid_flag() to take a list of flagsSebastian Luther2010-05-251-4/+9
|
* _emerge.depgraph._show_unsatisfied_dep(): properly check if something ↵Sebastian Luther2010-05-251-1/+1
| | | | belongs into missing_use
* Make parent_use parameter for portage.dep.Atom.violated_conditionals() ↵Sebastian Luther2010-05-251-3/+2
| | | | optional (for evaluated atoms)
* Fix traceback in _show_unsatisfied_dep, reported on forums:Zac Medico2010-05-251-1/+2
| | | | | | | | http://forums.gentoo.org/viewtopic-t-829445.html?sid=58b3b5cec88b8e2ffebc9991c90a473e File "/usr/lib/portage/pym/_emerge/depgraph.py", line 2273, in _show_unsatisfied_dep if not (violated_atom.use.enabled or violated_atom.use.disabled): AttributeError: 'NoneType' object has no attribute 'enabled'
* _emerge.depgraph._show_slot_collision_notice(): Improve atom list prunningSebastian Luther2010-05-221-6/+12
|
* _emerge.depgraph._show_unsatisfied_dep(): Suggest changing USE on the parent ↵Sebastian Luther2010-05-211-1/+29
| | | | if possible
* _emerge.Package.__str__(): handle operation==uninstallSebastian Luther2010-05-211-0/+6
|
* Fix depgraph.schedulerGraph() to break DepPriority.satisfied attributesZac Medico2010-05-201-0/+10
| | | | which reference installed Package instances.
* If a dependency is installed but masked, try to pull in an unmasked versionZac Medico2010-05-201-4/+23
| | | | even when --deep is not specified. Thanks to Daniel Robbins for reporting.
* Make the non --update package selection logic avoid installed packages ifZac Medico2010-05-201-1/+5
| | | | they are masked. Thanks to Daniel Robbins for reporting.
* Make the non --update package selection logic avoid installed packages ifZac Medico2010-05-201-1/+1
| | | | they are masked. Thanks to Daniel Robbins for reporting.
* Use Atom.unevaluated_atom in depgraph._show_slot_collision_notice()Sebastian Luther2010-05-201-1/+1
|
* Add _emerge.Package.__str__() for nicer output formattingSebastian Luther2010-05-201-0/+28
|
* Support specifying exclude list as multiple arguments.Michał Górny2010-05-192-3/+3
| | | | | | | Instead of relying on user to provide the whole exclude list as a space-separated list in a single argument (which is uncomfortable), allow him/her to specify '--exclude' multiple times, joining the provided atom lists together.
* Only count "merge" nodes when determining whether or not to triggerZac Medico2010-05-161-1/+1
| | | | parallel-fetch.
* Fix --resume to support --exclude.Zac Medico2010-05-151-0/+4
|
* Add missing newline from previous commit.Zac Medico2010-05-061-1/+1
|
* Bug #317775 - In depgraph.display() use writemsg_stdout() to avoidZac Medico2010-05-061-7/+4
| | | | UnicodeEncodeError.
* Make myopts["--exclude"] a plain string in order to avoid issues with mtimedbZac Medico2010-05-052-3/+5
| | | | unpickling.
* Make --exclude use whitespace to separate atoms since atoms are typicallyZac Medico2010-05-042-3/+3
| | | | separated by whitespace.
* Use keep_going local var.Michał Górny2010-05-031-1/+1
| | | | Use keep_going local var instead of checking self.myopts once again.
* Allow -C to remove packages referenced by sets in world_setsSebastian Luther2010-04-291-10/+3
|
* Bail out immediately if --exclude is given a bad atom.Zac Medico2010-04-291-2/+2
|
* Tweak packages_with_invalid_use_config handling:Zac Medico2010-04-291-4/+8
| | | | | | * Ignore IUSE since those can't be changed by the user. * Only add unbuilt ebuilds to the list since USE can't be changed for built ebuilds.
* Add --exclude optionSebastian Luther2010-04-293-0/+66
|
* Use is_valid_flag.Zac Medico2010-04-271-2/+1
|
* Add a Package.iuse.is_valid_flag() method to replace the regex attribute,Zac Medico2010-04-271-20/+9
| | | | in order to avoid compiling regex for each Package instance.
* Initialize missing_iuse.Zac Medico2010-04-271-0/+1
|
* Check USE deps all in one place (and fix some bugs).Zac Medico2010-04-271-17/+18
|
* Add a comment about special USE deps handling which is required in order toZac Medico2010-04-271-0/+3
| | | | avoid missing updates.
* Make iuse_implicit_re private for now.Zac Medico2010-04-271-1/+1
|
* --update: don't ignore higher versions because of missing IUSESebastian Luther2010-04-271-1/+12
|
* --update: don't match lower versions if the higher versions have the wrong ↵Sebastian Luther2010-04-271-0/+16
| | | | use config
* Implement REPLACING_VERSIONS and REPLACED_BY_VERSIONSebastian Luther2010-04-101-1/+2
|
* Use tbz2.unpackinfo() to unpack the xpak when running pkg_pretend, since weZac Medico2010-04-071-7/+4
| | | | need evironment.bz2 to get unpacked here.
* In _run_pkg_pretend(), write ebuild bytes from tbz2.getfile() in binary modeZac Medico2010-04-071-1/+1
| | | | for python3 compatibility.
* Eliminate redundant code in Scheduler._run_pkg_pretend() and remove unusedZac Medico2010-04-071-44/+19
| | | | quiet_config variables.
* Handle pkg_pretend output properlySebastian Luther2010-04-071-15/+45
|
* Cleanup $T earlier to prevent old messages from being displayed - bug 279041Sebastian Luther2010-04-062-3/+4
|
* Implement emerge part of pkg_pretendSebastian Luther2010-04-021-1/+83
|
* Allow running pkg_info on non-installed packagesSebastian Luther2010-03-312-20/+98
|
* Add DEFINED_PHASES to the dbapi caches and _emerge.Package.metadataSebastian Luther2010-03-301-1/+6
|
* If portage.VERSION == HEAD then use a proxy to lazily call git describe --tagsZac Medico2010-03-271-1/+2
| | | | if it's accessed.
* Process help and version actions asap. Thanks to Brian Harring.Zac Medico2010-03-261-9/+10
|