summaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
* Display: align nomerge nodes moreZac Medico2011-01-311-4/+12
|
* Display: align blocker and nomerge nodesZac Medico2011-01-311-2/+9
|
* getRawMissingKeywords: fix getEgroups breakageZac Medico2011-01-311-1/+1
|
* ebuild_xattr: lazily import xattrZac Medico2011-01-302-3/+4
|
* test/lint/test_import_modules.py: Better error reporting and expected failuresSebastian Luther2011-01-301-1/+10
|
* KeywordsManager: use lists where order mattersZac Medico2011-01-301-11/+12
| | | | | | Also remove x.lstrip('~') code from from getRawMissingKeywords() since I don't understand it (was only recently added, and we can add back later if appropriate).
* Properly fix my earlier breakageBrian Dolbec2011-01-301-38/+21
|
* fix a "*" being added for a stable pkg-verBrian Dolbec2011-01-301-2/+3
|
* getRawMaskAtom: handle user negative incrementalsZac Medico2011-01-301-3/+11
|
* Display: show masks in the [ ] partZac Medico2011-01-301-11/+16
| | | | | | | | Symbol | Mask Type -------|----------------- # | package.mask * | missing keyword ~ | unstable keyword
* die: include $EBUILD_PHASE in messageZac Medico2011-01-301-1/+5
| | | | | When a helper binary dies automatically in EAPI 4 and later, we don't get a stack trace, so at least report the phase that failed.
* Fix keywords breakage from last 2 commits.Zac Medico2011-01-302-2/+21
|
* fix the problem of mixing "**" and ebuild keywords for only some archsBrian Dolbec2011-01-302-2/+7
|
* split up the getMissingKeywords code to eliminate code duplication and ↵Brian Dolbec2011-01-301-94/+130
| | | | increase flexibility. Do some pyflakes and pylint cleanup
* isolated-functions.sh: fix syntax error for dieZac Medico2011-01-301-2/+4
| | | | | | | | Fix die so that dump_trace is not called when the main script is a helper binary. This prevents the following error message when a helper dies automatically in EAPI 4: isolated-functions.sh: line 61: p -= : syntax error: operand expected (error token is "-= ")
* NoOffsetWithHelpers: fix invalid errors nameFabian Groffen2011-01-301-1/+1
|
* repoman: add check for using offset vars with helpersFabian Groffen2011-01-303-3/+14
| | | | | | | New check: NoOffsetWithHelpers. Checks whether helper functions, such as dodir and insinto, are used with offset variables either referring to the installation image (D, ED), the alternate root location (ROOT, EROOT), or the offset prefix (EPREFIX).
* Fix a typo.Arfrever Frehtes Taifersar Arahesis2011-01-301-2/+2
|
* Fix a typo.Arfrever Frehtes Taifersar Arahesis2011-01-301-2/+2
|
* make it only print if it is due to an override settingBrian Dolbec2011-01-301-1/+1
|
* Use the new _getRawMissingKeyword() which optimizes the keyword display. ↵Brian Dolbec2011-01-302-55/+51
| | | | Misc. whitespace cleanup
* add getRawMissingKeywords functionsBrian Dolbec2011-01-302-1/+108
|
* add a new function to MaskManager that optimizies getting any raw mask atomsBrian Dolbec2011-01-303-26/+53
|
* optimize isHardMasked() a little moreBrian Dolbec2011-01-301-5/+2
|
* Move most of the code to _emerge's Package object. Refine the hardmasking ↵Brian Dolbec2011-01-302-22/+48
| | | | code, optimizing as much as possible.
* add keyword output info for masked pkgs, fixes bug 58416Brian Dolbec2011-01-301-2/+41
|
* bintree: warn for missing binhost TIMESTAMPZac Medico2011-01-291-0/+2
| | | | This seems to be the case that's triggered in bug 353189 and bug 350139.
* Fix selinux import error handling.Zac Medico2011-01-291-0/+1
|
* Test import of all modules.Zac Medico2011-01-283-3/+39
|
* depgraph: fix get_dep_chain unicode handlingZac Medico2011-01-281-7/+8
|
* action_info: fix noiselevel for repo/set displaysZac Medico2011-01-281-4/+4
|
* action_info: use _ENABLE_SET_CONFIG for setsZac Medico2011-01-281-6/+8
|
* --info: Show installed sets (bug 282250)Sebastian Luther2011-01-281-1/+10
|
* autounmask USE change comment: ensure that the first parent requires the changeSebastian Luther2011-01-281-16/+29
| | | | Fixes bug 350515.
* Show use conditionals in old style dep chainsSebastian Luther2011-01-282-126/+154
|
* binarytree: fix BASE_URI for old-style binhostZac Medico2011-01-261-0/+1
|
* binarytree: fix broken BASE_URI initializationZac Medico2011-01-261-2/+3
|
* make.conf.5: doc multi PORTAGE_BINHOST supportZac Medico2011-01-261-4/+4
|
* Update Portage to support multiple binhosts.David James2011-01-262-17/+21
| | | | | | | | | | | BUG=chromium-os:11295 TEST=Build x86-mario with multiple binhosts (board binhost, preflight binhost) and verify that binaries are picked up from both binhosts. Also verify that if one of the binhosts fails, the other binhost is used correctly. Review URL: http://codereview.chromium.org/6329022 Change-Id: I095f28c82e3effbc25105af6ac89e42c335e6381
* grab_updates: return all after first modifiedZac Medico2011-01-251-3/+11
| | | | | | | This ensures that all relevant updates are returned for cases in which the destination package of an earlier move corresponds to the source package of a move that comes somewhere later in the entire sequence of files.
* Wildcard support for -c/-CSebastian Luther2011-01-243-2/+65
|
* fdopen: read from processes in unbuffered modev2.2.0_alpha19Zac Medico2011-01-214-7/+7
| | | | | It doesn't make sense to use buffers in cases like this, and is potentially error prone (as in bug #287648 / python issue 5380).
* test_pty_eof: separate classes for self.todoZac Medico2011-01-211-1/+2
|
* Fix a typo in a comment.Zac Medico2011-01-201-1/+1
|
* SpawnProcess: read proc with unbuffered fdopenZac Medico2011-01-203-6/+8
| | | | | This enables pty support in python3, by using unbuffered fdopen to avoid http://bugs.python.org/issue5380.
* PtyEofTestCase: test unbuffered fdopenZac Medico2011-01-202-4/+27
| | | | | | New development: It appears that array.fromfile() is usable with python3 as long as fdopen is called with a bufsize argument of 0.
* dispatch-conf: restrict default archive-dir permsv2.2.0_alpha18Zac Medico2011-01-193-3/+26
| | | | | Also, add warnings about rcs and ci behavior in dispatch-conf.conf and dispatch-conf.1. This will fix bug #315603.
* make.globals: initialize FFLAGS and FCFLAGSZac Medico2011-01-191-0/+2
| | | | This completes the fixes for bug #349070.
* make.conf.example: document FFLAGS and FCFLAGSSébastien Fabbro2011-01-192-10/+19
|
* make.conf.5: document FFLAGS and FCFLAGSSébastien Fabbro2011-01-191-1/+11
|