summaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
...
* Update docs, comments, and messages to refer to make.globals inZac Medico2010-08-197-20/+30
| | | | /usr/share/portage/config/ instead of /etc/make.globals.
* Rename the bdeps_root variable to depend_root, since it's used to controlZac Medico2010-08-191-4/+4
| | | | | DEPEND and in the future we may have separate build-time dep types for host and target.
* Eliminate the bdeps_optional variables inside depgraph._add_pkg_deps(),Zac Medico2010-08-191-4/+3
| | | | and use the pkg.built attribute instead.
* Tests: Properly test the circular dep handlerSebastian Luther2010-08-191-15/+38
|
* Tests: ResolverPlayground: Support checking the suggestions given by the ↵Sebastian Luther2010-08-191-0/+8
| | | | circular dep handler.
* Move the clever parts of depgraph._show_circular_deps into its own module.Sebastian Luther2010-08-192-155/+240
| | | | This also fixes some bugs related to autounmask.
* cycle-finder: Don't try to change flags that are in use.{make,focrce}Sebastian Luther2010-08-191-16/+5
|
* Move code from EbuildProcess to EbuildPhase.Zac Medico2010-08-192-24/+24
|
* Raise ValueError if fromlist contains an extra comma.Zac Medico2010-08-191-0/+3
|
* Remove duplicate attributes from __slots__.Zac Medico2010-08-191-2/+1
|
* * In helpers_die arguments, display ${0##*/} instead of $0 since $0Zac Medico2010-08-1832-78/+78
| | | | | | is needlessly long. * When calling helpers_die from a function, use ${FUNCNAME[0]} in arguments instead of $0.
* Use doebuild_environment() to ensure proper environment initializationZac Medico2010-08-181-16/+21
| | | | | for clean/cleanrm phases, and use the simpler _spawn_phase() function instead of doebuild to spawn the phases.
* Use simpler _spawn_phase() instead of doebuild() sinceZac Medico2010-08-181-9/+3
| | | | doebuild_environment() already done the env setup.
* Move the code from _prepare_env_file() to a new BinpkgEnvExtractorZac Medico2010-08-185-56/+126
| | | | class.
* Remove unnecessary call to _prepare_env_file(), since it only makesZac Medico2010-08-181-8/+1
| | | | sense for binary or installed packages.
* Move environment sanity check to the Scheduler and do it if thereZac Medico2010-08-182-16/+36
| | | | are any source packages in the merge list.
* When suggesting solutions inside _show_circular_deps(), ignore solutionsZac Medico2010-08-181-0/+16
| | | | that involve changes to use.mask or use.force settings.
* Fix get_cycles() to handle None return value from shortest_path().Zac Medico2010-08-181-0/+2
|
* Fix deprecation warnings from paren_reduce.Zac Medico2010-08-181-2/+2
|
* Fix small bug in _show_circular_deps and add some testsSebastian Luther2010-08-182-2/+47
|
* portage.util.digraph: Raise KeyError in newly added functions. Add tests.Sebastian Luther2010-08-182-13/+222
|
* extract_affecting_use: Fix the same bug as in use_reduceSebastian Luther2010-08-182-6/+31
|
* _show_circular_deps: Ignore solution that violate use dpendencies specified ↵Sebastian Luther2010-08-181-6/+39
| | | | by parents. Warn the user if there are many cycles.
* _show_circular_deps: Stop prunning the graph to show (other) parents of the ↵Sebastian Luther2010-08-181-14/+0
| | | | involved packages in the merge list
* _show_circular_deps: Fix handling of 'None' returned by ↵Sebastian Luther2010-08-181-1/+2
| | | | extract_affecting_use and remove debug output
* _emerge.depgraph._show_circular_deps(): Find suggestions if an atom occures ↵Sebastian Luther2010-08-181-11/+66
| | | | more than once in a dep string
* Print suggestions for circular dependenciesSebastian Luther2010-08-181-8/+44
|
* _emerge.depgraph._show_circular_deps(): Display only the smallest cycleSebastian Luther2010-08-181-1/+31
|
* portage.util.digraph: Add get_cycles() and its helpers shortest_path() and bfs()Sebastian Luther2010-08-181-0/+35
|
* Tests: Make sure the ResolverPlayground doesn't ignore DEPENDSebastian Luther2010-08-181-0/+10
|
* Tests: ResolverPlaygound: change --root-deps parameter to include build time ↵Sebastian Luther2010-08-181-1/+1
| | | | deps
* Use _prepare_env_file() to extract the binary package environment.bz2Zac Medico2010-08-181-1/+10
| | | | | | prior to the pkg_setup phase. This fixes a regression since EbuildPhase no longer calls doebuild(), and therefore _prepare_env_file() needs to be called now.
* Use _prepare_env_file() to extract environment.bz2 prior to theZac Medico2010-08-181-1/+3
| | | | | | pkg_prerm phase. This fixes a regression since EbuildPhase no longer calls doebuild(), and therefore _prepare_env_file() needs to be called now.
* Bug #324075 - If the vcs doesn't preserve mtimes then disable theZac Medico2010-08-181-3/+7
| | | | | copyright date check unless the ebuild has just been added or modified.
* check_required_use: Fix the same bug as in use_reduceSebastian Luther2010-08-182-1/+19
|
* paren_reduce: Fix the same bug as in use_reduceSebastian Luther2010-08-182-10/+38
|
* Revert "Tests: Remove paren_reduce tests"Sebastian Luther2010-08-181-0/+60
| | | | This reverts commit 67f3bef9efeff7061765edc9515a97143c2f2e55.
* * Replace config._iuse_implicit_re with a callable _iuse_implicit_matchZac Medico2010-08-187-34/+31
| | | | | | | object that simply returns boolean, and update consumers. * Make check_required_use() take a callable for the iuse parameter, and pass in Package.use.is_valid_flag or iuse.__contains__ as appropriate.
* use_reduce: code cleanupSebastian Luther2010-08-182-34/+33
|
* Bug #312085 - Make config.setcpv() treat USE_EXPAND_HIDDEN flags as ifZac Medico2010-08-181-8/+29
| | | | | | they are in IUSE. This helps for the embedded profile which does not have typical use.force/use.mask settings. The flags are matched with a regular expression and match results are memoized in order to optimize performance.
* Bug #308933 - Export os.path.realpath(PORTAGE_TMPDIR), to make sandboxZac Medico2010-08-181-1/+1
| | | | happy.
* Remove unused iuse_implicit attribute.Zac Medico2010-08-181-1/+0
|
* Add opconvert test for "|| ( ( A B ) C )".Zac Medico2010-08-181-0/+4
|
* Fix use_reduce() to correctly handle "|| ( ( A B ) C )", and alsoZac Medico2010-08-182-7/+33
| | | | fix some test cases that had erroneous expected_result values.
* Add commented test case for a known regression.Zac Medico2010-08-181-0/+3
|
* Temporarily disable portage.dep deprecation warnings for external apiZac Medico2010-08-174-11/+24
| | | | | consumers. Once the relevant api changes are in a portage release with stable keywords, make these warnings unconditional.
* Use binarytree._ensure_dir() to create the binpkg parent dir.Zac Medico2010-08-171-6/+11
|
* Use binarytree._ensure_dir() to create the binpkg parent dir.Zac Medico2010-08-171-7/+1
|
* Fix breakage in REPLACING_VERSIONS support for emerge.Zac Medico2010-08-172-1/+15
|
* Add pretend to actionmap_deps.Zac Medico2010-08-171-1/+2
|