36 lines
1.2 KiB
Bash
36 lines
1.2 KiB
Bash
# Copyright 2019 Gentoo Authors
|
|
# Distributed under the terms of the GNU General Public License v2
|
|
|
|
EAPI=7
|
|
PYTHON_COMPAT=( python2_7 python3_{4,5,6,7} )
|
|
|
|
inherit distutils-r1
|
|
|
|
DESCRIPTION="Manipulate DNS records on various DNS providers in a standardized way."
|
|
HOMEPAGE="https://github.com/AnalogJ/lexicon"
|
|
GITHUB_USER="AnalogJ"
|
|
GITHUB_TAG="v${PV}"
|
|
SRC_URI="https://github.com/${GITHUB_USER}/${PN}/archive/${GITHUB_TAG}.tar.gz -> ${P}.tar.gz"
|
|
|
|
|
|
LICENSE="MIT"
|
|
SLOT="0"
|
|
KEYWORDS="~amd64 ~x86"
|
|
IUSE="easyname henet hetzner plesk route53 subreg"
|
|
RDEPEND="
|
|
dev-python/requests[ssl,${PYTHON_USEDEP}]
|
|
dev-python/tldextract[${PYTHON_USEDEP}]
|
|
dev-python/future[${PYTHON_USEDEP}]
|
|
dev-python/cryptography[${PYTHON_USEDEP}]
|
|
dev-python/pyyaml[${PYTHON_USEDEP}]
|
|
easyname? ( dev-python/beautifulsoup:4[${PYTHON_USEDEP}] )
|
|
henet? ( dev-python/beautifulsoup:4[${PYTHON_USEDEP}] )
|
|
hetzner? ( >dev-python/dnspython-1.5.0[${PYTHON_USEDEP}]
|
|
dev-python/beautifulsoup:4[${PYTHON_USEDEP}] )
|
|
plesk? ( dev-python/xmltodict[${PYTHON_USEDEP}] )
|
|
route53? ( dev-python/boto3[${PYTHON_USEDEP}] )
|
|
subreg? ( dev-python/zeep[${PYTHON_USEDEP}] )
|
|
"
|
|
DEPEND=""
|
|
BDEPEND=""
|