mirror of
https://github.com/ethereum/go-ethereum.git
synced 2026-06-12 09:51:36 +00:00
strings.Title has been deprecated since Go 1.18 because it does not handle Unicode punctuation properly. Replace all 4 call sites with cases.Title from golang.org/x/text which is already a dependency. Use cases.NoLower to preserve the original strings.Title behavior of only capitalizing the first letter of each word without lowering the rest.
81 lines
2.5 KiB
Go
81 lines
2.5 KiB
Go
// Copyright 2016 The go-ethereum Authors
|
|
// This file is part of go-ethereum.
|
|
//
|
|
// go-ethereum is free software: you can redistribute it and/or modify
|
|
// it under the terms of the GNU General Public License as published by
|
|
// the Free Software Foundation, either version 3 of the License, or
|
|
// (at your option) any later version.
|
|
//
|
|
// go-ethereum 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 General Public License for more details.
|
|
//
|
|
// You should have received a copy of the GNU General Public License
|
|
// along with go-ethereum. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
package main
|
|
|
|
import (
|
|
"fmt"
|
|
"os"
|
|
"runtime"
|
|
|
|
"github.com/ethereum/go-ethereum/internal/version"
|
|
"github.com/urfave/cli/v2"
|
|
"golang.org/x/text/cases"
|
|
"golang.org/x/text/language"
|
|
)
|
|
|
|
var (
|
|
versionCommand = &cli.Command{
|
|
Action: printVersion,
|
|
Name: "version",
|
|
Usage: "Print version numbers",
|
|
ArgsUsage: " ",
|
|
Description: `
|
|
The output of this command is supposed to be machine-readable.
|
|
`,
|
|
}
|
|
licenseCommand = &cli.Command{
|
|
Action: license,
|
|
Name: "license",
|
|
Usage: "Display license information",
|
|
ArgsUsage: " ",
|
|
}
|
|
)
|
|
|
|
func printVersion(ctx *cli.Context) error {
|
|
git, _ := version.VCS()
|
|
|
|
fmt.Println(cases.Title(language.English, cases.NoLower).String(clientIdentifier))
|
|
fmt.Println("Version:", version.WithMeta)
|
|
if git.Commit != "" {
|
|
fmt.Println("Git Commit:", git.Commit)
|
|
}
|
|
if git.Date != "" {
|
|
fmt.Println("Git Commit Date:", git.Date)
|
|
}
|
|
fmt.Println("Architecture:", runtime.GOARCH)
|
|
fmt.Println("Go Version:", runtime.Version())
|
|
fmt.Println("Operating System:", runtime.GOOS)
|
|
fmt.Printf("GOPATH=%s\n", os.Getenv("GOPATH"))
|
|
fmt.Printf("GOROOT=%s\n", runtime.GOROOT())
|
|
return nil
|
|
}
|
|
|
|
func license(_ *cli.Context) error {
|
|
fmt.Println(`Geth is free software: you can redistribute it and/or modify
|
|
it under the terms of the GNU General Public License as published by
|
|
the Free Software Foundation, either version 3 of the License, or
|
|
(at your option) any later version.
|
|
|
|
Geth 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 General Public License for more details.
|
|
|
|
You should have received a copy of the GNU General Public License
|
|
along with geth. If not, see <http://www.gnu.org/licenses/>.`)
|
|
return nil
|
|
}
|