The package configuration set files are located in
${PALUDIS_CONFIG_DIR}/myconfig/packages
.
@<machine-id>:<hostname>
A specific set which includes package configuration for a specific machine (mostly hardware), such as cpu features, video drivers, firmwares, etc.).
The configurations are appended in the end of the paludis configurations, i.e., it has the highest priority and will overwrite other configurations.
<order>-<name>
An ordinary set includes general package presettings. Large
order
takes priorites.Both the machine set and the ordinary set can pull in packages as the world dependecy (paludis installed world file).
?<default>
A weak configuration set defines package options or/and suggestions, without pulling packages as the world dependency.
The configuration will be prepend to the front of the paludis configurations.
Each line contains two parts: an (optionally marked) package spec, and one or more configuration parts separated by special marks.
- A line starting with a paludis valid spec (
category/package
) pull in a world dependency on the package. Optionally, a leading mark could be applied for special purposes:Mark Configuration <TAB>
dependency +
repository unmask ~
unstable unmask -
user mask <TAB>
denotes the package is dependency, hence the package will not be part of world file. Any package in weak configuration (?<default>
) is treated as a<TAB>
is always applied.+, ~, -
simply masks/unmasks a package. - The configuration part immediate follows a package spec without any marks defines an options configuration.
- A configuration part starting with
&
defines the suggestion taking configuration. - A line with a non spec (cat/pkg) induces a set inclusion
If a line starts with a @
mark, it defines a bashrc configuration for a
package, or a set inclusion.
Mark | Configuration |
---|---|
@ | build options (bashrc) |
@
defines environment variabls for building (as in bashrc). Each line must specify only one pair of a variable (e.g., CFLAGS, EXJOBS, CHOST, etc.) and its value, with the following marks supported:<no-mark>
overwrite bashrc parameter ^
insert into bashrc parameter $
remove from bashrc parameter Additionally, if the variable is “ALTERNATIVE”, then the line configures the eclectic alternatives.
In the following example, the first line unmasks xorg-server-1.19.0-r1
, adds
it to a set, takes the xf86-input-libinput
suggestion, and configures its
options as systemd xwayland providers: libressl -openssl
.
The second line will remove the -ffast-math
CFLAGS and then insert a -O2
CFLAGS.
The third line sets EXJOBS to 1.
The last line tells paludis that glibc require ld.bfd
to build.
+x11-server/xorg-server[=1.19.0-r1] systemd xwayland PROVIDERS: libressl -openssl &xf86-input-libinput @x11-server/xorg-server CFLAGS: $-ffastmath ^-O2 @x11-server/xorg-server EXJOBS: 1 @sys-libs/glibc ALTERNATIVE: ld bfd