@@ -56,7 +56,7 @@ import (
56
56
"github.com/cespare/cp"
57
57
"github.com/ethereum/go-ethereum/crypto/signify"
58
58
"github.com/ethereum/go-ethereum/internal/build"
59
- "github.com/ethereum/go-ethereum/params "
59
+ "github.com/ethereum/go-ethereum/internal/version "
60
60
)
61
61
62
62
var (
@@ -108,7 +108,7 @@ var (
108
108
// A debian package is created for all executables listed here.
109
109
debEthereum = debPackage {
110
110
Name : "ethereum" ,
111
- Version : params . Version ,
111
+ Version : version . Semantic ,
112
112
Executables : debExecutables ,
113
113
}
114
114
@@ -631,7 +631,7 @@ func doArchive(cmdline []string) {
631
631
632
632
var (
633
633
env = build .Env ()
634
- basegeth = archiveBasename (* arch , params . ArchiveVersion (env .Commit ))
634
+ basegeth = archiveBasename (* arch , version . Archive (env .Commit ))
635
635
geth = "geth-" + basegeth + ext
636
636
alltools = "geth-alltools-" + basegeth + ext
637
637
)
@@ -751,7 +751,7 @@ func doDockerBuildx(cmdline []string) {
751
751
case env .Branch == "master" :
752
752
tags = []string {"latest" }
753
753
case strings .HasPrefix (env .Tag , "v1." ):
754
- tags = []string {"stable" , fmt .Sprintf ("release-1.%d " , params . VersionMinor ), "v" + params . Version }
754
+ tags = []string {"stable" , fmt .Sprintf ("release-%v " , version . Family ), "v" + version . Semantic }
755
755
}
756
756
// Need to create a mult-arch builder
757
757
build .MustRunCommand ("docker" , "buildx" , "create" , "--use" , "--name" , "multi-arch-builder" , "--platform" , * platform )
@@ -767,7 +767,7 @@ func doDockerBuildx(cmdline []string) {
767
767
gethImage := fmt .Sprintf ("%s%s" , spec .base , tag )
768
768
build .MustRunCommand ("docker" , "buildx" , "build" ,
769
769
"--build-arg" , "COMMIT=" + env .Commit ,
770
- "--build-arg" , "VERSION=" + params . VersionWithMeta ,
770
+ "--build-arg" , "VERSION=" + version . WithMeta ,
771
771
"--build-arg" , "BUILDNUM=" + env .Buildnum ,
772
772
"--tag" , gethImage ,
773
773
"--platform" , * platform ,
@@ -1139,19 +1139,19 @@ func doWindowsInstaller(cmdline []string) {
1139
1139
// Build the installer. This assumes that all the needed files have been previously
1140
1140
// built (don't mix building and packaging to keep cross compilation complexity to a
1141
1141
// minimum).
1142
- version := strings .Split (params . Version , "." )
1142
+ ver := strings .Split (version . Semantic , "." )
1143
1143
if env .Commit != "" {
1144
- version [2 ] += "-" + env .Commit [:8 ]
1144
+ ver [2 ] += "-" + env .Commit [:8 ]
1145
1145
}
1146
- installer , err := filepath .Abs ("geth-" + archiveBasename (* arch , params . ArchiveVersion (env .Commit )) + ".exe" )
1146
+ installer , err := filepath .Abs ("geth-" + archiveBasename (* arch , version . Archive (env .Commit )) + ".exe" )
1147
1147
if err != nil {
1148
1148
log .Fatalf ("Failed to convert installer file path: %v" , err )
1149
1149
}
1150
1150
build .MustRunCommand ("makensis.exe" ,
1151
1151
"/DOUTPUTFILE=" + installer ,
1152
- "/DMAJORVERSION=" + version [0 ],
1153
- "/DMINORVERSION=" + version [1 ],
1154
- "/DBUILDVERSION=" + version [2 ],
1152
+ "/DMAJORVERSION=" + ver [0 ],
1153
+ "/DMINORVERSION=" + ver [1 ],
1154
+ "/DBUILDVERSION=" + ver [2 ],
1155
1155
"/DARCH=" + * arch ,
1156
1156
filepath .Join (* workdir , "geth.nsi" ),
1157
1157
)
0 commit comments