summaryrefslogtreecommitdiffstats
path: root/abs/extra-testing/abs
diff options
context:
space:
mode:
Diffstat (limited to 'abs/extra-testing/abs')
-rw-r--r--abs/extra-testing/abs/ChangeLog41
-rw-r--r--abs/extra-testing/abs/PKGBUILD33
-rw-r--r--abs/extra-testing/abs/abs.install15
3 files changed, 0 insertions, 89 deletions
diff --git a/abs/extra-testing/abs/ChangeLog b/abs/extra-testing/abs/ChangeLog
deleted file mode 100644
index 03d6d88..0000000
--- a/abs/extra-testing/abs/ChangeLog
+++ /dev/null
@@ -1,41 +0,0 @@
-2008-10-28 Allan McRae <allan@archlinux.org>
-
- * 2.3-1
- Upstream update
- - add ability to download files using tarballs on pacman mirror
-
-2008-08-10 Allan McRae <allan@archlinux.org>
-
- * 2.2-1
- Upstream update
- - adds ability to select which repos/packages
- sync on commandline
- - additional PKGBUILD and install script prototypes
-
-2008-04-19 Travis Willard <travis@archlinux.org>
-
- * 2.1-1
- Upstream update - re-adds support for community
-
-2008-04-19 Travis Willard <travis@archlinux.org>
-
- * 2.0-4
- Added install warning about /var/abs
-
-2008-04-15 Travis Willard <travis@archlinux.org>
-
- * 2.0-3
- Added install message
- Moved abs.conf to /etc instead of /etc/abs
-
-2008-04-13 Travis Willard <travis@archlinux.org>
-
- * 2.0-2
- Moved rsyncd.conf.abs to /usr/share/abs
- Made rsync server configurable
-
-2008-04-10 Travis Willard <travis@archlinux.org>
-
- * 2.0-1
- Added ChangeLog
- New rsync-based release
diff --git a/abs/extra-testing/abs/PKGBUILD b/abs/extra-testing/abs/PKGBUILD
deleted file mode 100644
index 872fc59..0000000
--- a/abs/extra-testing/abs/PKGBUILD
+++ /dev/null
@@ -1,33 +0,0 @@
-# $Id: PKGBUILD 17300 2008-10-28 04:37:22Z allan $
-# Maintainer: Allan McRae <allan@archlinux.org>
-
-pkgname=abs
-pkgver=2.3
-pkgrel=1
-pkgdesc="Utilities to download and work with the Arch Build System (ABS)"
-arch=('i686' 'x86_64')
-url="http://projects.archlinux.org/git/?p=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=('d6fd791aa487ba8bb5ff48c3ace20592')
-
-build() {
- cd ${srcdir}/${pkgname}
-
- make CONFDIR=/etc/ || return 1
- make CONFDIR=/etc/ DESTDIR=${pkgdir} install || return 1
-
- # Add readme file, and make base /var/abs path
- install -dm0755 ${pkgdir}/var/abs/local/
- install -Dm0644 ${srcdir}/abs/README ${pkgdir}/var/abs/README
-
- # change ABS tags for x86_64 to correct values
- if [ "$CARCH" = "x86_64" ]; then
- sed -i "s|i686|x86_64|g" ${pkgdir}/etc/abs.conf
- fi
-}
-
-# vim: set ts=2 sw=2 noet:
diff --git a/abs/extra-testing/abs/abs.install b/abs/extra-testing/abs/abs.install
deleted file mode 100644
index 1b19b4a..0000000
--- a/abs/extra-testing/abs/abs.install
+++ /dev/null
@@ -1,15 +0,0 @@
-## arg 1: the new package version
-## arg 2: the old package version
-pre_upgrade() {
- if [ "$(vercmp $2 2.0-1)" -lt 0 ]; then
- echo "==> ABS now uses rsync, instead of cvsup, to synchronize your tree."
- echo "==> Please note the new configuration in /etc/abs.conf"
- fi
-
- if [ "$(vercmp $2 2.0-4)" -lt 0 ]; then
- echo "==> Warning: abs clears out the contents of /var/abs when syncing."
- echo "==> Keep all local PKGBUILDs in /var/abs/local, or they will disappear"
- fi
-}
-
-# vim:set ts=2 sw=2 et: