31 lines
657 B
Bash
31 lines
657 B
Bash
|
# Copyright 1999-2016 Gentoo Foundation
|
||
|
# Distributed under the terms of the GNU General Public License v2
|
||
|
# $Id$
|
||
|
|
||
|
EAPI=6
|
||
|
|
||
|
PYTHON_COMPAT=( python{2_7,3_3,3_4,3_5} )
|
||
|
inherit distutils-r1
|
||
|
|
||
|
inherit git-r3
|
||
|
KEYWORDS=""
|
||
|
EGIT_REPO_URI="https://github.com/diafygi/${PN}.git"
|
||
|
|
||
|
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-libs/openssl:0
|
||
|
dev-python/setuptools_scm[${PYTHON_USEDEP}]"
|
||
|
RDEPEND="${DEPEND}"
|
||
|
|
||
|
PATCHES=(
|
||
|
"${FILESDIR}/${PN}-PR50-setup.py.patch"
|
||
|
"${FILESDIR}/${PN}-PR87-readmefix.patch"
|
||
|
"${FILESDIR}/${PN}-PR101-contactinfo.patch"
|
||
|
)
|