add pygti
This commit is contained in:
@@ -1,6 +1,8 @@
|
||||
2020-06-17
|
||||
* bump wled-0.4.3
|
||||
* bump zha-quirks-0.0.40
|
||||
* add pygti-0.6.0
|
||||
* bump pygti-0.8.6
|
||||
|
||||
2020-06-14 homeassistant-0.111.2
|
||||
* bump bellows-0.17.0
|
||||
|
||||
5
dev-python/pygti/Manifest
Normal file
5
dev-python/pygti/Manifest
Normal file
@@ -0,0 +1,5 @@
|
||||
DIST pygti-0.6.0.tar.gz 5884 BLAKE2B de78d3ffebe391a3f52bfbf46f59a39355a3e87c551efb8163429accc12be88555bd42b870451cfe383d8b737b5d674ae79727f20cc0e9ded81b90831256b5e4 SHA512 d549cc4cd45752962fac50a16fe0c0047158cf936730918f7f153aead3ccfee344aacdc7166a389117d622b44b57c2398f67c48012c9698b6f8013acb40b5ead
|
||||
DIST pygti-0.8.6.tar.gz 18129 BLAKE2B 90b59aba1532a932fec7b3d0d99ab1276662cd04ea443bf1975bc1f1cbf589b71d7834e816d9d752af70a604efe051f762c7ce07f5f9a4e5469ae2cf633c0c77 SHA512 3b0506e8156dc2ae96da3d6641b2ea90c2f7d302385404b756be6d488b9d3af200bbb4d63b57edb0379c63721bc2ab1be8706ea544f05e81933eae76caeb40ca
|
||||
EBUILD pygti-0.6.0.ebuild 842 BLAKE2B 1f56b00f2ece649f879d2a3c106e418402b408fe29eb53c9d14c629e07dcbe4c28502076a69abb6fd2cf66dd973d37926210b27a7d5cd34b482f7a40b3c0f309 SHA512 451e993ff2c2879b28eb0248951ca400cf750e8e7c48ffeb6c0ea0dad7a968069ac7967970bd4a1292a18ddf1b020c3e65f6d61b6fc13868914dd31c18876e88
|
||||
EBUILD pygti-0.8.6.ebuild 842 BLAKE2B 1f56b00f2ece649f879d2a3c106e418402b408fe29eb53c9d14c629e07dcbe4c28502076a69abb6fd2cf66dd973d37926210b27a7d5cd34b482f7a40b3c0f309 SHA512 451e993ff2c2879b28eb0248951ca400cf750e8e7c48ffeb6c0ea0dad7a968069ac7967970bd4a1292a18ddf1b020c3e65f6d61b6fc13868914dd31c18876e88
|
||||
MISC metadata.xml 450 BLAKE2B b4f0b0b9261d5c45fec19283b752d31f825deb7990ff2cace47218584e991c24ac80a395cb42b487504ec027c06278cb3c0b2107a0f22f136bba14d1fe21c98e SHA512 93133a7f9abc2af20f7ed1c7294a0c7eade3abf7c01cbe847ebb9578140b2986815dc843c1b6c2c838fe72bf459a0440adf6f72fbef7973c396a18ae72b4860c
|
||||
15
dev-python/pygti/metadata.xml
Normal file
15
dev-python/pygti/metadata.xml
Normal file
@@ -0,0 +1,15 @@
|
||||
<?xml version='1.0' encoding='UTF-8'?>
|
||||
<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
|
||||
<pkgmetadata>
|
||||
<maintainer type="project">
|
||||
<email>b@edevau.net</email>
|
||||
<name>Andreas Billmeier</name>
|
||||
</maintainer>
|
||||
<upstream>
|
||||
<remote-id type="pypi">pygti</remote-id>
|
||||
<maintainer status="unknown">
|
||||
<email>mail@vigonotion.com</email>
|
||||
<name>Tom Schneider</name>
|
||||
</maintainer>
|
||||
</upstream>
|
||||
</pkgmetadata>
|
||||
33
dev-python/pygti/pygti-0.6.0.ebuild
Normal file
33
dev-python/pygti/pygti-0.6.0.ebuild
Normal file
@@ -0,0 +1,33 @@
|
||||
# Copyright 1999-2020 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="access public transport information in hamburg, germany."
|
||||
HOMEPAGE="https://github.com/vigonotion/pygti https://pypi.org/project/pygti/"
|
||||
SRC_URI="mirror://pypi/${P:0:1}/${PN}/${P}.tar.gz"
|
||||
|
||||
LICENSE="MIT"
|
||||
SLOT="0"
|
||||
KEYWORDS="~amd64 ~arm64 ~x86 ~amd64-linux ~x86-linux"
|
||||
IUSE="test"
|
||||
|
||||
RDEPEND="dev-python/aiohttp[${PYTHON_USEDEP}]
|
||||
dev-python/asyncio[${PYTHON_USEDEP}]
|
||||
dev-python/voluptuous[${PYTHON_USEDEP}]
|
||||
dev-python/pytz[${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
|
||||
}
|
||||
33
dev-python/pygti/pygti-0.8.6.ebuild
Normal file
33
dev-python/pygti/pygti-0.8.6.ebuild
Normal file
@@ -0,0 +1,33 @@
|
||||
# Copyright 1999-2020 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="access public transport information in hamburg, germany."
|
||||
HOMEPAGE="https://github.com/vigonotion/pygti https://pypi.org/project/pygti/"
|
||||
SRC_URI="mirror://pypi/${P:0:1}/${PN}/${P}.tar.gz"
|
||||
|
||||
LICENSE="MIT"
|
||||
SLOT="0"
|
||||
KEYWORDS="~amd64 ~arm64 ~x86 ~amd64-linux ~x86-linux"
|
||||
IUSE="test"
|
||||
|
||||
RDEPEND="dev-python/aiohttp[${PYTHON_USEDEP}]
|
||||
dev-python/asyncio[${PYTHON_USEDEP}]
|
||||
dev-python/voluptuous[${PYTHON_USEDEP}]
|
||||
dev-python/pytz[${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
|
||||
}
|
||||
Reference in New Issue
Block a user