dev-python/todoist-api-python: drop 2.0.2

Signed-off-by: Andreas Billmeier <b@edevau.net>
This commit is contained in:
2023-12-17 18:14:57 +01:00
committed by Andreas Billmeier
parent c35c110392
commit 7f7ce41393
3 changed files with 2 additions and 43 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 1578 Ebuilds in total, 1567 of them have in total 1584 (42 different) licenses assigned.
There are 1577 Ebuilds in total, 1566 of them have in total 1583 (42 different) licenses assigned.
|License| Ebuilds using it|
|-------|-----|
|MIT|907|
|MIT|906|
|Apache-2.0|338|
|GPL-3|97|
|BSD|87|

View File

@@ -1,5 +1,3 @@
DIST todoist_api_python-2.0.2.tar.gz 9432 BLAKE2B c7ff6c866485a5e75dc0a31ace24e2fc5e59c48dcc88a6d2c9baf883b5991eb4ad99e41a5005d582818de1f393369630f9915f0904c5729a3d9c5c8a9398fde1 SHA512 c4826f74d8ef8798b6b664e233924805a30f2ed10985c7e3511fef47c2743d3294e21c24965c72ebe4b040553159c6137d516b6f3017ded833db0e68443df3e9
DIST todoist_api_python-2.1.2.tar.gz 8932 BLAKE2B 2205e78cf1b57e4b7e9e75d350876942f4643d6db2aeee6c07a1ea296a015b8e6036991d4478bf2ed3fdcf7460f5c1b5537121851551bf2ddc45c8810e064e6b SHA512 68aa072e3693c20fa76a6a9601f39eecc801527b49712455841f270b3ecfd0a4b028a3be3a558cf1946d27317845b5c3ea47bea4bc527ed78f38b48008b61f49
EBUILD todoist-api-python-2.0.2.ebuild 809 BLAKE2B ff53c137ccba9b8f8a8459978f5845a6bb954b83c2561b5f5442294262779b0a8e15f656957bcf7af7c1b4b45adea91f2424affc21a97935730ce28d2c0c35db SHA512 bd1bed6a5a4ad7e77f16a0950003b62c284ffd640bb41fa8ce43d0bf8578f4d7075e12b765242d76da974a9dc3fbd3541ba553cd0a6c0f25cf37900e977c032e
EBUILD todoist-api-python-2.1.2.ebuild 764 BLAKE2B 5c3ec412bba91ad8bb6abf26255ca52f53ae4394d35f3b84a50dea324df9c3c0e376235086f4af354a52362951f97347fbfa347b80b0331fd7c1435676435c4e SHA512 cfa905b125ca7c34694fcdcea4b861e98783241fa9c1bee1bedeca8c690aead34d7cdcb7df23f19b2d95618bfc8a3ef77c894b18db6a6e81157c4b0b2dc952aa
MISC metadata.xml 526 BLAKE2B 690a0af51cb068a1b1bf064a71d499520886de31a7d0dac10d48d6e9607cc37b9f485c3eb77f4904d2667438d95323d9725984a409cc076f97c9e4519fddfadf SHA512 c70e6397c14d91b3d2a4bde8462db86f0983b1d2509e1126e8dd22d508f6b79e914f9e5d3322cf3d45c13f1fbc5903c448a5ee216cd0c1b8fab48f797a52d63a

View File

@@ -1,39 +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=poetry
inherit distutils-r1 pypi
DESCRIPTION="Official Python SDK for the Todoist REST API."
HOMEPAGE="https://github.com/Doist/todoist-api-python https://pypi.org/project/todoist-api-python/"
LICENSE="MIT"
SLOT="0"
KEYWORDS="amd64 arm arm64 x86"
IUSE="test"
RESTRICT="!test? ( test )"
DOCS="README.md"
RDEPEND=">=dev-python/requests-2.26.0[${PYTHON_USEDEP}]
>=dev-python/attrs-22.0.0[${PYTHON_USEDEP}]"
BDEPEND="
test? (
dev-python/pytest[${PYTHON_USEDEP}]
)"
python_test() {
py.test -v -v || die
}
distutils_enable_tests pytest
# "LICENSE",
src_prepare() {
sed -e '/include =/,/]/d' -i pyproject.toml || die
eapply_user
}