acme: Update to v1.4.
authorToke Høiland-Jørgensen <toke@toke.dk>
Mon, 28 Nov 2016 22:13:52 +0000 (23:13 +0100)
committerToke Høiland-Jørgensen <toke@toke.dk>
Mon, 28 Nov 2016 22:14:24 +0000 (23:14 +0100)
This updates to the latest git version of acme.sh and drops the patch to
disable timestamps from the output (since that is now supported
upstream).

Signed-off-by: Toke Høiland-Jørgensen <toke@toke.dk>
net/acme/Makefile
net/acme/files/run.sh
net/acme/patches/0001-remove-timestamp.patch [deleted file]

index 07e5d8d0e83717181a5181444246ce9b875df69d..9d35f8005fcd29fe24b219e55bd0d2e584ed0d77 100644 (file)
@@ -8,8 +8,8 @@
 include $(TOPDIR)/rules.mk
 
 PKG_NAME:=acme
-PKG_SOURCE_VERSION:=3c33cdfa3da68000a40b85304821705f0deea951
-PKG_VERSION:=1.3
+PKG_SOURCE_VERSION:=6d84da588b98733dd9c4f5b88440281ab1eb4989
+PKG_VERSION:=1.4
 PKG_RELEASE:=1
 PKG_LICENSE:=GPLv3
 
index 2e227c04ad7a35e883ad0a31613a207996c41abd..94fd62426235607ef3d84af220947ca5d94bc5cd 100644 (file)
@@ -11,6 +11,7 @@
 CHECK_CRON=$1
 ACME=/usr/lib/acme/acme.sh
 export SSL_CERT_DIR=/etc/ssl/certs
+export NO_TIMESTAMP=1
 
 UHTTPD_LISTEN_HTTP=
 STATE_DIR='/etc/acme'
diff --git a/net/acme/patches/0001-remove-timestamp.patch b/net/acme/patches/0001-remove-timestamp.patch
deleted file mode 100644 (file)
index 43ed932..0000000
+++ /dev/null
@@ -1,14 +0,0 @@
---- a/acme.sh
-+++ b/acme.sh
-@@ -84,9 +84,9 @@ __red() {
- _printargs() {
-   if [ -z "$2" ] ; then
--    printf -- "[$(date)] $1"
-+    printf -- " $1"
-   else
--    printf -- "[$(date)] $1='$2'"
-+    printf -- " $1='$2'"
-   fi
-   printf "\n"
- }