-
Notifications
You must be signed in to change notification settings - Fork 6
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- uses "make all" to download and build database - packages it to debian package to be placed in /var/lib/neofs/ir Using: ```make debpackage``` Signed-off-by: Dmitriy Zabolotskiy <d.zabolotskiy@yadro.com>
- Loading branch information
1 parent
8327094
commit bbb5840
Showing
8 changed files
with
76 additions
and
2 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,5 @@ | ||
tmp/ | ||
in/ | ||
locode_db | ||
locode_db | ||
# debhelpers | ||
**/.debhelper |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
neofs-locode-db (0.2.1) stable; urgency=medium | ||
|
||
* Initial change. | ||
|
||
-- NeoSPCC <tech@nspcc.ru> Wed, 19 Oct 2022 12:33:04 +0300 | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,17 @@ | ||
Source: neofs-locode-db | ||
Section: misc | ||
Priority: optional | ||
Maintainer: NeoSPCC <tech@nspcc.ru> | ||
Build-Depends: debhelper-compat (= 13), git, devscripts, wget, neofs-cli | ||
Standards-Version: 4.5.1 | ||
Homepage: https://fs.neo.org/ | ||
Vcs-Git: https://github.com/nspcc-dev/neofs-locode-db.git | ||
Vcs-Browser: https://github.com/nspcc-dev/neofs-locode-db | ||
|
||
Package: neofs-locode-db | ||
Architecture: any | ||
Depends: ${misc:Depends} | ||
Description: Compiled UN/LOCODE database for NeoFS | ||
NeoFS uses UN/LOCODE in storage node attributes and storage policies. | ||
Inner ring nodes converts UN/LOCODE into human-readable set of attributes | ||
such as continent, country name, etc. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
Format: https://www.debian.org/doc/packaging-manuals/copyright-format/1.0/ | ||
Upstream-Name: neofs-locode-db | ||
Upstream-Contact: tech@nspcc.ru | ||
Source: https://github.com/nspcc-dev/neofs-locode-db | ||
|
||
Files: * | ||
Copyright: 2018-2022 NeoSPCC (@nspcc-dev) | ||
|
||
License: CC-BY-SA-4.0 | ||
This project is licensed under the CC Attribution-ShareAlike 4.0 International | ||
https://creativecommons.org/licenses/by-sa/4.0/legalcode |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
locode_db var/lib/neofs/ir |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,17 @@ | ||
#!/usr/bin/make -f | ||
|
||
export DEB_BUILD_OPTIONS := nostrip nocheck | ||
|
||
%: | ||
dh $@ | ||
|
||
override_dh_auto_build: | ||
$(MAKE) all | ||
|
||
override_dh_installchangelogs: | ||
dh_installchangelogs -k CHANGELOG.md | ||
|
||
override_dh_clean: | ||
dh_clean | ||
rm -f locode_db | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
3.0 (quilt) |