aboutsummaryrefslogtreecommitdiff
path: root/security/vault
diff options
context:
space:
mode:
authorSteve Wills <swills@FreeBSD.org>2017-04-03 08:17:58 +0000
committerSteve Wills <swills@FreeBSD.org>2017-04-03 08:17:58 +0000
commitb2d54d85c90343f0e6beb4ed17496bdd7e9971a3 (patch)
treea492cad2443dd6b048314fcc8cc2a92122368d6a /security/vault
parentc0bc2a8719c3942159bb5c103f834d16bdca412c (diff)
downloadports-b2d54d85c90343f0e6beb4ed17496bdd7e9971a3.tar.gz
ports-b2d54d85c90343f0e6beb4ed17496bdd7e9971a3.zip
security/vault: update to 0.7.0
PR: 218232 Submitted by: Scott Larson <stl@ossuary.net>
Notes
Notes: svn path=/head/; revision=437602
Diffstat (limited to 'security/vault')
-rw-r--r--security/vault/Makefile5
-rw-r--r--security/vault/distinfo6
-rw-r--r--security/vault/files/patch-vendor_github.com_hashicorp_go-syslog_builtin.go11
3 files changed, 4 insertions, 18 deletions
diff --git a/security/vault/Makefile b/security/vault/Makefile
index 345066cff3a5..b464e5f8e64a 100644
--- a/security/vault/Makefile
+++ b/security/vault/Makefile
@@ -1,9 +1,8 @@
# $FreeBSD$
PORTNAME= vault
-PORTVERSION= 0.6.4
+PORTVERSION= 0.7.0
DISTVERSIONPREFIX= v
-PORTREVISION= 1
CATEGORIES= security
MAINTAINER= swills@FreeBSD.org
@@ -17,8 +16,6 @@ USE_GITHUB= yes
GH_ACCOUNT= hashicorp
GH_SUBDIR= src/github.com/${GH_ACCOUNT}/${PORTNAME}
-STRIP= # stripping can break go binaries
-
USE_RC_SUBR= vault
USERS= vault
diff --git a/security/vault/distinfo b/security/vault/distinfo
index 2c8aecc19a8b..46284db4784f 100644
--- a/security/vault/distinfo
+++ b/security/vault/distinfo
@@ -1,3 +1,3 @@
-TIMESTAMP = 1483015796
-SHA256 (hashicorp-vault-v0.6.4_GH0.tar.gz) = efe8649e899b8e5cd5838f896e1d0340b83611fa6f2bd03ffc219827c665ff4e
-SIZE (hashicorp-vault-v0.6.4_GH0.tar.gz) = 5167905
+TIMESTAMP = 1490895339
+SHA256 (hashicorp-vault-v0.7.0_GH0.tar.gz) = 85a15b393f89858b52d09bd884aaf3b5996fd75ec02989b9c9cc932545751368
+SIZE (hashicorp-vault-v0.7.0_GH0.tar.gz) = 5826086
diff --git a/security/vault/files/patch-vendor_github.com_hashicorp_go-syslog_builtin.go b/security/vault/files/patch-vendor_github.com_hashicorp_go-syslog_builtin.go
deleted file mode 100644
index f8d5b5ce2c08..000000000000
--- a/security/vault/files/patch-vendor_github.com_hashicorp_go-syslog_builtin.go
+++ /dev/null
@@ -1,11 +0,0 @@
---- vendor/github.com/hashicorp/go-syslog/builtin.go.orig 2016-12-30 09:29:42 UTC
-+++ vendor/github.com/hashicorp/go-syslog/builtin.go
-@@ -199,7 +199,7 @@ func (n *netConn) close() error {
- // local machine using a Unix domain socket.
- func unixSyslog() (conn serverConn, err error) {
- logTypes := []string{"unixgram", "unix"}
-- logPaths := []string{"/dev/log", "/var/run/syslog"}
-+ logPaths := []string{"/dev/log", "/var/run/syslog", "/var/run/log"}
- for _, network := range logTypes {
- for _, path := range logPaths {
- conn, err := net.DialTimeout(network, path, localDeadline)