dev-python/pyoctoprintapi: drop 0.1.11

Signed-off-by: Andreas Billmeier <b@edevau.net>
This commit is contained in:
Andreas Billmeier 2023-12-17 17:55:00 +01:00 committed by Andreas Billmeier
parent 3acc43cce2
commit c033466d5d
Signed by: onkelbeh
GPG Key ID: E6DB12C8C550F3C0
3 changed files with 2 additions and 39 deletions

View File

@ -612,11 +612,11 @@ A daily compile test is run at Github with Python 3.9 to catch general faults. E
## Licenses
This repository itself is released under GPL-3 (like most Gentoo repositories), all work on the depending components under the licenses they came from. Perhaps you came here because I filed an issue at your component about a bad or missing license. It is easy to [assign a license](https://docs.github.com/en/communities/setting-up-your-project-for-healthy-contributions/adding-a-license-to-a-repository). During cleanups and license investigations I have been asked often which license to choose. I am not a lawyer, but I can offer the following table, counted over this repository, perhaps this helps your decision. If a package has more than one license listed, all of them are counted.
There are 1630 Ebuilds in total, 1619 of them have in total 1637 (42 different) licenses assigned.
There are 1629 Ebuilds in total, 1618 of them have in total 1636 (42 different) licenses assigned.
|License| Ebuilds using it|
|-------|-----|
|MIT|942|
|MIT|941|
|Apache-2.0|343|
|GPL-3|105|
|BSD|88|

View File

@ -1,5 +1,3 @@
DIST pyoctoprintapi-0.1.11.gh.tar.gz 10461 BLAKE2B 4fc96e94e15aed5266c4574de46db83445c07323812cab3366dc5f7aaf9caf36add7f294509e4c8f8a4d957a4c5899c47f81eb9e045ac2332f9381c1a459fe11 SHA512 17241c2971557768f79ac6f03e3715d8618174f22cd1cc7a48dd35281ebcddebd2fe84b78ec9d11f9abd3afe4f417a0b4f1e3d4429d92d7e94f267da9fb4f5bc
DIST pyoctoprintapi-0.1.12.tar.gz 7500 BLAKE2B a478e21ce429e45bc55dec8a3a4c1dafdcb241db92e59b592459cf3045e6ce7d54578916eb0b720d4914f35759bd33d5fc137f7490a6a3f92b39621cba14f084 SHA512 5553f0b66c440601e9f269442cc1000c62483d605b4a6e9161db57cb2d8fec390d2fb85ffeaa995e1f9961ae7dd48d4965d8e7957bf7f414ca81477db4773c3a
EBUILD pyoctoprintapi-0.1.11.ebuild 903 BLAKE2B 187c962b8b77583d0afd5ea46b8c3321df97049e6f81dfe16b1cba69682632c5a01daac1ae676cc3cf3e12383b2592dc3a8a088f7eb82a5520906ae2f8656fbb SHA512 c201774b241989cec63fb91d8d6c329b0489b8d08b61dd75385f901a42774107963292bf8777fedf4bcdc2bc107136dd702b963a17e6cfc19718fde34833fc94
EBUILD pyoctoprintapi-0.1.12.ebuild 812 BLAKE2B b0af81bc4b8a2ede8de527f7895fceddf691ec8282692d3889888d50f012e00b111dd7d0185dfd80e22f4b6f1c7276668e52245d0a516ad1e94a4da9f5a2e877 SHA512 488558ba587067f07b29882e52814fcb9cb0085198e9a177ba90178cb734b9de4e9c652fb8badacda2fee901f495159e6b837ad2df94ec571d4351c9b1a080f3
MISC metadata.xml 541 BLAKE2B dc292057afacae470d3733041f7d71380c0c94d9519e4b8d9ec154f0753d8cf82fa3531261002240bdc0f71eeac919e3140ec25ce33a4ccdbd3ded3cb4bdac75 SHA512 1178613b7f0cc8254989b5d5059e821114892af95b3cd81eba8f7f860a8f2aec4870ac2030785cb95673489d1074fe243127f75f4eb9b465b1e26efed57e683a

View File

@ -1,35 +0,0 @@
# Copyright 1999-2023 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=8
PYTHON_COMPAT=( python3_{10..12} )
DISTUTILS_USE_PEP517=setuptools
inherit distutils-r1
DESCRIPTION="An asynchronous Python library for communicating with the OctoPrint API"
HOMEPAGE="https://github.com/rfleming71/pyoctoprintapi https://pypi.org/project/pyoctoprintapi/"
SRC_URI="https://github.com/rfleming71/${PN}/archive/refs/tags/v${PV}.tar.gz -> ${P}.gh.tar.gz"
LICENSE="MIT"
SLOT="0"
KEYWORDS="amd64 arm arm64 x86"
IUSE="test"
RESTRICT="!test? ( test )"
DOCS="README.md"
RDEPEND="dev-python/aiohttp[${PYTHON_USEDEP}]"
BDEPEND="
test? (
dev-python/asynctest[${PYTHON_USEDEP}]
dev-python/pytest[${PYTHON_USEDEP}]
dev-python/pytest-asyncio[${PYTHON_USEDEP}]
dev-python/pytest-cov[${PYTHON_USEDEP}]
)"
python_test() {
py.test -v -v || die
}
distutils_enable_tests pytest