diff options
author | 2020-08-13 22:20:50 +0200 | |
---|---|---|
committer | 2020-08-13 22:25:21 +0200 | |
commit | 32a573e8c27453a1ef46397b6cef7a9617dd0ba5 (patch) | |
tree | 493d0f2209401041d1631e4bbdee1d4d830de59e /app-crypt/acme-tiny/acme-tiny-4.0.3.ebuild | |
parent | app-arch/rpm: Remove old (py3.6) (diff) | |
download | gentoo-32a573e8c27453a1ef46397b6cef7a9617dd0ba5.tar.gz gentoo-32a573e8c27453a1ef46397b6cef7a9617dd0ba5.tar.bz2 gentoo-32a573e8c27453a1ef46397b6cef7a9617dd0ba5.zip |
app-crypt/acme-tiny: Remove old (py3.6)
Signed-off-by: Michał Górny <mgorny@gentoo.org>
Diffstat (limited to 'app-crypt/acme-tiny/acme-tiny-4.0.3.ebuild')
-rw-r--r-- | app-crypt/acme-tiny/acme-tiny-4.0.3.ebuild | 48 |
1 files changed, 0 insertions, 48 deletions
diff --git a/app-crypt/acme-tiny/acme-tiny-4.0.3.ebuild b/app-crypt/acme-tiny/acme-tiny-4.0.3.ebuild deleted file mode 100644 index fd2b028b0f39..000000000000 --- a/app-crypt/acme-tiny/acme-tiny-4.0.3.ebuild +++ /dev/null @@ -1,48 +0,0 @@ -# Copyright 1999-2020 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=6 - -PYTHON_COMPAT=( python3_6 ) -inherit distutils-r1 eapi7-ver - -if [[ ${PV} == 9999 ]]; then - inherit git-r3 - EGIT_REPO_URI="https://github.com/diafygi/${PN}.git" - KEYWORDS="" -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 -} |