diff options
author | Anton Evangelatov <anton.evangelatov@gmail.com> | 2018-07-30 16:56:40 +0800 |
---|---|---|
committer | Péter Szilágyi <peterke@gmail.com> | 2018-07-30 16:56:40 +0800 |
commit | a5d5609e3810fd161e55950eb44d8314e3f1e169 (patch) | |
tree | 1b387f33124da896bd19430dc1dfda882abd101f /build/deb/ethereum/deb.control | |
parent | 93c0f1715d1ce6e590811a659d20f0e80277ba6a (diff) | |
download | go-tangerine-a5d5609e3810fd161e55950eb44d8314e3f1e169.tar go-tangerine-a5d5609e3810fd161e55950eb44d8314e3f1e169.tar.gz go-tangerine-a5d5609e3810fd161e55950eb44d8314e3f1e169.tar.bz2 go-tangerine-a5d5609e3810fd161e55950eb44d8314e3f1e169.tar.lz go-tangerine-a5d5609e3810fd161e55950eb44d8314e3f1e169.tar.xz go-tangerine-a5d5609e3810fd161e55950eb44d8314e3f1e169.tar.zst go-tangerine-a5d5609e3810fd161e55950eb44d8314e3f1e169.zip |
build: rename swarm deb package to ethereum-swarm; change swarm deb version from 1.8.x to 0.3.x (#16988)
* build: add support for different package and binary names
* build: bump up copyright date
* build: change default PackageName to empty string
* build, internal, swarm: enhance build/release process
* build: hack ethereum-swarm as a "depends" in deb package
* build/ci: remove redundant variables
* build, cmd, mobile, params, swarm: remove VERSION file; rename Version to VersionMeta;
* internal: remove VERSION() method which reads VERSION file
* build: fix VersionFilePath to Version
* Makefile: remove clean_go_build_cache.sh until it works
* Makefile: revert removal of clean_go_build_cache.sh
Diffstat (limited to 'build/deb/ethereum/deb.control')
-rw-r--r-- | build/deb/ethereum/deb.control | 25 |
1 files changed, 25 insertions, 0 deletions
diff --git a/build/deb/ethereum/deb.control b/build/deb/ethereum/deb.control new file mode 100644 index 000000000..e693d1d04 --- /dev/null +++ b/build/deb/ethereum/deb.control @@ -0,0 +1,25 @@ +Source: {{.Name}} +Section: science +Priority: extra +Maintainer: {{.Author}} +Build-Depends: debhelper (>= 8.0.0), golang-1.10 +Standards-Version: 3.9.5 +Homepage: https://ethereum.org +Vcs-Git: git://github.com/ethereum/go-ethereum.git +Vcs-Browser: https://github.com/ethereum/go-ethereum + +Package: {{.Name}} +Architecture: any +Depends: ${misc:Depends}, {{.EthereumSwarmPackageName}}, {{.ExeList}} +Description: Meta-package to install geth, swarm, and other tools + Meta-package to install geth, swarm and other tools + +{{range .Executables}} +Package: {{$.ExeName .}} +Conflicts: {{$.ExeConflicts .}} +Architecture: any +Depends: ${shlibs:Depends}, ${misc:Depends} +Built-Using: ${misc:Built-Using} +Description: {{.Description}} + {{.Description}} +{{end}} |