Initial implementation of app-crypto/acmed ebuild

Rust-based client daemon for ACME.

Signed-off-by: Stefan Knoblich <stkn@bitplumber.de>
This commit is contained in:
2021-04-18 17:11:57 +02:00
parent a822a52f44
commit c51d2968cb
2 changed files with 23 additions and 0 deletions

View File

@@ -0,0 +1,22 @@
EAPI=7
inherit git-r3 rust-toolchain
DESCRIPTION="ACME client daemon writte in Rust"
HOMEPAGE="https://github.com/breard-r/acmed"
SRC_URI=""
EGIT_REPO_URI="https://github.com/breard-r/acmed.git"
RESTRICT="network-sandbox"
SLOT="0"
LICENSE="MIT"
KEYWORDS=""
RDEPEND="dev-libs/openssl"
DEPEND="${RDEPEND}"
src_install() {
default_src_install
keepdir /var/lib/acmed/{accounts,certs}
}