summaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
...
* When --keep-going drops packages due to unsatisfied dependencies, includeZac Medico2008-12-031-0/+1
| | | | | | | them in the list of packgaes that "failed to build or install" that's displayed at the end. svn path=/main/trunk/; revision=12144
* It's not safe to use the git commit -a option since there mightZac Medico2008-12-031-0/+23
| | | | | | | | | | be some modified files elsewhere in the working tree that the user doesn't want to commit. Therefore, call git update-index in order to ensure that the index is updated with the latest versions of all new and modified files in the relevant portion of the working tree. svn path=/main/trunk/; revision=12142
* When calling `git ls-files -m` to list modified files, use --with-tree=HEADZac Medico2008-12-031-2/+2
| | | | | | | | | | | so that differences from the most recent commit are given instead of differences from the index which is used for commit staging purposes. This is required since otherwise files that have been added via `git add` (such as echangelog does with the ChangeLog) won't show up in the list of modified files due to being unmodified relative to the index. Thanks to Christian Ruppert (idl0r) for reporting. svn path=/main/trunk/; revision=12140
* Fix depgraph._dep_check_composite_db._visible() to reject installed packagesZac Medico2008-12-021-7/+7
| | | | | | | | | that are masked. This is necessary for correct choices in || deps when we want to ensure that installed masked packages are not preferred over other available choices that are not masked. Thanks to Jan Kundrát <jkt@g.o> for reporting this issue and testing the patch. svn path=/main/trunk/; revision=12138
* Skip sourcinf of profile.bashrc during the depend phase.Zac Medico2008-12-021-8/+11
| | | | svn path=/main/trunk/; revision=12136
* Source bashrc files as late as possible, giving them the opportunity toZac Medico2008-12-023-5/+8
| | | | | | | override as much as possible. Thanks to Ned Ludd <solar@g.o> for the suggestion. svn path=/main/trunk/; revision=12134
* Fix inconsistencies between the "clean" and "cleanrm" phases.Zac Medico2008-12-011-3/+3
| | | | svn path=/main/trunk/; revision=12126
* Bug #249185 - For more useful output in cases when one or more USE depsZac Medico2008-12-011-50/+122
| | | | | | | | trigger "SLOT conflicts", show the specific atoms that triggered the conflict. TODO: Distiguish between various possible causes and tailor messages to suit them. svn path=/main/trunk/; revision=12125
* Change depgraph._slot_collision_info() from a set to a dict that containsZac Medico2008-11-301-11/+16
| | | | | | | sets of packages pulled into a given slot. This will make the data easier to analyze when implementing a fix for bug #249185. svn path=/main/trunk/; revision=12124
* Add a sanity check inside depgraph._add_pkg() to ensure that the dependenciesZac Medico2008-11-291-1/+5
| | | | | | of the same package are never processed more than once. svn path=/main/trunk/; revision=12122
* Add 'automatically resolved' blockers to the --pretend docs.Zac Medico2008-11-291-1/+2
| | | | svn path=/main/trunk/; revision=12120
* Use stat st_dev attributes instead of the older approach.Zac Medico2008-11-271-2/+1
| | | | svn path=/main/trunk/; revision=12117
* Don't call prepare_build_dirs() inside doebuild() when called for parallelZac Medico2008-11-271-1/+4
| | | | | | fetching. svn path=/main/trunk/; revision=12115
* For bug #235642, include the stat mode, uid, and gid bits in the hardlink key.Zac Medico2008-11-261-1/+2
| | | | svn path=/main/trunk/; revision=12113
* In movefile(), ignore the hardlink_candidates parameter when it's an empty list.Zac Medico2008-11-261-1/+1
| | | | svn path=/main/trunk/; revision=12111
* Bug #235642 - Create hardlinks when merging identical files. This works by ↵Zac Medico2008-11-262-7/+58
| | | | | | | | | using a tuple of (md5, st_size) as a key to a list of hardlink candidates. Multiple candidates are used in case some happen to be merged to separate devices. svn path=/main/trunk/; revision=12109
* Don't direct to /dev/null when creating $EBUILD_EXIT_STATUS_FILE inside die.Zac Medico2008-11-261-2/+1
| | | | svn path=/main/trunk/; revision=12107
* Bug #205044 - When creating $EBUILD_EXIT_STATUS_FILE, don't direct output to ↵Zac Medico2008-11-261-3/+9
| | | | | | | | /dev/null since it should never fail and if it does then the error message might be useful. svn path=/main/trunk/; revision=12105
* Make Scheduler.merge() bail out early if PORTAGE_TMPDIR is not properly set.Zac Medico2008-11-261-0/+16
| | | | svn path=/main/trunk/; revision=12103
* Add some more clarification to the 'ebuild phase exited unexpectedly' message.Zac Medico2008-11-261-3/+14
| | | | svn path=/main/trunk/; revision=12101
* Eliminate redundant Manifest separation code by combining mychanged + mynew ↵Zac Medico2008-11-261-13/+4
| | | | | | sooner. svn path=/main/trunk/; revision=12098
* Remove redundant reference to 'mynew' since 'myupdates' already contains ↵Zac Medico2008-11-261-2/+2
| | | | | | those files. svn path=/main/trunk/; revision=12096
* Bug #248464 - With git, there's never any keyword expansion, so there'sZac Medico2008-11-261-6/+20
| | | | | | | no need to regenerate manifests and all files will be committed in one big commit at the end. svn path=/main/trunk/; revision=12094
* Bug #248782 - Handle permission error in EbuildFetchonly.execute() if ↵Zac Medico2008-11-261-1/+6
| | | | | | | | PORTAGE_TMPDIR is not writable. svn path=/main/trunk/; revision=12092
* Note that file names in /etc/portage/package.* directories are sorted ascendingZac Medico2008-11-261-2/+3
| | | | | | alphabetical order before being summed together. svn path=/main/trunk/; revision=12090
* Remove world and system targets for emerge --help since it no longer works ↵Zac Medico2008-11-252-30/+1
| | | | | | | | now that they are sets rather than actions. svn path=/main/trunk/; revision=12086
* Use tar options to make files owned in release tarballs owned byv2.2_rc16Zac Medico2008-11-241-1/+2
| | | | | | portage:portage instead of the current user. svn path=/main/trunk/; revision=12081
* Also add 2 spaces after newline, for alignment.Zac Medico2008-11-241-1/+1
| | | | svn path=/main/trunk/; revision=12079
* Add one newline, to wrap the "Global Updates" key to less than 80 columns.Zac Medico2008-11-241-1/+1
| | | | svn path=/main/trunk/; revision=12077
* Fix typo in --help.Zac Medico2008-11-241-1/+1
| | | | svn path=/main/trunk/; revision=12072
* Document the 'eapi' profile file.Zac Medico2008-11-241-0/+6
| | | | svn path=/main/trunk/; revision=12070
* Add support for parsing EAPI labels in contained in 'eapi' files in theZac Medico2008-11-241-0/+11
| | | | | | | | | profiles, and bail out if the profile contains an unsupported EAPI value in any one of it's directories. We don't necessarily have to use this but at least it gives us some way to make emerge bail out early if a profile contains unsupported EAPI features. svn path=/main/trunk/; revision=12068
* Inside profile_check(), call validate_ebuild_environment() to generateZac Medico2008-11-241-0/+2
| | | | | | some extra profile warnings when appropriate. svn path=/main/trunk/; revision=12066
* Make emerge detect an invalid profile an bail out for anything exceptZac Medico2008-11-242-1/+21
| | | | | | | | --help, --info, --sync, and --version actions. When bailing out, suggest to revert back to the previous profile configuration advise the user which actions are allowed with an invalid profile. svn path=/main/trunk/; revision=12065
* Use a table to organize the key of USE flag symbols for the --verbose option.Zac Medico2008-11-231-9/+11
| | | | svn path=/main/trunk/; revision=12063
* Use a table to organize the key of merge list display codes for the --pretendZac Medico2008-11-231-20/+13
| | | | | | option. svn path=/main/trunk/; revision=12061
* Document "I" which represents PROPERTIES=interactive in the merge listZac Medico2008-11-231-0/+2
| | | | | | display. svn path=/main/trunk/; revision=12059
* Add a note about negative IUSE default settings being ineffective givenZac Medico2008-11-231-1/+3
| | | | | | | the default USE_ORDER setting which causes profile and user configuration settings to override them. svn path=/main/trunk/; revision=12057
* Fix SIGINT and SIGTERM trap handling so the temp dir always cleaned up whenZac Medico2008-11-231-4/+4
| | | | | | killed. svn path=/main/trunk/; revision=12055
* Bug #188780 - Make the read_int() function show a more human readable errorZac Medico2008-11-231-1/+2
| | | | | | | message, instead of the 'value too great for base' message when the user enters an invalid value such as '1y'. svn path=/main/trunk/; revision=12053
* Fix the code from bug #245358 so that it's guaranteed to traverse all theZac Medico2008-11-231-6/+8
| | | | | | way to a root node, even when circular deps are encountered. svn path=/main/trunk/; revision=12051
* Bug #247548 - Remove 'last' and 'lfull' commands since nobody uses them.Zac Medico2008-11-233-81/+3
| | | | | | Thanks to Alec Warner <antarus@g.o>. svn path=/main/trunk/; revision=12049
* Add docs for all of the supported commands.Zac Medico2008-11-232-7/+51
| | | | svn path=/main/trunk/; revision=12047
* When displaying anscestors of an unstatisfied dependency (code from bugZac Medico2008-11-231-0/+5
| | | | | | | #245358), avoid a potential infinite loop and memory leak triggered by circular dependencies. Thanks to Peter Weller <welp@g.o> for reporting. svn path=/main/trunk/; revision=12045
* Add back accidentally removed @downgrade set. Thanks to Arfrever.Zac Medico2008-11-221-0/+6
| | | | svn path=/main/trunk/; revision=12044
* Add new @unavailable package set which contains all installedZac Medico2008-11-223-4/+46
| | | | | | | packages for which there are no visible ebuilds corresponding to the same $CATEGORY/$PN:$SLOT. svn path=/main/trunk/; revision=12043
* Add some hints about bash binary corruption and hardware malfunction to theZac Medico2008-11-221-1/+3
| | | | | | message that's displayed when bash exits unexpectedly. svn path=/main/trunk/; revision=12041
* Add some people to the AUTHORS section.Zac Medico2008-11-221-0/+3
| | | | svn path=/main/trunk/; revision=12033
* Fix quoting on $CHANGELOG_REVISION.v2.2_rc15Zac Medico2008-11-221-2/+1
| | | | svn path=/main/trunk/; revision=12030
* Make sure the dict returned from _parse_data() contains all of _known_keys.Zac Medico2008-11-221-0/+3
| | | | svn path=/main/trunk/; revision=12028