diff options
author | Dan McGee <dan@archlinux.org> | 2007-11-20 11:38:24 -0600 |
---|---|---|
committer | Dan McGee <dan@archlinux.org> | 2007-12-21 11:05:38 -0600 |
commit | 741fa316038eb0307e4aaffcac05eaa36303ead9 (patch) | |
tree | 2f80987844a4a8ec814abf5f7bb5d3de492f2c0d /etc | |
parent | c0845db8f7cc3f0fbf9bfadbdbb30b0acc96c242 (diff) | |
download | pacman-741fa316038eb0307e4aaffcac05eaa36303ead9.tar.xz |
Remove abs from the pacman repository
abs has always been an Arch Linux specific tool, and although it is used
primarily by pacman and makepkg, it should not be included with a distro-
agnostic tarball. In addition, maintenance of the script would be better
outside of pacman and would allow for more frequent updates.
This also facilitates our move away from a cvsup/csup dependent tool for
syncing PKGBUILDs.
Signed-off-by: Dan McGee <dan@archlinux.org>
Diffstat (limited to 'etc')
-rw-r--r-- | etc/Makefile.am | 4 | ||||
-rw-r--r-- | etc/abs/Makefile.am | 20 | ||||
-rw-r--r-- | etc/abs/abs.conf | 13 | ||||
-rw-r--r-- | etc/abs/supfile.community | 15 | ||||
-rw-r--r-- | etc/abs/supfile.core | 15 | ||||
-rw-r--r-- | etc/abs/supfile.extra | 15 | ||||
-rw-r--r-- | etc/abs/supfile.testing | 16 | ||||
-rw-r--r-- | etc/abs/supfile.unstable | 15 |
8 files changed, 0 insertions, 113 deletions
diff --git a/etc/Makefile.am b/etc/Makefile.am index 2cff0150..6fa7d98c 100644 --- a/etc/Makefile.am +++ b/etc/Makefile.am @@ -1,9 +1,5 @@ SUBDIRS = pacman.d -if INCLUDE_ABS -SUBDIRS += abs -endif - dist_sysconf_DATA = makepkg.conf pacman.conf EXTRA_DIST = makepkg.conf.in pacman.conf.in diff --git a/etc/abs/Makefile.am b/etc/abs/Makefile.am deleted file mode 100644 index b6b64f03..00000000 --- a/etc/abs/Makefile.am +++ /dev/null @@ -1,20 +0,0 @@ -EXTRA_DIST = \ - abs.conf \ - supfile.community \ - supfile.core \ - supfile.extra \ - supfile.testing \ - supfile.unstable - -install-data-hook: - mkdir -p $(DESTDIR)$(sysconfdir)/abs ; \ - for j in $(EXTRA_DIST); do \ - $(INSTALL) -c -m 644 $(srcdir)/$$j $(DESTDIR)$(sysconfdir)/abs/$$j ; \ - done - -uninstall-hook: - for j in $(EXTRA_DIST); do \ - rm -f $(DESTDIR)$(sysconfdir)/abs/$$j ; \ - done - -# vim:set ts=2 sw=2 noet: diff --git a/etc/abs/abs.conf b/etc/abs/abs.conf deleted file mode 100644 index 782b269b..00000000 --- a/etc/abs/abs.conf +++ /dev/null @@ -1,13 +0,0 @@ -# -# /etc/abs/abs.conf -# - -# the top-level directory of all your PKGBUILDs -[ "$ABSROOT" = "" ] && ABSROOT="/var/abs/" - -# -# Supfiles to be parsed by abs (in this order) -# (prefix a module with a ! to disable it) -# -SUPFILES=(core extra !unstable !community !testing) - diff --git a/etc/abs/supfile.community b/etc/abs/supfile.community deleted file mode 100644 index 6565ea50..00000000 --- a/etc/abs/supfile.community +++ /dev/null @@ -1,15 +0,0 @@ -# -# supfile.community -# - -# this is the host containing the community PKGBUILD files -*default host=cvs.archlinux.org - -*default release=cvs -*default delete -*default use-rel-suffix -*default compress -#*default umask=002 - -*default tag=CURRENT -community diff --git a/etc/abs/supfile.core b/etc/abs/supfile.core deleted file mode 100644 index 2e052bce..00000000 --- a/etc/abs/supfile.core +++ /dev/null @@ -1,15 +0,0 @@ -# -# supfile.core -# - -# this is the host containing the core PKGBUILD files -*default host=cvs.archlinux.org - -*default release=cvs -*default delete -*default use-rel-suffix -*default compress -#*default umask=002 - -*default tag=CURRENT -core diff --git a/etc/abs/supfile.extra b/etc/abs/supfile.extra deleted file mode 100644 index 3f69a7b5..00000000 --- a/etc/abs/supfile.extra +++ /dev/null @@ -1,15 +0,0 @@ -# -# supfile.extra -# - -# this is the host containing the extra PKGBUILD files -*default host=cvs.archlinux.org - -*default release=cvs -*default delete -*default use-rel-suffix -*default compress -#*default umask=002 - -*default tag=CURRENT -extra diff --git a/etc/abs/supfile.testing b/etc/abs/supfile.testing deleted file mode 100644 index 70fc6551..00000000 --- a/etc/abs/supfile.testing +++ /dev/null @@ -1,16 +0,0 @@ -# -# supfile.testing -# - -# this is the host containing the testing PKGBUILD files -*default host=cvs.archlinux.org - -*default release=cvs -*default delete -*default use-rel-suffix -*default compress -#*default umask=002 - -*default tag=TESTING -core -extra diff --git a/etc/abs/supfile.unstable b/etc/abs/supfile.unstable deleted file mode 100644 index d567313d..00000000 --- a/etc/abs/supfile.unstable +++ /dev/null @@ -1,15 +0,0 @@ -# -# supfile.unstable -# - -# this is the host containing the unstable PKGBUILD files -*default host=cvs.archlinux.org - -*default release=cvs -*default delete -*default use-rel-suffix -*default compress -#*default umask=002 - -*default tag=CURRENT -unstable |