summaryrefslogtreecommitdiffstats
path: root/man
Commit message (Collapse)AuthorAgeFilesLines
* Remove --depclean-lib-check docs from the man/emerge.1 since it'sv2.1.9.6Zac Medico2010-09-141-6/+0
| | | | not supported in the stable branch.
* Adjust package sets documentation to match behavior in the stable branch.Zac Medico2010-09-142-19/+3
|
* Add warnings advising use of revdep-rebuild in --depclean documentation ↵Zac Medico2010-09-141-1/+4
| | | | since _ENABLE_DYN_LINK_MAP is False in the stable branch.
* Remove documentation for FEATURES=preserve-libs since it's not supported in ↵Zac Medico2010-09-141-4/+0
| | | | the stable branch.
* Update --autounmask docs to note that it generates package.use settings.Zac Medico2010-09-091-1/+2
|
* Remove newlib from ebuild(5) as it does not exist.Michał Górny2010-09-081-2/+0
|
* Bug #336338 - Document FEATURES=candy.Zac Medico2010-09-071-0/+4
|
* Make the "MASKED PACKAGES" section of the emerge man page refer toZac Medico2010-09-051-1/+2
| | | | package.accept_keywords instead of package.keywords.
* Bug #335340 - Add support for PORTAGE_BZIP2_COMMAND andZac Medico2010-08-301-0/+10
| | | | | | PORTAGE_BUNZIP2_COMMAND settings in make.conf. This only adds support for binary packages, since that's where pbzip2 can provide the most benefit in common cases.
* Bug #326561 - Implement FEATURES=unknown-features-filter. This is notZac Medico2010-08-301-0/+3
| | | | | enabled by default now, but it may be in the future, depending on feedback from unknown-features-warn.
* Replace the literal portage version in all man page headers with theZac Medico2010-08-3014-14/+14
| | | | | | string 'VERSION' which can be used as a sed template at install time. This will help avoid lots of merge conflicts since these header lines contain both a date and a portage version.
* Bug #335242: Fix typo in emerge(1) man page.Arfrever Frehtes Taifersar Arahesis2010-08-301-1/+1
|
* egencache: Add comment preserving to --update-use-local-desc.Michał Górny2010-08-281-3/+7
|
* Add --use-local-desc-output to egencache man page.Zac Medico2010-08-281-0/+3
|
* Bug #334817 - Make the make.conf.5 man page document the fact thatZac Medico2010-08-271-4/+7
| | | | /etc/portage/make.conf overrides /etc/make.conf.
* Add egencache --update-use-local-desc action to the man page.Zac Medico2010-08-271-0/+3
|
* Add a IUSE.missing repoman category for packages that have a USEZac Medico2010-08-261-0/+3
| | | | | | conditional which references a flag that is not listed in IUSE. Also split out a Package._metadata_exception() method to handle IUSE.missing for *DEPEND and SRC_URI.
* Add ebuild(1) support for FEATURES=digest.Zac Medico2010-08-251-2/+2
|
* Mention repoman support in the FEATURES=digest docs.Zac Medico2010-08-251-1/+2
|
* repoman: check for deprecated eclasseswired2010-08-221-0/+3
| | | | | | compare the inherited eclasses to a list of deprecated eclasses. print QA warnings for each deprecated eclass found and suggest an alternative for those that have one.
* * By default, disable the calc_prelink parameter to perform_md5() forZac Medico2010-08-211-0/+7
| | | | | merge and unmerge. * Add FEATURES=prelink-checksums in order to trigger the old behavior.
* Bug #292083 - Support package.accept_keywords in profiles.Zac Medico2010-08-211-0/+7
|
* Bug #324191 - Add support for FEATURES=compress-build-logs. The causesZac Medico2010-08-211-0/+6
| | | | | | | all build logs to be compressed while they are being written. Log file names have an extension that is appropriate for the compression type. Currently, only gzip(1) compression is supported, so build logs will have a '.gz' extension when this feature is enabled.
* Add support for a QA_PREBUILT variable should contain a list ofZac Medico2010-08-211-0/+10
| | | | | | pre-built binaries. Paths listed here will be appended to each of the other QA_* variables. Thanks to Diego Pettenò <flameeyes@g.o> for the suggestion.
* Bug #44796 - Add support for /etc/portage/package.env. As documented inZac Medico2010-08-202-1/+24
| | | | | | | | | | | | | | man/portage.5: Per-package environment variable settings. Entries refer to environment files that are placed in the /etc/portage/env/ directory and have the same format as make.conf(5). Format: - comment lines begin with # (no inline comments) - one DEPEND atom per line followed by name(s) of environment file(s) Example: sys-libs/glibc glibc.conf
* Update docs, comments, and messages to refer to make.globals inZac Medico2010-08-194-12/+20
| | | | /usr/share/portage/config/ instead of /etc/make.globals.
* Add support for /etc/portage/package.accept_keywords. If bothZac Medico2010-08-151-7/+14
| | | | | | | | | | | package.accept_keywords and package.keywords are present, both of them will be used, and values from package.accept_keywords will override values from package.keywords. The package.accept_keywords file is intended to replace the package.keywords file, since profiles support a different form of package.keywords which modifies effective KEYWORDS (rather than ACCEPT_KEYWORDS). Note that bug #292083 requests support for package.accept_keywords in profiles.
* Add support for /etc/portage/make.profile as an alternative toZac Medico2010-08-151-3/+5
| | | | | | /etc/make.profile. If both /etc/make.profile/ and /etc/portage/make.profile/ exist, then /etc/make.profile/ will be preferred.
* Add support for /etc/portage/make.conf. If present, this file willZac Medico2010-08-152-2/+7
| | | | override settings from /etc/make.conf.
* Add not about RDEPEND not being implicitly set in EAPI 4 or later.Zac Medico2010-08-101-2/+3
|
* Bug #331413 - Clarify the behavior of the =$CATEGORY/$PN-$VERSION* atomZac Medico2010-08-061-3/+6
| | | | operator some more. Thanks to Dennis Schridde <devurandom@gmx.net>.
* Bug #331413 - Clarify valid $VERSION parts that may be used inZac Medico2010-08-061-1/+4
| | | | conjunction with the =$CATEGORY/$PN-$VERSION* atom operator.
* * Add a --autounmask[=n] option and for now leave it disableZac Medico2010-08-051-0/+9
| | | | | | | | by default in order to minimize the impact of any bugs. * If _wrapped_select_pkg_highest_available_imp returns an installed package when the user has not explicitly requested for this package to be replaced (typically via an atom on the command line), reject the installed package and try to unmask one.
* Bug #285191 - Add back the RDEPEND.implicit warning to detect the casesZac Medico2010-08-041-0/+4
| | | | | | where DEPEND is set and RDEPEND is unset in the ebuild, since this triggers implicit RDEPEND=$DEPEND assignment (prior to EAPI 4) and is forbidden by the QA team.
* repoman: Check if the prefix.eclass is inherited if eprefixify is used. ↵Sebastian Luther2010-08-041-0/+3
| | | | Thanks to Jeremy Olexa (darkside) for the initial patch.
* Add a warning message to the --package-moves[=n] docs, noting thatZac Medico2010-07-281-1/+4
| | | | should remain enabled under normal circumstances.
* Add a --package-moves[=n] option that can be used to control theZac Medico2010-07-281-0/+4
| | | | | "Performing Global Updates" routine. This option is enabled by default.
* Document --depclean-lib-check[=n].Zac Medico2010-07-281-0/+6
|
* extended atom syntax: Add comment to make.conf man pageSebastian Luther2010-07-271-2/+7
|
* Use a directory for the default set configuration.Michał Górny2010-07-271-2/+2
| | | | | | | Expect /usr/share/portage/config/sets to be a directory containing any number of set configuration files. The default Portage sets.conf should be now installed as sets/portage.conf, and other ebuilds are free to install their own set configuration files there.
* Fix description of FEATURES=fixlafiles.Zac Medico2010-07-251-1/+1
|
* FEATURES: Rename lafilefixing -> fixlafilesSebastian Luther2010-07-251-1/+1
|
* Remove 'filedir.missing' check info.Michał Górny2010-07-151-3/+0
| | | | It is not used anywhere, and don't seem to be a useful check at all.
* Bug #328099 - Adjust ccache documentationSebastian Luther2010-07-131-2/+6
|
* warn that ccache can trigger compilation failureSebastian Luther2010-07-121-1/+4
|
* Let emerge fix .la filesSebastian Luther2010-07-121-0/+4
| | | | | Triggered by FEATURES="lafilefixing" (enabled by default) Includes a QA warning for invalid .la files.
* Support '--ask' option to 'repoman commit'.Michał Górny2010-07-111-0/+3
|
* Add FEATURES=unknown-features-warn, so the the warning about unknown FEATURESZac Medico2010-07-111-0/+3
| | | | values can be disabled.
* GLEP 55 removalDaniel Robbins2010-07-061-5/+0
|
* Add a --portdir option, requested by Daniel Robbins.Zac Medico2010-06-221-0/+3
|