From owner-svn-ports-head@freebsd.org Tue Mar 12 18:03:34 2019 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 B2D3615392EE; Tue, 12 Mar 2019 18:03:34 +0000 (UTC) (envelope-from dg@syrec.org) Received: from mail.syrec.org (mail.syrec.org [165.227.215.120]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 4A5B874B40; Tue, 12 Mar 2019 18:03:34 +0000 (UTC) (envelope-from dg@syrec.org) Received: from xombo.localdomain (unknown [186.43.134.144]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mail.syrec.org (Postfix) with ESMTPSA id 457914AC98; Tue, 12 Mar 2019 13:03:27 -0500 (-05) Date: Tue, 12 Mar 2019 13:03:24 -0500 From: Dmitri Goutnik To: Ryan Steinmetz Cc: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: Re: svn commit: r495472 - in head/sysutils/beats: . files Message-ID: <20190312180323.GG1658@xombo.localdomain> Mail-Followup-To: Ryan Steinmetz , ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org References: <201903121706.x2CH68On059934@repo.freebsd.org> MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Disposition: inline In-Reply-To: <201903121706.x2CH68On059934@repo.freebsd.org> User-Agent: Mutt/1.11.3 (2019-02-01) X-Rspamd-Queue-Id: 4A5B874B40 X-Spamd-Bar: ------ X-Spamd-Result: default: False [-6.97 / 15.00]; NEURAL_HAM_MEDIUM(-1.00)[-1.000,0]; NEURAL_HAM_SHORT(-0.97)[-0.973,0]; NEURAL_HAM_LONG(-1.00)[-1.000,0]; REPLY(-4.00)[] X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.29 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: Tue, 12 Mar 2019 18:03:35 -0000 On 19-03-12 17:06:08, Ryan Steinmetz wrote: > 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 > _______________________________________________ > svn-ports-all@freebsd.org mailing list > https://lists.freebsd.org/mailman/listinfo/svn-ports-all > To unsubscribe, send any mail to "svn-ports-all-unsubscribe@freebsd.org" Hi Ryan, Did you see https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=236094 ? -- Dmitri Goutnik dg@syrec.org