dev-python/python-fullykiosk: add 0.0.12

Signed-off-by: Andreas Billmeier <b@edevau.net>
This commit is contained in:
Andreas Billmeier 2023-01-07 13:23:07 +01:00 committed by Andreas Billmeier
parent 9a2f883ff9
commit 4a707d5a70
Signed by: onkelbeh
GPG Key ID: E6DB12C8C550F3C0
2 changed files with 35 additions and 0 deletions

View File

@ -1,3 +1,5 @@
DIST python-fullykiosk-0.0.11.tar.gz 2664 BLAKE2B f15df5ff3d9e00978e2cdb7bf7aace99b0b701483f0c3e9d759db61aa9c45a249d6dc19ca8d3d0578ea08649649f8a3b927cdf7fee7f142387a397567b521911 SHA512 7857a4730485fa076af625dfd00ad2ea8886f829f8a3c15e1c3e5c0890a945d7f74b367032b4c1231c8e917a73937e7a582ac10accf5da53724128bc57cc702f
DIST python-fullykiosk-0.0.12.tar.gz 2834 BLAKE2B 116d0d26c36b042190f96c04a76f06fc8974a057597627ad71497f2bb5f3f69b80d01e57d76a1f766655e25db49a7e0102c0a2ccdddfd250b900a03045f8c27c SHA512 4446f034dd5d29021eaf408283524e8e89f7f50f8f2001c2d3abb7200b2ad296e660f03d79e258b55cc7d35e6fc01179d67263c4857c01e2b96d4fd64879a660
EBUILD python-fullykiosk-0.0.11.ebuild 725 BLAKE2B 41957111dba7f163fb8c0cf591bde77a489bf28358a19cb8070cf952bd868b60379369da7ada7dfc36dc8442d72c1d1ac5c5eabe5e6c02d58009cd07a941430c SHA512 d3da2854331ac2e8f40ab472169512115930d067edf320b7706402f8e50cc426ddd96533c810bc7eed908da1777533698c8afd910efd32fa4c164ffe5317261a
EBUILD python-fullykiosk-0.0.12.ebuild 756 BLAKE2B 5309dc6e0da976389f868f31329c0dcd8e69c69e5b9b7416337823d54bb539a598efd2759bc0af166dceaa741a1129bc61cb1fa4bfa66579837274f35e562fb0 SHA512 efa2eab082a86c27b54283c8ffaba2da039af9f76f735ba3a79dc94e46ae5d7a9d40d6a03a955bf9b23117bc92d24593a4ee5b85b1adfd4eb923d8cc8b5b4f1e
MISC metadata.xml 531 BLAKE2B 815a54d819c67d3b3fde0eee8bb22ff5ee16da0a0e9ebd95b11e079ebb2e450523a8a6b3946b1ccdae9e24ad56543fc56414f26524e3135e809f8f20e3ae6900 SHA512 62ef7eb186e455a3ca0d3ef2802b58d658f5cc1934f87f69156be511c3fc6ea5345405a4d59692020ef7d5878c8558bb3c6e731c65f6de2115c4e059d339691d

View File

@ -0,0 +1,33 @@
# Copyright 1999-2023 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=8
PYTHON_COMPAT=( python3_{8..11} )
DISTUTILS_USE_PEP517=setuptools
inherit distutils-r1
DESCRIPTION="Python wrapper for Fully Kiosk Browser REST API"
HOMEPAGE="https://github.com/cgarwood/python-fullykiosk https://pypi.org/project/python-fullykiosk/"
SRC_URI="mirror://pypi/${P:0:1}/${PN}/${P}.tar.gz"
LICENSE="Apache-2.0"
SLOT="0"
KEYWORDS="amd64 arm arm64 x86"
IUSE="test"
RESTRICT="!test? ( test )"
DOCS="README.md"
RDEPEND="dev-python/aiohttp[${PYTHON_USEDEP}]"
BDEPEND="
dev-python/setuptools[${PYTHON_USEDEP}]
test? (
dev-python/pytest[${PYTHON_USEDEP}]
)"
python_test() {
py.test -v -v || die
}
distutils_enable_tests pytest