dev-python/asyncarve: add 0.1.1
Closes: #3560 Signed-off-by: Andreas Billmeier <b@edevau.net>
This commit is contained in:
parent
fa94a65707
commit
c662a000f8
@ -606,11 +606,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 1971 Ebuilds in total, 1960 of them have in total 1984 (42 different) licenses assigned.
|
||||
There are 1972 Ebuilds in total, 1961 of them have in total 1986 (42 different) licenses assigned.
|
||||
|
||||
|License| Ebuilds using it|
|
||||
|-------|-----|
|
||||
|MIT|1139|
|
||||
|MIT|1141|
|
||||
|Apache-2.0|439|
|
||||
|GPL-3|114|
|
||||
|BSD|112|
|
||||
|
@ -1,3 +1,5 @@
|
||||
DIST asyncarve-0.0.9.tar.gz 4058 BLAKE2B ad5623cf6bb944142ed9caa6955e3d349f94a80d297069c182fc96f251d03e388d208b6607099ea9c24b197f873750125619d0be17d15f0c4bce6225b931591a SHA512 09abb4cba80fa0af28b1c189778b47fef9369f89af6f13eb8efe378c8a7d315c7f64a3ab2fa4d9c8339b7aaccf91f738e8a85a28bcb83782a1fca894831702c3
|
||||
EBUILD asyncarve-0.0.9.ebuild 592 BLAKE2B b456521756989369f09aa6415caad6c6429c1e23d597589e40e69f1c326c1845ea045977e039c87322d8512f6de7c259c3102937e1ca306193ec4b9ea48cf429 SHA512 dfd3704fcf3b46888963e2f549fef67e6582c70297734cf44057fc7ecbcf7584820f71bec411e197140cc1a9ddf6490610105286f1b72a44855d46dd5a543f7b
|
||||
MISC metadata.xml 328 BLAKE2B 181b82679fafc34e90e33112a050aa2b7033083fe5c35d24b18ac6e6c84812dd3c26f777dd4db7fa9f45d32a44949dd67238c312740107208e644d8e2bb761b1 SHA512 22d8f33bbcea471b5d484085d748bd7c4073e5f3bc54546f6713f96700e976ec8f65d0409e3a442ff814772a36e9de6ae8e6db9a7be36a523988c804c4a97aca
|
||||
DIST asyncarve-0.1.1.tar.gz 4141 BLAKE2B b9dfe7019b06b3112d450f8a5470aa7a573fefe5a3755d98bc3cc149ac87d0a21e327e5bee3918456a4447cae88e9cc10cae613c015f344dcd73ce1bdde63565 SHA512 070e0a0266be4396b5d1d923fa2635842ff465fb022989e1ce7f86e6ac201230e4677ea7e84b83735b6745405df5056d3be2876390fd890f9c9ebe6178a7b235
|
||||
EBUILD asyncarve-0.0.9.ebuild 660 BLAKE2B 9076ee5b965f313009a279844d8ca56a841791feec6fa1f519b16817186c37fb10368023d797f2497de480758bf2ef45b55ecb3b52ed266ac02ffb62bfb7b021 SHA512 7d3c3760e1be201a7f93158164b989f359937ff4b2b4a19711ad0d63fecd8a1e7f12724a672f9183986c96e8de4f9dce4d705a839ef468bd08297b7a5fa68da8
|
||||
EBUILD asyncarve-0.1.1.ebuild 660 BLAKE2B 9076ee5b965f313009a279844d8ca56a841791feec6fa1f519b16817186c37fb10368023d797f2497de480758bf2ef45b55ecb3b52ed266ac02ffb62bfb7b021 SHA512 7d3c3760e1be201a7f93158164b989f359937ff4b2b4a19711ad0d63fecd8a1e7f12724a672f9183986c96e8de4f9dce4d705a839ef468bd08297b7a5fa68da8
|
||||
MISC metadata.xml 388 BLAKE2B 53205e6aea9b3beef8286feb231ac0cf27d1ed02edca12bf505d17c5ec65ed5f5547cea1c3799d3a833df8b6026208083dc7a5b843099a25af72db33a274a30b SHA512 c288e139dd032685c713cc12ba5c9e2dcb4f4c96a707977f4103b1cbd9c73b7854cc10dc7dd72889bb30047ccbbc361bab1e6605010e046051f26cc58fc49360
|
||||
|
@ -8,9 +8,9 @@ DISTUTILS_USE_PEP517=setuptools
|
||||
inherit distutils-r1 pypi
|
||||
|
||||
DESCRIPTION="Simple Arve library"
|
||||
HOMEPAGE="None"
|
||||
HOMEPAGE="https://github.com/arvetech/asyncarve https://pypi.org/project/asyncarve/"
|
||||
|
||||
LICENSE="None"
|
||||
LICENSE="MIT"
|
||||
SLOT="0"
|
||||
KEYWORDS="amd64 arm arm64 x86"
|
||||
IUSE="test"
|
||||
|
26
dev-python/asyncarve/asyncarve-0.1.1.ebuild
Normal file
26
dev-python/asyncarve/asyncarve-0.1.1.ebuild
Normal file
@ -0,0 +1,26 @@
|
||||
# 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="Simple Arve library"
|
||||
HOMEPAGE="https://github.com/arvetech/asyncarve https://pypi.org/project/asyncarve/"
|
||||
|
||||
LICENSE="MIT"
|
||||
SLOT="0"
|
||||
KEYWORDS="amd64 arm arm64 x86"
|
||||
IUSE="test"
|
||||
RESTRICT="!test? ( test )"
|
||||
|
||||
DOCS="README.md"
|
||||
|
||||
RDEPEND=">=dev-python/orjson-2.0.1[${PYTHON_USEDEP}]
|
||||
>=dev-python/mashumaro-3.12[${PYTHON_USEDEP}]
|
||||
>=dev-python/aiohttp-3.9.3[${PYTHON_USEDEP}]
|
||||
>=dev-python/yarl-1.9.4[${PYTHON_USEDEP}]"
|
||||
|
||||
distutils_enable_tests pytest
|
@ -7,5 +7,6 @@
|
||||
</maintainer>
|
||||
<upstream>
|
||||
<remote-id type="pypi">asyncarve</remote-id>
|
||||
<remote-id type="github">arvetech/asyncarve</remote-id>
|
||||
</upstream>
|
||||
</pkgmetadata>
|
||||
|
Loading…
x
Reference in New Issue
Block a user