summaryrefslogtreecommitdiff
path: root/bin
diff options
context:
space:
mode:
authorErich Eckner <git@eckner.net>2017-06-21 11:08:11 +0200
committerErich Eckner <git@eckner.net>2017-06-21 11:08:11 +0200
commit2a84dd8adfed7fdff1c553908ecb353944000b63 (patch)
treedca176088e05cbebc2624e54cf4160e4f8b59343 /bin
parent9bac2cc501cad9d14c5233e618fd6640b29d78ca (diff)
downloadbuilder-2a84dd8adfed7fdff1c553908ecb353944000b63.tar.xz
bin/build-master-status: introduce and use new function ls_master_mirror
Diffstat (limited to 'bin')
-rwxr-xr-xbin/build-master-status17
-rwxr-xr-xbin/common-functions18
2 files changed, 22 insertions, 13 deletions
diff --git a/bin/build-master-status b/bin/build-master-status
index 44596ef..69274a3 100755
--- a/bin/build-master-status
+++ b/bin/build-master-status
@@ -79,11 +79,10 @@ if [ $# -ne 0 ]; then
fi
stable="$(
- ${master_mirror_command} "${master_mirror_directory}/i686/" | \
- awk '{print $5}' | \
- grep -v 'testing$\|staging$\|^\.$' | \
+ ls_master_mirror 'i686' | \
+ grep -v 'testing$\|staging$' | \
while read -r dir; do
- ${master_mirror_command} "${master_mirror_directory}/i686/${dir}/"
+ ls_master_mirror "i686/${dir}"
done | \
grep -c '\.pkg\.tar\.xz$'
)"
@@ -101,20 +100,18 @@ pending_packages="$(
wc -l
)"
staging="$(
- ${master_mirror_command} "${master_mirror_directory}/i686/" | \
- awk '{print $5}' | \
+ ls_master_mirror 'i686' | \
grep 'staging$' | \
while read -r dir; do
- ${master_mirror_command} "${master_mirror_directory}/i686/${dir}/"
+ ls_master_mirror "i686/${dir}"
done | \
grep -c '\.pkg\.tar\.xz$'
)"
testing="$(
- ${master_mirror_command} "${master_mirror_directory}/i686/" | \
- awk '{print $5}' | \
+ ls_master_mirror 'i686' | \
grep 'testing$' | \
while read -r dir; do
- ${master_mirror_command} "${master_mirror_directory}/i686/${dir}/"
+ ls_master_mirror "i686/${dir}"
done | \
grep -c '\.pkg\.tar\.xz$'
)"
diff --git a/bin/common-functions b/bin/common-functions
index 9b69657..b07e75d 100755
--- a/bin/common-functions
+++ b/bin/common-functions
@@ -308,6 +308,20 @@ official_or_community() {
fi
}
+# ls_master_mirror $path
+# list content of $path on the master mirror (via rsync)
+
+ls_master_mirror() {
+
+ local path="$1"
+
+ ${master_mirror_command} \
+ "${master_mirror_directory}/${path}/" | \
+ grep -v '\s\.$' | \
+ awk '{print $5}'
+
+}
+
# remove_old_package_versions $directory $package_file
# removes all other versions of $package_file in $directory on the master mirror
@@ -322,9 +336,7 @@ remove_old_package_versions() {
--recursive \
--delete \
$( \
- ${master_mirror_command} \
- "${master_mirror_directory}/${directory}/" | \
- awk '{print $5}' | \
+ ls_master_mirror "${directory}" | \
grep "^$(str_to_regex "${pkgname}")\(-[^-]\+\)\{3\}\.pkg\.tar\.xz\(\.sig\)\?\$" | \
grep -v "^$(str_to_regex "${package}")\(\.sig\)\?\$" | \
sed 's|^|--include=|'