Skip to content
Snippets Groups Projects
README.md 4.13 KiB
Newer Older
Lars-Magnus Skog's avatar
Lars-Magnus Skog committed
## Introduction

This set of scripts are helpers that modify and create the source packages coming
Ruben Rodriguez's avatar
Ruben Rodriguez committed
from the Ubuntu upstream which need it. It might be because they contain
non-free stuff, references to Ubuntu that need to be changed, or because we
want the package to work our way.

mtsio's avatar
mtsio committed
This helpers are similar to some of those in the [gNewSense](http://www.gnewsense.org/Builder/HowToCreateYourOwnGNULinuxDistribution) builder, we took
Ruben Rodriguez's avatar
Ruben Rodriguez committed
some ideas and even some lines from them. If you plan to build an Ubuntu
derivative of your own, we suggest you to use Builder instead of this helpers.

Once a new package is added, it takes priority over the original one from Ubuntu,
so they never enter into the repo from upstream and need to be
compiled with this helpers and pushed into reprepro.
Ruben Rodriguez's avatar
Ruben Rodriguez committed

To add a package to the list, follow the [CONTRIBUTING](https://gitlab.trisquel.org/trisquel/package-helpers/blob/nabia/CONTRIBUTING.md) guidelines.

## Steps

Those are the steps done by the helpers:

1. Create local apt configuration, so you don't need to be root to run the helpers
2. Get the ubuntu and trisquel gpg keys
3. Get the source packages from their original repo
4. Uncompress them
5. Apply the changes described in the helper
6. Re-package it, adding "triquel$VERSION" version string
Ruben Rodriguez's avatar
Ruben Rodriguez committed

## Variables in helper scripts

* `VERSION` (required): The trisquel version for the helper.
* `EXTERNAL`: When building packages not coming from the upstream Ubuntu, the external `deb-src` in the same format as in `apt.sources.list`.
* `REPOKEY`: An additional GPG key to import for the helper. Mostly only used in conjunction with `EXTERNAL`.
* `BACKPORT(S)`: Must be set to `true` if the package is a backport.
* `QUILT`: If `skip`, avoids patches to be automatically applied. Only set this variables if you know what you are doing.
* `BUILD_UNTIL`: build this helper if the Trisquel REVISION number (e.g. Trisquel 10.0) is <= this number. To be used when we know that the helper will not be needed at a certain future release.
Lars-Magnus Skog's avatar
Lars-Magnus Skog committed
## Recommendations
Ruben Rodriguez's avatar
Ruben Rodriguez committed

* You don't need to use sudo in order to run those scripts, but some extra packages are needed:

     `sudo apt-get install cdbs devscripts dpkg-dev git gnupg gnupg2 patch python2 quilt rename rpl sed python3-jsonschema`
Lars-Magnus Skog's avatar
Lars-Magnus Skog committed
* Take care to use the right sourcePackageName, many source packages produce
several binary packages. `apt-cache showsrc binary-package` can help you.
* If possible, use sed to replace chains in the upstream source without the
Ruben Rodriguez's avatar
Ruben Rodriguez committed
need of external files or patches. If you really need to include a file, place
Lars-Magnus Skog's avatar
Lars-Magnus Skog committed
it at the `DATA/sourcePackageName` directory
* Do not replace *all* references to Ubuntu in the package, just those that
Ruben Rodriguez's avatar
Ruben Rodriguez committed
would actually be shown to the user. Avoid replacing copyright statements!
Lars-Magnus Skog's avatar
Lars-Magnus Skog committed
* Try to write your replacements in a way they might work in future versions
Ruben Rodriguez's avatar
Ruben Rodriguez committed
of the upstream package. Well written regexps and sed will help with that.
* You can test your changes by doing them inside the _PACKAGES/sourcePackageName/source/_ directory,
and running `dpkg-source -b .`, before being added to the helper script
* You can check the status of failed build at https://jenkins.trisquel.org/job/build-watchdog/lastBuild/consoleText
Ruben Rodriguez's avatar
Ruben Rodriguez committed

## Debootstrap
On every new release we need to get compiled the very basic packages in order
to create a trisquel base builder.
Before that we currently relay on a upstream debootstrap image, so creating a
trisquel debootstrap is the starting point.

Every new release need the following packages taken care of first,

* `make-apt`
* `make-base-files`
* `make-bash`
* `make-debootstrap`
* `make-dpkg`
* `make-cdebconf`
* `trisquel-keyring` (not as helper)
* `trisquel-meta` (not as helper)

Lars-Magnus Skog's avatar
Lars-Magnus Skog committed
## Netinstall
Ruben Rodriguez's avatar
Ruben Rodriguez committed

Included are the set of scipts used to generate the network installer images
found in Trisquel GNU/Linux LTS (version 2.0, 4.0, 6.0... and up). The scripts
may not be available for all versions.

To generate the images, we run the following scripts:

Lars-Magnus Skog's avatar
Lars-Magnus Skog committed
* `make-apt-setup`
* `make-base-installer`
* `make-choose-mirror`
* `make-main-menu`
* `make-netcfg`
* `make-net-retriever`
* `make-pkgsel`
Ruben Rodriguez's avatar
Ruben Rodriguez committed

Then we push the results into the Trisquel repository and run the script
Lars-Magnus Skog's avatar
Lars-Magnus Skog committed
`make-debian-installer` to build the final images.