summaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
* Scheduler: remove uninstall task from pkg_queuev2.1.9.32Zac Medico2011-01-171-0/+4
|
* Use r'' for regex.Zac Medico2011-01-171-1/+1
|
* spawn_nofetch: Ensure $A is defined.Zac Medico2011-01-171-1/+7
| | | | This will fix bug #351505.
* spawn_nofetch: fix PORTAGE_BUILDIR_LOCKED stateZac Medico2011-01-171-0/+2
| | | | | We need to correct the state of this variable here, in order to avoid erroneous "ebuild phase 'nofetch' has exited unexpectedly" messages.
* Update copyright headers for touched files.Zac Medico2011-01-165-5/+5
|
* Remove redundant portage.listdir(ignorecvs) code.Zac Medico2011-01-161-2/+1
| | | | | The ignorecvs filtering is handled by cacheddir since commit 956a2a70446e7618ef29593ed710648ca2b1e19f.
* Make portage.listdir(ignorecvs=1) omit CVS dirs.Zac Medico2011-01-161-1/+2
|
* Add missing InvalidAtom import from prev commit.Zac Medico2011-01-161-1/+1
|
* Use Atom for stricter portdb.cp_all() validation.Zac Medico2011-01-162-5/+7
|
* CONTENTS: handle malformed sym entriesZac Medico2011-01-161-2/+10
| | | | This will fix bug #351814.
* Tweak PollScheduler signal handling.Zac Medico2011-01-163-36/+44
|
* Remove duplicate Scheduler constructor call.Zac Medico2011-01-161-3/+0
|
* Add PollScheduler.terminate() for interruption.Zac Medico2011-01-166-28/+153
| | | | | This allows PollScheduler instances to do basic cleanup and terminate gracefully when SIGINT or SIGTERM signals are received.
* When killed by signal, return 128 + signum.Zac Medico2011-01-166-21/+23
| | | | | This is the same convention that bash uses for returncodes of processes that are killed by signals.
* emerge-webrsync: update for current gpg keyZac Medico2011-01-161-1/+1
|
* AsynchronousLock: use process by defaultZac Medico2011-01-161-1/+9
| | | | | | | The default behavior is to use a process instead of a thread, since there is currently no way to interrupt a thread that is waiting for a lock (notably, SIGINT doesn't work because python delivers all signals to the main thread).
* repoman: fix PORTDIR consistency for herds.xmlZac Medico2011-01-161-0/+2
| | | | | | This fixes a case in which repoman could use the PORTDIR setting in make.conf to grab herds.xml, even though cwd refers to a different path (cvs tree rather than rsync tree).
* docbook: Add missing "of" from last commit.v2.1.9.31Zac Medico2011-01-121-1/+1
|
* Don't filter QA warning for --disable-dep...Zac Medico2011-01-121-6/+1
| | | | | | This reverts commit f3785f651bff9febc0bb3be4f0ee8e4d732495d5. It's unnecessary to filter since now we check configure --help output for disable-dependency-tracking (bug #211529).
* econf: check confgure --help for --disable-dep...Zac Medico2011-01-123-3/+8
| | | | This is the new behavior, for bug #211529.
* ebuild.sh: skip QA_* init in "depend" phaseZac Medico2011-01-121-20/+21
|
* Scheduler: free unneeded uninstall task from memv2.1.9.30Zac Medico2011-01-061-1/+5
|
* Scheduler: handle same cpv with different SLOTZac Medico2011-01-051-0/+3
|
* Scheduler: fix reposyntax uninstall hash breakageZac Medico2011-01-051-8/+10
|
* Scheduler: always share FakeVartree pkg_cacheZac Medico2011-01-051-1/+2
|
* Scheduler: avoid unecessary Package instancesZac Medico2011-01-051-1/+0
|
* Scheduler: cache more Packages in --nodeps modeZac Medico2011-01-051-0/+2
|
* Scheduler: cache Package instance moreZac Medico2011-01-051-9/+12
| | | | | | | | This helps to avoid some cases in which emerge crashes due to ebuild modification that leads to failure in aux_get/manifest check while the Scheduler is running. Typically such modifications are harmless, so it's beneficial to cache the metadata so that aux_get is less likely to be called when it will fail.
* emerge-webrsync: eat trailing newlinesMike Frysinger2011-01-051-3/+3
| | | | Signed-off-by: Mike Frysinger <vapier@gentoo.org>
* emerge-webrsync: add xz supportMike Frysinger2011-01-051-0/+2
| | | | Signed-off-by: Mike Frysinger <vapier@gentoo.org>
* REQUIRED_USE: when unsatisfied, show current USEZac Medico2011-01-041-3/+5
|
* Split out pkg_use_display() from action_info().Zac Medico2011-01-042-58/+68
|
* REQUIRED_USE: test unsatisfied without USE depv2.1.9.29Zac Medico2011-01-041-0/+6
|
* composite_db: use ebuild visibility for installedZac Medico2011-01-042-2/+18
| | | | This will fix bug #350488.
* dep_zapdeps: add other_installed_some choice binZac Medico2011-01-041-3/+11
|
* fix indentation from commit f29d351990f0a3dd6183ec888ba8b0ff522c0875Zac Medico2011-01-031-1/+1
|
* dep_zapdeps: add other_installed choice binZac Medico2011-01-031-1/+11
| | | | Hopefully this will fix bug #350488.
* Fix spelling of unsatisfied from previous commit.Zac Medico2011-01-031-1/+1
|
* REQUIRED_USE: always show requirementsZac Medico2011-01-031-16/+43
| | | | | | | | | This fixes a case in which the user would receive a "masked by: REQUIRED_USE violated" message without any more information about the specific requirements. Now, unsatisfied REQUIRED_USE is never treated as a mask, since it really is nothing like a mask. It's much more like an unsatisfied USE dependency, so we need to handle it in a similar way.
* depgraph: merge some logic from bug #350254Zac Medico2011-01-031-1/+2
|
* create_trees: whitelist SSH_AGENT_PID/AUTH_SOCKv2.1.9.28Zac Medico2011-01-021-1/+2
| | | | This variables can be used for fetching from binhost.
* add depclean test for bug #350285Zac Medico2011-01-021-0/+38
|
* doc use_with/enable empty 3rd arg in EAPI 4Zac Medico2011-01-022-2/+14
| | | | See bug #322049.
* DepcleanWithInstalledMasked: fix breakageZac Medico2011-01-021-4/+4
| | | | | An assumption about KEYWORDS masking behavior for installed packages was broken by commit b7de3d1fb10e40b4ef03462f8a145968689ac587.
* Try to avoid downgrade due to unsat REQUIRED_USE.Zac Medico2011-01-021-0/+1
|
* mod_syslog: call syslog() once per lineZac Medico2011-01-021-6/+7
| | | | This will fix bug #350379.
* depclean: account for more masksZac Medico2011-01-021-1/+6
| | | | | | Account for packages with masks (like KEYWORDS masks) that are usually ignored in visibility checks for installed packages, in order to handle cases like bug #350285.
* newins in EAPI 4 should actually install the file. Fixes bug 350385.Ulrich Mueller2011-01-021-3/+5
|
* MetaDataXML: fix broken upstream initializationZac Medico2011-01-021-1/+1
|
* depgraph: use Package.masks for installedZac Medico2011-01-021-5/+3
| | | | | In some cases we do special masking checks for installed packages, and Package.masks is a convenient way to do it.