aboutsummaryrefslogtreecommitdiff
Commit message (Collapse)AuthorAgeFilesLines
* 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
|
* Fix the REPLACING_VERSIONS code to work in cases when the pretend/setupZac Medico2010-08-171-16/+21
| | | | phases are pulled in as dependencies of other phases.
* Discard REPLACING_VERSIONS and REPLACED_BY_VERSION when they are noZac Medico2010-08-172-0/+4
| | | | longer needed.
* Use EbuildPhase instead of EbuildProcess, for things like die_hooksZac Medico2010-08-171-2/+2
| | | | support.
* Make EbuildBinpkg inherit from CompositeTask since the EbuildPhaseZac Medico2010-08-171-12/+23
| | | | class is capable of executing the 'package' phase.
* Remove no longer needed code.Arfrever Frehtes Taifersar Arahesis2010-08-171-8/+0
|
* Tweak the EbuildSpawnProcess test and add comments.Zac Medico2010-08-171-3/+9
|
* Make EbuildBinpkg inherit from EbuildProcess since the 'package'Zac Medico2010-08-171-18/+6
| | | | phase is already a member of actionmap.
* Pass actionmap keyword argument as keyword, rather than positional.Zac Medico2010-08-171-1/+1
|
* Write compiled bytecodes to /dev/null, rather than write and unlinkZac Medico2010-08-171-10/+1
| | | | them.
* Fix _spawn_phase() to pass actionmap to EbuildPhase.Zac Medico2010-08-171-1/+1
|
* Unify ebuild spawing some more. All proper ebuild phases which executeZac Medico2010-08-173-75/+56
| | | | ebuild.sh are spawned via _doebuild_spawn() now. No exceptions.
* Fix _spawn_phase() to spawn phases without sandbox when necessary.Zac Medico2010-08-172-8/+11
|
* Source isolated-functions.sh for helpers_die function.Zac Medico2010-08-171-1/+3
|
* Make doebuild() use EbuildPhase to execute all phase (unless returnpidZac Medico2010-08-172-33/+41
| | | | is True, which is only for the "depend" phase now).
* Make sure doebuild() doesn't erroneously unlink a logfile when returnpidZac Medico2010-08-171-1/+1
| | | | is True.
* Make EbuildBuild check the manifest before beginning, since withZac Medico2010-08-161-0/+27
| | | | | --keep-going mode it's currently possible to get this far with a broken manifest.
* For ebuilds from $ROOT/var/db/pkg, don't give /var/db/pkg with theZac Medico2010-08-161-1/+4
| | | | "Appending /var/db/pkg to PORTDIR_OVERLAY..." treatment.
* Use EbuildPhase to eliminate duplicate phase conditionals from doebuild().Zac Medico2010-08-161-28/+2
|
* Use EbuildPhase to execute preinst/postinst and eliminate duplicate code.Zac Medico2010-08-161-65/+9
|
* Use MiscFunctionsProcess to eliminate the _spawn_misc_sh() function.Zac Medico2010-08-162-31/+11
|
* Make spawnebuild() use EbuildPhase to eliminate duplicate code.Zac Medico2010-08-164-76/+38
|
* Reuse a single TaskScheduler instance.Zac Medico2010-08-161-2/+2
|
* Fix broken reference to 'myprovide' variable.Zac Medico2010-08-161-1/+1
|
* Pass token_class=portage.dep.Atom when parsing PROVIDE.Zac Medico2010-08-161-1/+2
|
* Add a MiscFunctionsProcess test.Zac Medico2010-08-161-2/+10
|
* Pass token_class parameter if possible to use_reduceSebastian Luther2010-08-162-102/+93
|