add motorparts-1.1.0

This commit is contained in:
Andreas Billmeier 2019-11-23 15:18:37 +01:00
parent 3148b1ed81
commit f1a38d89ca
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 motorparts-1.1.0
* add pymonoprice-0.3
* add basicmodem-0.7
* add mitemp-bt-0.0.3 and btlewrap-0.0.8

View File

@ -0,0 +1,3 @@
DIST motorparts-1.1.0.tar.gz 4352 BLAKE2B 423dfaf896ca00a5757645a21c86fb1c427f88b63c7ea4d4e5701a86b1dc571bfc4508595717c7c8d63f7dffcde627e597c3cca82da17c201f923e9b767e2fcd SHA512 dfa27992a783a7cd8a81394686aa950ec59904836b800bebbd7ba1d1a32f81b6b5194126716a97c867a75a907f4590e2e1ff38b0b5b8f76a8b36828a0f5b089b
EBUILD motorparts-1.1.0.ebuild 774 BLAKE2B c8a22b95d5f0274ff13cce4afa3768d2a29ae5821da59c66fd903150fb45887c3c61a2e808aaf601ed931cacc7aca870820634c0f0c1c4a077172225c33a8740 SHA512 98fd9c336734b1c22f6ad0af5eb6070f402b25110e425f0a0b2e8f5b8c9278c555373700828b9f4fca081dedacf54450579e3f881ea1cec294cd21c07f87cb99
MISC metadata.xml 466 BLAKE2B 93eef70cfbc03f492e6e5db97d83e338e4506a427d7bbd5578bfda50a8e8700a9bd2e8ea410830f269a57674c72d24276e40332c3c21712be582f0453efa897e SHA512 3cd0e83c601e133638585fa6a039f98516a0304f417f6faa97370815aba585ed1a863f022ceb9efba8decae53d2bbbc421d8802e2dcd11437ee96731c2a82d8d

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">motorparts</remote-id>
<maintainer status="unknown">
<email>happyleaves.tfr@gmail.com</email>
<name>happyleaves</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 3 API for mopar.com."
HOMEPAGE="https://github.com/happyleavesaoc/python-motorparts/ https://pypi.org/project/motorparts/"
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.20.0[${PYTHON_USEDEP}]
~dev-python/beautifulsoup4-4.5.1[${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
}