From owner-svn-ports-head@freebsd.org Mon Dec 2 19:36:41 2019 Return-Path: Delivered-To: svn-ports-head@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 F05DA1B4CCF; Mon, 2 Dec 2019 19:36:41 +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 47Rb2x5q7tz4GKj; Mon, 2 Dec 2019 19:36:41 +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 A6CBC40B7; Mon, 2 Dec 2019 19:36:41 +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 xB2Jaf3j032238; Mon, 2 Dec 2019 19:36:41 GMT (envelope-from dmgk@FreeBSD.org) Received: (from dmgk@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id xB2Jaf9V032235; Mon, 2 Dec 2019 19:36:41 GMT (envelope-from dmgk@FreeBSD.org) Message-Id: <201912021936.xB2Jaf9V032235@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: dmgk set sender to dmgk@FreeBSD.org using -f From: Dmitri Goutnik Date: Mon, 2 Dec 2019 19:36:41 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r518867 - head/deskutils/pet X-SVN-Group: ports-head X-SVN-Commit-Author: dmgk X-SVN-Commit-Paths: head/deskutils/pet X-SVN-Commit-Revision: 518867 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.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: Mon, 02 Dec 2019 19:36:42 -0000 Author: dmgk Date: Mon Dec 2 19:36:40 2019 New Revision: 518867 URL: https://svnweb.freebsd.org/changeset/ports/518867 Log: deskutils/pet: Unbreak on aarch64 ===> Building pet from . # 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 Unbreak by updating golang.org/x/sys to 33540a1f6037 which adds support for freebsd/arm64. PR: 242375 Approved by: yuri (maintainer) Modified: head/deskutils/pet/Makefile head/deskutils/pet/distinfo Modified: head/deskutils/pet/Makefile ============================================================================== --- head/deskutils/pet/Makefile Mon Dec 2 19:29:49 2019 (r518866) +++ head/deskutils/pet/Makefile Mon Dec 2 19:36:40 2019 (r518867) @@ -3,7 +3,7 @@ PORTNAME= pet DISTVERSIONPREFIX= v DISTVERSION= 0.3.6 -PORTREVISION= 1 +PORTREVISION= 2 CATEGORIES= deskutils MAINTAINER= yuri@FreeBSD.org @@ -25,7 +25,7 @@ GH_TUPLE= \ golang:net:1e491301e022:golang_net/vendor/golang.org/x/net \ golang:oauth2:1e0a3fa8ba9a:golang_oauth2/vendor/golang.org/x/oauth2 \ golang:protobuf:v1.1.0:golang_protobuf/vendor/github.com/golang/protobuf \ - golang:sys:9527bec2660b:golang_sys/vendor/golang.org/x/sys \ + golang:sys:33540a1f6037:golang_sys/vendor/golang.org/x/sys \ google:go-github:v15.0.0:google_go_github/vendor/github.com/google/go-github \ google:go-querystring:53e6ce116135:google_go_querystring/vendor/github.com/google/go-querystring \ inconshreveable:mousetrap:v1.0.0:inconshreveable_mousetrap/vendor/github.com/inconshreveable/mousetrap \ Modified: head/deskutils/pet/distinfo ============================================================================== --- head/deskutils/pet/distinfo Mon Dec 2 19:29:49 2019 (r518866) +++ head/deskutils/pet/distinfo Mon Dec 2 19:36:40 2019 (r518867) @@ -1,4 +1,4 @@ -TIMESTAMP = 1564905464 +TIMESTAMP = 1575290989 SHA256 (knqyf263-pet-v0.3.6_GH0.tar.gz) = f805d841ec0e47b72fccbad169a73823886913fb3d7d1b67a88a15b1ee684ab8 SIZE (knqyf263-pet-v0.3.6_GH0.tar.gz) = 2739396 SHA256 (BurntSushi-toml-v0.3.0_GH0.tar.gz) = 2c49390424cfb043f803977bce80b1504495bada54f9e845ff8b30a05fab9a36 @@ -19,8 +19,8 @@ SHA256 (golang-oauth2-1e0a3fa8ba9a_GH0.tar.gz) = a027e SIZE (golang-oauth2-1e0a3fa8ba9a_GH0.tar.gz) = 42541 SHA256 (golang-protobuf-v1.1.0_GH0.tar.gz) = c086490e7b116b73b7e3e6058eae997576d0523ad8f1b2ec2b698887e62b14a8 SIZE (golang-protobuf-v1.1.0_GH0.tar.gz) = 324733 -SHA256 (golang-sys-9527bec2660b_GH0.tar.gz) = 0a8a8959d3fd54c4c767af8b497eda6a85ad26cde33a2b4c3a21cc97cc44f60b -SIZE (golang-sys-9527bec2660b_GH0.tar.gz) = 970580 +SHA256 (golang-sys-33540a1f6037_GH0.tar.gz) = 09ebdf007413c2eaddce123137443d08d1848be410c58896e772f0481ec385d5 +SIZE (golang-sys-33540a1f6037_GH0.tar.gz) = 1497659 SHA256 (google-go-github-v15.0.0_GH0.tar.gz) = b567899f55ff36e5795bc40959417c93a2354c3f4adc30fcffcbc8686c3a6529 SIZE (google-go-github-v15.0.0_GH0.tar.gz) = 195725 SHA256 (google-go-querystring-53e6ce116135_GH0.tar.gz) = 2e93ee8f301a4e5fbe1a68feea3a0a9ca9cd91f8f5ba91418f7fc4244e816899