forked from hyperledger-indy/indy-sdk
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
IS-1495: Release Indy SDK 1.14.3 - build DEB's using cargo deb
Signed-off-by: artem.ivanov <[email protected]>
- Loading branch information
1 parent
2a32e8a
commit 952f3ce
Showing
6 changed files
with
140 additions
and
41 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
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 |
---|---|---|
|
@@ -2,6 +2,11 @@ | |
name = "indy-cli" | ||
version = "1.14.3" | ||
authors = ["Hyperledger Indy Contributors <[email protected]>"] | ||
license = "MIT/Apache-2.0" | ||
description = """\ | ||
This is the official command line interface for Indy SDK,\ | ||
which provides a distributed-ledger-based foundation for self-sovereign\ | ||
identity.""" | ||
edition = "2018" | ||
|
||
[features] | ||
|
@@ -30,3 +35,20 @@ serde_derive = "1.0.97" | |
term = "0.4.6" | ||
rpassword = "1.0.0" | ||
indy = { version = "1.14.3", path = "../wrappers/rust/" } | ||
|
||
[package.metadata.deb] | ||
depends = "libindy (= 1.14.3), libncursesw5-dev" | ||
section = "devel" | ||
priority = "optional" | ||
assets = [ | ||
["target/release/indy-cli", "usr/bin/", "755"] | ||
] | ||
maintainer-scripts = "./debian" | ||
|
||
[package.metadata.deb.variants.indy-cli-xenial] | ||
name = "indy-cli" | ||
provides = "indy-cli (= 1.14.3)" | ||
|
||
[package.metadata.deb.variants.indy-cli-bionic] | ||
name = "indy-cli" | ||
provides = "indy-cli (= 1.14.3)" |
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 |
---|---|---|
|
@@ -2,6 +2,9 @@ | |
name = "null-payment-method" | ||
version = "1.14.3" | ||
authors = ["Hyperledger Indy Contributors <[email protected]>"] | ||
license = "MIT/Apache-2.0" | ||
description = """\ | ||
This is a simple plugin that can be used for development of applications that use Payments API of Indy SDK.""" | ||
build = "build.rs" | ||
|
||
[lib] | ||
|
@@ -30,3 +33,20 @@ indy = { version="1.14.3", path="../wrappers/rust" } | |
|
||
[target.'cfg(target_os = "android")'.dependencies] | ||
android_logger = "0.5" | ||
|
||
[package.metadata.deb] | ||
depends = "libindy (= 1.14.3)" | ||
section = "devel" | ||
priority = "optional" | ||
assets = [ | ||
["target/release/libnullpay.so", "usr/lib/", "644"] | ||
] | ||
maintainer-scripts = "./debian" | ||
|
||
[package.metadata.deb.variants.libnullpay-xenial] | ||
name = "libnullpay" | ||
provides = "libnullpay (= 1.14.3)" | ||
|
||
[package.metadata.deb.variants.libnullpay-bionic] | ||
name = "libnullpay" | ||
provides = "libnullpay (= 1.14.3)" |
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