app-crypt/uacme - 1.8.1 (gentoo)

Search

Install

Install this version:

emerge -a =app-crypt/uacme-1.8.1

If this version is masked, you can unmask it using the autounmask tool or standard emerge options:

autounmask =app-crypt/uacme-1.8.1

Or alternatively:

emerge --autounmask-write -a =app-crypt/uacme-1.8.1

Package Information

Description:
uacme is a client for the RFC8555 ACMEv2 protocol.
Homepage:
https://github.com/ndilieto/uacme https://ndilieto.github.io/uacme/uacme.html https://ndilieto.github.io/uacme/ualpn.html
License:
GPL-3+

Ebuild Details

Version EAPI Keywords Slot
1.8.1 8 ~amd64 0
View Raw Ebuild
# Copyright 2026 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2

EAPI=8
inherit autotools

DESCRIPTION="uacme is a client for the RFC8555 ACMEv2 protocol."
HOMEPAGE="
	https://github.com/ndilieto/uacme
	https://ndilieto.github.io/uacme/uacme.html
	https://ndilieto.github.io/uacme/ualpn.html
"

SRC_URI="
	https://github.com/ndilieto/uacme/archive/refs/tags/v${PV}.tar.gz -> ${P}.tar.gz
"

LICENSE="GPL-3+"
SLOT="0"
KEYWORDS="~amd64"
IUSE="doc gnutls +openssl +ualpn"

DEPEND="
	net-misc/curl:=
	openssl? ( dev-libs/openssl:= )
	gnutls? ( net-libs/gnutls:= )
"
RDEPEND="
	${DEPEND}
"
BDEPEND="
	doc? ( app-text/asciidoc )
"

REQUIRED_USE="
	^^ ( gnutls openssl )
"

src_prepare() {
	default
	eautoreconf
}

src_configure() {
	local -a myeconfargs=(
		--with-libcurl
		$(use_enable doc docs)
		$(use_with gnutls)
		$(use_with openssl)
		$(use_with ualpn)
	)

	econf "${myeconfargs[@]}"
}

src_install() {
	default

	if ! use doc; then
		doman uacme.1
		use ualpn && doman ualpn.1
	fi
}

USE Flags

Manage flags for this package: euse -i <flag> -p app-crypt/uacme | euse -E <flag> -p app-crypt/uacme | euse -D <flag> -p app-crypt/uacme

Global/Standard Flags

doc
openssl
Default: Enabled (+)
ualpn
Default: Enabled (+)

Inherited Eclasses

Dependencies

DEPEND

	net-misc/curl:=
	openssl? ( dev-libs/openssl:= )
	gnutls? ( net-libs/gnutls:= )

RDEPEND

	
	net-misc/curl:=
	openssl? ( dev-libs/openssl:= )
	gnutls? ( net-libs/gnutls:= )

BDEPEND

	doc? ( app-text/asciidoc )

Manifest for 1.8.1

Type File Size Source URLs
DIST uacme-1.8.1.tar.gz 252881 bytes https://github.com/ndilieto/uacme/archive/refs/tags/v1.8.1.tar.gz