![]() |
![]()
| ![]() |
![]()
NAME
SYNOPSIS
DESCRIPTIONThe GLOBAL OPTIONS
COMMANDSThe first argument to
ENVIRONMENT
See subcommand manpage ENVIRONMENT sections for more information. FILES
EXIT STATUSThe EXAMPLESBulk build of specific binary packagesThis first example provides a guide on how to use
[Prepare infrastructure] First you have to create a jail, which will hold all the building infrastructure needs. poudriere jail -c -v 13.1-RELEASE -a
amd64 -j 131amd64 A jail will take approximately 3GB of space. Of course you can use another version of FreeBSD, regardless of what version you are running. amd64 users can choose i386 arch like in this example: poudriere jail -c -v 13.0-RELEASE -a
i386 -j 130i386 This command will fetch and install a minimal jail, small (~400MB) so you can create a lot of them. It will install the jail under the pool you have chosen, at poudriere/jailname. You also need to have at least one ports tree to build packages from, so let us take the default configuration and create a ports tree. poudriere ports -c A ports tree will take approximately 4GB of space. [Specify a list of ports you want to build] Create a flat text file in which you put the ports you want to see
built by echo 'sysutils/screen' >
~/pkglist echo 'editors/vim' >>
~/pkglist Any line starting with the hash sign will be treated as a comment. [Launch the bulk build] Now you can launch the bulk build. At minimum the jail and list of packages to build must be specified. poudriere bulk -f ~/pkglist -j
130i386 [Find your packages] Once the bulk build is over, you can meet your shiny new packages here: /usr/local/poudriere/data/packages/130i386 with 130i386 as the name of the jail. Test a single portThis second example show how to use
poudriere testport -o category/port
-j myjail all the tests will be done in myjail. It starts the jail, then mount the ports tree (nullfs), then mounts the package dir (poudriere/data/packages/<jailname>-<tree>-<setname>), then it mounts the ~/ports-cvs/mybeautifulporttotest (nullfs) it builds all the dependencies (except runtime ones) and log it to poudriere/data/logs/testport/jailname/default/mybeautifulporttotest.log). If packages for the dependencies already exist, then
When all the dependencies are built, packages for them are created so that next time it will be faster. All the dependency phase is done with PREFIX == LOCALBASE. After that it will build the port itself with LOCALBASE != PREFIX and log the build to poudriere/data/logs/testport/jailname/default/mybeautifulporttotest.log Poudriere will try to: install it, create a package from it, deinstall it, check for cruft left behind and propose the line to add to pkg-plist if needed. Poudriere is very easy to extend so that additional tests can be easily added. FLAVORS
If FLAVOR_DEFAULT_ALL is not set, or is set to no (the default), in poudriere.conf, then:
If FLAVOR_DEFAULT_ALL is set to yes in poudriere.conf, then:
Known issues
CUSTOMIZATIONFor bulk building, you can customize binary packages produced by
Custom build optionsBefore building a package, /usr/local/etc/poudriere.d/<jailname>-<tree>-<setname>-options /usr/local/etc/poudriere.d/<jailname>-<setname>-options /usr/local/etc/poudriere.d/<jailname>-<tree>-options /usr/local/etc/poudriere.d/<tree>-<setname>-options /usr/local/etc/poudriere.d/<setname>-options /usr/local/etc/poudriere.d/<tree>-options /usr/local/etc/poudriere.d/<jailname>-options /usr/local/etc/poudriere.d/options If a directory with this name exists, it is null-mounted into the /var/db/ports/ directory of the jail, thus allowing to build package with custom OPTIONS. The This directory has the usual layout for options: it contains one directory per port (the name of the port) containing an 'options' file with lines similar to: WITH_FOO=true WITHOUT_BAR=true As a starter, you may want to copy an existing /var/db/ports/ to /usr/local/etc/poudriere.d/options. Blacklist portsYou can also specify a blacklist which will disallow the lists port origins from building on the matched jail. FLAVOR handling is different than described in the FLAVORS section.
Any of the following are allowed and will all be used in the order shown: /usr/local/etc/poudriere.d/blacklist /usr/local/etc/poudriere.d/<setname>-blacklist /usr/local/etc/poudriere.d/<tree>-blacklist /usr/local/etc/poudriere.d/<jailname>-blacklist /usr/local/etc/poudriere.d/<tree>-<setname>-blacklist /usr/local/etc/poudriere.d/<jailname>-<tree>-blacklist /usr/local/etc/poudriere.d/<jailname>-<setname>-blacklist /usr/local/etc/poudriere.d/<jailname>-<tree>-<setname>-blacklist If QEMU is being used then a special qemu blacklist is also loaded. /usr/local/etc/poudriere.d/qemu-blacklist Create optional poudriere.confYou can also specify an optional poudriere.conf that is pulled in depending on the build. Any of the following are allowed and will all be used in the order shown: /usr/local/etc/poudriere.d/poudriere.conf /usr/local/etc/poudriere.d/<setname>-poudriere.conf /usr/local/etc/poudriere.d/<tree>-poudriere.conf /usr/local/etc/poudriere.d/<jailname>-poudriere.conf /usr/local/etc/poudriere.d/<tree>-<setname>-poudriere.conf /usr/local/etc/poudriere.d/<jailname>-<tree>-poudriere.conf /usr/local/etc/poudriere.d/<jailname>-<setname>-poudriere.conf /usr/local/etc/poudriere.d/<jailname>-<tree>-<setname>-poudriere.conf Create optional make.confYou can also specify a global make.conf which will be used for all the jails. Any of the following are allowed and will all be used in the order shown: /usr/local/etc/poudriere.d/make.conf /usr/local/etc/poudriere.d/<setname>-make.conf /usr/local/etc/poudriere.d/<tree>-make.conf /usr/local/etc/poudriere.d/<jailname>-make.conf /usr/local/etc/poudriere.d/<tree>-<setname>-make.conf /usr/local/etc/poudriere.d/<jailname>-<tree>-make.conf /usr/local/etc/poudriere.d/<jailname>-<setname>-make.conf /usr/local/etc/poudriere.d/<jailname>-<tree>-<setname>-make.conf /usr/local/etc/poudriere.d/hooks/plugins/<plugin>/make.conf Create optional src.confYou can also specify a global src.conf which will be used for
building jails with the /usr/local/etc/poudriere.d/src.conf /usr/local/etc/poudriere.d/<setname>-src.conf /usr/local/etc/poudriere.d/<jailname>-src.conf Create optional src-env.confYou can also specify a global src-env.conf which will be used for
building jails with the /usr/local/etc/poudriere.d/src-env.conf /usr/local/etc/poudriere.d/<setname>-src-env.conf /usr/local/etc/poudriere.d/<jailname>-src-env.conf HooksHook scripts may be loaded in any of the following paths: /usr/local/etc/poudriere.d/hooks/<hook>.sh /usr/local/etc/poudriere.d/hooks/plugins/<plugin>/<hook>.sh For specific hook documentation see: https://github.com/freebsd/poudriere/wiki/hooks SEE ALSOjail(8), poudriere-bulk(8), poudriere-distclean(8), poudriere-image(8), poudriere-jail(8), poudriere-logclean(8), poudriere-options(8), poudriere-pkgclean(8), poudriere-ports(8), poudriere-queue(8), poudriere-status(8), poudriere-testport(8), poudriere-version(8) BUGSIn case of bugs, feel free to file a report: AUTHORSBaptiste Daroussin
⟨bapt@FreeBSD.org⟩
|