- update to consul 0.7.0: https://www.hashicorp.com/blog/consul-0-7.html
ok aja@ (MAINTAINER)
This commit is contained in:
parent
5625512153
commit
79f3d5b670
@ -1,15 +1,10 @@
|
||||
# $OpenBSD: Makefile,v 1.3 2016/08/03 09:34:39 ajacoutot Exp $
|
||||
|
||||
# XXX patch-temporary_hack-stat_openbsd_go and patch-temporary_hack_stat_unsupported_go
|
||||
# have been renamed manually to prevent "tar: File name too long for ustar"
|
||||
# when creating ports.tar.gz
|
||||
# $OpenBSD: Makefile,v 1.4 2016/11/01 16:26:11 jasper Exp $
|
||||
|
||||
COMMENT= service discovery and configuration tool
|
||||
|
||||
GH_TAGNAME= v0.6.4
|
||||
GH_TAGNAME= v0.7.0
|
||||
GH_ACCOUNT= hashicorp
|
||||
GH_PROJECT= consul
|
||||
REVISION= 0
|
||||
|
||||
CATEGORIES= sysutils net
|
||||
|
||||
|
@ -1,2 +1,2 @@
|
||||
SHA256 (consul-0.6.4.tar.gz) = MnxyIRrx1mE0d4VsFb97z8PIDSNUL8/+U10w0JNH4Is=
|
||||
SIZE (consul-0.6.4.tar.gz) = 3912207
|
||||
SHA256 (consul-0.7.0.tar.gz) = 02FvIENwqhmd9RbXkv4INQGa7Xtllqp/a9xxwrEGdJQ=
|
||||
SIZE (consul-0.7.0.tar.gz) = 3625239
|
||||
|
@ -1,22 +0,0 @@
|
||||
$OpenBSD: patch-temporary_hack-stat_openbsd_go,v 1.1 2016/07/26 12:42:03 ajacoutot Exp $
|
||||
|
||||
https://github.com/docker/docker/pull/21325/commits/719a43ca3530c424c3875d8c066f7ab09195dfdc
|
||||
|
||||
--- vendor/github.com/fsouza/go-dockerclient/external/github.com/docker/docker/pkg/system/stat_openbsd.go.orig Thu May 12 17:18:18 2016
|
||||
+++ vendor/github.com/fsouza/go-dockerclient/external/github.com/docker/docker/pkg/system/stat_openbsd.go Thu May 12 17:18:30 2016
|
||||
@@ -0,0 +1,15 @@
|
||||
+package system
|
||||
+
|
||||
+import (
|
||||
+ "syscall"
|
||||
+)
|
||||
+
|
||||
+// fromStatT creates a system.StatT type from a syscall.Stat_t type
|
||||
+func fromStatT(s *syscall.Stat_t) (*StatT, error) {
|
||||
+ return &StatT{size: s.Size,
|
||||
+ mode: uint32(s.Mode),
|
||||
+ uid: s.Uid,
|
||||
+ gid: s.Gid,
|
||||
+ rdev: uint64(s.Rdev),
|
||||
+ mtim: s.Mtim}, nil
|
||||
+}
|
@ -1,12 +0,0 @@
|
||||
$OpenBSD: patch-temporary_hack_stat_unsupported_go,v 1.1 2016/07/26 12:42:03 ajacoutot Exp $
|
||||
|
||||
https://github.com/docker/docker/pull/21325/commits/719a43ca3530c424c3875d8c066f7ab09195dfdc
|
||||
|
||||
--- vendor/github.com/fsouza/go-dockerclient/external/github.com/docker/docker/pkg/system/stat_unsupported.go.orig Thu May 12 17:18:45 2016
|
||||
+++ vendor/github.com/fsouza/go-dockerclient/external/github.com/docker/docker/pkg/system/stat_unsupported.go Thu May 12 17:18:52 2016
|
||||
@@ -1,4 +1,4 @@
|
||||
-// +build !linux,!windows,!freebsd,!solaris
|
||||
+// +build !linux,!windows,!freebsd,!solaris,!openbsd
|
||||
|
||||
package system
|
||||
|
Loading…
x
Reference in New Issue
Block a user