update pyrituals-0.0.3

This commit is contained in:
Andreas Billmeier 2021-06-12 17:11:26 +02:00 committed by Andreas Billmeier
parent 98f2cb83b4
commit 4ad8470e5b
Signed by: onkelbeh
GPG Key ID: E6DB12C8C550F3C0
3 changed files with 37 additions and 0 deletions

View File

@ -61,6 +61,7 @@
* update pymazda-0.1.6
* update pymelcloud-2.5.3
* update pymodbus-2.5.2
* update pyrituals-0.0.3
2021-06-04
* cleanup PYTHON_COMPAT, remove unused Ebuilds (https://bugs.gentoo.org/793464)

View File

@ -1,3 +1,5 @@
DIST pyrituals-0.0.2.tar.gz 3292 BLAKE2B db06f43ebe567b29712a84c1fd4dba78718a38014365893a8c261809c6877fbe81f16523fd04fc031e73bb7b15a45dd187532186dc4703b0567a54be87c7be92 SHA512 2c1820392d12a6f8f701a8a0f7a0499fe39ab666af137a301785bdb41afa7e491402461d56c0ce017813d0bb0b6a334fb48e531643bc15299e1c0bbea02db72d
DIST pyrituals-0.0.3.tar.gz 4855 BLAKE2B 76626d6af1f3678dca83b213338849043a74e76860daa67d60b9b0e9fab4767ed2b0b604abe7cf299f75ed5fe84096b43e1d58428b9b50a7f09a16571d39b260 SHA512 c8821b913d06a440982ab18e6b784dd11cbd513fed7fb6e398df9dc5830f77f81fbab9bcbaf7a3bcc897c486a4f1d67e3b1dc0056344c541a037a72b2d4d897c
EBUILD pyrituals-0.0.2.ebuild 748 BLAKE2B 533ae427ffe60e049f107d6a2c43d6ef9d9e09661f26db0eef11f390dc451cc32ea0ded9514ed6e1a091d089a3a09056ee868b1ec623e32851895d1f9f520fbe SHA512 dca7dfe16d813519cd07e7909666142779b7d2a1b50e3c8db96cb9a4be370955efd6cc354bd1c28b89c4f863dbab30ae0746601b5d953e6fb7665c0bcd4700c8
EBUILD pyrituals-0.0.3.ebuild 833 BLAKE2B 72b2ba7d43318cbf3f2b6e69a5ebee358b38c88cbf1ddd59328c41c50aa7563ed4c0378f30cfe0b12411ea8dde50dcf672955f7c9a3af4438d46374a4285b861 SHA512 4c40fea85cf09b17707391566085162db52206d1f717192a4d2f130f79e110588447d394cf4f3fe4860cf7d756971b08a46ac54d5b8bdb8fda7b41552355f94c
MISC metadata.xml 460 BLAKE2B c1f223a5c76ef46b89a5558ac3f455b178134b048b2b1dfa48b74f9f92a342e0c4652966d24c16cd14f99fb76f9314448f2348fc293a368debaa69734cfe440d SHA512 6f9098bc989f48a92753ec8f4ccec491c2844fd46eb41fe996098b0f34f0b360d78193dfd203a8e9d3c4a4da5a24f1f09d1bb73c5e2ebda1bda06331bf312aea

View File

@ -0,0 +1,34 @@
# 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="Async Python wrapper for the Rituals Perfume Genie API"
HOMEPAGE="https://github.com/milanmeu/pyrituals https://pypi.org/project/pyrituals/"
SRC_URI="mirror://pypi/${P:0:1}/${PN}/${P}.tar.gz"
DISTUTILS_USE_SETUPTOOLS=pyproject.toml
LICENSE="MIT"
SLOT="0"
KEYWORDS="~amd64 ~arm ~arm64 ~x86 ~amd64-linux ~x86-linux"
IUSE="test"
DOCS="README.md"
RDEPEND="dev-python/aiohttp[${PYTHON_USEDEP}]"
BDEPEND="
dev-python/setuptools[${PYTHON_USEDEP}]
dev-python/pyproject2setuppy[${PYTHON_USEDEP}]
test? (
dev-python/nose[${PYTHON_USEDEP}]
dev-python/pytest[${PYTHON_USEDEP}]
)"
python_test() {
nosetests --verbose || die
py.test -v -v || die
}