summaryrefslogtreecommitdiffstats
path: root/pym
Commit message (Collapse)AuthorAgeFilesLines
* action_deselect: expand cat against world atomsZac Medico2011-03-011-12/+24
|
* unmerge: log pre/postrm FAILED messagesZac Medico2011-03-011-6/+11
|
* owners_cache: fix EPREFIX miscalculationZac Medico2011-03-011-5/+3
| | | | | This reverts commit 43e0b3ea4289aab9b4258d29d06afac40abd6c01 and renames the root_len variable to eroot_len (for clarity).
* owners_cache: add parent dirs deeper than EPREFIXZac Medico2011-03-011-1/+3
|
* unmerge: implicitly unmerge parent directoriesZac Medico2011-03-011-3/+16
| | | | | We can't necessarily assume that they are explicitly listed in CONTENTS.
* owners_cache: implicitly add parent directoriesZac Medico2011-03-011-1/+18
| | | | | We can't necessarily assume that they are explicitly listed in CONTENTS.
* repoman: variable.usedwithhelpers ignore quotedZac Medico2011-02-281-1/+3
|
* depgraph: case insensitive search for unsatisfiedZac Medico2011-02-281-1/+12
| | | | This will fix bug #356555.
* repoman: warn about calls to prepall and preplibZac Medico2011-02-271-1/+1
|
* repoman: add back portage.internal checkZac Medico2011-02-251-1/+11
| | | | | | This check got removed for bug #262365, but now that EAPI 4 is released we can add it back. Now it checks for ecompress/ecompressdir too (for bug #218347).
* action_sync: handle IPv6 [ip] in SYNC some moreZac Medico2011-02-241-4/+14
| | | | This will fix bug #356375 some more.
* action_sync: handle IPv6 [ip] in SYNCZac Medico2011-02-241-1/+2
| | | | This will fix bug #356375.
* emerge: mention revdep-rebuild in depclean helpZac Medico2011-02-221-5/+10
|
* show_depclean_suggestion: use ewarn, not einfoZac Medico2011-02-211-1/+1
|
* chk_updated_cfg_files: don't display ._cfg0000_Zac Medico2011-02-211-1/+4
|
* Update date headers in modified files.Zac Medico2011-02-211-1/+1
|
* chk_updated_cfg_files: fix plurality of messageZac Medico2011-02-211-2/+8
| | | | This will fix bug #355803.
* post_emerge: suggest depclean after world updateZac Medico2011-02-211-0/+13
| | | | This is part of bug #354787.
* post_emerge: pass in more infoZac Medico2011-02-211-6/+15
| | | | | This makes it possible to do things like give special suggestions after world updates.
* SubProcess: notify exit listeners in _pollZac Medico2011-02-201-0/+1
|
* Scheduler: ensure _prefetchers is clearedZac Medico2011-02-201-0/+1
|
* Update date headers in modified files.Zac Medico2011-02-191-1/+1
|
* repoman: variable.usedwithhelpers tighten regexZac Medico2011-02-191-1/+1
| | | | This will fix bug #355621.
* check_required_use: improve missing IUSE errorZac Medico2011-02-191-2/+4
| | | | This will fix bug #355629.
* emerge: fix --sync cvs error messageZac Medico2011-02-181-2/+2
|
* emerge: warn to stderr if post_* hooks failZac Medico2011-02-182-6/+9
|
* emerge: support post_emerge hook like post_syncGokdeniz Karadag2011-02-181-0/+8
| | | | This will fix bug #355447.
* unmerge: don't show null/ cat in unmatched atomsZac Medico2011-02-181-2/+2
| | | | This will fix bug #269534.
* BinpkgVerifier: disable color in background modeZac Medico2011-02-181-1/+5
|
* mail: handle unicode in subject more for python3Zac Medico2011-02-181-22/+26
|
* mail: handle unicode in subject for python3Zac Medico2011-02-181-3/+13
|
* ResolverDepthTestCase: test --selective moreZac Medico2011-02-171-0/+15
|
* emerge --sync: display message when cvs failsZac Medico2011-02-171-0/+2
|
* Update date headers for modified files.v2.2.0_alpha24Zac Medico2011-02-154-4/+4
|
* depgraph: fix virtual code to handle unsatisfiedZac Medico2011-02-141-2/+2
|
* depgraph: --deep=0 is equivalent to no deep paramZac Medico2011-02-141-2/+3
|
* depgraph: --nodeps overrides --complete-graphZac Medico2011-02-141-0/+1
|
* Recognize git-2.eclass when reinstalling self.Zac Medico2011-02-144-7/+16
|
* Recognize git-2.eclass as a live eclass.Zac Medico2011-02-141-0/+1
|
* depgraph: fix KeyError in select_atomsZac Medico2011-02-141-0/+2
| | | | This happens if depstring evaluates to nothing.
* get_dep_chain: fix broken parent_arg referenceZac Medico2011-02-131-1/+1
| | | | Broken since commit b4f98ec5a1eb2e010a455b19db5bef8d61def241.
* depgraph: normalize indentationZac Medico2011-02-131-5/+4
|
* depgraph: ignore fewer depsZac Medico2011-02-131-2/+6
| | | | | This restores some desired logic that was left out of commit 5655b4dcfe5e9dae5e9d6352d791c3d04953baf7.
* depgraph: remove redundant "empty" param checksZac Medico2011-02-131-7/+4
| | | | | Since commit 878f166c5a06b0ab6c5a34dd658c878cc7605fe7, empty implies deep = True, so these checks are redundant.
* depgraph: --nodeps overrides --deepZac Medico2011-02-131-2/+5
|
* get_dep_chain: fix unsatisfied_dependency logicZac Medico2011-02-131-2/+5
| | | | | | Always prefer parents for which the parent atom is unsatisfied by the child node. This seems to be the intention of the code, though it may not have behaved correctly due to continuation of the parent loop.
* Fix unhandled FileNotFound from previous commit.Zac Medico2011-02-131-1/+1
| | | | | There is an existing handler for EnvironmentError, so raise that instead of FileNotFound.
* Add support for grabbing Packages files using external programs.David James2011-02-132-4/+18
| | | | | | | | | | | | | If the user specifies FETCHCOMMAND_*, Portage should honor this when grabbing Packages files. This allows users to setup support for grabbing Packages files from other protocols. BUG=chrome-os-partner:2026 TEST=Try downloading prebuilts from gs:// when FETCHCOMMAND_GS is setup in make.conf Change-Id: I96b239819351633dd02d608954e81a1c363a4687 Review URL: http://codereview.chromium.org/6458015
* get_dep_chain: prefer parents in merge listZac Medico2011-02-131-10/+20
| | | | This will fix bug #354747.
* Display: tweak output and docs for bug 58416Zac Medico2011-02-131-2/+5
| | | | | | Now the masking display is disabled by the --quiet option if the --verbose option is not enabled simultaneously. Also, docs are updated as per bug 58416, comment #11 and #12.