#!/bin/bash -e #--------------------------------------------------------------------- # The script below was used previously to build the following tarball # in this directory: # # upstream-icedove.tar.gz # If you re-execute the script, it will delete the tarball and try to # re-create and update it. THIS WILL QUITE POSSIBLY FAIL. BACK-UP A # COPY OF THE DIRECTORY. #--------------------------------------------------------------------- # As of 2023-04-08, the upstream code had last been modified on 2022- # 09-30. # As of 2024-04-14 and 2024-08-18, the upstream code had last been # modified on 2023-10-30. #--------------------------------------------------------------------- ORNAME=icedove USNAME=upstream-$ORNAME LINK=https://git.hyperbola.info:50100/software/icedove-uxp.git set -e rm -fr $USNAME $ORNAME $USNAME.tar* $ORNAME.tar* git clone $LINK $ORNAME tar zcf $USNAME.tar.gz $ORNAME/ rm -fr $ORNAME/ tardate $USNAME.tar.gz ls -l $USNAME.tar.gz echo $0: Done