#!/bin/bash abort() { echo ${1:-'archrelease: Cancelled'} exit 1 } if [ "$1" = '' ]; then abort 'Usage: archrelease ' fi if [ ! -f PKGBUILD ]; then abort 'archrelease: PKGBUILD not found' fi if [ "$(basename $(readlink -f .))" != 'trunk' ]; then abort 'archrelease: Not in a package trunk dir' fi if [ ! -z "$(svn status -q)" ]; then abort 'archrelease: You have not committed your changes yet!' fi echo -n 'releasing package...' pushd .. >/dev/null if [ -d "repos/${1}" ]; then svn rm --force -q "repos/${1}" svn commit -q -m "archrelease: remove ${1}" || abort fi svn copy -q -r HEAD trunk "repos/${1}" svn commit -q -m "archrelease: copy trunk to ${1}" || abort popd >/dev/null echo 'done' # vim: set noexpandtab tabstop=8 shiftwidth=8 wrap:textwidth=132 autoindent # kate: indent-mode normal; indent-width 8; tab-indents on; tab-width 8; word-wrap on; word-wrap-column 132