summaryrefslogtreecommitdiffstats
path: root/pym
Commit message (Collapse)AuthorAgeFilesLines
* Merge slot conflict backtracking from master.Zac Medico2010-10-061-36/+61
| | | | | This include the ability to mask packages that don't satisfy all parent atoms, from commit 9ff5e9731142d389373ea6ebc949919c3b637110.
* Test that SLOT deps don't rebuild multislot.Zac Medico2010-10-061-0/+40
|
* Remove unused variable.Zac Medico2010-10-061-1/+0
|
* Fix _iter_match_pkgs installed multislot breakageZac Medico2010-10-062-7/+11
|
* Use Atom.without_use in _show_unsatisfied_dep().Zac Medico2010-10-061-1/+1
|
* Handle negated atoms in getmaskingreason().Zac Medico2010-10-061-1/+5
|
* Show status when listing pkgs for emerge --regen.Zac Medico2010-10-062-1/+2
|
* Add back --sync IPv4/IPv6 override support.Zac Medico2010-10-061-1/+8
|
* Bug #339642 - Use AF_UNSPEC for --sync addresses.Zac Medico2010-10-061-35/+40
|
* Bug #339642 - Make --sync try all addresses.Zac Medico2010-10-061-3/+2
|
* Add a backtracking test for 'missed updates'.Zac Medico2010-10-061-0/+34
|
* TODO: Make elog 'key' parameter more unique.Zac Medico2010-10-061-0/+9
|
* Make Atom.with_repo() allow wildcard.Zac Medico2010-10-061-1/+2
|
* Fix repo atom breakage in getmaskingreason().Zac Medico2010-10-062-2/+15
|
* Prune circular nested sets from the digraph.Zac Medico2010-10-061-1/+16
| | | | | | | | | | | | | This prevents the following traceback which was reported in forum thread 847007: File "pym/_emerge/depgraph.py", line 3694, in _merge_order_bias mygraph.order.sort(key=cmp_sort_key(cmp_merge_preference)) File "pym/portage/util/__init__.py", line 808, in __lt__ return self._cmp_func(self._obj, other._obj) < 0 File "pym/_emerge/depgraph.py", line 3675, in cmp_merge_preference if node1.operation == 'uninstall': AttributeError: 'SetArg' object has no attribute 'operation'
* Tweak elog message order so python comes first.Zac Medico2010-10-061-1/+5
|
* Ensure repo in atom matches PMS 3.1.5.Zac Medico2010-10-061-1/+1
|
* Fix spelling of depclean test methods.v2.1.9.13Zac Medico2010-10-011-2/+2
|
* Enable depgraph._load_vdb() with --buildpkgonly.Zac Medico2010-10-011-2/+1
| | | | | | The --buildpkgonly option does not negate the need for _load_vdb(), at least not with the --resume option since otherwise the select_pkg_from_graph() method fails to select installed packages.
* Merge findname2/findLicensePath diff from master.Zac Medico2010-09-301-5/+2
|
* Allow missing category with depclean --exclude.Zac Medico2010-09-301-2/+2
|
* Bug #339231 - Return unicode from glsa.getText().Zac Medico2010-09-301-1/+1
|
* Deprecate spawnebuild() with returnpid.Zac Medico2010-09-301-0/+7
|
* Deprecate doebuild() with returnpid.Zac Medico2010-09-301-0/+6
|
* Fix readonly variable assignment for PORTAGE_BINPKG_TMPFILE whenZac Medico2010-09-301-0/+6
| | | | ebuild(1) calls the 'package' phase.
* Tweak depgraph._show_unsatisfied_dep() display for AtomArg instances.Zac Medico2010-09-301-2/+11
|
* remove double prefix in LinkageMapELFFabian Groffen2010-09-301-6/+6
|
* search: code clean upSebastian Luther2010-09-301-19/+13
|
* entries from preserved registry already include EPREFIX, so don't use EROOT ↵Fabian Groffen2010-09-301-1/+1
| | | | on them
* use ROOT iso EROOT with PreservedLibsRegistry, since all entries already ↵Fabian Groffen2010-09-302-6/+6
| | | | have EPREFIX
* use ROOT, not EROOT so we don't get a double prefixFabian Groffen2010-09-301-2/+2
|
* use ROOT, not EROOT so we don't get a double prefixFabian Groffen2010-09-301-3/+3
|
* Get --exclude to work with --depclean and --pruneSebastian Luther2010-09-303-2/+109
| | | | Thanks to forum member 'krinn' for the suggestion
* Fix breakage in depgraph._serialize_tasks() blocker handling dueZac Medico2010-09-301-5/+9
| | | | to addition of repo to Package._hash_key.
* Merge additional backtracking tests from the master branch.v2.1.9.12Zac Medico2010-09-271-0/+72
|
* Bug #337178 - Fix slot conflict backtracking to mask the higherZac Medico2010-09-271-10/+36
| | | | | | | | | | version if appropriate. Generally, we mask the higher version since this solves common cases in which a lower version is needed so that all dependencies will be satisfied (bug #337178). However, if existing_node happens to be installed then we mask that since this is a common case that is triggered when --update is not enabled.
* Toggle private constants for stable branch:Zac Medico2010-09-271-5/+5
| | | | | | | | _ENABLE_DYN_LINK_MAP = False _ENABLE_PRESERVE_LIBS = False _ENABLE_REPO_NAME_WARN = False _ENABLE_SET_CONFIG = False _SANDBOX_COMPAT_LEVEL = "16"
* Revert one more change from bug #337178: parent_atoms is supposedZac Medico2010-09-261-1/+1
| | | | to refer to the new pkg, not the one to_be_masked.
* Revert slot conflict behavior backtracking behavior changes fromZac Medico2010-09-261-5/+6
| | | | | | | | bug #337178 and comment about reasoning for behavior. We always mask existing_node since _select_package tries to avoid slot conflicts when possible and therefore a conflict typically means that existing_node was a poor choice.
* Fix confusing messages shown byZac Medico2010-09-261-6/+6
| | | | | | | | | | | depgraph._show_missed_update_slot_conflicts() since the fix from bug #337178. When depgraph._add_pkg() was fixed to mask the higher version in 4bc78ab0b563697b98527eebcdfe474863383cf0, we didn't adjust the parent_atoms variable so that it would contain parent atoms from the versions being masked. This resulted in confusing messages from depgraph._show_missed_update_slot_conflicts().
* Add PORTAGE_BINHOST sftp protocol support.v2.2_rc87Zac Medico2010-09-252-5/+25
|
* Fix a typo in a comment.Zac Medico2010-09-251-1/+1
|
* Add non-essential backslashes for clarity in GetConfigTestCase.Zac Medico2010-09-251-1/+1
|
* Add test cases for getconfig() bash compatibility with variablesZac Medico2010-09-251-0/+28
| | | | from make.globals.
* Fix varexpand() so that it doesn't do redundant quote removal thatZac Medico2010-09-251-1/+7
| | | | | | | | is already handled by shlex. This fixes a bug in getconfig() which caused it to remove backslash characters it front of quote characters in cases where bash would have preserved them when sourcing the same input.
* Fix BinpkgVerifier so that it doesn't try to rename the file ifZac Medico2010-09-251-1/+3
| | | | it doesn't exist.
* Make MetaDataXML.format_maintainer_string() check a values to makeZac Medico2010-09-251-4/+6
| | | | sure they are non-empty and not just whitespace.
* Implement PORTAGE_BINHOST ssh:// protocol support by spawning sshZac Medico2010-09-251-1/+18
| | | | | | | | | | and using it to stream the Packages file on stdout. This assumes that you have ssh-agent running, for authentication. For now, you won't be able to use this unless you define your own FETCHCOMMAND_SSH and RESUMECOMMAND_SSH values. It's trivial to do this if you create a helper script that calls rsync after transforming the URI into the host:/path format that rsync uses.
* In EbuildPhase, don't display Repository if the value is not available.Zac Medico2010-09-251-1/+2
|
* Move all imports in bintree.py to the top.Zac Medico2010-09-251-22/+14
|