Update to nomad-0.9.6.

This commit is contained in:
ajacoutot 2019-10-19 11:52:42 +00:00
parent 02cfb8a924
commit 5f6a003595
4 changed files with 5 additions and 27 deletions

View File

@ -1,11 +1,11 @@
# $OpenBSD: Makefile,v 1.7 2019/08/23 10:03:02 ajacoutot Exp $
# $OpenBSD: Makefile,v 1.8 2019/10/19 11:52:42 ajacoutot Exp $
# bunch of undefined things in crypto/blake2b, shirou/gopsutil/disk, shirou/gopsutil/mem
NOT_FOR_ARCHS= i386
COMMENT= cluster scheduler
GH_TAGNAME= v0.9.5
GH_TAGNAME= v0.9.6
GH_ACCOUNT= hashicorp
GH_PROJECT= nomad

View File

@ -1,2 +1,2 @@
SHA256 (nomad-0.9.5.tar.gz) = 9dzIAs0HdW8WnCTdpjf+Mviyy2xrtxuys/TX8974Ijs=
SIZE (nomad-0.9.5.tar.gz) = 33054285
SHA256 (nomad-0.9.6.tar.gz) = w34Dy+k53bmDMH4+tQG4PgJeLJFd4xIJQ4TbkWSuegU=
SIZE (nomad-0.9.6.tar.gz) = 33059126

View File

@ -22,7 +22,7 @@ server {
# # this should be like "nomad.service.consul:4647" and a system
# # like Consul used for service discovery.
# servers = ["127.0.0.1:4647"]
}
#}
# Give the agent a unique name. Defaults to hostname
#name = "nomad"

View File

@ -1,22 +0,0 @@
$OpenBSD: patch-vendor_github_com_fsouza_go-dockerclient_external_github_com_docker_docker_pkg_system_stat_openbsd_go,v 1.1.1.1 2018/10/27 16:44:55 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 Sat May 14 22:43:38 2016
+++ vendor/github.com/fsouza/go-dockerclient/external/github.com/docker/docker/pkg/system/stat_openbsd.go Sat May 14 22:43:38 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
+}