From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (2048 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id 33E751581FB for ; Sat, 24 Aug 2024 20:56:41 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 409DDE2A29; Sat, 24 Aug 2024 20:56:39 +0000 (UTC) Received: from smtp.gentoo.org (mail.gentoo.org [IPv6:2001:470:ea4a:1:5054:ff:fec7:86e4]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 2A8F3E2A29 for ; Sat, 24 Aug 2024 20:56:39 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 3BCA6343091 for ; Sat, 24 Aug 2024 20:56:38 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id BEED31F1A for ; Sat, 24 Aug 2024 20:56:34 +0000 (UTC) From: "David Roman" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "David Roman" Message-ID: <1724496902.d9a45031ae31461c3b85a384af4b2cc1e79336fb.davidroman@gentoo> Subject: [gentoo-commits] repo/proj/guru:master commit in: net-misc/rpki-client/ X-VCS-Repository: repo/proj/guru X-VCS-Files: net-misc/rpki-client/rpki-client-9.2.ebuild X-VCS-Directories: net-misc/rpki-client/ X-VCS-Committer: davidroman X-VCS-Committer-Name: David Roman X-VCS-Revision: d9a45031ae31461c3b85a384af4b2cc1e79336fb X-VCS-Branch: master Date: Sat, 24 Aug 2024 20:56:34 +0000 (UTC) Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-commits@lists.gentoo.org X-Auto-Response-Suppress: DR, RN, NRN, OOF, AutoReply X-Archives-Salt: 62036efb-c00c-482e-bc31-eb9c0da25ee8 X-Archives-Hash: 85edf32cb90b88353de9f9ad01587a13 commit: d9a45031ae31461c3b85a384af4b2cc1e79336fb Author: Alarig Le Lay swordarmor fr> AuthorDate: Sat Aug 24 10:55:02 2024 +0000 Commit: David Roman gmail com> CommitDate: Sat Aug 24 10:55:02 2024 +0000 URL: https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=d9a45031 net-misc/rpki-client: add 9.2 Signed-off-by: Alarig Le Lay swordarmor.fr> net-misc/rpki-client/rpki-client-9.2.ebuild | 53 +++++++++++++++++++++++++++++ 1 file changed, 53 insertions(+) diff --git a/net-misc/rpki-client/rpki-client-9.2.ebuild b/net-misc/rpki-client/rpki-client-9.2.ebuild new file mode 100644 index 000000000..d89b3a724 --- /dev/null +++ b/net-misc/rpki-client/rpki-client-9.2.ebuild @@ -0,0 +1,53 @@ +# Copyright 2020-2021 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=7 + +MY_PV="${PV/_p/p}" +MY_P="${PN}-${MY_PV}" + +DESCRIPTION="Portability shim for OpenBSD's rpki-client" +HOMEPAGE="https://rpki-client.org/" +SRC_URI="mirror://openbsd/${PN}/${PN}-${MY_PV}.tar.gz +https://lg.breizh-ix.net/ssl/cert.pem -> ${PN}-${MY_PV}-cert.pem" + +S="${WORKDIR}/${MY_P}" + +LICENSE="ISC" +SLOT="0" +KEYWORDS="~amd64 ~x86" + +DEPEND=" + acct-group/_rpki-client + acct-user/_rpki-client + dev-libs/expat + dev-libs/libretls + dev-libs/openssl[rfc3779] + sys-libs/zlib +" +RDEPEND="${DEPEND}" +BDEPEND=" + dev-build/libtool +" + +src_configure() { + local myeconfargs=( + --with-rsync=rsync + --with-base-dir="/var/cache/${PN}" + --with-output-dir="/var/db/${PN}" + ) + econf "${myeconfargs[@]}" +} + +src_install() { + emake DESTDIR="${D}" BINDIR="/usr/bin" MANDIR="/usr/share/man" install + + insinto /etc/rpki + doins *.tal + doins *.constraints + keepdir "/var/db/${PN}/" + fowners -R _rpki-client "/var/db/${PN}/" + + insinto /etc/ssl + newins "${DISTDIR}/${PN}-${MY_PV}-cert.pem" cert.pem +}