add pycfdns-0.0.1

This commit is contained in:
Andreas Billmeier 2019-11-22 16:06:22 +01:00
parent 77ba9db8ba
commit 74797e7615
Signed by: onkelbeh
GPG Key ID: E6DB12C8C550F3C0
4 changed files with 50 additions and 0 deletions

View File

@ -40,6 +40,7 @@
* downgrade to pychannels-1.0.0
* downgrade to ciscosparkapi-0.4.2
* add python-clementine-remote-1.0.1 & python-clementine-remote-1.0.3
* add pycfdns-0.0.1
2019-11-21 homeassistant-0.102.0
* bump homeassistant-0.102.0

View File

@ -0,0 +1,3 @@
DIST pycfdns-0.0.1.tar.gz 2539 BLAKE2B a42de146c14aebdbc03f8027b5de2e9596f2b93554f32709feedd198a9377c6357fc859e7e9ae4290afaa4037620a0dea05de72b1ff23cc4138be884039a4047 SHA512 f0ec414ac444fce6be9c6ce3a1918c2750ee436261eff476a5791e427cf3e50380bdb3c72a76a128efcee41d79a570b0e7a8ae90eecd44d0e46c0c81f76a6c80
EBUILD pycfdns-0.0.1.ebuild 710 BLAKE2B 859ad84296533264ea7653e6584535d7e4dde16dc554d3ce3a4c2a56c483cb12489377c6527daa5387ee42c3a69bfe9a63c33ed64e05d928b7cf4a4600e4de97 SHA512 550bb98670ada52a4168bc8e4ac12a798462f9776523183a922e4dc413d28fbc5dec77c0447a276e36a697208e8ec1569c7da8e8abe6ae680d25b6279bc632eb
MISC metadata.xml 458 BLAKE2B 8645b2e691d62624cacee8ab1b0784ae00fb3ea5503f869fc90c38da1321b6b3e8fde71616941a39d5b25eaa72b66af4603e3033bef010ab986672a229ad135d SHA512 f2cb93da333cb7df749197ae2225a32b22dd6af9f3b3aa594e6caeb1ff08944f252f77b039db7a67d5dc873397ec803af1c034c8284b0b25e86a6ccb82bff91e

View File

@ -0,0 +1,16 @@
<?xml version='1.0' encoding='UTF-8'?>
<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
<pkgmetadata>
<maintainer>
<email>b@edevau.net</email>
<name>Andreas Billmeier</name>
</maintainer>
<herd>python</herd>
<upstream>
<remote-id type="pypi">pycfdns</remote-id>
<maintainer status="unknown">
<email>joasoe@gmail.com</email>
<name>Joakim Sorensen</name>
</maintainer>
</upstream>
</pkgmetadata>

View File

@ -0,0 +1,30 @@
# Copyright 1999-2019 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI="7"
PYTHON_COMPAT=( python3_{6,7} )
inherit distutils-r1
DESCRIPTION="A module for updating Cloudflare DNS records."
HOMEPAGE="https://gitlab.com/ludeeus/pycfdns https://pypi.org/project/pycfdns/"
SRC_URI="mirror://pypi/${P:0:1}/${PN}/${P}.tar.gz"
LICENSE="MIT"
SLOT="0"
KEYWORDS="~amd64 ~x86 ~amd64-linux ~x86-linux"
IUSE="test"
RDEPEND="dev-python/requests[${PYTHON_USEDEP}]"
DEPEND="${REDEPEND}
dev-python/setuptools[${PYTHON_USEDEP}]
test? (
dev-python/nose[${PYTHON_USEDEP}]
dev-python/pytest[${PYTHON_USEDEP}]
)"
python_test() {
nosetests --verbose || die
py.test -v -v || die
}