From owner-svn-ports-all@freebsd.org Sun Dec 8 17:25:39 2019 Return-Path: Delivered-To: svn-ports-all@mailman.nyi.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.nyi.freebsd.org (Postfix) with ESMTP id 383E81EB1B7; Sun, 8 Dec 2019 17:25:39 +0000 (UTC) (envelope-from dmgk@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 47WCrz0p76z4YFb; Sun, 8 Dec 2019 17:25:39 +0000 (UTC) (envelope-from dmgk@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 1691059EF; Sun, 8 Dec 2019 17:25:39 +0000 (UTC) (envelope-from dmgk@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id xB8HPcha000134; Sun, 8 Dec 2019 17:25:38 GMT (envelope-from dmgk@FreeBSD.org) Received: (from dmgk@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id xB8HPcrb000133; Sun, 8 Dec 2019 17:25:38 GMT (envelope-from dmgk@FreeBSD.org) Message-Id: <201912081725.xB8HPcrb000133@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: dmgk set sender to dmgk@FreeBSD.org using -f From: Dmitri Goutnik Date: Sun, 8 Dec 2019 17:25:38 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r519502 - head/net-mgmt/unbound_exporter X-SVN-Group: ports-head X-SVN-Commit-Author: dmgk X-SVN-Commit-Paths: head/net-mgmt/unbound_exporter X-SVN-Commit-Revision: 519502 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.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: Sun, 08 Dec 2019 17:25:39 -0000 Author: dmgk Date: Sun Dec 8 17:25:38 2019 New Revision: 519502 URL: https://svnweb.freebsd.org/changeset/ports/519502 Log: net-mgmt/unbound_exporter: Unbreak on aarch64 ===> Building unbound_exporter from github.com/kumina/unbound_exporter # github.com/kumina/unbound_exporter/vendor/golang.org/x/sys/unix vendor/golang.org/x/sys/unix/cap_freebsd.go:18:23: undefined: CAP_RIGHTS_VERSION_00 vendor/golang.org/x/sys/unix/cap_freebsd.go:19:23: undefined: CAP_RIGHTS_VERSION_00 vendor/golang.org/x/sys/unix/cap_freebsd.go:46:21: undefined: CapRights vendor/golang.org/x/sys/unix/cap_freebsd.go:50:24: undefined: CapRights vendor/golang.org/x/sys/unix/cap_freebsd.go:55:27: undefined: CapRights vendor/golang.org/x/sys/unix/cap_freebsd.go:90:29: undefined: CapRights vendor/golang.org/x/sys/unix/syscall_unix_gc.go:12:6: missing function body vendor/golang.org/x/sys/unix/syscall_unix_gc.go:13:6: missing function body vendor/golang.org/x/sys/unix/syscall_unix_gc.go:14:6: missing function body vendor/golang.org/x/sys/unix/syscall_unix_gc.go:15:6: missing function body http://thunderx1.nyi.freebsd.org/data/head-arm64-default/p518178_s355024/logs/errors/unbound_exporter-0.1_3.log Unbreak by updating golang.org/x/sys to 33540a1f6037 which adds support for freebsd/arm64. PR: 242419 Approved by: Athanasios Douitsis (maintainer) Modified: head/net-mgmt/unbound_exporter/Makefile head/net-mgmt/unbound_exporter/distinfo Modified: head/net-mgmt/unbound_exporter/Makefile ============================================================================== --- head/net-mgmt/unbound_exporter/Makefile Sun Dec 8 17:25:37 2019 (r519501) +++ head/net-mgmt/unbound_exporter/Makefile Sun Dec 8 17:25:38 2019 (r519502) @@ -4,7 +4,7 @@ PORTNAME= unbound_exporter PORTVERSION= 0.1 DISTVERSIONPREFIX= v -PORTREVISION= 3 +PORTREVISION= 4 CATEGORIES= net-mgmt MAINTAINER= aduitsis@cpan.org @@ -27,7 +27,7 @@ GH_TUPLE= prometheus:client_golang:3fb53d:client_gola matttproud:golang_protobuf_extensions:c12348c:extensions/vendor/github.com/matttproud/golang_protobuf_extensions \ sirupsen:logrus:91da99d:logrus/vendor/github.com/Sirupsen/logrus \ golang:crypto:3d3f9f41:crypto/vendor/golang.org/x/crypto \ - golang:sys:93218def:sys/vendor/golang.org/x/sys + golang:sys:33540a1f6037:sys/vendor/golang.org/x/sys GO_PKGNAME= github.com/${GH_ACCOUNT}/${PORTNAME} Modified: head/net-mgmt/unbound_exporter/distinfo ============================================================================== --- head/net-mgmt/unbound_exporter/distinfo Sun Dec 8 17:25:37 2019 (r519501) +++ head/net-mgmt/unbound_exporter/distinfo Sun Dec 8 17:25:38 2019 (r519502) @@ -1,4 +1,4 @@ -TIMESTAMP = 1555770542 +TIMESTAMP = 1575293880 SHA256 (kumina-unbound_exporter-v0.1-b7e842d893d29200a5108eab717f5ab01d783c0c_GH0.tar.gz) = 315e38fe24b822b9e24ab17d336ff1b5108e8931a646cc962c9b96d70824b9a9 SIZE (kumina-unbound_exporter-v0.1-b7e842d893d29200a5108eab717f5ab01d783c0c_GH0.tar.gz) = 8215 SHA256 (prometheus-client_golang-3fb53d_GH0.tar.gz) = 778ce90fdb4610cfc7c6382db9455ba15ca63c48c3f0e21cff9f1d0efeef98d3 @@ -19,5 +19,5 @@ SHA256 (sirupsen-logrus-91da99d_GH0.tar.gz) = fe1633e0 SIZE (sirupsen-logrus-91da99d_GH0.tar.gz) = 37938 SHA256 (golang-crypto-3d3f9f41_GH0.tar.gz) = 4f7727c350599f8254ebbf9bc98ff5a195628e68cb76df4eb7043d2fd9f431c6 SIZE (golang-crypto-3d3f9f41_GH0.tar.gz) = 1644603 -SHA256 (golang-sys-93218def_GH0.tar.gz) = 1f7b65290c1953611b298ffd0e926a500af0440a5a8c528e2db5cf55c130da3b -SIZE (golang-sys-93218def_GH0.tar.gz) = 1111385 +SHA256 (golang-sys-33540a1f6037_GH0.tar.gz) = 09ebdf007413c2eaddce123137443d08d1848be410c58896e772f0481ec385d5 +SIZE (golang-sys-33540a1f6037_GH0.tar.gz) = 1497659