[Part 1] Building Gentoo and Sabayon packages in your machine locally or remotely with Docker and Cloud Services




As previously anticipated in the previous blog post, here i explain what's going on with Sabayon Docker images, and how can the Official Sabayon images help you in developing/deploying your application. In this article, i'll show how to build Sabayon/Gentoo packages using Docker.



I'll cover five cases and will be divided in differents articles:

  1. You want to build packages locally
  2. You want to remotely build packages
  3. You want to host an overlay or a Sabayon repository and want your packages to get built on each push to the git repository
  4. You want to track remote repository changes and test (useful if you can't setup a webhook)
  5. Setup an Entropy repo with a Docker image, and how to mantain packages
In future, i'll write also a post also on how to track the packages remotely with CircleCi.

Introduction


It has been a while that i'm putting my head on how i could leverage Cloud provider's free services to build packages and improve the QA of the building process at all. Continous Integration applied to Linux Distribution Developing process can lead to quite awesome perspectives. [I will digress on this on a future article]

For those who are unfamiliar with Docker..What the heck is Docker? From their site:
Docker allows you to package an application with all of its dependencies into a standardized unit for software development.Docker containers wrap up a piece of software in a complete filesystem that contains everything it needs to run: code, runtime, system tools, system libraries – anything you can install on a server. This guarantees that it will always run the same, regardless of the environment it is running in.
We can look at Docker like a box which can be filled to be used like an entire OS, but at the same time share the kernel with the host (sorry to be much semplicistic, we are not discussing about the Docker technlogy here).


Differents images, differents purposes

The Sabayon images provides the software stack present on the Entropy repositories, thus allowing easily to use emerge (Gentoo package manager), equo (Sabayon package manager) and Eit (Sabayon repository manager) in an every linux distribution (So, also aliens can use it).


At Sabayon, we currently are providing various flavors of Docker images, the most useful for developers/users/hobbist are: 
  • sabayon/base-amd64: A light image that ships the minimum Sabayon package set
  • sabayon/spinbase-amd64: It is based on base-amd64, and includes kernel, software that is required to create the SpinBase.iso images that finally hits our mirrors
  • sabayon/builder-amd64: This image have all the packages required to compile packages with emerge, includes an helper script to do most common tasks automatically
  • sabayon/molecules-amd64: This image features the Sabayon Molecule tool with the molecules git repository inside, it is just an aim to easily let people burn their custom spins.
The other images that you can see in our public profile are used to convert a Gentoo image to Sabayon, everything translated in Docker steps.

While the sabayon/base-amd64 image can be used to deploy your services, and be the base of your applications container, the sabayon/builder-amd64 is a ready-to-use image to build package, it's all already setup for you.

As already said, i'm going to cover four cases here, then you are free to pick up the solution that suits you well.

In this part i'm going to talk on how to build packages locally, without having to setup your environment.

Building the packages locally with Docker


I'll start from the easier task. Building packages with your machine.

Let's say that there is an ebuild available in an overlay, which you are interested in and is not available in Entropy. Consider of course, that not all ebuilds will compile, some are not mantained and not work as expected.

We are going to use the sabayon/builder-amd64 image to build portage packages.

1) Setup


Here we need docker to be installed in your machine, i'm assuming that you are running Sabayon here, but this is merely optional,  docker can be used also on Debian, Gentoo, Fedora or whatever you want.

sudo equo i docker 
sudo systemctl start docker

There we go, this is the unique software that we actually want.
If you want the Docker service to be launched on boot:

        sudo systemctl enable docker


2) Pull(download) the image


Now let's download the sabayon/builder-amd64 image:

sudo docker pull sabayon/builder-amd64

Note: If you don't want to use sudo on each docker command, put your user into the "docker" group.




3) Spawn a compilation


Let's say that now we want to compile app-text/tree. 

Now we can launch a new container from the sabayon/builder-amd64 image, giving it as argument the package we want to compile:


sudo docker run -ti --rm -v "$PWD"/artifacts:/usr/portage/packages sabayon/builder-amd64 app-text/tree

Now the builder machine will try to compile your package downloading first all the (available) dependencies it can find from Entropy and setting your container to face the compilation phase properly.


When docker run will exit, you will find then your package under the "artifacts" directory under the directory where you launched the command. 

If your package was in another overlay, the builder machine supports to fetch automatically overlays, you just have to tell what are the overlays you need:


sudo docker run -ti --rm -v "$PWD"/artifacts:/usr/portage/packages sabayon/builder-amd64 app-text/tree --overlay NAME
where:

  • --rm tells docker to destroy the container as soon as it exits
  • -v determines the mount of a directory between the host and the container. On the left side of the doublepoints ":" there is the host directory, on the right the container one. The host folder will be mounted on the directory specified on the container so we can share data.
  • --overlay NAME: you can specify an overlay where your package is available, for example, we might want to compile the new gnome available in the gnome overlay. This command can be chained to list more than one overlay to fetch (--overlay1 --overlay2, ecc.. )
You might also want to save your changes to the image, meaning to mantain your building machine state. This can be accomplished with docker, using "docker commit". How to use this image is up to your imagination.



4) MOAR Options (Here be dragons)


Docker allows to share directories with the host system, gracefully mounting them on   start up. We can specify to Docker in it's definition file that we want some volumes to not be shipped with the image itself, but instead being mounted on the host system everytime we run it. As for example, we can tell to Docker to use the directory foo as our /usr/portage directory, allowing us to cache Portage files, including distfiles and packages.


docker run -t -i sabayon/base-amd64 -v "$PWD"/foo:/usr/portage <PACKAGE>


  • -t tells to docker to allocate a pseudo-tty for us, allowing to run an interactive shell 
  • -i keep the STDIN attached also if not active
  • -v sets the volume, so "$PWD"/foo will contain the /usr/portage content of the container and vice-versa (its mounted)
  • <PACKAGE> the last argument is the command that we want to launch inside the container, we could of course launch other commands here, this is just an example

If you don't have already pulled the docker image (docker pull sabayon/base-amd64) this will be done automatically, leaving you to use just one command.


Example - Advanced


The -v flag can furthermore exploited and chained to obtain more fine-grained tweaks

Going to cover a minor example regarding sabayon/builder-amd64 image here. 
You can of course customize it further, and replace all the configuration that's already been setup on the Docker Image.

Let's create 5 files in a directory, corresponding to the customization you might need from your building process.



  • custom.unmask: will contain your unmasks
  • custom.mask: will contain your masks
  • custom.use: will contain your use flags
  • custom.env: will contain your env specifications
  • custom.keywords: will contain your keywords

Exporting those files to your container is a matter of adding an argument to your docker run command.



Example. Exporting your custom.unmask:


-v /my/path/custom.unmask:/opt/sabayon-build/conf/intel/portage/package.unmask/custom.unmask


Example. Exporting your custom.mask:


-v /my/path/custom.mask:/opt/sabayon-build/conf/intel/portage/package.mask/custom.mask 


Example. Exporting your custom.use:



-v /my/path/custom.use:/opt/sabayon-build/conf/intel/portage/package.use/custom.use 


Example. Exporting your custom.env:



-v /my/path/custom.env:/opt/sabayon-build/conf/intel/portage/package.env/custom.env


Example. Exporting your custom.keywords:



-v /my/path/custom.keywords:/opt/sabayon-build/conf/intel/portage/package.keywords/custom.keywords


In this way you tell to docker to mount your custom.* file inside /opt/sabayon-build/conf/intel/portage/package.*/custom.* inside the container. 

Keep in mind that the container have the portage directory located at /opt/sabayon-build/conf/intel/portage/ ; the /etc/portage folder is then symlinked to it.


Attention! Remember also to use absolute paths or docker will fail to mount your files in the container.

The image then will call a script that provides to do most of the things automatically for you, but there are some environment variables that you can use to tweak it's default behavior:







  • BUILDER_PROFILE: Sets the profile for compilation, you can select it using the number or the name
  • BUILDER_JOBS: How much jobs emerge will have assigned (-j option)
  • USE_EQUO: 1/0 Enable/Disable equo for installing the package dependencies (if you plan to use a pure gentoo repository, set it to 0, but the compilation process would be much longer)
  • PRESERVED_REBUILD: 1/0 to Enable/Disable preserved rebuild compilation
  • EMERGE_DEFAULTS_ARGS: a list of commands that you might want to specify 
  • FEATURES: you can override default FEATURES (like in Portage's make.conf)

  • To pass an environment variable to the docker container we set them like this:

    -e "OPTION1=VALUE1" -e "OPTION2=VALUE2"
    That's it for now!

    Commenti

    1. With spawning a compilation, the second line (with the package you wish to merge) is it possible to point to a specific version of a package. For example, atm I'd like to merge app-editors/atom-1.2.0 from the Sabayon overlay, do I have to enter it as `app-editors/atom-1.2.0 --overlay sabayon` or `=app-editors/atom-1.2.0 --overlay sabayon`?

      RispondiElimina
      Risposte
      1. like while using emerge, you have to use the equal sign to specify an exact version

        Elimina
    2. In section 3 I think you gave incorrect syntax, although it may be because of formatting limitations imposed by blogger. I think the two lines:

      sudo docker run -ti --rm -v "$PWD"/artifacts:/usr/portage/packages sabayon/builder-amd64
      app-text/tree

      should instead be provided over a single line, like:

      sudo docker run -ti --rm -v "$PWD"/artifacts:/usr/portage/packages sabayon/builder-amd64 app-text/tree

      I say so because whenever I run it as two lines I get the error message:

      -> You should feed me with something

      Examples:

      /builder app-text/tree
      /builder plasma-meta --layman kde

      **************************

      You can supply multiple overlays as well: /builder plasma-meta --layman kde plab

      Died at /builder line 18.

      RispondiElimina
      Risposte
      1. Yes, i'm sorry blogger returns the line anyway

        Elimina
      2. Have ya considered using the code-formatting HTML code provided by codeformatter.blogspot.com? In the case of your first command mentioned in the "3) Spawning..." section the HTML code would be: http://paste2.org/NJ9st0ke (using a pastebin as inserting the code here directly gave a "HTML cannot be accepted" error).

        Elimina

    Posta un commento

    Post più popolari