add stdiomask-0.0.6, add subarulink-0.3.12

This commit is contained in:
2021-03-14 13:49:33 +01:00
committed by Andreas Billmeier
parent c600388d51
commit 23f67e7cd7
7 changed files with 98 additions and 0 deletions

View File

@@ -0,0 +1,3 @@
DIST subarulink-0.3.12.tar.gz 32362 BLAKE2B 9367f62d7337780a7b02e678491c4297e02e4eff17984eda7616c2a694d9820a180675a647f9d0f8cdd6d46f0f128f43a7e11081d84232b119245ad2c75d8fbb SHA512 8998fd28a86fe32fdf35e7cf8075301a6465c0e954a2f5494c25fa1c55bea03ce9e3c7bbc83c64523c72e64c33b67d0eef3e950554598d1c581018d4fd9a066b
EBUILD subarulink-0.3.12.ebuild 803 BLAKE2B cd0540b962268eec975c1ce1f92e14898518574db123785bc8e47da162d5cd63bdc8030da87360396dc96a3e96d367fed876005e338865be03c99d2c8ff60b00 SHA512 9848f4d6ea24805c0ce6f9f06b4ca60f3758de2cf71dddf548d60a1a30d31ab5d229e08dddb5cf995cd087e5afb3befa1ea1c2d0146550ed81fe67d7ccc82e61
MISC metadata.xml 329 BLAKE2B 1473c8b3ff81ca3138bcf364e9106460add87529d5a9d56d3dbe3a794f3758cd2e67c17028585b2b2c4d627d9e878c62df41570cdcc9281c84f772c11bf80bf0 SHA512 85a9e9035bd1e9a721c4c689ed11f16e263abf70ba26a00b63fdabeaff69f6639c38470a893999a078d0f9b9b115620d101197beb7debce0b7098a0f5d8aa9da

View File

@@ -0,0 +1,11 @@
<?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">subarulink</remote-id>
</upstream>
</pkgmetadata>

View 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_{7..9} )
inherit distutils-r1
DESCRIPTION="A package for interacting with Subaru Starlink Remote Services API."
HOMEPAGE="https://github.com/G-Two/subarulink https://pypi.org/project/subarulink/"
SRC_URI="mirror://pypi/${P:0:1}/${PN}/${P}.tar.gz"
LICENSE="Apache-2.0"
SLOT="0"
KEYWORDS="~amd64 ~arm ~arm64 ~x86 ~amd64-linux ~x86-linux"
IUSE="test"
DOCS="README.md"
RDEPEND="dev-python/aiohttp[${PYTHON_USEDEP}]
dev-python/stdiomask[${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
}