From owner-svn-ports-all@freebsd.org Wed Jun 20 04:12:18 2018 Return-Path: Delivered-To: svn-ports-all@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 77F3F1023B05; Wed, 20 Jun 2018 04:12:18 +0000 (UTC) (envelope-from lifanov@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 25C1F85AEE; Wed, 20 Jun 2018 04:12:18 +0000 (UTC) (envelope-from lifanov@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 06E641D48E; Wed, 20 Jun 2018 04:12:18 +0000 (UTC) (envelope-from lifanov@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id w5K4CH49048412; Wed, 20 Jun 2018 04:12:17 GMT (envelope-from lifanov@FreeBSD.org) Received: (from lifanov@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id w5K4CH9T048410; Wed, 20 Jun 2018 04:12:17 GMT (envelope-from lifanov@FreeBSD.org) Message-Id: <201806200412.w5K4CH9T048410@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: lifanov set sender to lifanov@FreeBSD.org using -f From: Nikolai Lifanov Date: Wed, 20 Jun 2018 04:12:17 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r472844 - in head/sysutils/packer: . files X-SVN-Group: ports-head X-SVN-Commit-Author: lifanov X-SVN-Commit-Paths: in head/sysutils/packer: . files X-SVN-Commit-Revision: 472844 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.26 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 20 Jun 2018 04:12:18 -0000 Author: lifanov Date: Wed Jun 20 04:12:17 2018 New Revision: 472844 URL: https://svnweb.freebsd.org/changeset/ports/472844 Log: unbreak sysutils/packer on i386 no revision bump because no package change Added: head/sysutils/packer/files/ head/sysutils/packer/files/extra-patch-i386 (contents, props changed) Modified: head/sysutils/packer/Makefile Modified: head/sysutils/packer/Makefile ============================================================================== --- head/sysutils/packer/Makefile Wed Jun 20 03:59:09 2018 (r472843) +++ head/sysutils/packer/Makefile Wed Jun 20 04:12:17 2018 (r472844) @@ -13,11 +13,17 @@ LICENSE_FILE= ${WRKSRC}/LICENSE PLIST_FILES= bin/${PORTNAME} +USES= go + USE_GITHUB= yes GH_ACCOUNT= hashicorp -USES= go - GO_PKGNAME= github.com/${GH_ACCOUNT}/${PORTNAME} -.include +.include + +.if ${ARCH} == "i386" +EXTRA_PATCHES= ${PATCHDIR}/extra-patch-i386 +.endif + +.include Added: head/sysutils/packer/files/extra-patch-i386 ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/sysutils/packer/files/extra-patch-i386 Wed Jun 20 04:12:17 2018 (r472844) @@ -0,0 +1,11 @@ +--- vendor/github.com/Azure/azure-sdk-for-go/services/network/mgmt/2018-01-01/network/expressroutecircuitpeerings.go.orig 2018-06-20 03:54:26 UTC ++++ vendor/github.com/Azure/azure-sdk-for-go/services/network/mgmt/2018-01-01/network/expressroutecircuitpeerings.go +@@ -50,7 +50,7 @@ func (client ExpressRouteCircuitPeerings + {TargetValue: peeringParameters, + Constraints: []validation.Constraint{{Target: "peeringParameters.ExpressRouteCircuitPeeringPropertiesFormat", Name: validation.Null, Rule: false, + Chain: []validation.Constraint{{Target: "peeringParameters.ExpressRouteCircuitPeeringPropertiesFormat.PeerASN", Name: validation.Null, Rule: false, +- Chain: []validation.Constraint{{Target: "peeringParameters.ExpressRouteCircuitPeeringPropertiesFormat.PeerASN", Name: validation.InclusiveMaximum, Rule: 4294967295, Chain: nil}, ++ Chain: []validation.Constraint{{Target: "peeringParameters.ExpressRouteCircuitPeeringPropertiesFormat.PeerASN", Name: validation.InclusiveMaximum, Rule: 2147483647, Chain: nil}, + {Target: "peeringParameters.ExpressRouteCircuitPeeringPropertiesFormat.PeerASN", Name: validation.InclusiveMinimum, Rule: 1, Chain: nil}, + }}, + }}}}}); err != nil {