summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorDan McGee <dan@archlinux.org>2011-07-25 19:52:09 +0200
committerPierre Schmitz <pierre@archlinux.de>2011-07-25 20:36:21 +0200
commit8384ad849dfe308ed3e63e252785b9a6f80474f5 (patch)
treef6dad8b4489d46225c72df67e8f40ffe72a5a727
parent1febb47b2c689ffec7b936885ab8dd36fc24b18b (diff)
downloaddevtools-8384ad849dfe308ed3e63e252785b9a6f80474f5.tar.gz
devtools-8384ad849dfe308ed3e63e252785b9a6f80474f5.tar.xz
archrelease: remove extra SVN commit
This relies on the fact that trunk/ never has any subdirectories, so we can simply copy all the files in it to the relevant repos/xxx/ directory after removing all existing files in that directory. Signed-off-by: Dan McGee <dan@archlinux.org> Signed-off-by: Pierre Schmitz <pierre@archlinux.de>
-rwxr-xr-xarchrelease27
1 files changed, 22 insertions, 5 deletions
diff --git a/archrelease b/archrelease
index baaf6cf..3d32e6f 100755
--- a/archrelease
+++ b/archrelease
@@ -9,14 +9,18 @@ if [ "$1" = '' ]; then
abort 'Usage: archrelease <repo>'
fi
+# TODO: validate repo is really repo-arch
+
if [ ! -f PKGBUILD ]; then
abort 'archrelease: PKGBUILD not found'
fi
trunk=$(basename $(pwd))
+# Normally this should be trunk, but it may be something
+# such as 'gnome-unstable'
if [ "$(basename $(dirname $(pwd)))" == "repos" ]; then
- abort 'archrelease: Not in a package trunk dir'
+ abort 'archrelease: Should not be in repos dir (try from trunk/)'
fi
if [ ! -z "$(svn status -q)" ]; then
@@ -26,14 +30,27 @@ fi
echo -n "releasing package to ${1}..."
pushd .. >/dev/null
if [ -d "repos/${1}" ]; then
- svn rm --force -q "repos/${1}"
- svn commit -q -m "archrelease: remove ${1}" || abort
+ for file in $(svn ls "repos/${1}"); do
+ svn rm -q "$file"
+ done
fi
if [ ! -d repos ]; then
mkdir repos
svn add repos
fi
-svn copy -q -r HEAD "${trunk}" "repos/${1}"
-svn commit -q -m "archrelease: copy ${trunk} to ${1}" || abort
+if [ ! -d "repos/${1}" ]; then
+ mkdir "repos/${1}"
+ svn add "repos/${1}"
+fi
+known_files=$(svn ls "trunk")
+for file in $known_files; do
+ if [ "$file" != "${file%/}" ]; then
+ abort "archrelease: subdirectories are not supported in package directories!"
+ fi
+done
+for file in $known_files; do
+ svn copy -q -r HEAD "trunk/$file" "repos/${1}/"
+done
+svn commit -q -m "archrelease: copy trunk to ${1}" || abort
popd >/dev/null
echo 'done'