FreeBSD Bugzilla – Attachment 212132 Details for
Bug 244582
[patch] www/minio-client: Update to RELEASE.2020-02-25T18-10-03Z
Home
|
New
|
Browse
|
Search
|
[?]
|
Reports
|
Help
|
New Account
|
Log In
Remember
[x]
|
Forgot Password
Login:
[x]
[patch]
minio-client.diff
minio-client.diff (text/plain), 4.32 KB, created by
Dmitry Wagin
on 2020-03-03 20:50:58 UTC
(
hide
)
Description:
minio-client.diff
Filename:
MIME Type:
Creator:
Dmitry Wagin
Created:
2020-03-03 20:50:58 UTC
Size:
4.32 KB
patch
obsolete
>Index: www/minio-client/Makefile >=================================================================== >--- www/minio-client/Makefile (revision 527730) >+++ www/minio-client/Makefile (working copy) >@@ -26,8 +26,8 @@ > .endif > > USE_GITHUB= yes >-GHTAG= RELEASE.2020-02-20T23-49-54Z >-COMMIT_ID= 415271412666c03c51748f6cb8e73ecbf97dc30b >+GHTAG= RELEASE.2020-02-25T18-10-03Z >+COMMIT_ID= 67e90b8fcbc9781fa3bf2d183cd457c2e5267f81 > GH_TUPLE= minio:mc:${GHTAG}:DEFAULT \ > StackExchange:wmi:cbe66965904d:stackexchange_wmi/vendor/github.com/StackExchange/wmi \ > cheggaaa:pb:v1.0.28:cheggaaa_pb/vendor/github.com/cheggaaa/pb \ >Index: www/minio-client/distinfo >=================================================================== >--- www/minio-client/distinfo (revision 527730) >+++ www/minio-client/distinfo (working copy) >@@ -1,6 +1,6 @@ >-TIMESTAMP = 1582580981 >-SHA256 (minio-mc-2020.02.20.23.49.54-RELEASE.2020-02-20T23-49-54Z_GH0.tar.gz) = 738958cca37386bd0400f165e2524dd59a38de612033927703300e41f193319b >-SIZE (minio-mc-2020.02.20.23.49.54-RELEASE.2020-02-20T23-49-54Z_GH0.tar.gz) = 346959 >+TIMESTAMP = 1583267731 >+SHA256 (minio-mc-2020.02.25.18.10.03-RELEASE.2020-02-25T18-10-03Z_GH0.tar.gz) = f9bdad2af0f23f63f0d05b25517bf5440d8969919ec509b6471aff5da4bf1942 >+SIZE (minio-mc-2020.02.25.18.10.03-RELEASE.2020-02-25T18-10-03Z_GH0.tar.gz) = 347013 > SHA256 (StackExchange-wmi-cbe66965904d_GH0.tar.gz) = 14dbc4af6952acdb1b941d002cd36fd2299aa6b3144cbcbddbb032c47f816da5 > SIZE (StackExchange-wmi-cbe66965904d_GH0.tar.gz) = 11279 > SHA256 (cheggaaa-pb-v1.0.28_GH0.tar.gz) = f745c5636d3fb59bffab5f9d2a745a94a9608166c20c90936fc66848a5e816e6 >Index: www/minio-client/files/patch-pkg_disk_stat__freebsd.go >=================================================================== >--- www/minio-client/files/patch-pkg_disk_stat__freebsd.go (revision 527730) >+++ www/minio-client/files/patch-pkg_disk_stat__freebsd.go (nonexistent) >@@ -1,68 +0,0 @@ >---- pkg/disk/stat_freebsd.go.orig 2020-02-24 22:16:58 UTC >-+++ pkg/disk/stat_freebsd.go >-@@ -0,0 +1,65 @@ >-+// +build freebsd >-+ >-+/* >-+ * MinIO Cloud Storage, (C) 2019-2020 MinIO, Inc. >-+ * >-+ * Licensed under the Apache License, Version 2.0 (the "License"); >-+ * you may not use this file except in compliance with the License. >-+ * You may obtain a copy of the License at >-+ * >-+ * http://www.apache.org/licenses/LICENSE-2.0 >-+ * >-+ * Unless required by applicable law or agreed to in writing, software >-+ * distributed under the License is distributed on an "AS IS" BASIS, >-+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. >-+ * See the License for the specific language governing permissions and >-+ * limitations under the License. >-+ */ >-+ >-+package disk >-+ >-+import ( >-+ "os/user" >-+ "strconv" >-+ "strings" >-+ "syscall" >-+) >-+ >-+// GetFileSystemAttrs return the file system attribute as string; containing mode, >-+// uid, gid, uname, Gname, atime, mtime, ctime and md5 >-+func GetFileSystemAttrs(file string) (string, error) { >-+ st := syscall.Stat_t{} >-+ err := syscall.Stat(file, &st) >-+ if err != nil { >-+ return "", err >-+ } >-+ >-+ var fileAttr strings.Builder >-+ fileAttr.WriteString("atime:") >-+ fileAttr.WriteString(strconv.Itoa(int(st.Atimespec.Sec))) >-+ fileAttr.WriteString("/ctime:") >-+ fileAttr.WriteString(strconv.Itoa(int(st.Ctimespec.Sec))) >-+ fileAttr.WriteString("/gid:") >-+ fileAttr.WriteString(strconv.Itoa(int(st.Gid))) >-+ >-+ g, err := user.LookupGroupId(strconv.FormatUint(uint64(st.Gid), 10)) >-+ if err == nil { >-+ fileAttr.WriteString("/gname:") >-+ fileAttr.WriteString(g.Name) >-+ } >-+ >-+ fileAttr.WriteString("/mode:") >-+ fileAttr.WriteString(strconv.Itoa(int(st.Mode))) >-+ fileAttr.WriteString("/mtime:") >-+ fileAttr.WriteString(strconv.Itoa(int(st.Mtimespec.Sec))) >-+ fileAttr.WriteString("/uid:") >-+ fileAttr.WriteString(strconv.Itoa(int(st.Uid))) >-+ >-+ u, err := user.LookupId(strconv.FormatUint(uint64(st.Uid), 10)) >-+ if err == nil { >-+ fileAttr.WriteString("/uname:") >-+ fileAttr.WriteString(u.Username) >-+ } >-+ >-+ return fileAttr.String(), nil >-+} > >Property changes on: www/minio-client/files/patch-pkg_disk_stat__freebsd.go >___________________________________________________________________ >Deleted: fbsd:nokeywords >## -1 +0,0 ## >-yes >\ No newline at end of property >Deleted: svn:eol-style >## -1 +0,0 ## >-native >\ No newline at end of property >Deleted: svn:mime-type >## -1 +0,0 ## >-text/plain >\ No newline at end of property
You cannot view the attachment while viewing its details because your browser does not support IFRAMEs.
View the attachment on a separate page
.
View Attachment As Diff
View Attachment As Raw
Actions:
View
|
Diff
Attachments on
bug 244582
: 212132