Date: Fri, 9 Feb 2018 22:32:16 +0000 (UTC) From: Yuri Victorovich <yuri@FreeBSD.org> To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r461343 - head/sysutils/nomad Message-ID: <201802092232.w19MWGDX026001@repo.freebsd.org>
next in thread | raw e-mail | index | archive | help
Author: yuri Date: Fri Feb 9 22:32:16 2018 New Revision: 461343 URL: https://svnweb.freebsd.org/changeset/ports/461343 Log: sysutils/nomad: Update to 0.7.1 Changelog is in: https://github.com/hashicorp/nomad/blob/master/CHANGELOG.md Additional port changes: * Changed to DISTVERSION. * Added LICENSE_FILE. * Added ONLY_FOR_ARCHS_REASON (go crashes). * Removed go version specifier in BUILD_DEPENDS (version is already sufficient). * Improved formatting in do-build. PR: 225737 Submitted by: jhixson@gmail.com (maintainer) Approved by: tcberner (mentor, implicit) Modified: head/sysutils/nomad/Makefile head/sysutils/nomad/distinfo head/sysutils/nomad/pkg-descr Modified: head/sysutils/nomad/Makefile ============================================================================== --- head/sysutils/nomad/Makefile Fri Feb 9 22:25:58 2018 (r461342) +++ head/sysutils/nomad/Makefile Fri Feb 9 22:32:16 2018 (r461343) @@ -1,34 +1,34 @@ # $FreeBSD$ PORTNAME= nomad -PORTVERSION= 0.7.0 DISTVERSIONPREFIX= v +DISTVERSION= 0.7.1 CATEGORIES= sysutils MAINTAINER= jhixson@gmail.com COMMENT= Cluster manager and scheduler LICENSE= MPL20 +LICENSE_FILE= ${WRKSRC}/LICENSE ONLY_FOR_ARCHS= amd64 +ONLY_FOR_ARCHS_REASON= On i386: go compiler crashes: https://github.com/golang/go/issues/23763 -BUILD_DEPENDS= go>=1.8:lang/go +BUILD_DEPENDS= go:lang/go USES= compiler - USE_GITHUB= yes GH_ACCOUNT= hashicorp GH_SUBDIR= src/github.com/hashicorp/nomad - USE_RC_SUBR= nomad USERS= nomad GROUPS= nomad do-build: - @cd ${WRKSRC}/src/github.com/hashicorp/nomad; \ - ${SETENV} ${BUILD_ENV} GOPATH=${WRKSRC} go build -v -x \ - -ldflags "-X main.GitDescribe=${DISTVERSIONFULL}" -o bin/nomad + @cd ${WRKSRC}/src/github.com/hashicorp/nomad && \ + ${SETENV} ${BUILD_ENV} GOPATH=${WRKSRC} go build -v -x \ + -ldflags "-X main.GitDescribe=${DISTVERSIONFULL}" -o bin/nomad do-install: ${INSTALL_PROGRAM} ${WRKSRC}/src/github.com/hashicorp/nomad/bin/nomad ${STAGEDIR}${PREFIX}/bin/nomad Modified: head/sysutils/nomad/distinfo ============================================================================== --- head/sysutils/nomad/distinfo Fri Feb 9 22:25:58 2018 (r461342) +++ head/sysutils/nomad/distinfo Fri Feb 9 22:32:16 2018 (r461343) @@ -1,3 +1,3 @@ -TIMESTAMP = 1510187762 -SHA256 (hashicorp-nomad-v0.7.0_GH0.tar.gz) = f143fa34a0bad8ede1c2880680db52aed6feb7f8fbd92294b73b6e9ccb1b0376 -SIZE (hashicorp-nomad-v0.7.0_GH0.tar.gz) = 22548680 +TIMESTAMP = 1518031284 +SHA256 (hashicorp-nomad-v0.7.1_GH0.tar.gz) = 312b7d89b0d03154b9c84672f013ff0d9c44dda0a73a8187d5509088fe0051c0 +SIZE (hashicorp-nomad-v0.7.1_GH0.tar.gz) = 23161309 Modified: head/sysutils/nomad/pkg-descr ==============================================================================
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201802092232.w19MWGDX026001>