From owner-svn-ports-head@freebsd.org Fri Feb 9 22:32:17 2018 Return-Path: Delivered-To: svn-ports-head@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 10DF7F07A8E; Fri, 9 Feb 2018 22:32:17 +0000 (UTC) (envelope-from yuri@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id DCCB17CCCB; Fri, 9 Feb 2018 22:32:16 +0000 (UTC) (envelope-from yuri@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id D7BA92FC5; Fri, 9 Feb 2018 22:32:16 +0000 (UTC) (envelope-from yuri@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id w19MWGeB026004; Fri, 9 Feb 2018 22:32:16 GMT (envelope-from yuri@FreeBSD.org) Received: (from yuri@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id w19MWGDX026001; Fri, 9 Feb 2018 22:32:16 GMT (envelope-from yuri@FreeBSD.org) Message-Id: <201802092232.w19MWGDX026001@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: yuri set sender to yuri@FreeBSD.org using -f From: Yuri Victorovich Date: Fri, 9 Feb 2018 22:32:16 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r461343 - head/sysutils/nomad X-SVN-Group: ports-head X-SVN-Commit-Author: yuri X-SVN-Commit-Paths: head/sysutils/nomad X-SVN-Commit-Revision: 461343 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.25 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 09 Feb 2018 22:32:17 -0000 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 ==============================================================================