dev-python/pyalmond: remove olds, cleanup, enable pytest

This commit is contained in:
Andreas Billmeier 2022-10-16 16:25:37 +02:00 committed by Andreas Billmeier
parent acf67645a8
commit 54e50753c3
Signed by: onkelbeh
GPG Key ID: E6DB12C8C550F3C0
4 changed files with 11 additions and 9 deletions

View File

@ -9,7 +9,7 @@
|ads|Beckhoff automation devices running TwinCAT|N|Y|Y|0.60|
|advantage_air|API helper for Advantage Air's MyAir and e-zone API|N|N|Y|0.117|
|aemet| AEMET OpenData meteorological data|N|N|Y|2021.3|
|aftership|The aftership platform allows one to track deliveries by AfterShip|N|Y|Y|0.85|
|aftership|The aftership platform allows one to track deliveries by AfterShip|Y|Y|Y|0.85|
|agent_dvr|Agent DVR is a free* software DVR solution|N|Y|Y|0.110|
|airly|Uses the Airly web service as a source for air quality data|Y|Y|Y|0.101|
|airnow|AirNow web service as a source for air quality data|N|N|Y|2021.2|

View File

@ -71,7 +71,7 @@ Since homeassistant-0.115.3 the **Main Ebuild** is released in three different s
[![emerge ha-min](https://github.com/onkelbeh/HomeAssistantRepository/actions/workflows/emerge-min.yml/badge.svg)](https://github.com/onkelbeh/HomeAssistantRepository/actions/workflows/emerge-min.yml)
These are the USE Flags I use in production myself. All will compile fine and are extensively tested in every release, a daily compilation test is run at Github, big thanks to @antonfischl1980, it currently holds **92** USE Flags.
These are the USE Flags I use in production myself. All will compile fine and are extensively tested in every release, a daily compilation test is run at Github, big thanks to @antonfischl1980, it currently holds **93** USE Flags.
### `app-misc/homeassistant`

View File

@ -1,3 +1,3 @@
DIST pyalmond-0.0.2.tar.gz 6898 BLAKE2B af5a18311bcc26a797a80b55610e76c0ce22e1dbef27714aab0463594709456bf5c296bad06e897494154aceebb28702900cbc608a73c712790b186302beb724 SHA512 5edc809cc0ba47a4e0fe1b39cf8ba80d8f151156227bd3abd09751d0b2e48ea4cfebc4a9feaf32c38fbd05797fde22a321f3939cb4e8df5b4f329206a4282fc9
EBUILD pyalmond-0.0.2.ebuild 925 BLAKE2B 375df21837d37294263862f6d86a0a225c4d0930a175ec6128d0bf8cece79b35cca9d4dd05b058889e2addae295de3c5f502e99f9d0668008633567e47105b43 SHA512 ffcf6a9b79af358216924c04ade94eda681db36cbb97734f82da95cc10264f2d7c148e536d190f7d6037f93ae12c9629371c6ca1d324381a773c5efda22f3739
DIST pyalmond-0.0.2.gh.tar.gz 6898 BLAKE2B af5a18311bcc26a797a80b55610e76c0ce22e1dbef27714aab0463594709456bf5c296bad06e897494154aceebb28702900cbc608a73c712790b186302beb724 SHA512 5edc809cc0ba47a4e0fe1b39cf8ba80d8f151156227bd3abd09751d0b2e48ea4cfebc4a9feaf32c38fbd05797fde22a321f3939cb4e8df5b4f329206a4282fc9
EBUILD pyalmond-0.0.2.ebuild 933 BLAKE2B 3cc4aba1e146a288cd6e5b491756eca7890b76828e28ca6271a453687bb50a6d15a2f9af67428abadd2beaa9f19b950afcdfad6ba20e1bbee16b863b3c20c375 SHA512 777a1bd4e4e10f02ea10d0ae0a46d18df04d0c1128c02ff79b3a1b4abda556572d70b9c414d52a6a3a4cc8cc1333242ce8889876377c1fcb434727efbeb0e2fe
MISC metadata.xml 462 BLAKE2B f537c517b6a18b016c80c5c9a96817b3a834a72596ebfecf0a0885ccc39f3e829b9857315c5064e7a2dda74a84914c425344b86ff40d4ff95d44b69e61dde6df SHA512 6e32f2f600b5abb6fbd8f4a7fdb57a95d1ee272d59a22c614fc1ca569529f3cb9875a0edea31726a008f8f4761b052df3f9a14b5dec85c15f16321be8fa7899b

View File

@ -1,19 +1,19 @@
# Copyright 1999-2021 Gentoo Authors
# Copyright 1999-2022 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI="7"
EAPI=8
PYTHON_COMPAT=( python3_{8..10} )
PYTHON_COMPAT=( python3_{8..11} )
inherit distutils-r1
DESCRIPTION="Python module to talk to the Web Almond API."
HOMEPAGE="https://github.com/stanford-oval/pyalmond https://pypi.org/project/pyalmond/"
SRC_URI="https://github.com/stanford-oval/${PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz"
SRC_URI="https://github.com/stanford-oval/${PN}/archive/v${PV}.tar.gz -> ${P}.gh.tar.gz"
LICENSE="BSD"
SLOT="0"
KEYWORDS="amd64 arm arm64 x86 ~amd64-linux ~x86-linux"
KEYWORDS="amd64 arm arm64 x86"
IUSE="test"
RESTRICT="!test? ( test )"
@ -34,3 +34,5 @@ python_test() {
nosetests --verbose || die
py.test -v -v || die
}
distutils_enable_tests pytest