dev-python/aioimaplib: add 1.1.0

Closes: #3511
Signed-off-by: Andreas Billmeier <b@edevau.net>
This commit is contained in:
Andreas Billmeier 2024-06-23 12:29:24 +02:00
parent e4b0d1b37a
commit 78997d0cc6
Signed by: onkelbeh
GPG Key ID: E6DB12C8C550F3C0
4 changed files with 38 additions and 4 deletions

View File

@ -606,13 +606,13 @@ 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 1910 Ebuilds in total, 1899 of them have in total 1922 (42 different) licenses assigned.
There are 1911 Ebuilds in total, 1900 of them have in total 1923 (42 different) licenses assigned.
|License| Ebuilds using it|
|-------|-----|
|MIT|1095|
|Apache-2.0|429|
|GPL-3|111|
|GPL-3|112|
|BSD|108|
|LGPL-3|25|
|GPL-2|23|

View File

@ -1,3 +1,5 @@
DIST aioimaplib-1.0.1.gh.tar.gz 382313 BLAKE2B 692e95b380ee6ee971e01274e2d58754c6dcf31641dd5e8f96f821c256b3a8d36fce87d9ef61f59ad846711eec0cea795df04936d841b27a7dc0de09c2053cc4 SHA512 7b6a545140f02a872d55c9bc8008ffe8ecc3cabbfe82fa499186f2697cf8cfd76fa499b7b6dedac57430aefc16e216c42200b84912c970126a1d2531986adbf1
EBUILD aioimaplib-1.0.1.ebuild 843 BLAKE2B 57193c4c2bc0b7b29db5fdb218b57382f04b1ab8a095f06a515c990bd7906efe0ac914c8d0827715b0ddaa3a90224177af8a9f70270a890b47a2ef4d614f1f89 SHA512 a797c7571b281cf80de479dcef1b750026e15a47a08aa2f04e4e31b5ac395c194d31778a8d380ecaccf27031ab9d3e9668c5ed3dccbc29d12ecabcabf5f83217
DIST aioimaplib-1.1.0.gh.tar.gz 384772 BLAKE2B 8db82c0fc70268502067ca9f3ac2b75e9e232cd27026f767f4ddf35f19e94837c55d25139c2881d735464a9cfb453b3eb7569f209dfdbfbb33379b40e2fa04d0 SHA512 fa7439058e71a4267483985f49e5650e8fcd64d9ded9aa2414606421086ba433868b65da1c1d26a3198e4a7620d601f0e39a0b7cc1d9ea5f56c6a4ca9ff42a85
EBUILD aioimaplib-1.0.1.ebuild 843 BLAKE2B a9fbe6edfebbd535b74e1153bcbd47b4ba7e88c208fefc20a73ef8d8611f41915933fd338dca6574c8c6deef22b97a525852931874a32cc15ba6ab23fee71e03 SHA512 f45e3d2d9f9f61270b655742fc091a9f4317348edbbe0875a678d72a426f1307d636dd2771b6af5f9ba96153bedd332b64eaae981723f61776a9116092d35f56
EBUILD aioimaplib-1.1.0.ebuild 841 BLAKE2B 53efe27e3a073ca3cc6c6af9480b10d1acf2287457bb445a9dfd4768d7d83ee6df39633a8cf570390802173535f5e8cc2d38940c1ae44ee195a695146b6ac52e SHA512 e88ae18bf76612eb931ae980733e230f4868ff2cbb1c091609f1b936fa11a26c26312bfa3c84fab3d8a2751bb5b826e46408fb828dcbaf8676152234164bfca7
MISC metadata.xml 516 BLAKE2B 9f7b2d6dbae7e74cb459b804cc9de846c9ecd419b02ae808041dea168a05070d1a34bbc444099d123fb00108bf1cddc356cbbc1bb3d2fc54a98a16cb70474f03 SHA512 21c5f4a58a2a8b8bf7aa19c008d9b6da86b9095f490203f6b79406a9afe12a18fa4556d8dcced43bdf01e5875a29055fc7cedec3440c9012d474d103b69b892c

View File

@ -3,7 +3,7 @@
EAPI=8
PYTHON_COMPAT=( python3_{10..12} )
PYTHON_COMPAT=( python3_{11..13} )
DISTUTILS_USE_PEP517=setuptools
inherit distutils-r1

View File

@ -0,0 +1,32 @@
# 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=setuptools
inherit distutils-r1
DESCRIPTION="Python asyncio IMAP4rev1 client library"
HOMEPAGE="https://github.com/bamthomas/aioimaplib https://pypi.org/project/aioimaplib/"
SRC_URI="https://github.com/bamthomas/${PN}/archive/refs/tags/${PV}.tar.gz -> ${P}.gh.tar.gz"
LICENSE="GPL-3"
SLOT="0"
KEYWORDS="amd64 arm arm64 x86"
IUSE="test"
RESTRICT="!test? ( test )"
DOCS="README.rst"
BDEPEND="
test? (
dev-python/pytest[${PYTHON_USEDEP}]
dev-python/asynctest[${PYTHON_USEDEP}]
dev-python/pytz[${PYTHON_USEDEP}]
dev-python/tzlocal[${PYTHON_USEDEP}]
dev-python/imaplib2[${PYTHON_USEDEP}]
dev-python/tzlocal[${PYTHON_USEDEP}]
)"
distutils_enable_tests pytest