summaryrefslogtreecommitdiffstats
path: root/bin
Commit message (Collapse)AuthorAgeFilesLines
* Bug #194764 - All the match* functions can raiseZac Medico2007-10-051-9/+13
| | | | | | | | | a ValueError if cpv_expand() receives an ambiguous atom. Therefore, move the ValueError handling code out of match() and use it to handle all such errors when appropriate. (trunk r7944) svn path=/main/branches/2.1.2/; revision=7945
* Make the EbuildQuote check ignore lines beginningZac Medico2007-10-051-1/+1
| | | | | | | with local or export builtins since unquoted assignments are okay there. (trunk r7942) svn path=/main/branches/2.1.2/; revision=7943
* Eliminate confusing false positive error messagesZac Medico2007-10-051-7/+22
| | | | | | | | | | | | for SRC_URI.syntax and digestentry.unused that are reported when the SRC_URI for one or more ebuilds can't be parsed for some reason. There's no point in producing a false error here since the root cause will produce a valid error elsewhere, such as "SRC_URI.syntax" or "ebuild.sytax". (trunk r7905) svn path=/main/branches/2.1.2/; revision=7941
* Handle UnsupportedAPIException when running the ebuild(1)Zac Medico2007-10-051-0/+8
| | | | | | command. (trunk r7918) svn path=/main/branches/2.1.2/; revision=7940
* Fix logic for the message that's show whenZac Medico2007-10-051-1/+1
| | | | | | --force is disabled. (trunk r7915) svn path=/main/branches/2.1.2/; revision=7937
* Make repoman bail out if it is unable to properlyZac Medico2007-10-051-19/+52
| | | | | | | | | access ebuild metadata for some reason. In this case it's impossible to generate a Manifest and therefore the --force option has to be disabled. (trunk r7914) svn path=/main/branches/2.1.2/; revision=7936
* Add EAPI masking support for binary packages. (trunk r7913)Zac Medico2007-10-051-4/+19
| | | | svn path=/main/branches/2.1.2/; revision=7935
* no need to use "function" when defining a function (trunk r7908)Zac Medico2007-10-051-10/+10
| | | | svn path=/main/branches/2.1.2/; revision=7931
* this isnt part of gentoolkit anymore (trunk r7907)Zac Medico2007-10-051-1/+1
| | | | svn path=/main/branches/2.1.2/; revision=7930
* Update the docs for the "ebuild.syntax" error toZac Medico2007-10-051-1/+1
| | | | | | | indicate that a digest verification failure can trigger it. (trunk r7905) svn path=/main/branches/2.1.2/; revision=7929
* Port the EbuildQuote check from trunk. (trunk r7904)Zac Medico2007-10-051-3/+80
| | | | svn path=/main/branches/2.1.2/; revision=7928
* Bug #194398 - Do not log "exiting successfully" in emerge.logZac Medico2007-10-051-2/+5
| | | | | | | unless the status really is successful. Otherwise, log "exiting unsuccessfully". Thanks to David Watzke. (trunk r7900) svn path=/main/branches/2.1.2/; revision=7927
* Bug #142508 - Clear the screen each time before callingZac Medico2007-10-051-0/+14
| | | | | | | the "diff" command so that any remnants of the previous config are now shown with the current one. (trunk r7893) svn path=/main/branches/2.1.2/; revision=7926
* Remove redundant trailing slashes from ${D}. (trunk r7890)Zac Medico2007-10-051-14/+17
| | | | svn path=/main/branches/2.1.2/; revision=7923
* Initialize PORTAGE_TMPDIR before using it. (trunk r7887)Zac Medico2007-10-051-3/+3
| | | | svn path=/main/branches/2.1.2/; revision=7922
* Fix quoting as reported by Drac in bug 194169 (trunk r7877:7879)Zac Medico2007-10-052-4/+2
| | | | svn path=/main/branches/2.1.2/; revision=7921
* Bug #194095 - Validate dispatch-conf input in order toZac Medico2007-10-051-2/+13
| | | | | | | | prevent spurious input characters from being interpreted as user input (which can be quite confusing and gives an "out of control" feeling). (trunk r7877) svn path=/main/branches/2.1.2/; revision=7920
* Bug #179380 - Make the default src_compile() support ECONF_SOURCEZac Medico2007-10-031-1/+3
| | | | | | if EAPI > 0. (trunk r6567) svn path=/main/branches/2.1.2/; revision=7906
* Bug #193548 - When scanning for config updates and an errorZac Medico2007-09-281-4/+6
| | | | | | | occurs, send find's stdout to /dev/null so that only an error message is shown. (trunk r7875) svn path=/main/branches/2.1.2/; revision=7876
* When scanning for config updates, treat a symlink to an existingZac Medico2007-09-281-0/+9
| | | | | | directory as if it's just a normal directory. (trunk r7873) svn path=/main/branches/2.1.2/; revision=7874
* Bug #193548 - When emerge spawns find to search for config updates,Zac Medico2007-09-281-1/+2
| | | | | | show the find output if there is an error. (trunk r7871) svn path=/main/branches/2.1.2/; revision=7872
* Bug #192706 - Do not print a summary at the end of --depclean ifZac Medico2007-09-281-0/+3
| | | | | | there is nothing to clean and --quiet is enabled. (trunk r7838) svn path=/main/branches/2.1.2/; revision=7868
* Handle KeyError thrown from aux_get(). (trunk r7866)Zac Medico2007-09-271-5/+6
| | | | svn path=/main/branches/2.1.2/; revision=7867
* Fix portage.exception namespace typo.Zac Medico2007-09-271-1/+1
| | | | svn path=/main/branches/2.1.2/; revision=7860
* Move a newline to fix formatting. (trunk r7858)Zac Medico2007-09-271-1/+2
| | | | svn path=/main/branches/2.1.2/; revision=7859
* with help from Donnie and Ulrich, use sed to extract the statementZac Medico2007-09-271-2/+24
| | | | | | | that led to the call to die so we can print it out in our error message (trunk r7852) svn path=/main/branches/2.1.2/; revision=7855
* Bug #194025 - Lock /var/db/pkg in post_merge() during theZac Medico2007-09-271-3/+10
| | | | | | "Regenerating GNU info directory index" routine. (trunk r7853) svn path=/main/branches/2.1.2/; revision=7854
* Bug #193486 - Use echo -n and properly quote the array argument. (trunk r7850)Zac Medico2007-09-271-1/+1
| | | | svn path=/main/branches/2.1.2/; revision=7851
* Bug #193486 - Use xargs to avoid 'bash: /bin/rm: Argument list too long'Zac Medico2007-09-271-1/+2
| | | | | | | errors. This patch uses a weird tr '\001' '\000' workaround since bash doesn't echo null bytes like one might expect. (trunk r7848) svn path=/main/branches/2.1.2/; revision=7849
* Do the stale env check/warning after the digest/manifestZac Medico2007-09-271-15/+23
| | | | | | phase when necessary. (trunk r7846) svn path=/main/branches/2.1.2/; revision=7847
* Display a short notification when an existing ${T}/environmentZac Medico2007-09-271-0/+19
| | | | | | | | | sourced since it is easy to ignore and ignorance of it often leads to mysterious problems and general confusion. This message should not show in cases where it is obviously irrelevant, FEATURES=noauto, or PORTAGE_QUIET=1. (trunk r7844) svn path=/main/branches/2.1.2/; revision=7845
* align the filename and line numbers in the output of the stackZac Medico2007-09-271-18/+26
| | | | | | dump so that it is much easier to read (trunk r7842) svn path=/main/branches/2.1.2/; revision=7843
* Bug #74615 - Quote all file paths inside dispatch-conf shellZac Medico2007-09-261-3/+3
| | | | | | commands. (trunk r7803) svn path=/main/branches/2.1.2/; revision=7831
* Initialize ${TMP} before registering the die trap so thatZac Medico2007-09-261-1/+1
| | | | | | we're sure which directory die will clean up. (trunk r7802) svn path=/main/branches/2.1.2/; revision=7830
* fix possible information leak vulnerability when doingZac Medico2007-09-261-11/+22
| | | | | | | | a merge of configuration files and be better about handling of whitespace in $TMP in a few places (trunk r7799) svn path=/main/branches/2.1.2/; revision=7827
* tweak get_config() so that it only executes one externalZac Medico2007-09-261-9/+15
| | | | | | binary (sed) instead of chaining multiple ones (trunk r7798) svn path=/main/branches/2.1.2/; revision=7826
* When --deep is not enabled, many dependencies are dicarded andZac Medico2007-09-261-13/+25
| | | | | | | | | | | | | | left out of the digraph. This patch prevents dependencies from being discarded in some cases where the are needed in order to optimize merge order. It also modifies the DepPriority.rebuild attribute so that it only applies to build time dependencies. This leads to better merge order in some cases when --deep is not enabled. For example, `emerge xf86-input-keyboard xorg-server` will now properly merge xorg-server before xf86-input-keyboard (problem from bug #192254, comment #5). (trunk r7797) svn path=/main/branches/2.1.2/; revision=7825
* When --with-bdeps=y is enabled for built packages, pull in build time deps asZac Medico2007-09-261-6/+16
| | | | | | | | | | requested, but marked them as "satisfied" since they are not strictly required. This allows more freedom in the merge order calculation for solving circular dependencies. Don't convert to PDEPEND since that could make --with-bdeps=y less effective if it is used to adjust merge order to prevent built_with_use() calls from failing. (trunk r7793) svn path=/main/branches/2.1.2/; revision=7823
* Mask binary packages if their CHOST does not match the oneZac Medico2007-09-261-6/+22
| | | | | | defined in make.conf. (trunk r7792) svn path=/main/branches/2.1.2/; revision=7822
* Bug #190781 - Don't include --oneshot in the options thatZac Medico2007-09-261-2/+1
| | | | | | --update implies. (trunk r7790) svn path=/main/branches/2.1.2/; revision=7821
* Bug #192321 - Clean dir.old cruft so that they don't prevent unmergeZac Medico2007-09-261-0/+10
| | | | | | of otherwise empty directories. (trunk r7774) svn path=/main/branches/2.1.2/; revision=7814
* In depgraph.altlist(), try to merge asap_nodes sooner by giving them an ↵v2.1.3.9Zac Medico2007-09-081-1/+2
| | | | | | exemption from the accept_root_node flag. svn path=/main/branches/2.1.2/; revision=7762
* In the topological sort for merge order, try to avoid selecting root nodesZac Medico2007-09-061-2/+34
| | | | | | | | | | | | whenever possible. This helps ensure that the maximimum possible number of soft dependencies have been removed from the graph before their parent nodes have been selected. This is especially important when those dependencies are going to be rebuilt by revdep-rebuild or `emerge -e system` after the CHOST has been changed (like when building a stage3 from a stage2). With this patch, `emerge -e system` properly rebuilds dev-lang/python before sys-apps/file, which helps to avoid a potential build failure. (trunk r7727:7729) svn path=/main/branches/2.1.2/; revision=7745
* Convert myoptions from a list to a dict. (trunk r7714)Zac Medico2007-09-061-6/+5
| | | | svn path=/main/branches/2.1.2/; revision=7743
* Move some of the less expensive QA checks before dep_check() so that they'reZac Medico2007-09-061-106/+106
| | | | | | still done even in --force mode. (trunk r7718) svn path=/main/branches/2.1.2/; revision=7742
* Skip the most expensive QA tests when --force in enabled since there's noZac Medico2007-09-061-0/+6
| | | | | | | point in wasting time on them when the user is intent on forcing the commit anyway. (trunk r7713) svn path=/main/branches/2.1.2/; revision=7741
* Fix RepoMan's grammar. (trunk r7711)Zac Medico2007-09-061-1/+1
| | | | svn path=/main/branches/2.1.2/; revision=7740
* Bug #110443 - Add a KEYWORDS.stable check for ebuilds that are added directlyZac Medico2007-09-061-0/+28
| | | | | | with stable KEYWORDS. (trunk r7710) svn path=/main/branches/2.1.2/; revision=7739
* Make the commit message indicate when the --force option is used. (trunk r7712)Zac Medico2007-09-061-6/+9
| | | | svn path=/main/branches/2.1.2/; revision=7738
* Add a --force option that forces commit to proceed. This is useful for casesZac Medico2007-09-061-1/+6
| | | | | | | like bug #110443 where the commit normally isn't allowed but there are exceptional circumstances where it may be acceptable. (trunk r7709) svn path=/main/branches/2.1.2/; revision=7737