summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-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