[Commits] [SCM] claws-win32-installer branch, gtk2, updated. 3.20.0-1-24-g01771e6

jonathan at claws-mail.org jonathan at claws-mail.org
Sun Mar 10 06:56:15 UTC 2024


The branch, gtk2 has been updated
       via  01771e6dc66a08fd1c03a998d6dd9677cb41ad45 (commit)
      from  6f6f047b25a593f1af13d4654ef472779c910ac7 (commit)

Summary of changes:
 build-aux/progress.sh | 24 ++++++++++++++++++++++++
 1 file changed, 24 insertions(+)
 create mode 100755 build-aux/progress.sh


- Log -----------------------------------------------------------------
commit 01771e6dc66a08fd1c03a998d6dd9677cb41ad45
Author: Jonathan Boeing <jonathan at claws-mail.org>
Date:   Sat Mar 9 15:24:42 2024 -0700

    Add build progress script

diff --git a/build-aux/progress.sh b/build-aux/progress.sh
new file mode 100755
index 0000000..34d1d7d
--- /dev/null
+++ b/build-aux/progress.sh
@@ -0,0 +1,24 @@
+#!/bin/bash
+
+root=$(readlink -f "$(dirname $0)/..")
+stamps="$root/src/stamps"
+
+printf "Build progress\n--------------\n"
+
+if [ ! -f ${root}/Makefile ]; then
+	printf "No build in progress\n"
+	exit 0
+fi
+
+for x in $(sed -ne 's/cm_build_list = //p' ${root}/Makefile)
+do
+	if [ -f ${stamps}/stamp-final-${x} ]; then
+		ls -ltc --time-style="+%y-%m-%d %H:%M:%S" ${stamps}/stamp-${x}-00-* | sed -re "s;${stamps}/stamp-(.*)-00-.*;\1;" | awk '{print $6, $7, $8}'
+	elif [ -f ${stamps}/stamp-${x}-00-* ]; then
+		printf "\033[1m"
+		ls -ltc --time-style="+%y-%m-%d %H:%M:%S" ${stamps}/stamp-${x}-00-* | sed -re "s;${stamps}/stamp-(.*)-00-.*;\1;" | awk '{print $6, $7, $8}'
+		printf "\033[0m"
+	else
+		printf '              n/a %s\n' ${x}
+	fi
+done

-----------------------------------------------------------------------


hooks/post-receive
-- 
Installer sources for Claws Mail Windows port


More information about the Commits mailing list