mirror of https://github.com/status-im/op-geth.git
build: do not require `ethereum-swarm` deb when installing `ethereum` (#17425)
This commit is contained in:
parent
2a06791461
commit
f44046a1c6
11
build/ci.go
11
build/ci.go
|
@ -644,17 +644,6 @@ func (meta debMetadata) ExeName(exe debExecutable) string {
|
||||||
return exe.Package()
|
return exe.Package()
|
||||||
}
|
}
|
||||||
|
|
||||||
// EthereumSwarmPackageName returns the name of the swarm package based on
|
|
||||||
// environment, e.g. "ethereum-swarm-unstable", or "ethereum-swarm".
|
|
||||||
// This is needed so that we make sure that "ethereum" package,
|
|
||||||
// depends on and installs "ethereum-swarm"
|
|
||||||
func (meta debMetadata) EthereumSwarmPackageName() string {
|
|
||||||
if isUnstableBuild(meta.Env) {
|
|
||||||
return debSwarm.Name + "-unstable"
|
|
||||||
}
|
|
||||||
return debSwarm.Name
|
|
||||||
}
|
|
||||||
|
|
||||||
// ExeConflicts returns the content of the Conflicts field
|
// ExeConflicts returns the content of the Conflicts field
|
||||||
// for executable packages.
|
// for executable packages.
|
||||||
func (meta debMetadata) ExeConflicts(exe debExecutable) string {
|
func (meta debMetadata) ExeConflicts(exe debExecutable) string {
|
||||||
|
|
|
@ -10,7 +10,7 @@ Vcs-Browser: https://github.com/ethereum/go-ethereum
|
||||||
|
|
||||||
Package: {{.Name}}
|
Package: {{.Name}}
|
||||||
Architecture: any
|
Architecture: any
|
||||||
Depends: ${misc:Depends}, {{.EthereumSwarmPackageName}}, {{.ExeList}}
|
Depends: ${misc:Depends}, {{.ExeList}}
|
||||||
Description: Meta-package to install geth, swarm, and other tools
|
Description: Meta-package to install geth, swarm, and other tools
|
||||||
Meta-package to install geth, swarm and other tools
|
Meta-package to install geth, swarm and other tools
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue