add python-blockchain-api

This commit is contained in:
Andreas Billmeier 2019-11-15 09:48:11 +01:00
parent f1c350731e
commit 4b5125977b
Signed by: onkelbeh
GPG Key ID: E6DB12C8C550F3C0
5 changed files with 82 additions and 0 deletions

View File

@ -7,6 +7,7 @@
* update boto3-1.9.252
* add ipify-1.0.0
* update pytest-5.2.3
* add python-blockchain-api
2019-11-14 homeassistant-0.102.0_beta1
* add MIT License to total-connect-client

View File

@ -0,0 +1,5 @@
DIST python-blockchain-api-0.0.1.tar.gz 1894 BLAKE2B 6e6a5260bbfe11f58f152772bafaf2fb6cf17518a4a339c467a3945e2b8da9684f07d16f7723d2cdbce41891a10596b0c6783342877bf8151604f1ea17089411 SHA512 a73062a930403abb47e07b9b2c720eb8b7787199f520cfedb7fb1b85555d79a97aebd934c7c7287b3c4623d27200a5ace34dc87f03f10ef95f0ddb8207877310
DIST python-blockchain-api-0.0.2.tar.gz 2153 BLAKE2B d3f0f82942bc0b27ddeb19a45704c2c52b902ea73a83abea0eae3bfae9b11efe6ae1d02a06bfc9a3afea0dac995f75ce305875efcbbcdb0e2a196e080b76db81 SHA512 3c9500a0d123c07448c6983af4b0f5a08420c17a887545dd629876fe93a015456f9f916491cc3b154ecd6e037f229de9b3409e780e89ff293201353b1fec251c
EBUILD python-blockchain-api-0.0.1.ebuild 748 BLAKE2B 5460d1eb0fc5919f1d3e0ec1982c01b3d216065f4436cbdc04032881fb973794d7c3569d17d2f8dbdddd8bee5d02dae7dc42016e54d20f2ab0807483dca56d07 SHA512 d426439176b4c29036865f1e4e292944be623cec4a8fdf705975512eac048a9303ebd4910aaf83b873b9ffd7b0859e4b280b35e20dd42dbb8f2d7e55399b37cb
EBUILD python-blockchain-api-0.0.2.ebuild 750 BLAKE2B aadc7ab5c72f7440c5155e15c166559dd8093556daf7ff495fd3a74facff1ef4658542f96c846c0dca4286397f8d5f6e7241cbcd2a3296edd06e8208416e61cf SHA512 6b85092a25a15cf133dc81d4db48dbea19292d4d452bf8de695279a45a170d9bd87e2bbe3eebebb087c6d375f1b38776285f62e1f33df22a4614275740ac18da
MISC metadata.xml 471 BLAKE2B c4baa6de9e8df54a07b293c8825771873096b8c3dc771627fd87ffb04050c1139d3556a9adbfbd6e0d67d843f513db73c9782856f8d1c4ed67e7ea7672167fc8 SHA512 314e5b808aa14e90074b3c10f9b6f86690d5801a53356dea8637dd32c78dea854d9164632ab116edd60c75e3224069dce9d36091c08a0ef5acdcaebba4dd84a9

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">python-blockchain-api</remote-id>
<maintainer status="unknown">
<email>nkgilley@gmail.com</email>
<name>Nolan Gilley</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="Python API for interacting with blockchain.info."
HOMEPAGE="https://github.com/nkgilley/python-blockchain-api https://pypi.org/project/python-blockchain-api/"
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-2.0[${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
}

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,8} )
inherit distutils-r1
DESCRIPTION="Python API for interacting with blockchain.info."
HOMEPAGE="https://github.com/nkgilley/python-blockchain-api https://pypi.org/project/python-blockchain-api/"
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-2.0[${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
}