add pysaj-0.0.9

This commit is contained in:
Andreas Billmeier 2019-10-02 00:30:48 +02:00
parent 3f0ccfdc64
commit 94be46ae6c
Signed by: onkelbeh
GPG Key ID: E6DB12C8C550F3C0
3 changed files with 49 additions and 0 deletions

View File

@ -0,0 +1,3 @@
DIST pysaj-0.0.9.tar.gz 2540 BLAKE2B 984bc1a3062c69a231b27fafaccfbe29dcaa297a4b1c10a5e77f984603fbf0d061ec2698bd91f93de2e73bd0687b4a1a7fdf052940b5317c43e3237dec73f863 SHA512 03f0edac9cf65c100df8f37f33908fe62d5cb90c377908b9e2e8ea21aaddef328dc1a1aab8ec9639e09f7bf90b3777a27306193071c6889ac90729892542f66f
EBUILD pysaj-0.0.9.ebuild 705 BLAKE2B 004df885993608f454e9efd13852446b37d7911e92694fec895a2e67706e6d9aab78ab066a4d4f5fcc87fbaeb79edc7bc534f54f091b5d99dabccc555c7c7627 SHA512 d5b377f149f0ea5d5652a437375804c33a6747308217b9bc0459973a3ee71dadcb0f25f4199a84728534500c406b0737cf083313cdc92c01d904d7eb6c12b556
MISC metadata.xml 467 BLAKE2B c9ed5ae165d8b5779dbfd4e472aeff2233bbd41bba25431946f85d1ae7b7271b991b8acc829e6c15d636b33d45a50e219c8f1e355fae810ff49938c0359474f4 SHA512 75924eff3d4b44ab9d9f275976674e014b6996b3327785233b080d6f505cfad1f1b89708a38fc83d520ecb99fd585a47ce9fff68a0cf4073dfcff8c9ce816eb8

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">pysaj</remote-id>
<maintainer status="unknown">
<email>frederic.van.linthoudt@gmail.com</email>
<name>fredericvl</name>
</maintainer>
</upstream>
</pkgmetadata>

View File

@ -0,0 +1,30 @@
# Copyright 1999-2019 Gentoo Authors Andreas Billmeier b (at) edevau.net
# Distributed under the terms of the GNU General Public License v3.0
EAPI="7"
PYTHON_COMPAT=( python3_{5,6,7} )
inherit distutils-r1
DESCRIPTION="Library to communicate with SAJ inverters"
HOMEPAGE="https://github.com/fredericvl/pysaj https://pypi.org/project/pysaj/"
SRC_URI="mirror://pypi/${P:0:1}/${PN}/${P}.tar.gz"
LICENSE=""
SLOT="0"
KEYWORDS="~amd64 ~x86 ~amd64-linux ~x86-linux"
IUSE="test"
RDEPEND=""
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
}