diff options
author | Hans de Graaff <graaff@gentoo.org> | 2022-07-28 10:55:30 +0200 |
---|---|---|
committer | Hans de Graaff <graaff@gentoo.org> | 2022-07-29 06:48:49 +0200 |
commit | 065ea7b762b4c99b6f4ac6edaf48c471345a7faa (patch) | |
tree | 129963d4f1129da84ed53b1e0d05004db350ba88 /app-crypt | |
parent | app-crypt/acme-tiny: add myself as a maintainer (diff) | |
download | gentoo-065ea7b762b4c99b6f4ac6edaf48c471345a7faa.tar.gz gentoo-065ea7b762b4c99b6f4ac6edaf48c471345a7faa.tar.bz2 gentoo-065ea7b762b4c99b6f4ac6edaf48c471345a7faa.zip |
app-crypt/acme-tiny: drop 9999
This package has well-defined releases and a slow development cycle.
Can't see a reason to have live ebuild for it.
Signed-off-by: Hans de Graaff <graaff@gentoo.org>
Diffstat (limited to 'app-crypt')
-rw-r--r-- | app-crypt/acme-tiny/acme-tiny-9999.ebuild | 47 |
1 files changed, 0 insertions, 47 deletions
diff --git a/app-crypt/acme-tiny/acme-tiny-9999.ebuild b/app-crypt/acme-tiny/acme-tiny-9999.ebuild deleted file mode 100644 index b1ca9c31e4af..000000000000 --- a/app-crypt/acme-tiny/acme-tiny-9999.ebuild +++ /dev/null @@ -1,47 +0,0 @@ -# Copyright 1999-2022 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=7 - -PYTHON_COMPAT=( python{3_7,3_8,3_9,3_10} ) -inherit distutils-r1 - -if [[ ${PV} == 9999 ]]; then - inherit git-r3 - EGIT_REPO_URI="https://github.com/diafygi/${PN}.git" -else - SRC_URI="https://github.com/diafygi/${PN}/archive/${PV}.tar.gz -> ${P}.tar.gz" - KEYWORDS="~amd64 ~x86" -fi - -DESCRIPTION="A tiny, auditable script for Let's Encrypt's ACME Protocol" -HOMEPAGE="https://github.com/diafygi/acme-tiny" - -LICENSE="MIT" -SLOT="0" -IUSE="" - -DEPEND="dev-python/setuptools_scm[${PYTHON_USEDEP}]" -RDEPEND="dev-libs/openssl:0" - -pkg_setup() { - if [[ ${PV} != 9999 ]]; then - export SETUPTOOLS_SCM_PRETEND_VERSION="${PV}" - fi -} - -src_prepare() { - sed -i 's|#!/usr/bin/sh|#!/bin/sh|g' README.md || die - - distutils-r1_src_prepare -} - -pkg_postinst() { - for v in ${REPLACING_VERSIONS}; do - if ver_test "$v" "-lt" "4.0.3" || ver_test "$v" "-ge" "9999"; then - einfo "The --account-email flag has been changed to --contact and" - einfo "has different syntax." - einfo "Please update your scripts accordingly" - fi - done -} |