Commit c9c4e804 authored by Florian Pritz's avatar Florian Pritz Committed by Pierre Schmitz
Browse files

merge archco and communityco



Signed-off-by: default avatarFlorian Pritz <bluewind@xinu.at>

 delete mode 100755 communityco
Signed-off-by: default avatarPierre Schmitz <pierre@archlinux.de>
parent 25826373
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -4,7 +4,6 @@ BINPROGS = \
	checkpkg \
	commitpkg \
	archco \
	communityco \
	archrelease \
	archrm \
	archbuild \
@@ -57,6 +56,7 @@ install:
	install -m0644 ${CONFIGFILES} $(DESTDIR)/usr/share/devtools
	for l in ${COMMITPKG_LINKS}; do ln -sf commitpkg $(DESTDIR)/usr/bin/$$l; done
	for l in ${ARCHBUILD_LINKS}; do ln -sf archbuild $(DESTDIR)/usr/bin/$$l; done
	ln -sf archco $(DESTDIR)/usr/bin/communityco
	install -Dm0644 bash_completion $(DESTDIR)/etc/bash_completion.d/devtools

uninstall:
+15 −2
Original line number Diff line number Diff line
#!/bin/bash

scriptname=${0##*/}

if [ "$1" = '' ]; then
	echo 'Usage: archco <package name> [<package name>]'
	echo 'Usage: '$scriptname' <package name> [<package name>]'
	exit 1
fi

case $scriptname in
	archco)
		SVNURL="svn+ssh://gerolde.archlinux.org/srv/svn-packages";;
	communityco)
		SVNURL="svn+ssh://aur.archlinux.org/srv/svn-packages";;
	*)
		echo "error: couldn't find svn url for $scriptname"
		exit 1
		;;
esac

for i in "$@"; do
	svn co svn+ssh://gerolde.archlinux.org/srv/svn-packages/$i
	svn co "$SVNURL/$i"
done

communityco

deleted100755 → 0
+0 −10
Original line number Diff line number Diff line
#!/bin/bash

if [ "$1" = '' ]; then
	echo 'Usage: communityco <package name> [<package name>]'
	exit 1
fi

for i in "$@"; do
	svn co svn+ssh://aur.archlinux.org/srv/svn-packages/$i
done