summaryrefslogtreecommitdiffstats
path: root/pym
Commit message (Collapse)AuthorAgeFilesLines
* Let use_reduce and Atom do EAPI checksSebastian Luther2010-08-265-73/+56
|
* Fix UnboundLocalError for y on line 177 in _expand_new_virtuals()Zac Medico2010-08-261-1/+1
|
* Remove obsolete TODO comment.Zac Medico2010-08-251-3/+0
|
* Tweak grammar for unknown-features-warn message.Zac Medico2010-08-251-1/+1
|
* Use EAPI.incompatible repoman category for REQUIRED_USE setting inZac Medico2010-08-251-1/+1
| | | | EAPI that does not support it.
* Make Package._validate_deps() use check_required_use() to validateZac Medico2010-08-251-5/+15
| | | | REQUIRED_USE.
* Just raise InvalidDependString in cases when it shouldn't happen sinceZac Medico2010-08-251-11/+7
| | | | | the package is not installed and it should have been validated and masked already if necessary.
* Make _get_masking_status() return masking reasons for installed packagesZac Medico2010-08-251-11/+9
| | | | | | | with invalid metadata, and remove show_invalid_depstring_notice() calls for installed packages since depgraph.display_problems() will now show the invalid metadata masking reasons when it displays installed packages that are masked.
* Bug #334365 - Fix depgraph._wrapped_select_pkg_highest_available_imp()Zac Medico2010-08-251-4/+20
| | | | | | to avoid invalid or masked installed packages when necessary. This is especially important for invalid packages since they need be replaced so that their dependencies can be parsed for --depclean operations.
* Make Package._validate_deps() check USE conditionals in SRC_URI.Zac Medico2010-08-251-1/+2
|
* Bug #334365 - Mask packages with invalid metadata as early as possible,Zac Medico2010-08-252-14/+73
| | | | | | so that the depgraph won't select them unless they are already installed and there is no other choice. This should trigger automatic reinstallation of installed packages that have invalid metadata.
* Use a PORTAGE_SIGPIPE_STATUS variable to export 128 + SIGPIPE to theZac Medico2010-08-252-3/+10
| | | | | ebuild environment. SIGPIPE is typically 13, but its better not to assume that.
* Bug #334365 - When parsing dependencies of installed packages inZac Medico2010-08-251-2/+27
| | | | | | | | | | | depgraph._add_pkg_deps(), ignore invalid USE conditionals, since these are a common problem and it's practical to ignore them for installed packages. TODO: For installed package, save any InvalidDependString info in dynamic_config and wait until display_problems() to show it. For packages that aren't installed, we should validate and mask them before they are selected.
* show_invalid_depstring_notice: Don't repeat the dep stringSebastian Luther2010-08-251-1/+1
|
* Remove portage.usedefaults since it's broken by the previous commit.Zac Medico2010-08-252-4/+1
|
* config: Move handling of USE related config files into UseManagerSebastian Luther2010-08-252-116/+169
|
* Fix fragile sets config file path handling for for ResolverPlaygroundZac Medico2010-08-251-3/+3
| | | | and remove unecessary setconfig_fallback() usage.
* Fix WorldSelectedSet.singleBuilder() to use EROOT.Zac Medico2010-08-251-1/+1
|
* Add EROOT support to setconfig_fallback().Zac Medico2010-08-251-1/+1
|
* Add EROOT support to the @module-rebuild package set.Zac Medico2010-08-251-0/+2
|
* When parsing package.env, pass the same tolerant and allow_sourcingZac Medico2010-08-241-1/+4
| | | | arguments to getconfig() that are used when parsing make.conf.
* Use deepcopy for LicenseManger, since I remove clone support from thev2.2_rc69Zac Medico2010-08-241-1/+3
| | | | constructor.
* Use open() instead of file(), for python3.Zac Medico2010-08-241-2/+2
|
* Tests: Add LicenseManager testsSebastian Luther2010-08-241-0/+68
|
* ExtendedAtomDict: Add __eq__Sebastian Luther2010-08-241-0/+5
|
* ResolverPlayground: Add ability to create config files and setsSebastian Luther2010-08-241-32/+98
|
* Remove LicenseManager.__deepcopy__() since the default implementationZac Medico2010-08-241-14/+0
| | | | seems to work fine.
* Implement LicenseManager.__deepcopy__().Zac Medico2010-08-242-15/+20
|
* Fix imports in _config submodules.Zac Medico2010-08-242-2/+2
|
* Bug #334319 - Don't call config.backup_changes("FEATURES") because it'sZac Medico2010-08-241-2/+0
| | | | | no longer needed and it causes problems with environment overrides of FEATURES.
* * Make dblink instantiate the ConfigProtect object on demand instead ofZac Medico2010-08-241-6/+18
| | | | | | in the constructor, since it triggers lots of stat calls and it's wasteful for iter_owners. * Fix dblink ConfigProtect construction to use EROOT.
* Bug #334265 - Fix AttributeError triggered by empty herd element inZac Medico2010-08-241-1/+1
| | | | check_metadata_herds().
* More _pkg_use_enabled fixesSebastian Luther2010-08-243-46/+50
|
* Atom.violated_conditionals: Always treat deps as violated if the flag is not ↵Sebastian Luther2010-08-242-0/+31
| | | | in IUSE
* Bug #334253 - Fix breakage in FEATURES=test-fail-continue logic.Zac Medico2010-08-241-1/+5
|
* config: Move _prune_incremental to helperSebastian Luther2010-08-242-23/+23
|
* config: Move features_set into its own fileSebastian Luther2010-08-242-63/+72
|
* config: Split out LicenseManager and helperSebastian Luther2010-08-244-219/+303
|
* ExtendedAtomDict: Add __delitem__Sebastian Luther2010-08-241-0/+6
|
* Make config.setcpv() trigger regenerate() if the package from theZac Medico2010-08-231-0/+8
| | | | | | previous setcpv call had package.env settings which modified FEATURES. This ensures that self.features is accurate (hopefully solving the issue in bug #44796, comment #77).
* Handle SIGPIPE when unpack() extracts tar files through a pipe (bug #309001).Zac Medico2010-08-231-1/+3
| | | | | | | When checking ${PIPESTATUS[@]} for extraction of tar files in unpack(), use a new assert_sigpipe_ok() function which behaves the same as the existing assert() function except that it tolerates pipe writers being killed by SIGPIPE.
* * Use iterators instead of keys() when possible.Zac Medico2010-08-231-8/+8
| | | | | | * Use iterators instead of sets for set.intersection() calls. * Use digraph.__iter__ and __contains__ as shortcuts to digraph.nodes access.
* In depgraph._select_pkg_highest_available_imp(), make sureZac Medico2010-08-231-1/+2
| | | | | allow_unstable_keywords is True before adding a package to _needed_unstable_keywords.
* Pass a keyword hint from getmaskingstatus() to the autounmask code.Zac Medico2010-08-232-7/+24
|
* use_reduce: Give a hint to IUSE in the 'use flag '%s' is not referencable in ↵Sebastian Luther2010-08-231-1/+2
| | | | conditional' error
* Add 'candy' to SUPPORTED_FEATURES.Zac Medico2010-08-231-1/+1
|
* Make recursive grablines() ignore the same directories asZac Medico2010-08-233-6/+9
| | | | portage.listdir(), and do the same for update_config_files().
* Bug #309907 - Update more config files for package moves:Zac Medico2010-08-221-2/+6
| | | | package.accept_keywords, package.env, and package.properties.
* Fix spelling in zlib.error message.Zac Medico2010-08-221-1/+1
|
* Handle zlib.error when reading compressed build logs via GzipFile.Zac Medico2010-08-222-0/+12
|