From 6e35be4b44d90f92ddceb8b067cbbf03fc652a35 Mon Sep 17 00:00:00 2001 From: root Date: Wed, 25 May 2011 22:48:05 +0000 Subject: Wed May 25 22:48:05 UTC 2011 --- community-staging/schroot/PKGBUILD | 71 ++++++++++++++++++++++++++++++ community-staging/schroot/copyfiles-arch32 | 8 ++++ community-staging/schroot/mount-arch32 | 12 +++++ community-staging/schroot/script-arch32 | 15 +++++++ 4 files changed, 106 insertions(+) create mode 100644 community-staging/schroot/PKGBUILD create mode 100644 community-staging/schroot/copyfiles-arch32 create mode 100644 community-staging/schroot/mount-arch32 create mode 100644 community-staging/schroot/script-arch32 (limited to 'community-staging/schroot') diff --git a/community-staging/schroot/PKGBUILD b/community-staging/schroot/PKGBUILD new file mode 100644 index 000000000..949227809 --- /dev/null +++ b/community-staging/schroot/PKGBUILD @@ -0,0 +1,71 @@ +# $Id: PKGBUILD 47626 2011-05-24 13:55:50Z tdziedzic $ +# Maintainer: Sergej Pupykin +# Contributor: Andreas Wagner + +pkgname=schroot +pkgver=1.4.22 +pkgrel=1 +pkgdesc="Allows users to execute shell commands under different root filesystems. \ + (Successor to dchroot)." +url="http://packages.qa.debian.org/s/schroot.html" +license=('GPL3') +depends=('pam' 'lockdev' 'boost' 'e2fsprogs') +optdepends=('btrfs-progs-unstable' 'lvm2') +arch=('i686' 'x86_64') +conflicts=('dchroot') +replaces=('dchroot') +provides=('schroot' 'sbuild' 'dchroot') +backup=('etc/schroot/schroot.conf' + 'etc/schroot/script-arch32' + 'etc/schroot/mount-arch32' + 'etc/schroot/copyfiles-arch32') +options=(!libtool) +source=("http://ftp.debian.org/debian/pool/main/s/$pkgname/${pkgname}_${pkgver}.orig.tar.bz2" + 'script-arch32' + 'copyfiles-arch32' + 'mount-arch32') +md5sums=('0dde4c76b1623cc277d92f8dc06109d1' + '8e86445e188129232e1782d978dfc967' + 'd4558d5691fbdaa46ce669e8f327133b' + 'f0d5d5b5e34a860f6f90b5628c680f46') + +build() { + cd ${pkgname}-${pkgver} + + export LDFLAGS="${LDFLAGS//-Wl,--as-needed}" + + ./configure --prefix=/usr --libexecdir=/usr/lib --sysconfdir=/etc --localstatedir=/var \ + --enable-dchroot --enable-lvm-snapshot --enable-btrfs-snapshot \ + BTRFS=/sbin/btrfs \ + BTRFSCTL=/sbin/btrfsctl \ + LVCREATE=/sbin/lvcreate \ + LVREMOVE=/sbin/lvremove +# --enable-csbuild + + make +} + +package() { + cd ${pkgname}-${pkgver} + + make DESTDIR=$pkgdir install + + install -m 644 ${srcdir}/script-arch32 ${pkgdir}/etc/schroot + install -m 644 ${srcdir}/mount-arch32 ${pkgdir}/etc/schroot + install -m 644 ${srcdir}/copyfiles-arch32 ${pkgdir}/etc/schroot + cat >> $pkgdir/etc/schroot/schroot.conf << EOF + +[Arch32] +description=Arch32 +type=directory +directory=/opt/arch32 +priority=1 +#users=username +groups=users +root-groups=root +script-config=script-arch32 +personality=linux32 +aliases=32,default + +EOF +} diff --git a/community-staging/schroot/copyfiles-arch32 b/community-staging/schroot/copyfiles-arch32 new file mode 100644 index 000000000..7dd32b7d9 --- /dev/null +++ b/community-staging/schroot/copyfiles-arch32 @@ -0,0 +1,8 @@ +/etc/group +/etc/hosts +/etc/passwd +/etc/resolv.conf +/etc/rc.conf +/etc/localtime +/etc/locale.gen +/etc/profile.d/locale.sh \ No newline at end of file diff --git a/community-staging/schroot/mount-arch32 b/community-staging/schroot/mount-arch32 new file mode 100644 index 000000000..075d6e451 --- /dev/null +++ b/community-staging/schroot/mount-arch32 @@ -0,0 +1,12 @@ +# mount.defaults: static file system information for chroots. +# Note that the mount point will be prefixed by the chroot path +# (CHROOT_PATH) +# +# +proc /proc proc defaults 0 0 +/dev /dev none rw,bind 0 0 +#/dev/pts /dev/pts none rw,bind 0 0 +tmpfs /dev/shm tmpfs defaults 0 0 +/sys /sys none rw,bind 0 0 +/tmp /tmp none rw,bind 0 0 +/home /home none rw,bind 0 0 diff --git a/community-staging/schroot/script-arch32 b/community-staging/schroot/script-arch32 new file mode 100644 index 000000000..fb87b4822 --- /dev/null +++ b/community-staging/schroot/script-arch32 @@ -0,0 +1,15 @@ +# Default settings for chroot setup and exec scripts. +# See schroot-script-config(5) for further details. + +# Filesystems to mount inside the chroot. +FSTAB="/etc/schroot/mount-arch32" + +# Files to copy from the host system into the chroot. +COPYFILES="/etc/schroot/copyfiles-arch32" + +# Is sbuild installed? +if [ -x /usr/bin/sbuild ]; then + SBUILD="true" +else + SBUILD="false" +fi -- cgit v1.2.3-54-g00ecf