This repository has been archived by the owner on Sep 6, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 73
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
upgrade minfs to start using v7 minio-go SDK
- Loading branch information
1 parent
f8f6382
commit 2b44798
Showing
13 changed files
with
204 additions
and
241 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,91 @@ | ||
// +build ignore | ||
|
||
// Copyright (c) 2015-2021 MinIO, Inc. | ||
// | ||
// This file is part of MinIO Object Storage stack | ||
// | ||
// This program is free software: you can redistribute it and/or modify | ||
// it under the terms of the GNU Affero General Public License as published by | ||
// the Free Software Foundation, either version 3 of the License, or | ||
// (at your option) any later version. | ||
// | ||
// This program is distributed in the hope that it will be useful | ||
// but WITHOUT ANY WARRANTY; without even the implied warranty of | ||
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | ||
// GNU Affero General Public License for more details. | ||
// | ||
// You should have received a copy of the GNU Affero General Public License | ||
// along with this program. If not, see <http://www.gnu.org/licenses/>. | ||
|
||
package main | ||
|
||
import ( | ||
"fmt" | ||
"os" | ||
"os/exec" | ||
"strings" | ||
"time" | ||
) | ||
|
||
func genLDFlags(version string) string { | ||
ldflagsStr := "-s -w" | ||
ldflagsStr += " -X github.com/minio/minio/cmd.Version=" + version | ||
ldflagsStr += " -X github.com/minio/minio/cmd.ReleaseTag=" + releaseTag(version) | ||
ldflagsStr += " -X github.com/minio/minio/cmd.CommitID=" + commitID() | ||
ldflagsStr += " -X github.com/minio/minio/cmd.ShortCommitID=" + commitID()[:12] | ||
ldflagsStr += " -X github.com/minio/minio/cmd.GOPATH=" + os.Getenv("GOPATH") | ||
ldflagsStr += " -X github.com/minio/minio/cmd.GOROOT=" + os.Getenv("GOROOT") | ||
return ldflagsStr | ||
} | ||
|
||
// genReleaseTag prints release tag to the console for easy git tagging. | ||
func releaseTag(version string) string { | ||
relPrefix := "DEVELOPMENT" | ||
if prefix := os.Getenv("MINIO_RELEASE"); prefix != "" { | ||
relPrefix = prefix | ||
} | ||
|
||
relSuffix := "" | ||
if hotfix := os.Getenv("MINIO_HOTFIX"); hotfix != "" { | ||
relSuffix = hotfix | ||
} | ||
|
||
relTag := strings.Replace(version, " ", "-", -1) | ||
relTag = strings.Replace(relTag, ":", "-", -1) | ||
relTag = strings.Replace(relTag, ",", "", -1) | ||
relTag = relPrefix + "." + relTag | ||
|
||
if relSuffix != "" { | ||
relTag += "." + relSuffix | ||
} | ||
|
||
return relTag | ||
} | ||
|
||
// commitID returns the abbreviated commit-id hash of the last commit. | ||
func commitID() string { | ||
// git log --format="%h" -n1 | ||
var ( | ||
commit []byte | ||
e error | ||
) | ||
cmdName := "git" | ||
cmdArgs := []string{"log", "--format=%H", "-n1"} | ||
if commit, e = exec.Command(cmdName, cmdArgs...).Output(); e != nil { | ||
fmt.Fprintln(os.Stderr, "Error generating git commit-id: ", e) | ||
os.Exit(1) | ||
} | ||
|
||
return strings.TrimSpace(string(commit)) | ||
} | ||
|
||
func main() { | ||
var version string | ||
if len(os.Args) > 1 { | ||
version = os.Args[1] | ||
} else { | ||
version = time.Now().UTC().Format(time.RFC3339) | ||
} | ||
|
||
fmt.Println(genLDFlags(version)) | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.