add wallbox-0.4.4.ebuild, bump wallbox-0.4.5.ebuild
This commit is contained in:
@@ -98,6 +98,7 @@
|
||||
* add aiosyncthing-0.5.1
|
||||
* bump aiosyncthing-0.6.3
|
||||
* add systembridge-1.1.5, bump systembridge-1.2.4
|
||||
* add wallbox-0.4.4.ebuild, bump wallbox-0.4.5.ebuild
|
||||
|
||||
2021-06-04
|
||||
* cleanup PYTHON_COMPAT, remove unused Ebuilds (https://bugs.gentoo.org/793464)
|
||||
|
||||
5
dev-python/wallbox/Manifest
Normal file
5
dev-python/wallbox/Manifest
Normal file
@@ -0,0 +1,5 @@
|
||||
DIST wallbox-0.4.4.tar.gz 2647 BLAKE2B 3d6fa7371f18f46c3dd9603e31f2b8465729c8a8cf74462be18b130d10e70b40b9091a71a60928bf429e5dcf6328e2f24b293acc883255d52cc1fa3025afb7c2 SHA512 32a5940fdc5745c02346f8c2163691fafc8ee108886e76a0a6be029333af3963e307104501930f3cc4249b7648f679e76cad8908153f8efbdd3642b065b5790f
|
||||
DIST wallbox-0.4.5.tar.gz 2925 BLAKE2B 0faf791c4862e01ed53375ec93888a258c343878341e072875a967a6077ae8ab4d68be3b4b3e7d445a30c97f3aec19058c0e687afdb9c6766d1f6c6f75cf11d7 SHA512 0f941ddf670a16138e734f9c649d7a464e85a4d0b554b82ce3c65b1432dc6aae15307e493d54adf83d71e2077fa58e2d8822d3cc8f24ce396f3da059a256f865
|
||||
EBUILD wallbox-0.4.4.ebuild 797 BLAKE2B 2715d1242979755ec155c11c38b000f61d8aff994955785499ba88024b6baca56348e23f3e80481ed8a5612d2f3d622599ece266ad168afcb3ca30b922af69b4 SHA512 e1eb0ae67cdc11e0edc5b8952215ab3d608ab69cb058abde03f80f116e503c0d15f56c1b5d4712cb51f6b5f3df3721eeb6127c72b93335bee049d4acd9352612
|
||||
EBUILD wallbox-0.4.5.ebuild 797 BLAKE2B 2715d1242979755ec155c11c38b000f61d8aff994955785499ba88024b6baca56348e23f3e80481ed8a5612d2f3d622599ece266ad168afcb3ca30b922af69b4 SHA512 e1eb0ae67cdc11e0edc5b8952215ab3d608ab69cb058abde03f80f116e503c0d15f56c1b5d4712cb51f6b5f3df3721eeb6127c72b93335bee049d4acd9352612
|
||||
MISC metadata.xml 453 BLAKE2B d58d7dcda1f7d2cad81b4c334c1bc14c3eeaf846f521e1246819d323e9bccdf593cdc33591b1bf4d9da840bd17a8e5fefbabd63f8a2af76442a0fcd33b7846f4 SHA512 490221da94aa3472157104a9ca7fa62f7cd2777a158f4db05c46acaace35e2f01c70ed672e62ec3f6e0a7973a604ed31c5d67ddb04061ccc9fe5e264a71dbd35
|
||||
15
dev-python/wallbox/metadata.xml
Normal file
15
dev-python/wallbox/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">wallbox</remote-id>
|
||||
<maintainer status="unknown">
|
||||
<email>cliviu74@yahoo.com</email>
|
||||
<name>Liviu Chiribuca</name>
|
||||
</maintainer>
|
||||
</upstream>
|
||||
</pkgmetadata>
|
||||
33
dev-python/wallbox/wallbox-0.4.4.ebuild
Normal file
33
dev-python/wallbox/wallbox-0.4.4.ebuild
Normal file
@@ -0,0 +1,33 @@
|
||||
# Copyright 1999-2021 Gentoo Authors
|
||||
# Distributed under the terms of the GNU General Public License v2
|
||||
|
||||
EAPI="7"
|
||||
|
||||
PYTHON_COMPAT=( python3_{8..10} )
|
||||
|
||||
inherit distutils-r1
|
||||
|
||||
DESCRIPTION="Module for interacting with Wallbox EV charger api"
|
||||
HOMEPAGE="https://github.com/cliviu74/wallbox https://pypi.org/project/wallbox/"
|
||||
SRC_URI="mirror://pypi/${P:0:1}/${PN}/${P}.tar.gz"
|
||||
|
||||
LICENSE="MIT"
|
||||
SLOT="0"
|
||||
KEYWORDS="~amd64 ~arm ~arm64 ~x86 ~amd64-linux ~x86-linux"
|
||||
IUSE="test"
|
||||
|
||||
DOCS="README.md"
|
||||
|
||||
RDEPEND=">=dev-python/requests-2.22.0[${PYTHON_USEDEP}]
|
||||
>=dev-python/simplejson-3.16.0[${PYTHON_USEDEP}]"
|
||||
BDEPEND="
|
||||
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/wallbox/wallbox-0.4.5.ebuild
Normal file
33
dev-python/wallbox/wallbox-0.4.5.ebuild
Normal file
@@ -0,0 +1,33 @@
|
||||
# Copyright 1999-2021 Gentoo Authors
|
||||
# Distributed under the terms of the GNU General Public License v2
|
||||
|
||||
EAPI="7"
|
||||
|
||||
PYTHON_COMPAT=( python3_{8..10} )
|
||||
|
||||
inherit distutils-r1
|
||||
|
||||
DESCRIPTION="Module for interacting with Wallbox EV charger api"
|
||||
HOMEPAGE="https://github.com/cliviu74/wallbox https://pypi.org/project/wallbox/"
|
||||
SRC_URI="mirror://pypi/${P:0:1}/${PN}/${P}.tar.gz"
|
||||
|
||||
LICENSE="MIT"
|
||||
SLOT="0"
|
||||
KEYWORDS="~amd64 ~arm ~arm64 ~x86 ~amd64-linux ~x86-linux"
|
||||
IUSE="test"
|
||||
|
||||
DOCS="README.md"
|
||||
|
||||
RDEPEND=">=dev-python/requests-2.22.0[${PYTHON_USEDEP}]
|
||||
>=dev-python/simplejson-3.16.0[${PYTHON_USEDEP}]"
|
||||
BDEPEND="
|
||||
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