summaryrefslogtreecommitdiffstats
path: root/archrelease
blob: 70845a6c49b1588f8973a319389c01e554e6ff44 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
#!/bin/bash

if [ "$1" = '' ]; then
	echo 'Usage: archrelease <repo>'
	exit 1
fi

if [ ! -f PKGBUILD ]; then
	echo 'archrelease: PKGBUILD not found'
	exit 1
fi

if [ "$(basename $(readlink -f .))" != 'trunk' ]; then
	echo 'archrelease: Not in a package trunk dir'
	exit 1
fi

if [ "$(svn diff)" != '' ]; then
	echo 'archrelease: You have not committed your changes yet!'
	echo '             Please run "svn commit" first'
	exit 1
fi

echo -n 'releasing package...'
pushd .. >/dev/null
url=$(svn info | grep URL)
url="${url##*URL: }"
if [ -z "$(svn diff ${url}/trunk ${url}/repos/${1} 2>/dev/null)" -a $? -eq 0 ]; then
	echo 'already done'
	exit 1
fi
if [ -d repos/$1 ]; then
	svn rm --force -q repos/$1
	svn commit -q -m "archrelease: remove $1"
fi
svn copy -q -r HEAD trunk repos/$1
svn commit -q -m "archrelease: copy trunk to $1"
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