Projet

Général

Profil

Compiler24 » Historique » Version 25

Version 24 (Emmanuel GARETTE, 13/10/2016 10:16) → Version 25/38 (Emmanuel GARETTE, 13/10/2016 10:26)

h1. Compiler24

h2. Ajout des dépôts :

Ajouter (si ce n'est pas fait) le dépôt officiel de tiramisu ;

<pre>
git remote add lab git://git.labs.libre-entreprise.org/tiramisu.git
</pre>

h2. Configuration des variables

h3. sur 2.4

<pre>
BRANCHE_TIRAMISU=lab/1.0
BRANCHE_EOLE=1.0/master
DEPOT=eole-2.4-unstable
BRANCHE_PACKAGE=dist/ubuntu/precise/master
</pre>

h3. sur 2.5

<pre>
BRANCHE_TIRAMISU=lab/1.0
BRANCHE_EOLE=1.0/master
DEPOT=eole-2.5-unstable
BRANCHE_PACKAGE=dist/eole/2.5/master
</pre>

h3. sur 2.6.0

<pre>
BRANCHE_TIRAMISU=lab/2.0
BRANCHE_EOLE=2.6.0/master
DEPOT=eole-2.6.0/proposed-updates
BRANCHE_PACKAGE=dist/eole/2.6.0/master BRANCHE_PACKAGE=eole-2.6/unstable
</pre>

h3. sur 2.6.1

<pre>
BRANCHE_TIRAMISU=lab/2.0
BRANCHE_EOLE=master
DEPOT=eole-2.6/unstable
BRANCHE_PACKAGE=dist/eole/2.6.1/master BRANCHE_PACKAGE=eole-2.6/unstable 2.6.1/master
</pre>

h2. Récupération des nouveaux commits :

Faire la différence entre local et distant :

<pre>
git fetch lab
git checkout $BRANCHE_EOLE
git pull
</pre>

h2. Merge des branches

<pre>
git checkout $BRANCHE_EOLE
git merge $BRANCHE_TIRAMISU $BRANCHE_EOLE
git push
</pre>

h2. Création du paquet :

<pre>
git tag -m"version XXXX" release/XXXX
git push origin release/XXXX
</pre>

<pre>
git package $BRANCHE_PACKAGE
git package -b -d $DEPOT $BRANCHE_PACKAGE
</pre>

*Attention* il faut sûrement faire un paquet tiramisu1 en 2.6 (pour Zéphir) :

<pre>
git package dist/eole/2.6.0/tiramisu1
git package -b -d eole-2.6/unstable 2.6.0/tiramisu1
</pre>