dev-python/attrs: add 24.2.0
Closes: #4140 Signed-off-by: Andreas Billmeier <b@edevau.net>
This commit is contained in:
parent
4f7d79feb3
commit
02211b2923
@ -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 2351 Ebuilds in total, 2337 of them have in total 2377 (43 different) licenses assigned.
|
||||
There are 2352 Ebuilds in total, 2338 of them have in total 2378 (43 different) licenses assigned.
|
||||
|
||||
|License| Ebuilds using it|
|
||||
|-------|-----|
|
||||
|MIT|1335|
|
||||
|MIT|1336|
|
||||
|Apache-2.0|555|
|
||||
|GPL-3|145|
|
||||
|BSD|124|
|
||||
|
@ -1,5 +1,7 @@
|
||||
AUX attrs-23.2.0-py313.patch 2882 BLAKE2B 81a30df9d7a438570256967df413347dafa3bee4611eef2d1e5d37c4d2a9c100b8464440ffe1dfe0d204f0e201e427201b6011da89283d63acfb554a2b309443 SHA512 e7da6587b59c9e213bf3f58324694780db4e583c129f42b6b4b2b475b4020ba5620aec96da2928ddb8054c225f49e0b1f46f996af2a6e0d78b4a47e4669945b2
|
||||
AUX attrs-23.2.0-pytest-8.patch 1459 BLAKE2B 3388ed0e6022b1df0634031155c93abec6cf67a46a912c6a8415356337deeae1264566b65858e88b901d1cca55a7fa4a38c6ad7ad099596396d8936337fd2c62 SHA512 10bbd4a8863fcda3be30e99137283d5112189900403018f5780511d0995bf120132bd248fdc42436912be28b09a69bda9974c97b3859c281167442cc38f32705
|
||||
DIST attrs-23.2.0.tar.gz 780820 BLAKE2B a06f4f17a81fc173c37661bcf518367a1cdc9a333d2783bd2cd1ac5f0a72bd20ec1afdd964e10255624bcfa027e3a152375cd21472c177428d29bd06b29984a1 SHA512 d8b178072a028b95d8424cd3ce0c8b4e6da8558fbcbcaaef91fbd03cf51e6190aa248aa0bff853e6f7c9595bbd5a8eef9d6f68ae2830cc1cc6d826ab0dda2378
|
||||
DIST attrs-24.2.0.tar.gz 792678 BLAKE2B f5110f5bf4b848a929a3766985fc49ee8da346398c26d0f786a12d89e7596ec7165bdefaae4b2716003c4b3ad7fcc619ec2f5e0d184df899318a7bb02c9919a4 SHA512 fcd14ff79a09a0b2b56734c460b5c43836999b6ed27665038ff7a146f53891b31ab3da07df05f1686474507f342bfce09bc0a6a60865c241e58f7ce8423dc968
|
||||
EBUILD attrs-23.2.0.ebuild 928 BLAKE2B a5228ff6062b2e258e13b8c0fdbfe7d716e946252dd1aeea8638bee240374373da11a8040f008178993293085b0e24721971a6196416990f03cdabfc8edc642b SHA512 c3ce1d47b0240a1f06926195f4791837e7d06e3faafc9f22b63a71e57939f93230444d4301d0c0e5e5bf033b8fa5af09a97cf1e77a7ae3c81e52644f3fec0d08
|
||||
EBUILD attrs-24.2.0.ebuild 746 BLAKE2B d819b98b539b92075f35c62998a72ea8afb17b37b8cbd56a5060cf99addea2b4d663b51efd4edb7ea98e5c886de8737730f2726a7484d41b45181cf4474eab5e SHA512 0df609bf2131e16f4a9b7214b637aff8c4663980153a425ea2f14b2e219e71dcf931b868bd55603805db8b7ba49c16fbce215c48a87c55460ccd084bd97b90a2
|
||||
MISC metadata.xml 501 BLAKE2B 0c8c3d121da5f73089f336b14f4ca62254238bdc9b66d17593d0ff63333f9df233439525f5c7dcb19d5814134887d7e2b81709ab8d2300f55252cd7ebc75dea5 SHA512 c1e730e838b686eaa80878cea470ddc710349619ccf2f47107124508e79a86f6871ab11b51180f5f990fcbf90e0f0b3f93522f28d306be2cadf17db4e08c5d74
|
||||
|
33
dev-python/attrs/attrs-24.2.0.ebuild
Normal file
33
dev-python/attrs/attrs-24.2.0.ebuild
Normal file
@ -0,0 +1,33 @@
|
||||
# Copyright 1999-2024 Gentoo Authors
|
||||
# Distributed under the terms of the GNU General Public License v2
|
||||
|
||||
EAPI=8
|
||||
|
||||
DISTUTILS_USE_PEP517=hatchling
|
||||
PYTHON_COMPAT=( python3_{11..13} )
|
||||
|
||||
inherit distutils-r1 pypi
|
||||
|
||||
DESCRIPTION="Attributes without boilerplate"
|
||||
HOMEPAGE="
|
||||
https://github.com/python-attrs/attrs/
|
||||
https://attrs.readthedocs.io/
|
||||
https://pypi.org/project/attrs/
|
||||
"
|
||||
|
||||
LICENSE="MIT"
|
||||
SLOT="0"
|
||||
KEYWORDS="amd64 arm arm64 x86"
|
||||
|
||||
BDEPEND="
|
||||
>=dev-python/hatch-fancy-pypi-readme-23.2.0[${PYTHON_USEDEP}]
|
||||
dev-python/hatch-vcs[${PYTHON_USEDEP}]
|
||||
test? (
|
||||
$(python_gen_impl_dep sqlite)
|
||||
dev-python/cloudpickle[${PYTHON_USEDEP}]
|
||||
dev-python/hypothesis[${PYTHON_USEDEP}]
|
||||
dev-python/zope-interface[${PYTHON_USEDEP}]
|
||||
)
|
||||
"
|
||||
|
||||
distutils_enable_tests pytest
|
Loading…
x
Reference in New Issue
Block a user