summaryrefslogtreecommitdiffstats
path: root/pym
Commit message (Collapse)AuthorAgeFilesLines
...
* _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
* Add portage.dep.Atom.violated_conditionals()Sebastian Luther2010-05-211-0/+39
|
* _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.
* Use os.environ.get() instead of os.getenv(), to hopefully avoid issuesZac Medico2010-05-201-4/+5
| | | | with python-3.2 reported by Arfrever.
* 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 portage.dep.Atom.unevaluated_atom to not lose the original use dep in ↵Sebastian Luther2010-05-201-2/+10
| | | | Atom.evaluate_conditionals()
* 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
|
* Don't use finally with atomic_ofstream since that prevents it fromZac Medico2010-05-131-12/+6
| | | | aborting when appropriate.
* Add a break_hardlinks parameter for tbz2 recompose methods, and enable itZac Medico2010-05-131-3/+26
| | | | | | | | | | by default. Since bindbapi.aux_update() calls this method, this changes the default behavior for all modifications to binary package metadata. This makes it safe to use hardlinks to create cheap snapshots of the repository, which is useful for solving race conditions on binhosts as described here: http://code.google.com/p/chromium-os/issues/detail?id=3225.
* Define __all__.Zac Medico2010-05-131-1/+6
|
* Use bytes literals in instead of _unicode_encode() where appropriateZac Medico2010-05-131-13/+13
| | | | (works with python-2.6).
* 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.
* Eliminate redundant os.sep in vardbapi.getpath().Zac Medico2010-05-061-1/+1
|
* Eliminate redundant os.sep in vardbapi._bump_mtime. Thanks toZac Medico2010-05-061-1/+3
| | | | grobian for reporting.
* 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.
* Make vardbapi.counter_tick_core() create the counter file's parent directoryZac Medico2010-05-031-0/+3
| | | | | if necessary, in order to avoid FileNotFound error. Thanks to Fabio Erculiani <lxnay@g.o> for reporting.
* 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
|
* Support per-package bashrc files.Michał Górny2010-04-293-3/+6
| | | | | | | Support loading per-package bashrc files from the /etc/portage/env directory. The invidual files should reside in a directory matching ${CATEGORY}, with names matching ${PN}, ${PN}:${SLOT}, ${P} and/or ${PF} (which are applied in that order).
* 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
|
* Fix typo from previous commit.Zac Medico2010-04-281-1/+1
|
* Inside bintree.inject(), discard cached metadata to ensure thatZac Medico2010-04-281-0/+4
| | | | _pkgindex_entry doesn't return stale metadata.
* Remove old portage module namespace compatibility that's been deprecatedZac Medico2010-04-2825-82/+0
| | | | since portage-2.1.6.
* Use shlex_split for splitting PORTDIR_OVERLAY.Zac Medico2010-04-272-17/+18
|
* 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-272-22/+11
| | | | in order to avoid compiling regex for each Package instance.
* Initialize missing_iuse.Zac Medico2010-04-271-0/+1
|
* Revert formatting so chromioumos-overlay won't have to rebaseZac Medico2010-04-271-2/+2
| | | | set_portage_username-2.1.6.13.patch.
* In bintree.inject(), ensure that _pkgindex_entry returns local metadataZac Medico2010-04-271-5/+6
| | | | | rather than remote metadata. Thanks to Kenneth Waters <kwaters@chromium.org> for reporting.
* 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-273-4/+4
|
* --update: don't ignore higher versions because of missing IUSESebastian Luther2010-04-273-6/+19
|
* --update: don't match lower versions if the higher versions have the wrong ↵Sebastian Luther2010-04-271-0/+16
| | | | use config
* Make metadata.xml <flag/> errors non-fatal to repoman.Michał Górny2010-04-241-4/+2
| | | | | | Previously, <flag/>-related errors in metadata.xml caused repoman to abort the checks without even reporting the full path to broken metadata.xml file. Now they are accounted as 'metadata.bad' errors.
* Automatically add PORTAGE_BIN_PATH to the front of PATH.Zac Medico2010-04-221-0/+7
|
* Pass an ElementTree instance into parse_metadata_use() andZac Medico2010-04-111-16/+2
| | | | check_metadata_herds().
* Port parse_metadata_use() code from minidom to ElementTree.Zac Medico2010-04-111-32/+17
|