# Copyright 2026 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2

EAPI=8

inherit go-module

DESCRIPTION="Pebble is a small RFC 8555 ACME test server not suited for production."
HOMEPAGE="https://letsencrypt.org/2025/04/30/pebbleacmeimplementation"
#HOMEPAGE="https://github.com/letsencrypt/pebble"
SRC_URI="https://github.com/letsencrypt/pebble/archive/refs/tags/v${PV}.tar.gz"

LICENSE="Apache-2.0 BSD MPL-2.0"
SLOT="0"
KEYWORDS="~amd64"

src_compile() {
	ego build ./cmd/pebble
}

src_install() {
	dobin ${PN}
	doman docs/man1/*
	insinto /usr/share/pebble
	doins -r test
}