add mychevy-1.2.0

This commit is contained in:
Andreas Billmeier 2019-11-23 15:26:57 +01:00
parent e3e9c26d73
commit 7af54bee74
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 mychevy-1.2.0
* add pymsteams-0.1.12
* add python-mpd2-1.0.0
* add motorparts-1.1.0

View File

@ -0,0 +1,3 @@
DIST mychevy-1.2.0.tar.gz 17017 BLAKE2B 472cb9697aa658576f6724efd7303f5e2cfc53adefadc725c648ffd56d5378d556bf33627a4afe15999cab62b49c2538e49e8ac9d7ca636fbbfdb0c6f2bb3f15 SHA512 2e104bac221e5132f58a81339acc2de7e132483529ec420b7ff1d5b0e626f4e285250198c025b324f87bc1f71efcad875063d28533970d43a68875f7d4bb758c
EBUILD mychevy-1.2.0.ebuild 747 BLAKE2B c551d6d192f55a7d2131939c073fb6305bb807b5eb405ee136045060ee9ece9706e5ad2ba559f119425fc48695b1ad57ef281b4460bc1b58fb676618347cec07 SHA512 afd04322753ed24374f93264dbea5b321ed38340f4cece1c2216b2c904b2f3601dbc8af0871e6a5c2c58bb580b9a24f428199116016170e63404dd6632a614e9
MISC metadata.xml 451 BLAKE2B 95ab6afb3e5ce74762ae98125c07b572a8a815e763bf413837bb0ba2c1c65af0e0f8ff7998fd93f6c57e9d7def7bceec226900f5447194c655b59c5812c0d3ea SHA512 28771152fbf0cbce92d89d2af1292a1863622b944bdbb128871fdc3e099c8cd90bb2bdb62faa3354de6f33d9c987c4317b7dfc1c20ca3cbb52c23ed6dae5cbb4

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">mychevy</remote-id>
<maintainer status="unknown">
<email>sean@dague.net</email>
<name>Sean Dague</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="Python interface to My Chevy online data"
HOMEPAGE="https://github.com/sdague/mychevy https://pypi.org/project/mychevy/"
SRC_URI="mirror://pypi/${P:0:1}/${PN}/${P}.tar.gz"
LICENSE="Apache-2.0"
SLOT="0"
KEYWORDS="~amd64 ~x86 ~amd64-linux ~x86-linux"
IUSE="test"
RDEPEND="dev-python/requests[${PYTHON_USEDEP}]
dev-python/click[${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
}