add pyads-3.x
This commit is contained in:
parent
74332627f2
commit
cc12f2311b
@ -13,6 +13,7 @@
|
||||
* add pyaftership-0.1.2
|
||||
* add alarmdecoder-1.13.4 alarmdecoder-1.13.2
|
||||
* downgrade to alpha-vantage-2.1.1
|
||||
* add pyads-3.0.7 & pyads-3.1.2
|
||||
|
||||
2019-11-21 homeassistant-0.102.0
|
||||
* bump homeassistant-0.102.0
|
||||
|
||||
5
dev-python/pyads/Manifest
Normal file
5
dev-python/pyads/Manifest
Normal file
@ -0,0 +1,5 @@
|
||||
DIST pyads-3.0.7.tar.gz 389071 BLAKE2B 066943e27889b28c37337fa30fa3f8d4e3e58a3f31a0d7816e07fe9be1637361e1e5701e763582cceb7b8ef62fc154daac724658067534b121f3b22fe60b25f1 SHA512 92d9659ceb02bdfdd73479f08f06776a64dbae9c984181f48014e540edeea57b974b0968b9c53425b1c73774a422413f770775327e3de1951f59dca7c5c76cfb
|
||||
DIST pyads-3.1.2.tar.gz 364829 BLAKE2B b1b5b1d895c6aaee74a7cb86d6dd3f23270507c0631f9576024a7739b0d0eebe63a33272fba43bc65d9d980fb17d7dd9dfc99041f4e6a6838d2abacaeeac5a7c SHA512 e4a5551c75cc4d3b97547d2f150964878ac054e2d1924d010c47826e447672f0779f950592f3a083e2d329df316678417f08917c5012cf62e67780f7414b5455
|
||||
EBUILD pyads-3.0.7.ebuild 696 BLAKE2B 0d5ec52189fc70fba4375d70d511d5a04d8a04a5cc06193d78d5e7e71a06667625ed8bc91dc882c4740741f317c898da833546351682e36097288f524c3a5d2a SHA512 150660c4e72ed9e4427f443dcea0c219d861d99610f9f7e9295629c3f9b8a6107531694b4c01155b0b12b40fdf379916f11481e885b3d196a747ad51fac2579f
|
||||
EBUILD pyads-3.1.2.ebuild 696 BLAKE2B 0d5ec52189fc70fba4375d70d511d5a04d8a04a5cc06193d78d5e7e71a06667625ed8bc91dc882c4740741f317c898da833546351682e36097288f524c3a5d2a SHA512 150660c4e72ed9e4427f443dcea0c219d861d99610f9f7e9295629c3f9b8a6107531694b4c01155b0b12b40fdf379916f11481e885b3d196a747ad51fac2579f
|
||||
MISC metadata.xml 466 BLAKE2B bc8975ad1825ae21657c3fe6d0cde38f90189dbec548679dfaa3532d59d0356363f13441e0f139aba5bf9ab3488c2811c8688b1ecd960db20765c24b2f9411de SHA512 ca425e1ec01538f4324b0b2f60754bf5fb8b70c6d415eead2e2035cdbeb62c8138c38831f0db0e2b365892bded53f059e1f5e5db4f6f17c9b36c7a6e1e7fb9f4
|
||||
16
dev-python/pyads/metadata.xml
Normal file
16
dev-python/pyads/metadata.xml
Normal 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">pyads</remote-id>
|
||||
<maintainer status="unknown">
|
||||
<email>Stefan.St.Lehmann@gmail.com</email>
|
||||
<name>Stefan Lehmann</name>
|
||||
</maintainer>
|
||||
</upstream>
|
||||
</pkgmetadata>
|
||||
30
dev-python/pyads/pyads-3.0.7.ebuild
Normal file
30
dev-python/pyads/pyads-3.0.7.ebuild
Normal 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 wrapper for TwinCAT ADS library"
|
||||
HOMEPAGE="https://github.com/MrLeeh/pyads https://pypi.org/project/pyads/"
|
||||
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/typing[${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
|
||||
}
|
||||
30
dev-python/pyads/pyads-3.1.2.ebuild
Normal file
30
dev-python/pyads/pyads-3.1.2.ebuild
Normal 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 wrapper for TwinCAT ADS library"
|
||||
HOMEPAGE="https://github.com/MrLeeh/pyads https://pypi.org/project/pyads/"
|
||||
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/typing[${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
|
||||
}
|
||||
Loading…
x
Reference in New Issue
Block a user