From ff2c5304dcdfc5af3a95a09e62377768f4e0ceca Mon Sep 17 00:00:00 2001 From: P. J. McDermott Date: Sat, 05 May 2018 18:29:27 -0400 Subject: gnuzilla/uscanzilla: New file --- (limited to 'gnuzilla') diff --git a/gnuzilla/uscanzilla b/gnuzilla/uscanzilla new file mode 100755 index 0000000..a879ca5 --- /dev/null +++ b/gnuzilla/uscanzilla @@ -0,0 +1,23 @@ +#!/bin/sh + +set -eu + +old_version='0' +{ read old_version 0<"${0%/*}/version" || :; } 2>'/dev/null' + +output="$(uscan --package 'icecat' --upstream-version "${old_version}" \ + --watchfile "${0%/*}/watch" 2>&1)" || return 0 + +sed_s='s/uscan: Newest version of icecat on remote site is \([^,][^,]*\),' +sed_s="${sed_s}"' local version is .*$/\1/p;' +new_version="$(sed -n "${sed_s}")" <<-EOF + ${output} + EOF + +printf '%s\n' "${new_version}" >"${0%/*}/version" + +notify-send "New icecat version: ${new_version}" \ + "${old_version} -> ${new_version}" +# mailx -s "New version of icecat available: ${version}" 'pj@pehjota.net' <<-EOF +# ${output} +# EOF -- cgit v0.9.1