diff options
-rw-r--r-- | README | 15 | ||||
-rwxr-xr-x | backport | 4 | ||||
-rwxr-xr-x | backport_others | 4 | ||||
-rwxr-xr-x | build | 2 | ||||
-rwxr-xr-x | clean | 4 | ||||
-rwxr-xr-x | move_debs | 4 |
6 files changed, 21 insertions, 12 deletions
@@ -15,7 +15,7 @@ Currently I am using the following setup: BUILDRESULT="/var/cache/pbuilder/$NAME/result/" APTCACHE="/var/cache/pbuilder/$NAME/aptcache/" MIRRORSITE="http://ftp.de.debian.org/debian/" - OTHERMIRROR="deb http://security.debian.org $DIST/updates main|deb http://ftp.de.debian.org/debian $DIST-backports main|deb http://localhost/r-cran $DIST-cran35/" + OTHERMIRROR="deb http://security.debian.org $DIST/updates main|deb http://ftp.de.debian.org/debian $DIST-backports main|deb http://localhost/r-cran $DIST-cran40/" COMPONENTS="main" This means I have the appropriate aptcache and buildresult directories set up @@ -56,11 +56,20 @@ Then I add a new entry in /etc/schroot/schroot.conf like profile=default directory=/var/chroot/bullseye-amd64 -and use sudo schroot -c bullseye64 to enter it. Within the chroot I install vim -and add the matching local r-cran repository to /etc/apt/sources.list like +and use sudo schroot -c bullseye64 to enter it. Within the chroot I install +some necessary or useful stuff + + apt install vim gnupg build-essential devscripts + +add the matching local r-cran repository to /etc/apt/sources.list like deb http://localhost/r-cran bullseye-cran40/ deb-src http://localhost/r-cran bullseye-cran40/ +and tell apt to trust my key (from my Debian CRAN page): + + gpg --keyserver keyserver.ubuntu.com --recv-key '95C0FAF38DB3CCAD0C080A7BDC78B2DDEABC47B7' + gpg --armor --export '95C0FAF38DB3CCAD0C080A7BDC78B2DDEABC47B7' > /etc/apt/trusted.gpg.d/cran_debian_key.asc + In the chroot, build-essential and devscripts have to be installed @@ -22,7 +22,7 @@ rcrandir=/home/jranke/git/uni-bremen/website/www/ranke/r-cran usage() { -echo "Usage: ./backport [options] sourcepackage stretch|buster|bullseye" +echo "Usage: ./backport [options] sourcepackage buster|bullseye|bookworm" echo "Options:" echo " -k, --keep Keep copied source package and directory used for package building" echo " -s, --skip Skip apt-get update/upgrade and pbuilder update" @@ -58,7 +58,7 @@ pkg=$1 DIST=$2 # Validate distribution argument -if [ $DIST != "stretch" ] && [ $DIST != "buster" ] && [ $DIST != "bullseye" ]; then usage; exit 1; fi +if [ $DIST != "bookworm" ] && [ $DIST != "buster" ] && [ $DIST != "bullseye" ]; then usage; exit 1; fi export DIST # Remove previously extracted sources diff --git a/backport_others b/backport_others index dacac7a..921ccf6 100755 --- a/backport_others +++ b/backport_others @@ -11,7 +11,7 @@ export ARCH usage() { -echo "Usage: ./backport_others [options] stretch|buster|bullseye" +echo "Usage: ./backport_others [options] buster|bullseye|bookworm" echo "Options:" echo " -s Skip apt-get update/upgrade and pbuilder update" } @@ -51,7 +51,7 @@ then fi # Validate distribution argument -if [ $DIST != "stretch" ] && [ $DIST != "buster" ] && [ $DIST != "bullseye" ]; then usage; exit 1; fi +if [ $DIST != "bookworm" ] && [ $DIST != "buster" ] && [ $DIST != "bullseye" ]; then usage; exit 1; fi export DIST # When doing a new repository, do lattice, r-cran-mass @@ -54,7 +54,7 @@ then apt-get upgrade fi -# stretch needs --only-source (at least for rkward source packages) +# stretch needed --only-source (at least for rkward source packages) apt --only-source build-dep $pkg apt --only-source source $pkg @@ -4,14 +4,14 @@ usage() { -echo "Usage: ./clean [stretch|buster|bullseye]" +echo "Usage: ./clean [buster|bullseye|bookworm]" } if [ $# -gt 1 ]; then usage; exit 1; fi if [ $# -eq 1 ] then DIST=$1 - if [ $DIST != "stretch" ] && [ $DIST != "buster" ] && [ $DIST != "bullseye" ]; then usage; exit 1; fi + if [ $DIST != "bookworm" ] && [ $DIST != "buster" ] && [ $DIST != "bullseye" ]; then usage; exit 1; fi cd $DIST fi @@ -4,7 +4,7 @@ usage() { -echo "Usage: ./move_debs stretch|buster|bullseye" +echo "Usage: ./move_debs buster|bullseye|bookworm" } # Positional argument @@ -12,7 +12,7 @@ if [ $# -lt 1 ]; then usage; exit 1; fi DIST=$1 # Validate distribution argument -if [ $DIST != "stretch" ] && [ $DIST != "buster" ] && [ $DIST != "bullseye" ]; then usage; exit 1; fi +if [ $DIST != "bookworm" ] && [ $DIST != "buster" ] && [ $DIST != "bullseye" ]; then usage; exit 1; fi sudo chown jranke $DIST/*${DIST}cran*_amd64.{deb,build} mv -v $DIST/*${DIST}cran*_amd64.{deb,build} /home/jranke/git/uni-bremen/website/www/ranke/r-cran/$DIST-cran40 |