Skip site navigation (1)Skip section navigation (2)
Date:      Mon, 15 Mar 2021 18:41:54 +0000 (UTC)
From:      Steve Wills <swills@FreeBSD.org>
To:        ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org
Subject:   svn commit: r568491 - in head/www/minio: . files
Message-ID:  <202103151841.12FIfs9i079340@repo.freebsd.org>

next in thread | raw e-mail | index | archive | help
Author: swills
Date: Mon Mar 15 18:41:54 2021
New Revision: 568491
URL: https://svnweb.freebsd.org/changeset/ports/568491

Log:
  www/minio: fix runtime issue
  
  PR:		253937
  Reported by:	Boris Korzun <drtr0jan@yandex.ru>
  Reported by:	xin3qu@protonmail.com
  Reported by:	Thiago Damas <tdamas@gmail.com>

Added:
  head/www/minio/files/patch-cmd_xl-storage__noatime__notsupported.go   (contents, props changed)
  head/www/minio/files/patch-cmd_xl-storage__noatime__supported.go   (contents, props changed)
  head/www/minio/files/patch-pkg_ioutil_read__file__noatime__notsupported.go   (contents, props changed)
  head/www/minio/files/patch-pkg_ioutil_read__file__noatime__supported.go   (contents, props changed)
Modified:
  head/www/minio/Makefile   (contents, props changed)

Modified: head/www/minio/Makefile
==============================================================================
--- head/www/minio/Makefile	Mon Mar 15 18:32:33 2021	(r568490)
+++ head/www/minio/Makefile	Mon Mar 15 18:41:54 2021	(r568491)
@@ -2,6 +2,7 @@
 
 PORTNAME=	minio
 PORTVERSION=	${GH_TAGNAME:S/RELEASE.//:S/Z//:S/T/-/:S/-/./g}
+PORTREVISION=	1
 CATEGORIES=	www
 DIST_SUBDIR=	minio
 

Added: head/www/minio/files/patch-cmd_xl-storage__noatime__notsupported.go
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/www/minio/files/patch-cmd_xl-storage__noatime__notsupported.go	Mon Mar 15 18:41:54 2021	(r568491)
@@ -0,0 +1,8 @@
+--- cmd/xl-storage_noatime_notsupported.go.orig	2021-03-15 17:48:47 UTC
++++ cmd/xl-storage_noatime_notsupported.go
+@@ -1,4 +1,4 @@
+-// +build windows darwin
++// +build windows darwin freebsd
+ 
+ /*
+  * MinIO Cloud Storage, (C) 2021 MinIO, Inc.

Added: head/www/minio/files/patch-cmd_xl-storage__noatime__supported.go
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/www/minio/files/patch-cmd_xl-storage__noatime__supported.go	Mon Mar 15 18:41:54 2021	(r568491)
@@ -0,0 +1,8 @@
+--- cmd/xl-storage_noatime_supported.go.orig	2021-03-15 17:48:53 UTC
++++ cmd/xl-storage_noatime_supported.go
+@@ -1,4 +1,4 @@
+-// +build !windows,!darwin
++// +build !windows,!darwin,!freebsd
+ 
+ /*
+  * MinIO Cloud Storage, (C) 2021 MinIO, Inc.

Added: head/www/minio/files/patch-pkg_ioutil_read__file__noatime__notsupported.go
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/www/minio/files/patch-pkg_ioutil_read__file__noatime__notsupported.go	Mon Mar 15 18:41:54 2021	(r568491)
@@ -0,0 +1,8 @@
+--- pkg/ioutil/read_file_noatime_notsupported.go.orig	2021-03-15 17:25:38 UTC
++++ pkg/ioutil/read_file_noatime_notsupported.go
+@@ -1,4 +1,4 @@
+-// +build windows darwin
++// +build windows darwin freebsd
+ 
+ /*
+  * MinIO Cloud Storage, (C) 2021 MinIO, Inc.

Added: head/www/minio/files/patch-pkg_ioutil_read__file__noatime__supported.go
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/www/minio/files/patch-pkg_ioutil_read__file__noatime__supported.go	Mon Mar 15 18:41:54 2021	(r568491)
@@ -0,0 +1,8 @@
+--- pkg/ioutil/read_file_noatime_supported.go.orig	2021-03-15 17:25:42 UTC
++++ pkg/ioutil/read_file_noatime_supported.go
+@@ -1,4 +1,4 @@
+-// +build !windows,!darwin
++// +build !windows,!darwin,!freebsd
+ 
+ /*
+  * MinIO Cloud Storage, (C) 2021 MinIO, Inc.



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?202103151841.12FIfs9i079340>