dev-python/aioshutil: add 1.4

Signed-off-by: Andreas Billmeier <b@edevau.net>
This commit is contained in:
Andreas Billmeier 2024-06-16 09:35:06 +02:00
parent f20bef835f
commit 46fa43a916
Signed by: onkelbeh
GPG Key ID: E6DB12C8C550F3C0
4 changed files with 36 additions and 6 deletions

View File

@ -606,14 +606,14 @@ 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 1875 Ebuilds in total, 1864 of them have in total 1887 (42 different) licenses assigned.
There are 1877 Ebuilds in total, 1866 of them have in total 1889 (42 different) licenses assigned.
|License| Ebuilds using it|
|-------|-----|
|MIT|1075|
|MIT|1076|
|Apache-2.0|419|
|GPL-3|109|
|BSD|108|
|BSD|109|
|LGPL-3|25|
|GPL-2|23|
|BSD-2|14|

View File

@ -1,3 +1,5 @@
DIST aioshutil-1.1.tar.gz 6831 BLAKE2B 996b376d6d5f5d052b0913c956e52eb94be76e127ebb0706b4887ec248656c9bf4118a0d5c519fb339d988984ca718030b1b3c3ecf93628ef5fde9201589ce1e SHA512 cdd004e616f3d1e47231a93723d2d216e93fdb873887af368d9135628b95a31a54b580394b0735d456b390fda0b2823ccf9f68ab4ca8d71069c7ab601ef452b6
EBUILD aioshutil-1.1.ebuild 673 BLAKE2B c2328e2de3315c46604758e86df3ac921723ced9df841d7513ea8dba0812beb86861a2dec007855c10561e3c6aec9c44972306eb241184bb5123ca36d3a84eff SHA512 c0d5f8c5d717d6c0835704e84e8e2ce144194bf3c16d828ade81db80330ae587c26ea05efd928fa1e8f85c397057e651af38b8861b9a596810d1379611de19d9
DIST aioshutil-1.4.tar.gz 7742 BLAKE2B f87740ad194d209f5462da02724e271d8d892b537179a68e6733bdb9ca83ace7853630a66ca66aa73faa31dab2bea7cc274e2688422d1cb5a31bc53e053139b5 SHA512 7e1043d1c54642471b1a022ff4506ebb811ef1634e2f5e728d1b41b9fd8cb915667bc3cb73147c37db3b8504e3b5d241231f9a43c9c1824218a6ae5415731ac0
EBUILD aioshutil-1.1.ebuild 673 BLAKE2B dcd1ee80c9f457140bb414d66c9d439354f1efa9a98495e7d779428900ce396423e51ae6c289910a8915bd819c3dfbcd5b5d0eada90c8b270f980c7216893b79 SHA512 007625c7fc52aa9f570cba61bb5d90d9df291f0c85a7155f321c2ab6a52d3d490cae8373850aa7c44c7f3b12598ebaa4e15db950b639c716ccc51ca93c7c9f12
EBUILD aioshutil-1.4.ebuild 689 BLAKE2B 9367aa45b9a11fb3022fd39406a665d4ffcd3db4c6d5e49189436888eb80611b1865d93de5b717d9ded558282595a9c7f044bc4fa99343bdbccded100e817a0f SHA512 f3d65113982825dc6e30961afe0add92c604b55105d6af103a01ffd41d9f1d7593378b568850f864c1df71c191f6b2fdb2dd30eaf6e19391f83966ee50c36f5f
MISC metadata.xml 394 BLAKE2B ae46ec8778456ca8e7aaf44a87552b3d0927cf95809d2f6ee23ebc917a8b01d2f7f2c2a40909994eb163a61c95da1fb37f88feb5a1b9045d7d30530153f5161d SHA512 978716be16be600e44ad22f9e73a5b468a93fcf5060970568a89a93e9c28a723ae0b0fe8ec7057e54e9af0d9ee6207d5ebbd026dee28845d9a6e0745e7a9d34c

View File

@ -1,9 +1,9 @@
# Copyright 1999-2023 Gentoo Authors
# Copyright 1999-2024 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=8
PYTHON_COMPAT=( python3_{10..12} )
PYTHON_COMPAT=( python3_{11..13} )
DISTUTILS_USE_PEP517=setuptools
inherit distutils-r1 pypi
DESCRIPTION="Asynchronous shutil module."

View File

@ -0,0 +1,28 @@
# 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 pypi
DESCRIPTION="Asynchronous shutil module."
HOMEPAGE="https://github.com/kumaraditya303/aioshutil https://pypi.org/project/aioshutil/"
LICENSE="BSD"
SLOT="0"
KEYWORDS="amd64 arm arm64 x86"
IUSE="test"
RESTRICT="!test? ( test )"
DOCS="README.md"
RDEPEND="dev-python/typing-extensions[${PYTHON_USEDEP}]"
BDEPEND="
test? (
dev-python/pytest[${PYTHON_USEDEP}]
dev-python/pytest-asyncio[${PYTHON_USEDEP}]
dev-python/pytest-cov[${PYTHON_USEDEP}]
)"
distutils_enable_tests pytest