Skip to content

Commit

Permalink
Update security/hitch to 1.3.1.
Browse files Browse the repository at this point in the history
hitch-1.3.1 (2016-08-16)
- Fixes a bug in the autotools configuration which led to man
  pages not being built.

hitch-1.3.0 (2016-08-16)
- Fix a bug where we crashed in the OCSP handling if there was no
  default SSLCTX configured.
- Minor documentation fix.

hitch-1.3.0-beta3 (2016-07-26)
- Fully automated retrieval and refreshes of OCSP responses (see
  configuration.md for details).
- New parameters ocsp-dir, ocsp-resp-tmo and ocsp-connect-tmo.
- Cleanup of various log messages.
- Verification of OCSP staples. Enabled by setting
  ocsp-verify-staple = on.
- Make rst2man an optional requirement (#93). Thanks to Barry
  Allard.
- Avoid stapling expired OCSP responses
- A few fixes to the shared cache updating code. Thanks to Piyush
  Dewnani

hitch-1.3.0-beta2 (2016-05-31)
- Options given on the command line now take presedence over
  configuration file settings. I.e. there is no longer a need to
  specify --config first to get this behavior.
- Config file regression: "yes" and "no" are now accepted by the
  config file parser as boolean values.
- Documentation improvements and spelling fixes.
- Various minor autotools build fixes.

hitch-1.3.0-beta1 (2016-05-11)
- Support for OCSP stapling (see configuration.md for details)
- Initialize OpenSSL locking callback if an engine is loaded. Some
  SSL accelerator cards have their custom SSL engine running in a
  multithreaded context. For these to work correctly, Hitch needs
  to initialize a set of mutexes utilized by the OpenSSL library.
- #82: A mistake in the SNI lookup code caused us to inspect the
  wrong list when looking for wildcard certificate matches.
  • Loading branch information
fhajny committed Aug 22, 2016
1 parent 1dc4dfd commit 0f2b6a1
Show file tree
Hide file tree
Showing 4 changed files with 20 additions and 20 deletions.
10 changes: 5 additions & 5 deletions security/hitch/Makefile
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# $NetBSD: Makefile,v 1.1 2016/05/25 20:15:35 fhajny Exp $
# $NetBSD: Makefile,v 1.2 2016/08/22 09:34:40 fhajny Exp $

DISTNAME= hitch-1.2.0
DISTNAME= hitch-1.3.1
CATEGORIES= security
MASTER_SITES= https://hitch-tls.org/source/

Expand Down Expand Up @@ -37,18 +37,18 @@ MESSAGE_SUBST+= HITCH_CERTS=${HITCH_CERTS}

SUBST_CLASSES+= dir
SUBST_STAGE.dir= pre-configure
SUBST_FILES.dir= hitch.conf.ex
SUBST_FILES.dir= hitch.conf.example
SUBST_VARS.dir= HITCH_USER HITCH_GROUP HITCH_CERTS
SUBST_MESSAGE.dir= Setting default configuration values

PKG_SYSCONFSUBDIR= hitch
CONF_FILES+= share/examples/hitch/hitch.conf.ex \
CONF_FILES+= share/examples/hitch/hitch.conf.example \
${PKG_SYSCONFDIR}/hitch.conf

INSTALLATION_DIRS+= share/examples/hitch

post-install:
${MV} ${DESTDIR}${PREFIX}/share/doc/hitch/hitch.conf.ex \
${MV} ${DESTDIR}${PREFIX}/share/doc/hitch/hitch.conf.example \
${DESTDIR}${PREFIX}/share/examples/hitch

PYTHON_FOR_BUILD_ONLY= yes
Expand Down
4 changes: 2 additions & 2 deletions security/hitch/PLIST
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
@comment $NetBSD: PLIST,v 1.1 2016/05/25 20:15:35 fhajny Exp $
@comment $NetBSD: PLIST,v 1.2 2016/08/22 09:34:40 fhajny Exp $
man/man8/hitch.8
sbin/hitch
share/doc/hitch/CHANGES.rst
share/doc/hitch/README.md
share/examples/hitch/hitch.conf.ex
share/examples/hitch/hitch.conf.example
12 changes: 6 additions & 6 deletions security/hitch/distinfo
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
$NetBSD: distinfo,v 1.1 2016/05/25 20:15:35 fhajny Exp $
$NetBSD: distinfo,v 1.2 2016/08/22 09:34:40 fhajny Exp $

SHA1 (hitch-1.2.0.tar.gz) = 9a5b2f3eee59892c36f45b4f50e201f2937f04a3
RMD160 (hitch-1.2.0.tar.gz) = 029b22cf45b5d76819e197df7609afcbd2c35b02
SHA512 (hitch-1.2.0.tar.gz) = e214d305e49dbd3bb4b741a094d50978f867e97bcd24e2775ce8a1ac450f6607fd638b801c9b41db0d7a22bda56b212a7e9eef053c2ce194f690f27301bd1f98
Size (hitch-1.2.0.tar.gz) = 238079 bytes
SHA1 (patch-hitch.conf.ex) = 6a97612d3817928a6e1d54bc98d2680dadce0b41
SHA1 (hitch-1.3.1.tar.gz) = d6fb5923516bdd9b91dff15b27bc2bd8b56b34c7
RMD160 (hitch-1.3.1.tar.gz) = 1b73e556df363fe35fb5a421b1d80e80cdeea999
SHA512 (hitch-1.3.1.tar.gz) = d90f02bf7ccd40dae0881b9b714f0a3cc81a6a1ec164268f830864e8b77f668865efbd4ce3d932ded5c872c52e26575f6071e4038ac5caf86d41f6935ad543e9
Size (hitch-1.3.1.tar.gz) = 257330 bytes
SHA1 (patch-hitch.conf.example) = 3200fedcc6528476f9b5eca599f156def3e743e0
SHA1 (patch-src_hitch.c) = f16c5010a704291fd1c986b73bb987fd92148616
Original file line number Diff line number Diff line change
@@ -1,19 +1,19 @@
$NetBSD: patch-hitch.conf.ex,v 1.1 2016/05/25 20:15:35 fhajny Exp $
$NetBSD: patch-hitch.conf.example,v 1.1 2016/08/22 09:34:40 fhajny Exp $

Sane default options.

--- hitch.conf.ex.orig 2016-03-18 17:55:17.000000000 +0000
+++ hitch.conf.ex
--- hitch.conf.example.orig 2016-08-15 13:51:51.000000000 +0000
+++ hitch.conf.example
@@ -43,7 +43,7 @@ backend = "[127.0.0.1]:6081"
# only available for a specific listen endpoint.
#
# type: string
-pem-file = ""
+pem-file = "@HITCH_CERTS@"

# SSL protocol.
# OCSP settings
#
@@ -94,12 +94,12 @@ chroot = ""
@@ -120,12 +120,12 @@ chroot = ""
# Set uid after binding a socket
#
# type: string
Expand All @@ -28,7 +28,7 @@ Sane default options.

# Quiet execution, report only error messages
#
@@ -109,7 +109,7 @@ quiet = off
@@ -135,7 +135,7 @@ quiet = off
# Use syslog for logging
#
# type: boolean
Expand All @@ -37,7 +37,7 @@ Sane default options.

# Syslog facility to use
#
@@ -119,7 +119,7 @@ syslog-facility = "daemon"
@@ -145,7 +145,7 @@ syslog-facility = "daemon"
# Run as daemon
#
# type: boolean
Expand Down

0 comments on commit 0f2b6a1

Please sign in to comment.