Thanks to Mike Kelly (package manager provided utilities, section 11.3.3), Danny van Dyk (ebuild functions, section 10), David Leverton (various sections) and Petteri Räty (environment state, section 11.2) for contributions. Thanks to Christian Faulhammer for fixing some of the more horrible formatting screwups. Thanks also to Mike Frysinger and Brian Harring for proof-reading and suggestions for fixes and/or clarification.
The bulk of this document is © 2007, 2008 Stephen Bennett and Ciaran McCreesh. Contributions are owned by their respective authors, and may have been changed substantially before inclusion.
This document is released under the Creative Commons Attribution-Share Alike 3.0 Licence. The full text of this licence can be found at http://creativecommons.org/licenses/by-sa/3.0/.
Issues (inaccuracies, wording problems, omissions etc.) in this document should be reported via Gentoo Bugzilla using product Gentoo Hosted Projects, component PMS/EAPI and the default assignee. There should be one bug per issue, and one issue per bug.
Patches (in git format-patch form if possible) may be submitted either via Bugzilla or to the pms-bugs@gentoo.org alias. Patches will be reviewed by the PMS team, who will do one of the following:
When reporting issues, remember that this document is not the appropriate place for pushing through changes to the tree or the package manager, except where those changes are bugs.
If any issue cannot be resolved by the PMS team, it may be escalated to the Gentoo Council.
This document aims to fully describe the format of an ebuild repository and the ebuilds therein, as well as certain aspects of package manager behaviour required to support such a repository.
This document is not designed to be an introduction to ebuild development. Prior knowledge of ebuild creation and an understanding of how the package management system works is assumed; certain less familiar terms are explained in the Glossary in chapter 13.
This document does not specify any user or package manager configuration information.
At present the only definition of what an ebuild can assume about its environment, and the only definition of what is valid in an ebuild, is the source code of the latest Portage release and a general consensus about which features are too new to assume availability. This has several drawbacks: not only is it impossible to change any aspect of Portage behaviour without verifying that nothing in the tree relies upon it, but if a new package manager should appear it becomes impossible to fully support such an ill-defined standard.
This document aims to address both of these concerns by defining almost all aspects of what an ebuild repository looks like, and how an ebuild is allowed to behave. Thus, both Portage and other package managers can change aspects of their behaviour not defined here without worry of incompatibilities with any particular repository.
Text in teletype is used for filenames or variable names. Italic text is used for terms with a particular technical meaning in places where there may otherwise be ambiguity.
The term package manager is used throughout this document in a broad sense. Although some parts of this document are only relevant to fully featured package managers, many items are equally applicable to tools or other applications that interact with ebuilds or ebuild repositories.
An EAPI can be thought of as a ‘version’ of this specification to which a package conforms. An EAPI value is a string. The following EAPIs are defined by this specification:
Except where explicitly noted, everything in this specification applies to all EAPIs.
If a package manager encounters a package version with an unrecognised EAPI, it must not attempt to perform any operations upon it. It could, for example, ignore the package version entirely (although this can lead to user confusion), or it could mark the package version as masked. A package manager must not use any metadata generated from a package with an unrecognised EAPI.
The package manager must not attempt to perform any kind of comparison test other than equality upon EAPIs.
No name may be empty. Package managers must not impose fixed upper boundaries upon the length of any name. A package manager should indicate or reject any name that is invalid according to these rules.
A category name may contain any of the characters [A-Za-z0-9+_.-]. It must not begin with a hyphen or a dot.
Note: A hyphen is not required because of the virtual category. Usually, however, category names will contain a hyphen.
A package name may contain any of the characters [A-Za-z0-9+_-]. It must not begin with a hyphen, and must not end in a hyphen followed by one or more digits.
Note: A package name does not include the category. The term qualified package name is used where a category/package pair is meant.
A slot name may contain any of the characters [A-Za-z0-9+_.-]. It must not begin with a hyphen or a dot.
A USE flag name may contain any of the characters [A-Za-z0-9+_@-]. It must begin with an alphanumeric character. Underscores should be considered reserved for USE_EXPAND, as described in section 4.3.2.
Note: The at-sign is required for LINGUAS.
A repository name may contain any of the characters [A-Za-z0-9_-]. It must not begin with a hyphen.
A keyword name may contain any of the characters [A-Za-z0-9_-]. It must not begin with a hyphen. In contexts where it makes sense to do so, a keyword name may be prefixed by a tilde or a hyphen. In KEYWORDS, -* is also acceptable as a keyword, to indicate that a package will only work on listed targets.
A tilde prefixed keyword is, by convention, used to indicate a less stable package. It is generally assumed that any user accepting keyword ~foo will also accept foo.
The exact meaning of any keywords value is beyond the scope of this specification.
The package manager must not impose fixed limits upon the number of version components. Package managers should indicate or reject any version that is invalid according to these rules.
A version starts with the number part, which is in the form [0-9]+(\.[0-9]+)* (a positive integer, followed by zero or more dot-prefixed positive integers).
This may optionally be followed by one of [a-z] (a lowercase letter).
This may be followed by zero or more of the suffixes _alpha, _beta, _pre, _rc or _p, which themselves may be suffixed by an optional integer.
This may optionally be followed by the suffix -r followed immediately by an integer (the “revision number”). If this suffix is not present, it is assumed to be -r0.
Version specifications are compared component by component, moving from left to right.
The first component of the number part is compared using strict integer comparison.
Any subsequent components of the number part are compared as follows:
If one number part is a prefix of the other, then the version with the longer number part is greater. Note in particular that 1.0 is less than 1.0.0.
Letter suffixes are compared alphabetically, with any letter being newer than no letter.
If the letters are equal, suffixes are compared. The ordering is _alpha is less than _beta is less than _pre is less than _rc is less than no suffix is less than _p. If a suffix string is equal, the associated integer parts are compared using strict integer comparison. A missing integer part is treated as zero.
If at this point the two versions are still equal, the revision number is compared using strict integer comparison as per the previous part. If the revision numbers are equal, so are the two versions.
No two packages in a given repository may have the same qualified package name and equal versions. For example, a repository may not contain more than one of foo-bar/baz-1.0.2, foo-bar/baz-1.0.2-r0 and foo-bar/baz-1.000.2.
This chapter defines the layout on-disk of an ebuild repository. In all cases below where a file or directory is specified, a symlink to a file or directory is also valid. In this case, the package manager must follow the operating system’s semantics for symbolic links and must not behave differently from normal.
An ebuild repository shall occupy one directory on disk, with the following subdirectories:
Each category provided by the repository (see also: the profiles/categories file, section 3.4) shall be contained in one directory, whose name shall be that of the category. Each category directory shall contain:
Category directories may contain additional files, whose purpose is not covered by this specification. Additional directories that are not for a package may not be present, to avoid conflicts with package name directories; an exception is made for filesystem components whose name starts with a dot, which the package manager must ignore, and for any directory named CVS.
It is not required that a directory exists for each category provided by the repository. A category directory that does not exist shall be considered equivalent to an empty category (and by extension, a package manager may treat an empty category as a category that does not exist).
A package directory contains the following:
Any ebuild in a package directory must be named name-ver.suffix, where:
Package managers must ignore any ebuild file that does not match these rules.
A package directory that contains no correctly named ebuilds shall be considered a package with no versions. A package with no versions shall be considered equivalent to a package that does not exist (and by extension, a package manager may treat a package that does not exist as a package with no versions).
A package directory may contain other files or directories, whose purpose is not covered by this specification.
The profiles directory shall contain zero or more profile directories as described in section 4, as well as the following files and directories. In any line-based file, lines beginning with a # character are treated as comments, whilst blank lines are ignored. All contents of this directory, with the exception of repo_name, are optional.
If the repository is not intended to be stand-alone, the contents of these files are to be taken from or merged with the master repository as necessary.
Other files not described by this specification may exist, but may not be relied upon. The package manager must ignore any files in this directory that it does not recognise.
profiles.desc is a line-based file, with the standard commenting rules from section 3.4, containing a list of profiles that are valid for use, along with their associated architecture and status. Each line has the format:
Where:
Fields are whitespace-delimited.
thirdpartymirrors is another simple line-based file, describing the valid mirrors for use with mirror:// URIs in this repository, and the associated download locations. The format of each line is:
Fields are whitespace-delimited. When parsing a URI of the form mirror://name/path/filename, where the path/ part is optional, the thirdpartymirrors file is searched for a line whose first field is name. Then the download URIs in the subsequent fields have path/filename appended to them to generate the URIs from which a download is attempted.
Each mirror name may appear at most once in a file. Behaviour when a mirror name appears multiple times is undefined. Behaviour when a mirror is defined in terms of another mirror is undefined. A package manager may choose to fetch from all of or a subset of the listed mirrors, and may use an order other than the one described.
The mirror with the name equal to the repository’s name (and if the repository has a master, the master’s name) may be consulted for all downloads.
use.desc contains descriptions of every valid global USE flag for this repository. It is a line-based file with the standard rules for comments and blank lines. The format of each line is:
use.local.desc contains descriptions of every valid local USE flag—those that apply only to a small number of packages, or that have different meanings for different packages. Its format is:
Flags must be listed once for each package to which they apply, or if a flag is listed in both use.desc and use.local.desc, it must be listed once for each package for which its meaning differs from that described in use.desc.
The updates directory is used to inform the package manager that a package has moved categories, names, or that a version has changed SLOT. It contains one file per quarter year, named [1-4]Q-[YYYY] for the first to fourth quarter of a given year, for example 1Q-2004 or 3Q-2006. The format of each file is again line-based, with each line having one of the following formats:
The first form, where qpn1 and qpn2 are qualified package names, instructs the package manager that the package qpn1 has changed name, category, or both, and is now called qpn2.
The second form instructs the package manager that any currently installed package version matching package dependency specification spec whose SLOT is set to slot1 should have it updated to slot2.
Any name that has appeared as the origin of a move must not be reused in the future. Any slot that has appeared as the origin of a slot move may not be used by packages matching the spec of that slot move in the future.
The licenses directory shall contain copies of the licenses used by packages in the repository. Each file will be named according to the name used in the LICENSE variable as described in section 8.2, and will contain the complete text of the license in human-readable form. Plain text format is strongly preferred but not required.
The eclass directory shall contain copies of the eclasses provided by this repository. The format of these files is described in section 7. It may also contain, in their own directory, support files needed by these eclasses.
The metadata directory contains various repository-level metadata that is not contained in profiles/. All contents are optional. In this standard only the cache subdirectory is described; other contents are optional but may include security advisories, DTD files for the various XML files used in the repository, and repository timestamps.
The metadata/cache directory contains a cached form of all important ebuild metadata variables. The cache directory, if it exists, contains directories whose names are the same as categories in the repository—not all categories and packages must be contained in it. Each subdirectory may optionally contain one file per package version in that category, named <package>-<version>, in the following format:
Each cache file contains the textual values of various metadata keys, one per line, in the following order. Other lines may be present following these; their meanings are not defined here.
Future EAPIs may define new variables, remove existing variables, change the line number or format used for a particular variable, add or reduce the total length of the file and so on. Any future EAPI that uses this cache format will continue to place the EAPI value on line 15 if such a concept makes sense for that EAPI, and will place a value that is clearly not a supported EAPI on line 15 if it does not.
Generally, a profile defines information specific to a certain ‘type’ of system—it lies somewhere between repository-level defaults and user configuration in that the information it contains is not necessarily applicable to all machines, but is sufficiently general that it should not be left to the user to configure it. Some parts of the profile can be overridden by user configuration, some only by another profile.
The format of a profile is relatively simple. Each profile is a directory containing any number of the files described in this chapter, and possibly inheriting another profile. The files themselves follow a few basic conventions as regards inheritance and format; these are described in the next section. It may also contain any number of subdirectories containing other profiles.
A profile may contain a parent file. Each line must contain a relative path to another profile which will be considered as one of this profile’s parents. Any settings from the parent are inherited by this profile, and can be overridden by it. Precise rules for how settings are combined with the parent profile vary between files, and are described below. Parents are handled depth first, left to right, with duplicate parent paths being sourced for every time they are encountered.
It is illegal for a profile’s parent tree to contain cycles. Package manager behaviour upon encountering a cycle is undefined.
This file must not contain comments, blank lines or make use of line continuations.
If a profile contains a file named deprecated, it is treated as such. The first line of this file should contain the path from the profiles directory of the repository to a valid profile that is the recommended upgrade path from this profile. The remainder of the file can contain any text, which may be displayed to users using this profile by the package manager. This file is not inherited—profiles which inherit from a deprecated profile are not deprecated.
This file must not contain comments or make use of line continuations.
make.defaults is used to define defaults for various environment and configuration variables. This file is unusual in that it is not combined at a file level with the parent—instead, each variable is combined or overridden individually as described in section 4.3.
The file itself is a line-based key-value format. Each line contains a single VAR="value" entry, where the value must be double quoted. A variable name must start with one of a-zA-Z and may contain a-zA-Z0-9_-. Additional syntax, which is a small subset of bash syntax, is allowed as follows:
The virtuals file defines default providers for “old-style” virtual packages. It is a simple line-based file, with each line containing two whitespace-delimited tokens. The first is a virtual package name (for example, virtual/alsa) and the second is a qualified package name. Blank lines and those beginning with a # character are ignored. When attempting to resolve a virtual name to a concrete package, the specification defined in the active profile’s virtuals list should be used if no provider is already installed.
The virtuals file is inherited in the simplest manner: all entries from the parent profile are loaded, then entries from the current profile. If a virtual package name appears in both, the entry in the parent profile is discarded.
The use.defaults file is used to implement ‘autouse’—switching USE flags on or off depending upon which packages are installed. It is considered deprecated, and is not used by default by any current package manager. It is mentioned here for completeness only, and its format is not discussed.
These files are a simple one-item-per-line list, which is inherited in the following manner: the parent profile’s list is taken, and the current profile’s list appended. If any line begins with a hyphen, then any lines previous to it whose contents are equal to the remainder of that line are removed from the list. Once again, blank lines and those beginning with a # are discarded.
The packages file is used to define the ‘system set’ for this profile. After the above rules for inheritance and comments are applied, its lines must take one of two forms: a package dependency specification prefixed by * denotes that the atom forms part of the system set. A package dependency specification on its own may also appear for legacy reasons, but should be ignored when calculating the system set.
The packages.build file is used by Gentoo’s Catalyst tool to generate stage1 tarballs, and has no relevance to the operation of a package manager. It is thus outside the scope of this document, but is mentioned here for completeness.
package.mask is used to prevent packages from being installed on a given profile. Each line contains one package dependency specification; anything matching this specification will not be installed unless unmasked by the user’s configuration.
Note that the -spec syntax can be used to remove a mask in a parent profile, but not necessarily a global mask (from profiles/package.mask, section 3.4).
Note: Portage currently treats profiles/package.mask as being on the leftmost branch of the inherit tree when it comes to -lines. This behaviour may not be relied upon.
package.provided is used to tell the package manager that a certain package version should be considered to be provided by the system regardless of whether it is actually installed. Because it has severe adverse effects on USE-based and slot-based dependencies, its use is strongly deprecated and package manager support must be regarded as purely optional.
The package.use file may be used by the package manager to override the default USE flags specified by make.defaults on a per package basis. The format is to have a package dependency specification, and then a space delimited list of USE flags to enable. A USE flag in the form of -flag indicates that the package should have the USE flag disabled. The package dependency specification is limited to the forms defined by EAPI 0.
This section covers the four files use.mask, use.force, package.use.mask and package.use.force. They are described together because they interact in a non-trivial manner.
Simply speaking, use.mask and use.force are used to say that a given USE flag must never or always, respectively, be enabled when using this profile. package.use.mask and package.use.force do the same thing on a per-package, or per-version, basis. The precise manner in which they interact is less simple, and is best described in terms of the algorithm used to determine whether a flag is masked for a given package version. This is described in Algorithm 1.
The logic for use.force and package.use.force is identical. If a flag is both masked and forced, the mask is considered to take precedence.
USE_EXPAND values may be forced or masked by using expand_name_value.
A package manager may treat ARCH values that are not the current architecture as being masked.
This section documents variables that have special meaning, or special behaviour, when defined in a profile’s make.defaults file.
Incremental variables must stack between parent and child profiles in the following manner: Beginning with the highest parent profile, tokenise the variable’s value based on whitespace and concatenate the lists. Then, for any token T beginning with a hyphen, remove it and any previous tokens whose value is equal to T with the hyphen removed, or, if T is equal to -*, remove all previous values. Note that because of this treatment, the order of tokens in the final result is arbitrary, not necessarily related to the order of tokens in any given profile. The following variables must be treated in this fashion:
Other variables, except where they affect only package-manager-specific functionality (such as Portage’s FEATURES variable), must not be treated incrementally—later definitions shall completely override those in parent profiles.
The following variables have specific meanings when set in profiles.
|
So, for example, if USE_EXPAND contains ‘ALSA_CARDS’, and the ALSA_CARDS variable contains ‘foo’, ‘alsa_cards_foo’ will be appended to USE.
Any other variables set in make.defaults must be passed on into the ebuild environment as-is, and are not required to be interpreted by the package manager.
Old-style virtuals are pseudo-packages—they can be depended upon or installed, but do not exist in the ebuild repository. An old-style virtual requires several things in the repository: at least one ebuild must list the virtual in its PROVIDE variable, and there must be at least one entry in a profiles virtuals file listing the default provider for each profile—see sections 8.3 and 4.2.4 for specifics on these two. Old-style virtuals require special handling as regards dependencies; this is described below.
All old-style virtuals must use the category virtual. Not all packages using the virtual category may be assumed to be old style virtuals.
Note: A new-style virtual is simply an ebuild which install no files and use its dependency strings to select providers. By convention, and to ease migration, these are also placed in the virtual category.
When a dependency on a virtual package is encountered, it must be resolved into a real package before it can be satisfied. There are two factors that affect this process: whether a package providing the virtual is installed, and the virtuals file in the active profile (section 4.2.4). If a package is already installed which satisfies the virtual requirement (via PROVIDE), then it should be used to satisfy the dependency. Otherwise, the profiles virtuals file (section 4.2.4) should be consulted to choose an appropriate provider.
Dependencies on old style virtuals must not use any kind of version restriction.
Blocks on provided virtuals have special behaviour documented in section 9.2.4.
The ebuild file format is in its basic form a subset of the format of a bash script. The interpreter is assumed to be GNU bash, version 3.0 or later. The file encoding must be UTF-8 with Unix-style newlines. When sourced, the ebuild must define certain variables and functions (see sections 8 and 10 for specific information), and must not call any external programs, write anything to standard output or standard error, or modify the state of the system in any way.
Eclasses serve to store common code that is used by more than one ebuild, which greatly aids maintainability and reduces the tree size. However, due to metadata cache issues, care must be taken in their use. In format they are similar to an ebuild, and indeed are sourced as part of any ebuild using them. The interpreter is therefore the same, and the same requirements for being parseable hold.
Eclasses must be located in the eclass directory in the top level of the repository—see section 3.6. Each eclass is a single file named <name>.eclass, where <name> is the name of this eclass, used by inherit and EXPORT_FUNCTIONS among other places.
An ebuild wishing to make use of an eclass does so by using the inherit command in global scope. This will cause the eclass to be sourced as part of the ebuild—any function or variable definitions in the eclass will appear as part of the ebuild, with exceptions for certain metadata variables, as described below.
The inherit command takes one or more parameters, which must be the names of eclasses (excluding the .eclass suffix and the path). For each parameter, in order, the named eclass is sourced.
Eclasses may end up being sourced multiple times.
The inherit command must also ensure that:
The IUSE, DEPEND, RDEPEND and PDEPEND variables are handled specially when set by an eclass. They must be accumulated across eclasses, appending the value set by each eclass to the resulting value after the previous one is loaded. Then the eclass-defined value is appended to that defined by the ebuild. In the case of RDEPEND, this is done after the implicit RDEPEND rules in section 8.4 are applied.
There is one command available in the eclass environment that is neither available nor meaningful in ebuilds—EXPORT_FUNCTIONS. This can be used to alias ebuild phase functions from the eclass so that an ebuild inherits a default definition whilst retaining the ability to override and call the eclass-defined version from it. The use of it is best illustrated by an example; this is given in listing 7.1 and is a snippet from a hypothetical foo.eclass.
foo_src_compile()
{ econf --enable-gerbil \ $(use_enable fnord) \ || die "econf failed" emake gerbil || die "Couldn’t make a gerbil" emake || die "emake failed" } EXPORT_FUNCTIONS src_compile
|
This example defines an eclass src_compile function and uses EXPORT_FUNCTIONS to alias it. Then any ebuild that inherits foo.eclass will have a default src_compile defined, but should the author wish to override it he can access the function in foo.eclass by calling foo_src_compile.
EXPORT_FUNCTIONS must only be used on ebuild phase functions. The function that is aliased must be named eclassname_phasefunctionname, where eclassname is the name of the eclass.
EXPORT_FUNCTIONS must be used at most once per eclass.
Note: This section describes variables that may or must be defined by ebuilds. For variables that are passed from the package manager to the ebuild, see section 11.1.
All ebuild-defined variables discussed in this chapter must be defined independently of any system, profile or tree dependent data, and must not vary depending upon the ebuild phase. In particular, ebuild metadata can and will be generated on a different system from that upon which the ebuild will be used, and the ebuild must generate identical metadata every time it is used.
Globally defined ebuild variables without a special meaning must similarly not rely upon variable data.
All ebuilds must define at least the following variables:
In EAPIs shown in table 8.1 as supporting IUSE defaults, any use flag name in IUSE may be prefixed by at most one of a plus or a minus sign. If such a prefix is present, the package manager may use it as a suggestion as to the default value of the use flag if no other configuration overrides it.
If any of these variables are undefined, or if any of these variables are set to invalid values, the package manager’s behaviour is undefined; ideally, an error in one ebuild should not prevent operations upon other ebuilds or packages.
Ebuilds may define any of the following variables:
An empty EAPI value is equal to 0. Ebuilds must not assume that they will get a particular one of these two values if they are expecting one of these two values.
The package manager must either pre-set the EAPI variable to 0 or ensure that it is unset before sourcing the ebuild for metadata generation. When using the ebuild for other purposes, the package manager must either pre-set EAPI to the value specified by the ebuild’s metadata or ensure that it is unset.
If any of these variables are set to invalid values, the package manager’s behaviour is undefined; ideally, an error in one ebuild should not prevent operations upon other ebuilds or packages.
If RDEPEND is unset (but not if it is set to an empty string) in an ebuild, the package manager must set its value to be equal to the value of DEPEND.
When dealing with eclasses, only values set in the ebuild itself are considered for this behaviour; any DEPEND or RDEPEND set in an eclass does not change the implicit RDEPEND=$DEPEND for the ebuild portion, and any DEPEND value set in an eclass does not get added to RDEPEND.
The following variables must be defined by inherit, and may be considered to be part of the ebuild’s metadata:
Note: Thus, by extension of section 8.1, inherit may not be used conditionally, except upon constant conditions.
There are three classes of dependencies supported by ebuilds:
In addition, SRC_URI, HOMEPAGE, PROVIDE, RESTRICT and LICENSE use dependency-style specifications to specify their values.
The following elements are recognised in at least one class of specification. All elements must be surrounded on both sides by whitespace, except at the start and end of the string.
In particular, note that whitespace is not optional.
In an all-of group, all of the child elements must be matched.
In a use-conditional group, if the associated use flag is enabled (or disabled if it has an exclamation mark prefix), all of the child elements must be matched.
Any use-conditional group that is an immediate child of an any-of group, if not enabled (disabled for an exclamation mark prefixed use flag name), is not considered a member of the any-of group for match purposes.
In an any-of group, at least one immediate child element must be matched. A blocker is considered to be matched if its associated package dependency specification is not matched.
An empty any-of group counts as being matched.
A package dependency can be in one of the following base formats. A package manager must warn or error on non-compliant input.
In EAPIs shown in table 9.2 as supporting SLOT dependencies, either of the above formats may additionally be suffixed by a :slot restriction, as described in section 9.2.4. A package manager must warn or error if slot dependencies are used with an EAPI not supporting SLOT dependencies.
In EAPIs shown in table 9.3 as supporting 2-style USE dependencies, a specification may additionally be suffixed by at most one 2-style [use] restriction, as described in section 9.2.4. A package manager must warn or error if this feature is used with an EAPI not supporting use dependencies.
Note: Order is important. The slot restriction must come before use dependencies.
The following operators are available:
If the specification is prefixed with one or two exclamation marks, the named dependency is a block rather than a requirement—that is to say, the specified package must not be installed, with the following exceptions:
There are two strengths of block: weak and strong. A weak block may be ignored by the package manager, so long as any blocked package will be uninstalled later on. A strong block must not be ignored. The mapping from one or two exclamation marks to strength is described in table 9.4.
|
A named slot dependency consists of a colon followed by a slot name. A specification with a named slot dependency matches only if the slot of the matched package is equal to the slot specified. If the slot of the package to match cannot be determined (e.g. because it is not a supported EAPI), the match is treated as unsuccessful.
A 2-style use dependency consists of one of the following:
Multiple requirements may be combined using commas, e.g. [first,-second,third?].
When multiple requirements are specified, all must match for a successful match.
It is an error for a use dependency to be applied to an ebuild which does not have the flag in question in IUSE, or for an ebuild to use a conditional use dependency when that ebuild does not have the flag in IUSE.
The following tokens are permitted inside RESTRICT:
Package managers may recognise other tokens, but ebuilds may not rely upon them being supported.
All filename components that are enabled (i.e. not inside a use-conditional block that is not matched) in SRC_URI must be available in the DISTDIR directory. In addition, these components are used to make the A and AA variables.
If a component contains a full URI with protocol, that download location must be used. Package managers may also consult mirrors for their files.
The special mirror:// protocol must be supported. See section 3.4.2 for mirror details.
If a simple filename rather than a full URI is provided, the package manager can only use mirrors to download the file.
The RESTRICT metadata key can be used to impose additional restrictions upon downloading—see section 9.2.5 for details.
The following is a list of functions that an ebuild, or eclass, may define, and which will be called by the package manager as part of the build and/or install process. In all cases the package manager must provide a default implementation of these functions; unless otherwise stated this must be a no-op. Most functions must assume only that they have write access to the package’s working directory (the WORKDIR environment variable; see section 11.1), and the temporary directory T; exceptions are noted below. All functions may assume that they have read access to all system libraries, binaries and configuration files that are accessible to normal users.
Some functions may assume that their initial working directory is set to a particular location; these are noted below. If no initial working directory is mandated, it may be set to anything and the ebuild must not rely upon a particular location for it.
The environment for functions run outside of the build sequence (that is, pkg_config, pkg_info, pkg_prerm and pkg_postrm) must be the environment used for the build of the package, not the current configuration.
Ebuilds must not call nor assume the existence of any phase functions.
The pkg_setup function sets up the ebuild’s environment for all following functions, before the build process starts. Further, it checks whether any necessary prerequisites not covered by the package manager, e.g. that certain kernel configuration options are fulfilled.
pkg_setup must be run with full filesystem permissions, including the ability to add new users and/or groups to the system.
The src_unpack function extracts all of the package’s sources, applies patches and sets up the package’s build system for further use.
The initial working directory must be WORKDIR, and the default implementation used when the ebuild lacks the src_unpack function shall behave as:
The src_prepare function is only called for EAPIs listed in table 10.1 as supporting it.
The src_prepare function can be used for post-unpack source preparation. The default implementation does nothing.
The initial working directory must be S if that exists, falling back to WORKDIR otherwise.
The src_configure function is only called for EAPIs listed in table 10.2 as supporting it.
The initial working directory must be S if that exists, falling back to WORKDIR otherwise.
The src_configure function configures the package’s build environment. The default implementation used when the ebuild lacks the src_configure function shall behave as:
The src_compile function configures the package’s build environment in EAPIs lacking src_configure, and builds the package in all EAPIs.
The initial working directory must be S if that exists, falling back to WORKDIR otherwise.
For EAPIs listed in table 10.3 as using format 0, the default implementation used when the ebuild lacks the src_compile function shall behave as:
For EAPIs listed in table 10.3 as using format 1, the default implementation used when the ebuild lacks the src_compile function shall behave as:
For EAPIs listed in table 10.3 as using format 2, the default implementation used when the ebuild lacks the src_compile function shall behave as:
The src_test function runs unit tests for the newly built but not yet installed package as provided.
The initial working directory must be S if that exists, falling back to WORKDIR otherwise. The default implementation used when the ebuild lacks the src_test function must, if tests are enabled, run make check if and only if such a target is available, or if not run make test, if and only such a target is available. In both cases, if make returns non-zero the build must be aborted.
The src_test function may be disabled by RESTRICT. See section 9.2.5.
The src_install function installs the package’s content to a directory specified in $D.
The initial working directory must be S if that exists, falling back to WORKDIR otherwise. The default implementation used when the ebuild lacks the src_install function is a no-op.
The pkg_preinst function performs any special tasks that are required immediately before merging the package to the live filesystem. It must not write outside of the directories specified by the ROOT and D environment variables.
pkg_preinst must be run with full access to all files and directories below that specified by the ROOT and D environment variables.
The pkg_postinst function performs any special tasks that are required immediately after merging the package to the live filesystem. It must not write outside of the directory specified in the ROOT environment variable.
pkg_postinst, like, pkg_preinst, must be run with full access to all files and directories below that specified by the ROOT environment variable.
The pkg_prerm function performs any special tasks that are required immediately before unmerging the package from the live filesystem. It must not write outside of the directory specified by the ROOT environment variable.
pkg_prerm must be run with full access to all files and directories below that specified by the ROOT environment variable.
The pkg_postrm function performs any special tasks that are required immediately after unmerging the package from the live filesystem. It must not write outside of the directory specified by the ROOT environment variable.
pkg_postrm must be run with full access to all files and directories below that specified by the ROOT environment variable.
The pkg_config function performs any custom steps required to configure a package after it has been fully installed. It is the only ebuild function which may be interactive and prompt for user input.
pkg_config must be run with full access to all files and directories inside of ROOT.
The pkg_info function may be called by the package manager when displaying information about an installed package.
pkg_info must not write to the filesystem.
The pkg_nofetch function is run when the fetch phase of an fetch-restricted ebuild is run, and the relevant source files are not available. It should direct the user to download all relevant source files from their respective locations, with notes concerning licensing if applicable.
pkg_nofetch must require no write access to any part of the filesystem.
In EAPIs listed in table 10.4 as supporting default_ phase functions, a function named default_${EBUILD_PHASE} that behaves as the default implementation for that EAPI shall be defined when executing any given EBUILD_PHASE. Ebuilds must not call these functions except when in the phase in question.
|
The call order for installing a package is:
The call order for uninstalling a package is:
The call order for reinstalling a package is:
The call order for upgrading or downgrading a package is:
The pkg_config, pkg_info and pkg_nofetch functions are not called in a normal sequence.
For installing binary packages, the src phases are not called.
When building binary packages that are not to be installed locally, the pkg_preinst and pkg_postinst functions are not called.
The package manager must define the following environment variables. Not all variables are meaningful in all phases; variables that are not meaningful in a given phase may be unset or set to any value. Ebuilds must not attempt to modify any of these variables, unless otherwise specified.
Because of their special meanings, these variables may not be preserved consistently across all phases as would normally happen due to environment saving (see 11.2). For example, EBUILD_PHASE is different for every phase, and ROOT may have changed between the various different pkg_* phases. Ebuilds must recalculate any variable they derive from an inconsistent variable.
| |||||
Variable | Legal in | Consistent? | Description
| ||
| P |
all | No1 |
Package name and version, without the revision part. For example, vim-7.0.174. |
||
| PN |
all | ditto |
Package name, for example vim. |
||
| CATEGORY |
all | ditto |
The package’s category, for example app-editors. |
||
| PV |
all | Yes |
Package version, with no revision. For example 7.0.174. |
||
| PR |
all | Yes |
Package revision, or r0 if none exists. |
||
| PVR |
all | Yes |
Package version and revision, for example 7.0.174-r0 or 7.0.174-r1. |
||
| PF |
all | Yes |
Package name, version, and revision, for example vim-7.0.174-r1. |
||
| A |
src_* | Yes |
All source files available for the package, whitespace separated with no leading or trailing whitespace, and in the order in which the item first appears in a matched component of SRC_URI. Does not include any that are disabled because of USE conditionals. The value is calculated from the base names of each element of the SRC_URI ebuild metadata variable. |
||
| AA2 |
src_* | Yes |
All source files that could be available for the package, including any that are disabled in A because of USE conditionals. The value is calculated from the base names of each element of the SRC_URI ebuild metadata variable. |
||
| FILESDIR |
src_*3 | No |
The full path to the package’s files directory, used for small support files or patches. See section 3.3. May or may not exist; if a repository provides no support files for the package in question then an ebuild must be prepared for the situation where FILESDIR points to a non-existent directory. |
||
| PORTDIR |
ditto | No |
The full path to the master repository’s base directory. |
||
| DISTDIR |
ditto | No |
The full path to the directory in which the files in the A variable are stored. |
||
| ECLASSDIR |
ditto | No |
The full path to the master repository’s eclass directory. |
||
| ROOT |
pkg_* | No |
The absolute path to the root directory into which the package is to be merged. Phases which run with full filesystem access must not touch any files outside of the directory given in ROOT. Also of note is that in a cross-compiling environment, binaries inside of ROOT will not be executable on the build machine, so ebuilds must not call them. ROOT must be non-empty and end in a trailing slash. |
||
| T |
All | Partially4 |
The full path to a temporary directory for use by the ebuild. |
||
| TMPDIR |
All | Ditto |
Must be set to the location of a usable temporary directory, for any applications called by an ebuild. Must not be used by ebuilds directly; see T above. |
||
| HOME |
All | Ditto |
The full path to an appropriate temporary directory for use by any programs invoked by the ebuild that may read or modify the home directory. |
||
| D |
src_install | No |
Contains the full path to the image directory into which the package should be installed. Must be non-empty and end in a trailing slash. |
||
| D (continued) |
pkg_preinst, pkg_postinst | Yes |
Contains the full path to the image that is about to be or has just been merged. Must be non-empty and end in a trailing slash. |
||
| IMAGE5 |
pkg_preinst, pkg_postinst | Yes |
Equal to D. |
||
| INSDESTTREE |
src_install | No |
Controls the location where doins installs things. |
||
| USE |
All | Yes |
A whitespace-delimited list of all active USE flags for this ebuild, including those originating from variables in USE_EXPAND. |
||
| EBUILD_PHASE |
All | No |
Takes one of the values config, setup, nofetch, unpack, prepare, configure, compile, test, install, preinst, postinst, prerm, postrm, info according to the top level ebuild function that was executed by the package manager. May be unset or any single word that is not any of the above when the ebuild is being sourced for other (e.g. metadata or QA) purposes. |
||
| WORKDIR |
src_* | Yes |
The full path to the ebuild’s working directory, in which all build data should be contained. |
||
| KV |
All | Yes |
The version of the running kernel at the time the ebuild was first executed, as returned by the uname -r command or equivalent. May be modified by ebuilds. |
||
All variables set in the active profiles’ make.defaults files must be exported to the ebuild environment. CHOST, CBUILD and CTARGET, if not set by profiles, must contain either an appropriate machine tuple (the definition of appropriate is beyond the scope of this specification) or be unset.
PATH must be initialized by the package manager to a “usable” default. The exact value here is left up to interpretation, but it should include the equivalent “sbin” and “bin” and any package manager specific directories.
GZIP, BZIP, BZIP2, CDPATH, GREP_OPTIONS, GREP_COLOR and GLOBIGNORE must not be set.
Exported and default scope variables are saved between functions. A non-local variable set in a function earlier in the call sequence must have its value preserved for later functions, including functions executed as part of a later uninstall. Variables that were exported must remain exported in later functions; variables with default visibility may retain default visibility or be exported.
Variables with special meanings to the package manager are excluded from this rule.
Global variables must only contain invariant values (see 8.1). If a global variable’s value is invariant, it may have the value that would be generated at any given point in the build sequence.
This is demonstrated by code listing 11.1.
GLOBAL_VARIABLE="a"
src_compile() { GLOBAL_VARIABLE="b" DEFAULT_VARIABLE="c" export EXPORTED_VARIABLE="d" local LOCAL_VARIABLE="e" } src_install(){ [[ ${GLOBAL_VARIABLE} == "a" ]] \ || [[ ${GLOBAL_VARIABLE} == "b" ]] \ || die "broken env saving for globals" [[ ${DEFAULT_VARIABLE} == "c" ]] \ || die "broken env saving for default" [[ ${EXPORTED_VARIABLE} == "d" ]] \ || die "broken env saving for exported" [[ $(printenv EXPORTED_VARIABLE ) == "d" ]] \ || die "broken env saving for exported" [[ -z ${LOCAL_VARIABLE} ]] \ || die "broken env saving for locals" } |
This section documents the commands available to an ebuild. Unless otherwise specified, they may be aliases, shell functions, or executables in the ebuild’s PATH.
When an ebuild is being sourced for metadata querying rather than for a build (that is to say, when none of the src_ or pkg_ functions are to be called), no external command may be executed. The package manager may take steps to enforce this.
Any ebuild not listed in the system set for the active profile(s) may assume the presence of every command that is always provided by the system set for that profile. However, it must target the lowest common denominator of all systems on which it might be installed—in most cases this means that the only packages that can be assumed to be present are those listed in the base profile or equivalent, which is inherited by all available profiles. If an ebuild requires any applications not provided by the system profile, or that are provided conditionally based on USE flags, appropriate dependencies must be used to ensure their presence.
The following commands must always be available in the ebuild environment:
In some cases a package’s build process will require the availability of executables not provided by the core system, a common example being autotools. Commands provided by dependencies are available in the following cases:
The following commands will always be available in the ebuild environment, provided by the package manager. Except where otherwise noted, they may be internal (shell functions or aliases) or external commands available in PATH; where this is not specified, ebuilds may not rely upon either behaviour.
These commands affect the behaviour of the sandbox. Each command takes a single directory as argument. Ebuilds must not run any of these commands once the current phase function has returned.
These commands are used to extract information about the host system. Ebuilds must not run any of these commands in parallel with any other package manager command. Ebuilds must not run any of these commands once the current phase function has returned.
These commands display messages to the user. Unless otherwise stated, the entire argument list is used as a message, as in the simple invocations of echo. Ebuilds must not run any of these commands once the current phase function has returned. Unless otherwise noted, output may be sent to stdout, stderr or some other appropriate facility.
These commands are used when an error is detected that will prevent the build process from completing. Ebuilds must not run any of these commands once the current phase function has returned.
These commands are used during the src_compile and src_install phases to run the package’s build commands. Ebuilds must not run any of these commands once the current phase function has returned.
econf must be implemented internally—that is, as a bash function and not an external script. Should any portion of it fail, it must abort the build using die.
1: let prefix=/usr
2: if the caller specified --prefix=$p then 3: let prefix=$p 4: end if 5: let libdir= 6: if the ABI environment variable is set then 7: let libvar=LIBDIR_$ABI 8: if the environment variable named by libvar is set then 9: let libdir=the value of the variable named by libvar 10: end if 11: end if 12: if libdir is non-empty then 13: pass --libdir=$prefix/$libdir to configure 14: end if |
emake \
prefix="${D}"/usr \ mandir="${D}"/usr/share/man \ infodir="${D}"/usr/share/info \ libdir="${D}"/usr/$(get_libdir) \ "$@" \ install |
These commands are used to install files into the staging area, in cases where the package’s make install target cannot be used or does not install all needed files. Except where otherwise stated, all filenames created or modified are relative to the staging directory, given by ${D}. These commands must all be external programs and not bash functions or aliases—that is, they must be callable from xargs. Ebuilds must not run any of these commands once the current phase function has returned.
1: if CONF_LIBDIR_OVERRIDE is set in the environment then
2: return CONF_LIBDIR_OVERRIDE 3: end if 4: if CONF_LIBDIR is set in the environment then 5: let LIBDIR_default=CONF_LIBDIR 6: else 7: let LIBDIR_default=“lib” 8: end if 9: if ABI is set in the environment then 10: let abi=ABI 11: else if DEFAULT_ABI is set in the environment then 12: let abi=DEFAULT_ABI 13: else 14: let abi=“default” 15: end if 16: return the value of LIBDIR_$abi |
The following commands are used to set the various destination trees, all relative to ${D}, used by the above installation commands. They must be shell functions or aliases, due to the need to set variables read by the above commands. Ebuilds must not run any of these commands once the current phase function has returned.
These functions work on variables containing whitespace-delimited lists (e.g. USE). Ebuilds must not run any of these commands once the current phase function has returned. Ebuilds must not call any function that operates upon USE to query a value that is not either listed in IUSE, a USE_EXPAND value or an ARCH value; package manager behaviour is undefined if such a call is made.
The following commands are always available in the ebuild environment, but don’t really fit in any of the above categories. Ebuilds must not run any of these commands once the current phase function has returned.
All arguments to unpack must be either a filename without path, in which case unpack looks in DISTDIR for the file, or start with the string ./, in which case unpack uses the argument as a path relative to the working directory.
Must be able to unpack the following file formats, if the relevant binaries are available:
It is up to the ebuild to ensure that the relevant external utilities are available, whether by being in the system set or via dependencies.
The following commands are available for debugging. Normally all of these commands should be no ops; a package manager may provide a special debug mode where these commands instead do something. Ebuilds must not run any of these commands once the current phase function has returned.
Except where documented otherwise, all functions and variables that contain any of the following strings (ignoring case) are reserved for package manager use and may not be used or relied upon by ebuilds:
For the sake of this section:
The following exclusivity and invariancy requirements are mandated:
Note: In this chapter, file and regular file have their Unix meanings.
The merge process merges the contents of the D directory onto the filesystem under ROOT. This is not a straight copy; there are various subtleties which must be addressed.
The unmerge process removes an installed package’s files. It is not covered in detail in this specification.
Directories are merged recursively onto the filesystem. The method used to perform the merge is not specified, so long as the end result is correct. In particular, merging a directory may alter or remove the source directory under D.
Ebuilds must not attempt to merge a directory on top of any existing file that is not either a directory or a symlink to a directory.
The owner, group and mode (including set*id and sticky bits) of the directory must be preserved, except as follows:
On SELinux systems, the SELinux context must also be preserved. Other directory attributes, including modification time, may be discarded.
Behaviour upon encountering an empty directory is undefined. Ebuilds must not attempt to install an empty directory.
Regular files are merged onto the filesystem (but see the notes on configuration file protection, below). The method used to perform the merge is not specified, so long as the end result is correct. In particular, merging a regular file may alter or remove the source file under D.
Ebuilds must not attempt to merge a regular file on top of any existing file that is not either a regular file or a symlink to a regular file.
The owner, group and mode (including set*id and sticky bits) of the file must be preserved, except as follows:
On SELinux systems, the SELinux context must also be preserved. Other file attributes, including modification time, may be discarded.
The package manager must provide a means to prevent user configuration files from being overwritten by any package updates. The profile variables CONFIG_PROTECT and CONFIG_PROTECT_MASK (section 4.3) control the paths for which this must be enforced.
In order to ensure interoperability with configuration update tools, the following scheme must be used by all package managers when merging any regular file:
Symlinks are merged as symlinks onto the filesystem. The link destination for a merged link shall be the same as the link destination for the link under D, except as noted below. The method used to perform the merge is not specified, so long as the end result is correct; in particular, merging a symlink may alter or remove the symlink under D.
Ebuilds must not attempt to merge a symlink on top of a directory.
Any absolute symlink whose link starts with D must be rewritten with the leading D removed. The package manager should issue a notice when doing this.
A hard link may be merged either as a single file with links or as multiple independent files.
Ebuilds must not attempt to install any other type of file (FIFOs, device nodes etc).
This section contains explanations of some of the terms used in this document whose meaning may not be immediately obvious.
The metadata.xml file is used to contain extra package- or category-level information beyond what is stored in ebuild metadata. Its exact format is strictly beyond the scope of this document, and is described in the DTD file located at http://www.gentoo.org/dtd/metadata.dtd.
The following items are not specified by this document, and must not be relied upon by ebuilds. This is, of course, an incomplete list—it covers only the things that the authors know have been abused in the past.
The items described in this chapter are included for information only. They were deprecated or abandoned long before EAPI was introduced. Ebuilds must not use these features, and package managers should not be changed to support them.
Historically, Portage supported if-else use conditionals, as shown by listing C.1. The block before the colon would be taken if the condition was met, and the block after the colon would be taken if the condition was not met.
This feature was deprecated and removed from the tree long before the introduction of EAPI.
DEPEND="
flag? ( taken/if-true ) : ( taken/if-false ) " |
Portage has very crude support for CVS packages. The package foo could contain a file named foo-cvs.1.2.3.ebuild. This version would order higher than any non-CVS version (including foo-2.ebuild). This feature has not seen real world use and breaks versioned dependencies, so it must not be used.
Note: This chapter is informative and for convenience only. Refer to the main text for specifics.
| ||||||
Feature | Reference | EAPIs
| ||||
0 | 1 | 2
| ||||
| IUSE defaults | table 8.1 | No | Yes | Yes | ||
| SRC_URI arrows | table 9.1 | No | No | Yes | ||
| Slot dependencies | table 9.2 | No | Yes | Yes | ||
| Use dependencies | table 9.3 | No | No | 2-style | ||
| ! blockers | table 9.4 | Unspecified | Unspecified | Weak | ||
| !! blockers | table 9.4 | Forbidden | Forbidden | Strong | ||
| src_prepare | table 10.1 | No | No | Yes | ||
| src_configure | table 10.2 | No | No | Yes | ||
| src_compile style | table 10.3 | 0 | 1 | 2 | ||
| default_ phase functions | table 10.4 | No | No | Yes | ||
| doman languages | table 11.2 | No | No | Yes | ||
| default function | table 11.3 | No | No | Yes | ||
Note: This chapter is informative and for convenience only. Refer to the main text for specifics.
EAPI 0 is the base EAPI.
EAPI 1 is EAPI 0 with the following changes:
EAPI 2 is EAPI 1 with the following changes:
[1] Marius Mauch. GLEP 44: Manifest2 format. http://glep.gentoo.org/glep-0044.html, December 2005.