From owner-svn-ports-all@freebsd.org Tue Mar 12 17:06:09 2019 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 40A1F15370AA; Tue, 12 Mar 2019 17:06:09 +0000 (UTC) (envelope-from zi@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) server-signature RSA-PSS (4096 bits) client-signature RSA-PSS (4096 bits) client-digest SHA256) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id D490F71C32; Tue, 12 Mar 2019 17:06:08 +0000 (UTC) (envelope-from zi@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 C6F1625B1A; Tue, 12 Mar 2019 17:06:08 +0000 (UTC) (envelope-from zi@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id x2CH68pf059935; Tue, 12 Mar 2019 17:06:08 GMT (envelope-from zi@FreeBSD.org) Received: (from zi@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id x2CH68On059934; Tue, 12 Mar 2019 17:06:08 GMT (envelope-from zi@FreeBSD.org) Message-Id: <201903121706.x2CH68On059934@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: zi set sender to zi@FreeBSD.org using -f From: Ryan Steinmetz Date: Tue, 12 Mar 2019 17:06:08 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r495472 - in head/sysutils/beats: . files X-SVN-Group: ports-head X-SVN-Commit-Author: zi X-SVN-Commit-Paths: in head/sysutils/beats: . files X-SVN-Commit-Revision: 495472 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-Rspamd-Queue-Id: D490F71C32 X-Spamd-Bar: -- Authentication-Results: mx1.freebsd.org X-Spamd-Result: default: False [-2.96 / 15.00]; local_wl_from(0.00)[FreeBSD.org]; NEURAL_HAM_MEDIUM(-1.00)[-0.997,0]; NEURAL_HAM_SHORT(-0.97)[-0.966,0]; NEURAL_HAM_LONG(-1.00)[-1.000,0]; ASN(0.00)[asn:11403, ipnet:2610:1c1:1::/48, country:US] X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.29 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: Tue, 12 Mar 2019 17:06:09 -0000 Author: zi Date: Tue Mar 12 17:06:08 2019 New Revision: 495472 URL: https://svnweb.freebsd.org/changeset/ports/495472 Log: - Fix build with go 1.12 Added: head/sysutils/beats/files/patch-vendor_github.com_docker_docker_pkg_system_mknod.go (contents, props changed) Modified: head/sysutils/beats/Makefile Modified: head/sysutils/beats/Makefile ============================================================================== --- head/sysutils/beats/Makefile Tue Mar 12 16:56:54 2019 (r495471) +++ head/sysutils/beats/Makefile Tue Mar 12 17:06:08 2019 (r495472) @@ -12,8 +12,6 @@ COMMENT= Collect logs locally and send to remote logst LICENSE= APACHE20 -BROKEN_i386= fails to build - USE_GITHUB= yes GH_ACCOUNT= elastic Added: head/sysutils/beats/files/patch-vendor_github.com_docker_docker_pkg_system_mknod.go ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/sysutils/beats/files/patch-vendor_github.com_docker_docker_pkg_system_mknod.go Tue Mar 12 17:06:08 2019 (r495472) @@ -0,0 +1,11 @@ +--- vendor/github.com/docker/docker/pkg/system/mknod.go.orig 2019-03-12 15:33:33 UTC ++++ vendor/github.com/docker/docker/pkg/system/mknod.go +@@ -9,7 +9,7 @@ import ( + // Mknod creates a filesystem node (file, device special file or named pipe) named path + // with attributes specified by mode and dev. + func Mknod(path string, mode uint32, dev int) error { +- return syscall.Mknod(path, mode, dev) ++ return syscall.Mknod(path, mode, uint64(dev)) + } + + // Mkdev is used to build the value of linux devices (in /dev/) which specifies major