Skip to content
Mateusz Piotrowski edited this page Jul 26, 2022 · 18 revisions

What is poudriere?

poudriere is a BSD-2 licensed tool primarily designed to test package production on FreeBSD. However, most people will find it useful to bulk build ports for FreeBSD.

Its goals are to use modern facilities present in FreeBSD, to be easy to use, to depend only on base, and to be parallel.

It is able to build the whole portstree like tinderbox does.

poudriere is able to build packages for versions of FreeBSD that are different from the box on which it is installed, and also to build packages for i386 if the host is an amd64 box.

Once the package building is done, the packages will be in a layout identical to the official mirrors. Therefore they will be usable by any package management tool (pkg, portmaster, and so on).

What does poudriere require?

  • a recent FreeBSD (>= 8.3)
    
  • root access
    

That is all. For more comfort, we recommend to have quite a lot of RAM in order to make the builds in a VM resident filesystem.

How to install it?

Just type make install at the top-level directory. What do I need to configure before being able to start using it? Create a mandatory configuration file

Poudriere will look for a configuration file in /usr/local/etc.

Copy the default configuration file:

cp /usr/local/etc/poudriere.conf.sample /usr/local/etc/poudriere.conf

then edit it:

$EDITOR /usr/local/etc/poudriere.conf

The comments inside the configuration file should be sufficient. Documentation

How-to...

Hacking

To hack on poudriere you first need to use git

and clone the repo:

# git clone https://github.com/freebsd/poudriere
# cd poudriere

Known Issues

Contributing

Any of these options are available for contributing:

Open new ticket with patch attached
Post link to patch in #poudriere on EFNet
Post patch to freebsd-pkg@FreeBSD.org
Send github Pull Request

Happy FreeBSDing!

Join us on IRC: #poudriere on EFNet

Clone this wiki locally