dev-python/vacuum-map-parser-roborock: drop 0.1.1

Signed-off-by: Andreas Billmeier <b@edevau.net>
This commit is contained in:
Andreas Billmeier 2025-02-20 10:37:55 +01:00
parent 631bb60c1f
commit b1abd60397
Signed by: onkelbeh
GPG Key ID: E6DB12C8C550F3C0
3 changed files with 2 additions and 41 deletions

View File

@ -606,12 +606,12 @@ 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 2382 Ebuilds in total, 2368 of them have in total 2411 (43 different) licenses assigned.
There are 2381 Ebuilds in total, 2367 of them have in total 2410 (43 different) licenses assigned.
|License| Ebuilds using it|
|-------|-----|
|MIT|1354|
|Apache-2.0|567|
|Apache-2.0|566|
|GPL-3|146|
|BSD|125|
|GPL-2|27|

View File

@ -1,5 +1,3 @@
DIST vacuum_map_parser_roborock-0.1.1.tar.gz 14786 BLAKE2B 7c273a9d837a4449de2bc61c534c975234f614ea935f179c4e3cf50051f81288944fc0cd4c8787717c2aea5b9e66ae182472eea29470930f4a696eae1e3330fc SHA512 0e829b0309cdf5116860dec7c196f712b864a57707a524beb18d515e6509f463d68504ea1d7cb3bb330f0ccff1dfc71b1510c13ef5f9a9c2142477c21129e618
DIST vacuum_map_parser_roborock-0.1.2.tar.gz 15159 BLAKE2B e4cddfd95c9a56a6f6b50e4808dac82c61123f26cf4db4ab4740e7d7f96085bcd08835aaea7bd141e3b1eb51dfdcb3784fd309ef1212fd2a4b35718044314df7 SHA512 85bc7dff4adbe11a91816659bdc0ee835b50aedc57bda11c4273c99c81437bf3479de05d5c539d4dee929e5e860843854691cacbd3a51111c5eed4b2c06305ae
EBUILD vacuum-map-parser-roborock-0.1.1.ebuild 832 BLAKE2B 769b115611b009ebe28a7ce0aec512de8eb83c2d72304eb82eb359f228e6c5e5e4aa6cdef5d53515fc6df8fb19c25a81946cb813c99cd7b6b05a8f84e2ab05ff SHA512 233979d68558bd86884e8093710d4b0a8bdf8b3635e69a32e9922f941638f37d27a9f8ea76caaf3f508aa393ed99c978c92a3445b8cb84aba07599850310d8c9
EBUILD vacuum-map-parser-roborock-0.1.2.ebuild 790 BLAKE2B ea9de08d216c351456701b77ede32008903fc2b9135b2919bb77e456e4a72b653a3059b9e3d00a3b47e3cf4ee21fa5c96358a944cb2efc17bba2fdc779f31491 SHA512 b2798c4e38f4e2a355bfb411885779541d82fc86e59d083dcd668721e9d12b53e8bb087372293b9ab5f87aed0dbb2dfee747343c17fb32eaa15a62b3e49e6cce
MISC metadata.xml 581 BLAKE2B 7601e8d34215bca1daeb2c64162e62678ff3d7188abc2a51e23fabfed8fcf761d20fd21aafc227668ee1ee35f4e1c646732860eddaaab03b3513b6763212e8fa SHA512 5121d24d715692026413f5d5397c1b396149a4b1ec864549f4bdc003bad7b254df5bda3baee5d31e275ccacc32e99cfa71c01033dd7a14c46679b5e717afac77

View File

@ -1,37 +0,0 @@
# Copyright 1999-2024 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=8
PYTHON_COMPAT=( python3_{11..13} )
DISTUTILS_USE_PEP517=poetry
inherit distutils-r1 pypi
DESCRIPTION="Functionalities for Roborock vacuum map parsing"
HOMEPAGE="https://github.com/PiotrMachowski/Python-package-vacuum-map-parser-roborock https://pypi.org/project/vacuum-map-parser-roborock/"
LICENSE="Apache-2.0"
SLOT="0"
KEYWORDS="amd64 arm arm64 x86"
IUSE="test"
RESTRICT="!test? ( test )"
DOCS="README.md"
RDEPEND="dev-python/pillow[${PYTHON_USEDEP}]"
BDEPEND="
test? (
dev-python/pytest[${PYTHON_USEDEP}]
)"
python_test() {
py.test -v -v || die
}
distutils_enable_tests pytest
src_prepare() {
# remove unsupported dynamic-versioning plugin
sed 's/0.0.0/${PV}/g' -i pyproject.toml || die
eapply_user
}