forked from TrueCloudLab/frostfs-node
[#409] Add default package changelog
Make it work with simple `dpkg-buildpackage` Signed-off-by: Stanislav Bogatyrev <stanislav@nspcc.ru>
This commit is contained in:
parent
92e9782c44
commit
ff67e903ca
25 changed files with 54 additions and 39 deletions
2
debian/.gitignore
vendored
2
debian/.gitignore
vendored
|
@ -1,2 +0,0 @@
|
|||
changelog
|
||||
*debhelper*
|
11
debian/changelog
vendored
Normal file
11
debian/changelog
vendored
Normal file
|
@ -0,0 +1,11 @@
|
|||
neofs-node (0.33.0~72~g6955fe82) jammy; urgency=medium
|
||||
|
||||
* Please see CHANGELOG.md for code changes for v0.33.0-72-g6955fe82
|
||||
|
||||
-- NeoSPCC <tech@nspcc.ru> Wed, 26 Oct 2022 12:19:45 +0300
|
||||
|
||||
neofs-node (0.33.0) stable; urgency=medium
|
||||
|
||||
* Initial change
|
||||
|
||||
-- NeoSPCC <tech@nspcc.ru> Tue, 25 Oct 2022 21:10:49 +0300
|
12
debian/control
vendored
12
debian/control
vendored
|
@ -8,28 +8,28 @@ Homepage: https://fs.neo.org/
|
|||
Vcs-Git: https://github.com/nspcc-dev/neofs-node.git
|
||||
Vcs-Browser: https://github.com/nspcc-dev/neofs-node
|
||||
|
||||
Package: neofs-node-storage
|
||||
Package: neofs-storage
|
||||
Architecture: any
|
||||
Depends: ${shlibs:Depends}, ${misc:Depends}
|
||||
Description: Storage service for neofs-node
|
||||
Description: NeoFS Storage node
|
||||
NeoFS is a decentralized distributed object storage integrated with the NEO Blockchain.
|
||||
NeoFS Nodes are organized in a peer-to-peer network that takes care of storing and distributing user's data.
|
||||
Any Neo user may participate in the network and get paid for providing storage resources to other users or
|
||||
store their data in NeoFS and pay a competitive price for it.
|
||||
|
||||
Package: neofs-node-ir
|
||||
Package: neofs-ir
|
||||
Architecture: any
|
||||
Depends: ${shlibs:Depends}, ${misc:Depends}
|
||||
Description: InnerRing service for neofs-node
|
||||
Description: NeoFS InnerRing node
|
||||
NeoFS is a decentralized distributed object storage integrated with the NEO Blockchain.
|
||||
NeoFS Nodes are organized in a peer-to-peer network that takes care of storing and distributing user's data.
|
||||
Any Neo user may participate in the network and get paid for providing storage resources to other users or
|
||||
store their data in NeoFS and pay a competitive price for it.
|
||||
|
||||
Package: neofs-node-cli
|
||||
Package: neofs-cli
|
||||
Architecture: any
|
||||
Depends: ${shlibs:Depends}, ${misc:Depends}
|
||||
Description: cli tools for neofs-node
|
||||
Description: CLI tools for NeoFS
|
||||
NeoFS is a decentralized distributed object storage integrated with the NEO Blockchain.
|
||||
NeoFS Nodes are organized in a peer-to-peer network that takes care of storing and distributing user's data.
|
||||
Any Neo user may participate in the network and get paid for providing storage resources to other users or
|
||||
|
|
41
debian/rules
vendored
41
debian/rules
vendored
|
@ -9,33 +9,32 @@ export DEB_BUILD_OPTIONS := nostrip
|
|||
override_dh_auto_test:
|
||||
|
||||
override_dh_auto_install:
|
||||
echo $(DEB_BUILD_OPTIONS)
|
||||
dh_auto_install
|
||||
echo $(DEB_BUILD_OPTIONS)
|
||||
dh_auto_install
|
||||
|
||||
bin/neofs-adm gendoc -t man man/
|
||||
bin/neofs-cli gendoc -t man man/
|
||||
bin/neofs-adm gendoc -t man man/
|
||||
bin/neofs-cli gendoc -t man man/
|
||||
|
||||
bin/neofs-adm completion bash > debian/neofs-adm.bash-completion
|
||||
bin/neofs-cli completion bash > debian/neofs-cli.bash-completion
|
||||
install -m 0755 -d debian/neofs-node-cli/usr/share/fish/completions
|
||||
install -m 0755 -d debian/neofs-node-cli/usr/share/zsh/vendor-completions/
|
||||
bin/neofs-adm completion fish > debian/neofs-node-cli/usr/share/fish/completions/neofs-adm.fish
|
||||
bin/neofs-adm completion zsh > debian/neofs-node-cli/usr/share/zsh/vendor-completions/_neofs-adm
|
||||
bin/neofs-cli completion fish > debian/neofs-node-cli/usr/share/fish/completions/neofs-cli.fish
|
||||
bin/neofs-cli completion zsh > debian/neofs-node-cli/usr/share/zsh/vendor-completions/_neofs-cli
|
||||
bin/neofs-adm completion bash > debian/neofs-adm.bash-completion
|
||||
bin/neofs-cli completion bash > debian/neofs-cli.bash-completion
|
||||
install -m 0755 -d debian/neofs-cli/usr/share/fish/completions
|
||||
install -m 0755 -d debian/neofs-cli/usr/share/zsh/vendor-completions/
|
||||
bin/neofs-adm completion fish > debian/neofs-cli/usr/share/fish/completions/neofs-adm.fish
|
||||
bin/neofs-adm completion zsh > debian/neofs-cli/usr/share/zsh/vendor-completions/_neofs-adm
|
||||
bin/neofs-cli completion fish > debian/neofs-cli/usr/share/fish/completions/neofs-cli.fish
|
||||
bin/neofs-cli completion zsh > debian/neofs-cli/usr/share/zsh/vendor-completions/_neofs-cli
|
||||
|
||||
install -T config/example/ir.yaml debian/neofs-node-ir/etc/neofs/ir/config.yml
|
||||
install -T config/example/ir-control.yaml debian/neofs-node-ir/etc/neofs/ir/control.yml
|
||||
install -T config/example/node.yaml debian/neofs-node-storage/etc/neofs/storage/config.yml
|
||||
install -T config/example/node-control.yaml debian/neofs-node-storage/etc/neofs/storage/control.yml
|
||||
install -T config/example/ir.yaml debian/neofs-ir/etc/neofs/ir/config.yml
|
||||
install -T config/example/ir-control.yaml debian/neofs-ir/etc/neofs/ir/control.yml
|
||||
install -T config/example/node.yaml debian/neofs-storage/etc/neofs/storage/config.yml
|
||||
install -T config/example/node-control.yaml debian/neofs-storage/etc/neofs/storage/control.yml
|
||||
|
||||
override_dh_installsystemd:
|
||||
dh_installsystemd --no-enable --no-start --name=neofs-ir
|
||||
dh_installsystemd --no-enable --no-start --name=neofs-storage
|
||||
dh_installsystemd --no-enable --no-start --name=neofs-ir
|
||||
dh_installsystemd --no-enable --no-start --name=neofs-storage
|
||||
|
||||
override_dh_installchangelogs:
|
||||
dh_installchangelogs -k CHANGELOG.md
|
||||
dh_installchangelogs -k CHANGELOG.md
|
||||
|
||||
override_dh_installdocs:
|
||||
dh_installdocs
|
||||
|
||||
dh_installdocs
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue