pkgsrc-WIP-changes archive

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]

letskencrypt: update to 0.1.9



Module Name:	pkgsrc-wip
Committed By:	Thomas Klausner <wiz%NetBSD.org@localhost>
Pushed By:	wiz
Date:		Tue Jul 26 13:53:44 2016 +0200
Changeset:	99ded7db2adafddda16a3d0a88acaf15b98615ec

Modified Files:
	letskencrypt/Makefile
	letskencrypt/distinfo
Removed Files:
	letskencrypt/patches/patch-GNUmakefile

Log Message:
letskencrypt: update to 0.1.9

2016-07-24: version 0.1.9

Have the system return an error code depending on what happened and
not just a blanket "success" (0) or "failure" (1). Now, the success
exit code (0) is only returned when certificates have been revoked
or updated. If no certificates were touched (e.g., they aren't out
of date and -F wasn't provided), then the system will return code
2. This allows the caller to know (for example) when the web server
should reload its certificates.

Have -N and -n only create the key if it does not exist. Allow
downstream to override PATH_VAR_EMPTY.

2016-07-12: version 0.1.8

Bug-fix for the incorrect validation of domain names as noted by
Remco and on GitHub — thanks! Add the -N flag to create the domain
key. This was indirectly requested in issues/7 and issues/6. Changed
to using SHA512 instead of SHA256 (it always was, but was being
incorrectly specified as SHA256) for the download file (noted in
issues/2). Fixed up letskencrypt(1) with some examples.

To see a diff of this commit:
https://wip.pkgsrc.org/cgi-bin/gitweb.cgi?p=pkgsrc-wip.git;a=commitdiff;h=99ded7db2adafddda16a3d0a88acaf15b98615ec

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.

diffstat:
 letskencrypt/Makefile                  |  2 +-
 letskencrypt/distinfo                  |  9 ++++-----
 letskencrypt/patches/patch-GNUmakefile | 21 ---------------------
 3 files changed, 5 insertions(+), 27 deletions(-)

diffs:
diff --git a/letskencrypt/Makefile b/letskencrypt/Makefile
index 240129d..8b6bac5 100644
--- a/letskencrypt/Makefile
+++ b/letskencrypt/Makefile
@@ -1,6 +1,6 @@
 # $NetBSD$
 
-DISTNAME=	letsenkrypt-0.1.7
+DISTNAME=	letsenkrypt-0.1.9
 CATEGORIES=	security www
 MASTER_SITES=	${MASTER_SITE_GITHUB:=kristapsdz/}
 GITHUB_PROJECT=	letskencrypt-portable
diff --git a/letskencrypt/distinfo b/letskencrypt/distinfo
index d11cbd2..2bd6a0e 100644
--- a/letskencrypt/distinfo
+++ b/letskencrypt/distinfo
@@ -1,7 +1,6 @@
 $NetBSD$
 
-SHA1 (letsenkrypt-0.1.7.tar.gz) = 2ec8cc51b3ebdc7daf9aaef5a345f8a75dd5f1e7
-RMD160 (letsenkrypt-0.1.7.tar.gz) = 94d0c9698a9c6c26b4f156569efdafdff5094afd
-SHA512 (letsenkrypt-0.1.7.tar.gz) = 8c346b5105a2feb9d0ef1610f3eb8fe010173043fe45996635dd76241a13114c53384176f87940d373adf4fe5b10cb83f21b12c90e7a22f1f14c381dcfc494f4
-Size (letsenkrypt-0.1.7.tar.gz) = 40965 bytes
-SHA1 (patch-GNUmakefile) = f646225804ebb6c1960240bb50b243ab1dc46adc
+SHA1 (letsenkrypt-0.1.9.tar.gz) = d6b52536ceb85c6248b57f98c555460ae4bbd104
+RMD160 (letsenkrypt-0.1.9.tar.gz) = 3efbdf85b7df436cd47b362f568c2c3d28aa5884
+SHA512 (letsenkrypt-0.1.9.tar.gz) = 0d801d123c2619542a05cc99a3d9fc85a699daae2091a21d981be6c728566b6ee7b5520e14fee152a194e56f79435137b42a835b4606934204ba574f768c6583
+Size (letsenkrypt-0.1.9.tar.gz) = 41851 bytes
diff --git a/letskencrypt/patches/patch-GNUmakefile b/letskencrypt/patches/patch-GNUmakefile
deleted file mode 100644
index 89e9ec2..0000000
--- a/letskencrypt/patches/patch-GNUmakefile
+++ /dev/null
@@ -1,21 +0,0 @@
-$NetBSD$
-
-Fix DESTDIR installation.
-
---- GNUmakefile.orig	2016-06-28 04:29:42.000000000 +0000
-+++ GNUmakefile
-@@ -115,10 +115,10 @@ merge:
- 	done
- 
- install: letskencrypt
--	mkdir -p $(MAN1DIR)
--	mkdir -p $(BINDIR)
--	install -m 0755 letskencrypt $(BINDIR)
--	install -m 0644 letskencrypt.1 $(MAN1DIR)
-+	mkdir -p $(DESTDIR)$(MAN1DIR)
-+	mkdir -p $(DESTDIR)$(BINDIR)
-+	install -m 0755 letskencrypt $(DESTDIR)$(BINDIR)
-+	install -m 0644 letskencrypt.1 $(DESTDIR)$(MAN1DIR)
- 
- $(OBJS): extern.h config.h
- 


Home | Main Index | Thread Index | Old Index