summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorDaniel J Griffiths <ghost1227@archlinux.us>2009-09-18 20:49:21 +0200
committerAaron Griffin <aaronmgriffin@gmail.com>2009-09-18 20:49:21 +0200
commit428a876ba62be88320acb11c48a1a3f45cc209a9 (patch)
treed10d543c1387fca0934da1f71ad2c32a4da01515
parentbeeccefdb996084b9edef27a5bbdace4c10ba1be (diff)
downloaddbscripts-428a876ba62be88320acb11c48a1a3f45cc209a9.tar.gz
dbscripts-428a876ba62be88320acb11c48a1a3f45cc209a9.tar.xz
Add "testing to repo" scripts for community
Signed-off-by: Aaron Griffin <aaronmgriffin@gmail.com>
-rwxr-xr-xcommunity-testing2community11
-rwxr-xr-xcommunity-testing2community6411
2 files changed, 22 insertions, 0 deletions
diff --git a/community-testing2community b/community-testing2community
new file mode 100755
index 0000000..557b39d
--- /dev/null
+++ b/community-testing2community
@@ -0,0 +1,11 @@
+#!/bin/bash
+
+if [ $# -le 0 ]; then
+ echo "usage: $(basename 0) <packagename> [<packagename> [<packagename ...]]"
+ exit 0
+fi
+
+for pkg in $@; do
+ echo "==> Moving package '$pkg'"
+ $(dirname $0)/db-move "$pkg" "community-testing" "community" "i686"
+done
diff --git a/community-testing2community64 b/community-testing2community64
new file mode 100755
index 0000000..3f88a4d
--- /dev/null
+++ b/community-testing2community64
@@ -0,0 +1,11 @@
+#!/bin/bash
+
+if [ $# -le 0 ]; then
+ echo "usage: $(basename 0) <packagename> [<packagename> [<packagename ...]]"
+ exit 0
+fi
+
+for pkg in $@; do
+ echo "==> Moving package '$pkg'"
+ $(dirname $0)/db-move "$pkg" "community-testing" "community" "x86_64"
+done