diff options
author | Hans de Graaff <graaff@gentoo.org> | 2024-03-08 11:32:28 +0100 |
---|---|---|
committer | Hans de Graaff <graaff@gentoo.org> | 2024-03-08 12:35:20 +0100 |
commit | 0fb6c07914699ade95c19fe842653ff18b960452 (patch) | |
tree | a7823d7f4d08154dff807e97c8bdd60d45c46bf7 /app-crypt/acme-tiny | |
parent | app-crypt/acme-tiny: drop 5.0.1 (diff) | |
download | gentoo-0fb6c07914699ade95c19fe842653ff18b960452.tar.gz gentoo-0fb6c07914699ade95c19fe842653ff18b960452.tar.bz2 gentoo-0fb6c07914699ade95c19fe842653ff18b960452.zip |
app-crypt/acme-tiny: add python 3.12
Signed-off-by: Hans de Graaff <graaff@gentoo.org>
Diffstat (limited to 'app-crypt/acme-tiny')
-rw-r--r-- | app-crypt/acme-tiny/acme-tiny-5.0.1-r2.ebuild | 35 |
1 files changed, 35 insertions, 0 deletions
diff --git a/app-crypt/acme-tiny/acme-tiny-5.0.1-r2.ebuild b/app-crypt/acme-tiny/acme-tiny-5.0.1-r2.ebuild new file mode 100644 index 000000000000..248ebad7185f --- /dev/null +++ b/app-crypt/acme-tiny/acme-tiny-5.0.1-r2.ebuild @@ -0,0 +1,35 @@ +# Copyright 1999-2024 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=8 + +PYTHON_COMPAT=( python{3_10,3_11,3_12} ) + +DISTUTILS_USE_PEP517="setuptools" + +inherit distutils-r1 + +SRC_URI="https://github.com/diafygi/${PN}/archive/${PV}.tar.gz -> ${P}.tar.gz" +KEYWORDS="~amd64 ~x86" + +DESCRIPTION="A tiny, auditable script for Let's Encrypt's ACME Protocol" +HOMEPAGE="https://github.com/diafygi/acme-tiny" + +LICENSE="MIT" +SLOT="0" + +BDEPEND="dev-python/setuptools-scm[${PYTHON_USEDEP}]" +RDEPEND="dev-libs/openssl:0" + +# Tests require a local ACME server to be set up. +RESTRICT="test" + +pkg_setup() { + export SETUPTOOLS_SCM_PRETEND_VERSION="${PV}" +} + +src_prepare() { + sed -i 's|#!/usr/bin/sh|#!/bin/sh|g' README.md || die + + distutils-r1_src_prepare +} |