index : asp32 | |
Archlinux32 fork of asp - obsolete | gitolite user |
summaryrefslogtreecommitdiff |
-rw-r--r-- | Makefile | 10 | ||||
-rw-r--r-- | asp32.in (renamed from asp.in) | 4 | ||||
-rw-r--r-- | man/asp32.1.txt (renamed from man/asp.1.txt) | 26 |
@@ -1,4 +1,4 @@ -PACKAGE_NAME = asp +PACKAGE_NAME = asp32 VERSION = v3 VDEVEL = $(shell test -d .git && git describe --dirty 2>/dev/null) @@ -10,10 +10,10 @@ endif PREFIX = /usr/local BINPROGS = \ - asp + asp32 MANPAGES = \ - man/asp.1 + man/asp32.1 BASH_COMPLETION = \ shell/bash-completion @@ -55,8 +55,8 @@ install: all install -dm755 $(DESTDIR)$(PREFIX)/bin $(DESTDIR)$(PREFIX)/share/man/man1 install -m755 $(BINPROGS) $(DESTDIR)$(PREFIX)/bin install -m644 $(MANPAGES) $(DESTDIR)$(PREFIX)/share/man/man1 - install -Dm644 $(BASH_COMPLETION) $(DESTDIR)$(PREFIX)/share/bash-completion/completions/asp - install -Dm644 $(ZSH_COMPLETION) $(DESTDIR)$(PREFIX)/share/zsh/site-functions/_asp + install -Dm644 $(BASH_COMPLETION) $(DESTDIR)$(PREFIX)/share/bash-completion/completions/asp32 + install -Dm644 $(ZSH_COMPLETION) $(DESTDIR)$(PREFIX)/share/zsh/site-functions/_asp32 dist: git archive --format=tar --prefix=$(PACKAGE_NAME)-$(VERSION)/ $(VERSION) | gzip -9 > $(PACKAGE_NAME)-$(VERSION).tar.gz @@ -5,7 +5,7 @@ ARCH_GIT_REPOS=(packages community) OPT_ARCH=$(uname -m) OPT_FORCE=0 -: ${ASPROOT:=${XDG_CACHE_HOME:-$HOME/.cache}/asp} +: ${ASPROOT:=${XDG_CACHE_HOME:-$HOME/.cache}/asp32} : ${ASPCACHE:=$ASPROOT/cache} m4_include(util.inc.sh) @@ -15,7 +15,7 @@ m4_include(archweb.inc.sh) usage() { cat<<EOF -asp $ASP_VERSION [OPTIONS...] {COMMAND} ... +asp32 $ASP_VERSION [OPTIONS...] {COMMAND} ... Manage build sources for Arch packages. diff --git a/man/asp.1.txt b/man/asp32.1.txt index 7b984e3..be089d4 100644 --- a/man/asp.1.txt +++ b/man/asp32.1.txt @@ -1,23 +1,27 @@ ///// vim:set ts=4 sw=4 syntax=asciidoc noet: ///// -asp(1) -====== +asp32(1) +======== Name ---- -asp - Manage Arch Linux build sources +asp32 - Manage Arch Linux 32 build sources Synopsis -------- -asp [options] command [targets...] +asp32 [options] command [targets...] Description ----------- +The original script can be found at https://github.com/falconindy/asp. +This is a fork for the specific needs of the Archlinux32 project +(https://www.archlinux32.org). + Manage the version-controlled sources for the build scripts used to create Arch -Linux packages. This program provides a thin wrapper over the svntogit -repositories hosted at https://git.archlinux.org. It aims to provide a -replacement for abs which favors a sparse checkout. +Linux 32 packages. This program provides a thin wrapper over the svntogit +repositories hosted at https://git.archlinux.org and https://github.com/archlinux32/packages. +It aims to provide a replacement for abs which favors a sparse checkout. Commands -------- @@ -27,7 +31,7 @@ The following commands are understood: Create a new git repository containing the full source and history for each of the given targets. The new repository will pull from the repository in '$ASPROOT' and must be updated separately after using - 'asp update'. If a checkout occurs on the same filesystem as '$ASPROOT', + 'asp32 update'. If a checkout occurs on the same filesystem as '$ASPROOT', most of the metadata can be hard linked, making this a relatively cheap copy. @@ -112,7 +116,7 @@ Environment ----------- *ASPROOT*:: Determines where the metadata is stored for locally tracked packages. Defaults - to '`${XDG_CACHE_HOME:-$HOME/.cache}/asp`'. + to '`${XDG_CACHE_HOME:-$HOME/.cache}/asp32`'. *ASPCACHE*:: Determines where cached data is stored. Defaults to '$ASPROOT/cache'. Data in @@ -121,3 +125,7 @@ Environment Authors ------- Dave Reisner <d@falconindy.com> + +Motifications for Archlinux32 +----------------------------- +Andreas Baumann <mail@andreasbaumann.cc> |