Sabayon / devkit

5 stars 8 forks source link

Sabayon devkit

The Sabayon devkit is a set of scripts that aims to help developers in various tasks.

You can install it in sabayon with:

sudo equo i sabayon-devkit

Prerequisites

Packages can be built in a clean environment with docker by running sabayon-buildpackages.

sabayon-buildpackages and ``sabayon-createrepo are just a script wrapper around the development docker container.

Define your workspace

Create a directory to represent your project workspace.

cd $HOME
mkdir myproject
cd myproject

if you plan to make packages from your own ebuilds, and you don't have an overlay published in layman, you can create the local_overlay directory and put your overlay tree inside it.

me@box:myproject/$ mkdir local_overlay

myproject/local_overlay is read from the docker container and mounted inside it as the local overlay available in the machine.

If you want, you can define the workspace directory with the variable environment SAB_WORKSPACE

SAB_WORKSPACE=/whatever sabayon-createrepo

Folder structure

This is the folder structure of your workspace by default, but you can tweak part of it to your tastes with Environment variables:

`

myproject/
myproject/portage_artifacts/
myproject/entropy_artifacts/
myproject/local_overlay/
myproject/specs/

`

the specs folder is structured like this and it's merely optional.

as long as you create those files they are used:

you can override the Architecture folder in which files are placed specifying in the SAB_ARCH environment variable. Default is "intel" (can be armarch as for now)

Note: the portage_artifacts can also contain tbz2 files generated with other methods, if you already have your desired packages already compiled, you can just use sabayon-createrepo

Building package in a clean environment

sabayon-buildpackages accepts the same arguments as the builder:

sabayon-buildpackages app-text/tree
sabayon-buildpackages plasma-meta --layman kde
DOCKER_PULL_IMAGE=1 sabayon-buildpackages app-foo/foobar --equo foo-misc/foobar --layman foo --layman bar foo

Create Sabayon repository from *.tbz2 in a clean environment

You can create Sabayon repositories from packages built with emerge in a clean environment with docker by running sabayon-createrepo.

The script will use a docker container to inject packages from portage_artifacts/ in your project folder, the output will be available in entropy_artifacts/.

Example:

sabayon-createrepo

REPOSITORY_NAME=mytest REPOSITORY_DESCRIPTION="My Wonderful Repository" sabayon-createrepo

You can also put your .tbz2 file externally built inside entropy_artifacts/ in your workspace folder (you can create it if not already present) and run sabayon-createrepo to generate a repository from them.

In both sabayon-createrepo and sabayon-buildpackages you can override the docker image used with the environment variable DOCKER_IMAGE.