diff --git a/abs/repos/extra-x86_64/PKGBUILD b/abs/repos/extra-x86_64/PKGBUILD deleted file mode 100644 index daf77afc99ff..000000000000 --- a/abs/repos/extra-x86_64/PKGBUILD +++ /dev/null @@ -1,34 +0,0 @@ -# $Id$ -# Maintainer: Allan McRae - -pkgname=abs -pkgver=2.4.2 -pkgrel=1 -pkgdesc="Utilities to download and work with the Arch Build System (ABS)" -arch=('i686' 'x86_64') -url="http://projects.archlinux.org/abs.git/" -license=('GPL') -depends=('bash' 'rsync') -backup=(etc/abs.conf) -install=abs.install -source=(ftp://ftp.archlinux.org/other/abs/${pkgname}-${pkgver}.tar.gz) -md5sums=('7be7cfc67443cff62e20f27ca57dc17a') - -build() { - cd ${srcdir}/${pkgname} - - make CONFDIR=/etc/ - make CONFDIR=/etc/ DESTDIR=${pkgdir} install - - # Add readme file, and make base /var/abs path - install -dm0755 ${pkgdir}/var/abs/local/ - install -Dm0644 ${srcdir}/abs/README ${pkgdir}/var/abs/README - - # make adjustments to abs.conf - if [[ $CARCH = "i686" ]]; then - sed -i -e 's| multilib||' -e 's| !multilib-testing||' ${pkgdir}/etc/abs.conf - fi - if [[ $CARCH = "x86_64" ]]; then - sed -i '/ARCH=/s|i686|x86_64|' ${pkgdir}/etc/abs.conf - fi -} diff --git a/abs/repos/extra-x86_64/abs.install b/abs/repos/extra-x86_64/abs.install deleted file mode 100644 index c16a8d736349..000000000000 --- a/abs/repos/extra-x86_64/abs.install +++ /dev/null @@ -1,12 +0,0 @@ -pre_upgrade() { - if [ "$(vercmp $2 2.3.2-1)" -lt 0 ]; then - echo "==> Fixing potential ABS tree permission issues (this may take a while...)" - - for dir in core extra community testing; do - if [ -d /var/abs/$dir ]; then - find /var/abs/$dir -type d -exec chown root:root {} \; - find /var/abs/$dir -type d -exec chmod 755 {} \; - fi - done - fi -}