[Commits] [SCM] claws-win32-installer branch, master, updated. 4.2.0-1-29-g2f64758

jonathan at claws-mail.org jonathan at claws-mail.org
Sun Mar 10 06:54:57 UTC 2024


The branch, master has been updated
       via  2f64758fd83023db9aaf8d6d12689f0e141c8f3e (commit)
      from  8c451ea55dde0291dd5231431001edd9e01d8204 (commit)

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


- Log -----------------------------------------------------------------
commit 2f64758fd83023db9aaf8d6d12689f0e141c8f3e
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