summaryrefslogtreecommitdiffstats
path: root/pym
Commit message (Collapse)AuthorAgeFilesLines
* Fix parallel-fetch output by BinpkgVerifier.Zac Medico2010-10-152-3/+10
| | | | | BinpkgVerifier was erroneusly sending parallel-fetch output to stdout. Thanks to Jeremy Olexa <darkside@g.o> for reporting.
* Optimize uninstall selection more.Zac Medico2010-10-151-0/+5
|
* Optimize uninstall selection in serialize_tasks.Zac Medico2010-10-151-4/+11
| | | | | | This increases performance dramatically in cases when there are hundreds of blockers to solve, like when when upgrading to a new slot of kde-meta.
* Prefer ~ and =* atoms in missed update display.Zac Medico2010-10-151-2/+2
| | | | | Hopefully this helps for bug #340983, similar to how it did for bug #291142.
* Add a simpler non-working use_reduce test.Zac Medico2010-10-151-0/+5
|
* Add non-working use_reduce tests.Zac Medico2010-10-151-0/+14
|
* Fix use_reduce() case from bug #340973.Zac Medico2010-10-152-8/+10
|
* Add test case for bug #340973.Zac Medico2010-10-151-1/+7
|
* Ensure getaddrinfo fallback works when necessary.v2.1.9.18Zac Medico2010-10-131-5/+6
|
* Bug #340899 - Validate getaddrinfo() results.Zac Medico2010-10-132-8/+50
|
* Show hostname when getaddrinfo fails.v2.1.9.17Zac Medico2010-10-131-1/+1
|
* Fix reference to possibly undefined ips variable.Zac Medico2010-10-131-1/+1
|
* Bug #340817 - Handle --sync getaddrinfo failure.Zac Medico2010-10-131-23/+30
|
* Allow repository specs for atoms with wildcardsSebastian Luther2010-10-132-2/+12
|
* Merge backtracking test diff from master.Zac Medico2010-10-111-1/+3
|
* has/best_version: eqawarn if EAPI wrong for atomZac Medico2010-10-112-8/+46
| | | | | Instead of calling die as in bug #340387, just call eqawarn for the time being.
* Fix a typo in a comment.Zac Medico2010-10-111-1/+1
|
* slot collision handler: Prevent excessive running timeSebastian Luther2010-10-111-0/+9
| | | | | | | The number of configurations to check grows exponentially in the number of conflict_pkgs. To prevent excessive running times, only check the "all-ebuild" configuration, if the number of conflict packages is too large.
* Fix breakage in emerge -b option parsing.Zac Medico2010-10-111-0/+1
|
* Update testGetConfig for 3 wget retries.Zac Medico2010-10-111-1/+1
|
* depgraph: Remove obsolete 'Missing binary' code.Zac Medico2010-10-111-12/+1
|
* Recognize += in RDEPEND.implicit check.Zac Medico2010-10-111-1/+1
| | | | Thanks to Tomas Chvatal <scarabeus@g.o> for reporting.
* Fix typos in comments.Arfrever Frehtes Taifersar Arahesis2010-10-111-1/+1
|
* Add support for emerge --buildpkg=n.Zac Medico2010-10-112-3/+16
|
* Use EAPI to validate best/has_version atoms.Zac Medico2010-10-111-1/+1
|
* Remove unused _preserve_logentries code.v2.1.9.14Zac Medico2010-10-071-9/+2
|
* Fix _preload_elog_modules() call.Zac Medico2010-10-071-1/+1
|
* Preserve elog message continuity during updates.Zac Medico2010-10-073-8/+15
|
* Add a _preload_elog_modules() function.Zac Medico2010-10-072-2/+16
|
* Preserve message continuity in elog_process().Zac Medico2010-10-072-4/+9
|
* Fix --sync maxretries calculation.Zac Medico2010-10-071-1/+1
|
* Calculate maxretries before len(ips) changes.Zac Medico2010-10-071-3/+4
|
* Use PORTAGE_TMPDIR if necessary for usersync.Zac Medico2010-10-071-7/+13
| | | | | Bug #340046 - Don't require PORTAGE_TMPDIR access for --sync unless it's really necessary.
* Report len(ips) as max retry count for --sync.Zac Medico2010-10-071-2/+7
|
* Fix spelling of 'wildcards' in --exclude error.Zac Medico2010-10-071-1/+1
|
* Revert "Handle negated atoms in getmaskingreason()."Zac Medico2010-10-061-5/+1
| | | | | | There's really no need for a special case here since they can be treated like normal atoms that don't match the atom that's being searched for. This reverts commit 76b4a2fdd777f7203428a9c8a5a0c434fff55252.
* Add FifoIpcDaemon._reopen_input() method.Zac Medico2010-10-062-9/+14
|
* Bug #339976 - Suppress fifo POLLHUP events.Zac Medico2010-10-061-0/+11
|
* 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
|