AS201281 Wiki

Your check engine light is on!

User Tools

Site Tools


gnu_linux_server:debian_packaging:debian_packaging_compilation_env

Differences

This shows you the differences between two versions of the page.

Link to this comparison view

Both sides previous revisionPrevious revision
Next revision
Previous revision
gnu_linux_server:debian_packaging:debian_packaging_compilation_env [2014/02/20 23:48] – external edit 127.0.0.1gnu_linux_server:debian_packaging:debian_packaging_compilation_env [2021/01/04 20:41] (current) – external edit 127.0.0.1
Line 11: Line 11:
 En réalité, **cowbuilder** est un simple outil utilisant **pbuilder**. On peut voir ça comme une surcouche un peu comme **aptitude** par rapport à **apt**. L'installation est très simple puisque tout est dans les dépôts. En réalité, **cowbuilder** est un simple outil utilisant **pbuilder**. On peut voir ça comme une surcouche un peu comme **aptitude** par rapport à **apt**. L'installation est très simple puisque tout est dans les dépôts.
  
-<code bash>aptitude install cowbuilder</code>+<code bash>apt-get install dh-make quilt cowbuilder</code>
  
 ===== Configuration ===== ===== Configuration =====
Line 20: Line 20:
 # needed. # needed.
 UNSTABLE_CODENAME="sid" UNSTABLE_CODENAME="sid"
-TESTING_CODENAME="wheezy+TESTING_CODENAME="strech
-STABLE_CODENAME="squeeze"+STABLE_CODENAME="jessie"
 STABLE_BACKPORTS_SUITE="$STABLE_CODENAME-backports" STABLE_BACKPORTS_SUITE="$STABLE_CODENAME-backports"
  
Line 27: Line 27:
 DEBIAN_SUITES=($UNSTABLE_CODENAME $TESTING_CODENAME $STABLE_CODENAME DEBIAN_SUITES=($UNSTABLE_CODENAME $TESTING_CODENAME $STABLE_CODENAME
     "unstable" "testing" "stable")     "unstable" "testing" "stable")
-PBUILDERSATISFYDEPENDSCMD="/usr/lib/pbuilder/pbuilder-satisfydepends-experimental" 
  
 # List of Ubuntu suites. Update these when needed. # List of Ubuntu suites. Update these when needed.
-UBUNTU_SUITES=("oneiric" "natty" "maverick" "lucid" "karmic" "hardy")+UBUNTU_SUITES=("precise" "trusty""utopic""vivid")
  
 # Mirrors to use. Update these to your preferred mirror. # Mirrors to use. Update these to your preferred mirror.
Line 40: Line 39:
 if [ -z "${DIST}" ] && [ -r "debian/changelog" ]; then if [ -z "${DIST}" ] && [ -r "debian/changelog" ]; then
     DIST=$(dpkg-parsechangelog | awk '/^Distribution: / {print $2}')     DIST=$(dpkg-parsechangelog | awk '/^Distribution: / {print $2}')
 +    DIST="${DIST%%-*}"
     # Use the unstable suite for certain suite values.     # Use the unstable suite for certain suite values.
     if $(echo "experimental UNRELEASED" | grep -q $DIST); then     if $(echo "experimental UNRELEASED" | grep -q $DIST); then
Line 72: Line 72:
     DEBOOTSTRAPOPTS=("--arch" "$ARCH" "${DEBOOTSTRAPOPTS[@]}")     DEBOOTSTRAPOPTS=("--arch" "$ARCH" "${DEBOOTSTRAPOPTS[@]}")
 fi fi
- +# BASETGZ="/var/cache/pbuilder/$NAME-base.tgz"
-#BASETGZ="/var/cache/pbuilder/$NAME-base.tgz"+
 # Optionally, set BASEPATH (and not BASETGZ) if using cowbuilder # Optionally, set BASEPATH (and not BASETGZ) if using cowbuilder
 BASEPATH="/var/cache/pbuilder/$NAME/base.cow/" BASEPATH="/var/cache/pbuilder/$NAME/base.cow/"
Line 86: Line 85:
     COMPONENTS="main contrib non-free"     COMPONENTS="main contrib non-free"
     DEBOOTSTRAPOPTS=("${DEBOOTSTRAPOPTS[@]}" "--keyring=/usr/share/keyrings/debian-archive-keyring.gpg")     DEBOOTSTRAPOPTS=("${DEBOOTSTRAPOPTS[@]}" "--keyring=/usr/share/keyrings/debian-archive-keyring.gpg")
 +
 elif $(echo ${UBUNTU_SUITES[@]} | grep -q $DIST); then elif $(echo ${UBUNTU_SUITES[@]} | grep -q $DIST); then
     # Ubuntu configuration     # Ubuntu configuration
Line 91: Line 91:
     COMPONENTS="main restricted universe multiverse"     COMPONENTS="main restricted universe multiverse"
     DEBOOTSTRAPOPTS=("${DEBOOTSTRAPOPTS[@]}" "--keyring=/usr/share/keyrings/ubuntu-archive-keyring.gpg")     DEBOOTSTRAPOPTS=("${DEBOOTSTRAPOPTS[@]}" "--keyring=/usr/share/keyrings/ubuntu-archive-keyring.gpg")
 +    OTHERMIRROR="deb http://ppa.launchpad.net/gnome-split-team/ppa/ubuntu raring main"
 else else
     echo "Unknown distribution: $DIST"     echo "Unknown distribution: $DIST"
     exit 1     exit 1
-fi</code>+fi 
 +</code>
  
 ===== Utilisation ===== ===== Utilisation =====
gnu_linux_server/debian_packaging/debian_packaging_compilation_env.1392940084.txt.gz · Last modified: 2021/01/04 20:40 (external edit)