diff --git a/sysutils/nomad/Makefile b/sysutils/nomad/Makefile index 19446b2951d..c1f373628bd 100644 --- a/sysutils/nomad/Makefile +++ b/sysutils/nomad/Makefile @@ -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 diff --git a/sysutils/nomad/distinfo b/sysutils/nomad/distinfo index 1d6cb69ffff..d4589d542f6 100644 --- a/sysutils/nomad/distinfo +++ b/sysutils/nomad/distinfo @@ -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 diff --git a/sysutils/nomad/files/nomad.hcl b/sysutils/nomad/files/nomad.hcl index f49006ba455..1e83d2a6912 100644 --- a/sysutils/nomad/files/nomad.hcl +++ b/sysutils/nomad/files/nomad.hcl @@ -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" diff --git a/sysutils/nomad/patches/patch-vendor_github_com_fsouza_go-dockerclient_external_github_com_docker_docker_pkg_system_stat_openbsd_go b/sysutils/nomad/patches/patch-vendor_github_com_fsouza_go-dockerclient_external_github_com_docker_docker_pkg_system_stat_openbsd_go deleted file mode 100644 index 7895714619c..00000000000 --- a/sysutils/nomad/patches/patch-vendor_github_com_fsouza_go-dockerclient_external_github_com_docker_docker_pkg_system_stat_openbsd_go +++ /dev/null @@ -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 -+}