dev-python/aiorun: add 2023.7.2

Signed-off-by: Andreas Billmeier <b@edevau.net>
This commit is contained in:
2023-12-12 22:54:00 +01:00
committed by onkelbeh
parent 3d9e893ff5
commit 5c5b8aa90b
3 changed files with 34 additions and 2 deletions
+2 -2
View File
@@ -612,12 +612,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 1768 Ebuilds in total, 1757 of them have in total 1778 (43 different) licenses assigned.
There are 1769 Ebuilds in total, 1758 of them have in total 1779 (43 different) licenses assigned.
|License| Ebuilds using it|
|-------|-----|
|MIT|1032|
|Apache-2.0|371|
|Apache-2.0|372|
|GPL-3|106|
|BSD|101|
|GPL-2|24|
+2
View File
@@ -1,3 +1,5 @@
DIST aiorun-2022.11.1.tar.gz 31711 BLAKE2B d5b14c40fbea05a2c50bffe977eb02c45edb41de0468b17782de0f92ae363ee409ec0a86fa7ee3c13d9088baff301ec5e034cb270da0113459c458920fe902f2 SHA512 127ca21481bb997d3d46c41620b570a1dd523e29e32bc537c1d38771816856a12183f7d0e45c85427c516aa1624517899da5f02afc976bef1443b814ea1d8f37
DIST aiorun-2023.7.2.tar.gz 31170 BLAKE2B 0f25c6d9a05b215b9d3c8bba68602cbf679fc30245ae413ee84b66fafdeac53c6e62d51151a6055d404e22f9db24f8d51358610a01c9316d37818bbda220f582 SHA512 fa6bcec2202941c26afd9f04a92ab21ab610067f95011f357d9da3e442fac53d917edb170eb52c06bcf0c73033f0f71a9b83dd23bb28c243b1e4aa46e8dd99a1
EBUILD aiorun-2022.11.1.ebuild 622 BLAKE2B 2d8b5dbc5d8f9b55e6adf2c7d60972d9240ae0525c3e9a4e0de3f8218e1c3f778e793f983e33a24f6c9d69071d8bc8dc6c0ce542d7e7649f9f499976b2854313 SHA512 320b25d4b2126f3a16f00afecaa7d5a565fe50ca658849421b86270b79011ed7ee995497dcffd3fa1b41d324a784052bb965cfadfcdeab0ababfc9d1a4e75fe3
EBUILD aiorun-2023.7.2.ebuild 622 BLAKE2B 2d8b5dbc5d8f9b55e6adf2c7d60972d9240ae0525c3e9a4e0de3f8218e1c3f778e793f983e33a24f6c9d69071d8bc8dc6c0ce542d7e7649f9f499976b2854313 SHA512 320b25d4b2126f3a16f00afecaa7d5a565fe50ca658849421b86270b79011ed7ee995497dcffd3fa1b41d324a784052bb965cfadfcdeab0ababfc9d1a4e75fe3
MISC metadata.xml 510 BLAKE2B c04894aa635f2c934b01052ac3907da7313b7fd62d6e5e06aa595848de1950bd3d4e29d91e5a23fc0a59d7c887cdcfc5993a3c583fa8df50b63def0b26da5bda SHA512 669563e4ffce82a98791ef4465eb98254165fc1aab250f4e414093739c1ed65a02aafc1392a6f099a4f5d6cb0c9b3c53329d6efbe6d17e875b29df7e9b10cab1
+30
View File
@@ -0,0 +1,30 @@
# 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=flit
inherit distutils-r1 pypi
DESCRIPTION="Boilerplate for asyncio applications"
HOMEPAGE="https://github.com/cjrh/aiorun https://pypi.org/project/aiorun/"
LICENSE="Apache-2.0"
SLOT="0"
KEYWORDS="amd64 arm arm64 x86"
IUSE="test"
RESTRICT="!test? ( test )"
DOCS="README.rst"
BDEPEND="
test? (
dev-python/pytest[${PYTHON_USEDEP}]
dev-python/pytest-cov[${PYTHON_USEDEP}]
)"
python_test() {
py.test -v -v || die
}
distutils_enable_tests pytest