millheater-0.3.4

This commit is contained in:
Andreas Billmeier 2019-11-23 15:06:08 +01:00
parent 24a786f96f
commit c7ecec7ab2
Signed by: onkelbeh
GPG Key ID: E6DB12C8C550F3C0
4 changed files with 51 additions and 0 deletions

View File

@ -1,5 +1,6 @@
2019-11-22 (reverse added today)
*
* add millheater-0.3.4
* downgrade to bluepy-1.1.4 for miflora==0.4.0
* add mficlient-0.3.0
* add datapoint-0.9.5 and datapoint-0.4.3

View File

@ -0,0 +1,3 @@
DIST millheater-0.3.4.tar.gz 5576 BLAKE2B 4c57c69026aebf46533fe335cad6b3719268e67e913ce9a426070b9cd389449bba8be4cb80e0716591bd0219c52f6fd728940b42d292c7551929dd29c945ca18 SHA512 b6b09570bf81b4a3d7853bd37ada88815b50e8c01f94fde22c072218c2ad2ad1455146670c029a2c314c04664add9a58b0e127e29f9ad0941ce4af29d1713fdb
EBUILD millheater-0.3.4.ebuild 775 BLAKE2B cf1ef5081f37132d1282624f957c9b235c49cbb0849aee9b3c56fae9cb712dea8a768f80bee67a5d8d03ff9c29a70d2d19b8269503d66735a57a8013f099a552 SHA512 be061041a8f4ab73336e75f144dd212ebf617d8ce3553adeb1e300ff3a6a52355dede556b4990f10f3f5f671d5b57d621e097899a1fe95074856333529c6472e
MISC metadata.xml 465 BLAKE2B 64b88ec53b504710bcf32049e2b42b3fe701c6dbd7a1daa96db417188c419948b50fc8ef3d8d4892230b9eaefa108ca6193eab24b7867729c200fa3f576e573d SHA512 08b5c19af0b5a30532b32919c0b9d62bd23b7371b2572a5ea8ddde4257f07c92fb690df9daa57f00461091c37846ec7e53fbf5159242b20fac9f281482c68608

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">millheater</remote-id>
<maintainer status="unknown">
<email>mail@dahoiv.net</email>
<name>Daniel Hoyer Iversen</name>
</maintainer>
</upstream>
</pkgmetadata>

View File

@ -0,0 +1,31 @@
# 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 python3 library to communicate with Mill"
HOMEPAGE="https://github.com/Danielhiversen/pymill https://pypi.org/project/millheater/"
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/aiohttp-3.0.6[${PYTHON_USEDEP}]
>=dev-python/async_timeout-1.4.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
}