Received: from mail.netbsd.org (mail.netbsd.org [199.233.217.200]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits)) (Client CN "mail.NetBSD.org", Issuer "mail.NetBSD.org CA" (not verified)) by mollari.NetBSD.org (Postfix) with ESMTPS id E03861A9239 for ; Thu, 28 Jan 2021 21:45:27 +0000 (UTC) Received: by mail.netbsd.org (Postfix, from userid 605) id 9FF8184D71; Thu, 28 Jan 2021 21:45:27 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by mail.netbsd.org (Postfix) with ESMTP id DB3A784D4C for ; Thu, 28 Jan 2021 21:45:26 +0000 (UTC) X-Virus-Scanned: amavisd-new at netbsd.org Received: from mail.netbsd.org ([127.0.0.1]) by localhost (mail.netbsd.org [127.0.0.1]) (amavisd-new, port 10025) with ESMTP id 1JUkFDi1VOi8 for ; Thu, 28 Jan 2021 21:45:26 +0000 (UTC) Received: from cvs.NetBSD.org (ivanova.NetBSD.org [IPv6:2001:470:a085:999:28c:faff:fe03:5984]) by mail.netbsd.org (Postfix) with ESMTP id 5BC3484CED for ; Thu, 28 Jan 2021 21:45:26 +0000 (UTC) Received: by cvs.NetBSD.org (Postfix, from userid 500) id 55948FA90; Thu, 28 Jan 2021 21:45:26 +0000 (UTC) Content-Transfer-Encoding: 7bit Content-Type: multipart/mixed; boundary="_----------=_1611870326112250" MIME-Version: 1.0 Date: Thu, 28 Jan 2021 21:45:26 +0000 From: "Jonathan Perkin" Subject: CVS commit: pkgsrc/databases/prometheus To: pkgsrc-changes@NetBSD.org Reply-To: jperkin@netbsd.org X-Mailer: log_accum Message-Id: <20210128214526.55948FA90@cvs.NetBSD.org> Sender: pkgsrc-changes-owner@NetBSD.org List-Id: Precedence: bulk List-Unsubscribe: This is a multi-part message in MIME format. --_----------=_1611870326112250 Content-Disposition: inline Content-Transfer-Encoding: 8bit Content-Type: text/plain; charset="US-ASCII" Module Name: pkgsrc Committed By: jperkin Date: Thu Jan 28 21:45:26 UTC 2021 Modified Files: pkgsrc/databases/prometheus: distinfo Added Files: pkgsrc/databases/prometheus/patches: patch-vendor_github.com_docker_docker_client_client__unix.go Log Message: prometheus: Fix SunOS build. To generate a diff of this commit: cvs rdiff -u -r1.23 -r1.24 pkgsrc/databases/prometheus/distinfo cvs rdiff -u -r0 -r1.1 \ pkgsrc/databases/prometheus/patches/patch-vendor_github.com_docker_docker_client_client__unix.go Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files. --_----------=_1611870326112250 Content-Disposition: inline Content-Length: 2047 Content-Transfer-Encoding: binary Content-Type: text/x-diff; charset=us-ascii Modified files: Index: pkgsrc/databases/prometheus/distinfo diff -u pkgsrc/databases/prometheus/distinfo:1.23 pkgsrc/databases/prometheus/distinfo:1.24 --- pkgsrc/databases/prometheus/distinfo:1.23 Mon Jan 4 09:57:18 2021 +++ pkgsrc/databases/prometheus/distinfo Thu Jan 28 21:45:26 2021 @@ -1,4 +1,4 @@ -$NetBSD: distinfo,v 1.23 2021/01/04 09:57:18 adam Exp $ +$NetBSD: distinfo,v 1.24 2021/01/28 21:45:26 jperkin Exp $ SHA1 (prometheus-2.23.0-react-ui.tar.gz) = df5b9f951a570098db4bc9594838cce0b1ff15d9 RMD160 (prometheus-2.23.0-react-ui.tar.gz) = ea464302d486bf00c1052f6997e5280dd6b7318a @@ -9,4 +9,5 @@ RMD160 (prometheus-2.23.0.tar.gz) = 1839 SHA512 (prometheus-2.23.0.tar.gz) = cac78a69db38efc112bf6415623ba6b59c259d4e77c29f4e3d98df3d0aebf701f245a08f327b1ca3336fb72a1da3ef4c86c322831de2f095c342d67b111f7d6d Size (prometheus-2.23.0.tar.gz) = 14470328 bytes SHA1 (patch-cmd_prometheus_main.go) = b3f3f8872ad19f823424009090fdf4705e7af257 +SHA1 (patch-vendor_github.com_docker_docker_client_client__unix.go) = 2723e14a254f858526a254880630826b4ee93d33 SHA1 (patch-web_ui_ui.go) = 900fd75a9b9e7bbb8aa18a3e06d9c237b94708cf Added files: Index: pkgsrc/databases/prometheus/patches/patch-vendor_github.com_docker_docker_client_client__unix.go diff -u /dev/null pkgsrc/databases/prometheus/patches/patch-vendor_github.com_docker_docker_client_client__unix.go:1.1 --- /dev/null Thu Jan 28 21:45:26 2021 +++ pkgsrc/databases/prometheus/patches/patch-vendor_github.com_docker_docker_client_client__unix.go Thu Jan 28 21:45:26 2021 @@ -0,0 +1,12 @@ +$NetBSD: patch-vendor_github.com_docker_docker_client_client__unix.go,v 1.1 2021/01/28 21:45:26 jperkin Exp $ + +Fix SunOS. + +--- vendor/github.com/docker/docker/client/client_unix.go.orig 2020-11-26 10:11:54.000000000 +0000 ++++ vendor/github.com/docker/docker/client/client_unix.go +@@ -1,4 +1,4 @@ +-// +build linux freebsd openbsd netbsd darwin dragonfly ++// +build linux freebsd openbsd netbsd darwin dragonfly solaris + + package client // import "github.com/docker/docker/client" + --_----------=_1611870326112250--