dev-python/chacha20poly1305-reuseable: add 0.13.2

Signed-off-by: Andreas Billmeier <b@edevau.net>
This commit is contained in:
Andreas Billmeier 2024-09-21 11:48:11 +02:00
parent 557a43ca97
commit 683562db3c
Signed by: onkelbeh
GPG Key ID: E6DB12C8C550F3C0
4 changed files with 26 additions and 5 deletions

View File

@ -606,12 +606,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 1964 Ebuilds in total, 1953 of them have in total 1977 (42 different) licenses assigned.
There are 1966 Ebuilds in total, 1955 of them have in total 1979 (42 different) licenses assigned.
|License| Ebuilds using it|
|-------|-----|
|MIT|1133|
|Apache-2.0|437|
|MIT|1134|
|Apache-2.0|438|
|GPL-3|114|
|BSD|113|
|LGPL-3|25|

View File

@ -1,3 +1,5 @@
DIST chacha20poly1305_reuseable-0.12.1.tar.gz 11579 BLAKE2B b364c5878c59d010d3b04b3a27fbee9e5fc2aebc046cf57068feb292bd8c3c5a8750c18dc793c3d2d7569ded5af5107f14d4623ac7e0c6f8f880fa0ea3dc4edb SHA512 a3578c2aeb8fca4ef85a931ab568be048d46ac43faaba73ea104c7e4019fac822298571f0b08caf1871978cdbd149a76ce1948325d95e626aee766850cfa070d
EBUILD chacha20poly1305-reuseable-0.12.1.ebuild 560 BLAKE2B 80c1cd99c9301adacd1c8e7b5193922a9460ba0f356743d2a60f1f2748c575ea760fbbe8ec478bad5f61c10dd64926e8099e65804792a99cd4ae0af9f71edd57 SHA512 fe16917f07ca90fe1013a6fb9c5b9ba40ad4504002a8e295dca83134045fa1fcef93793eea926a042b2fffe94665ea56222cb57bb93cb322672cdb1a2ad75710
DIST chacha20poly1305_reuseable-0.13.2.tar.gz 8892 BLAKE2B 58a2778af70a9a869cc9d4a6bcb03ab23cf298b05cb0e5e3e45da93aba0ee1d770b90381b415dca26a83be19a59fa584291b0f51acd3d70738b89fcc30b20cca SHA512 8ab6cca93b7da9db2f198d8dab1a5686380001629b5bd02a0e4c95be6565384c2405f64c47010632e81cee98150c5cdac9764b7863facdff1424ec95b6afa823
EBUILD chacha20poly1305-reuseable-0.12.1.ebuild 560 BLAKE2B 98a4021faf0b0a88b47baab9cb3fdc3f510dbe75589533ae13cacafc52f88c5605fd0ee9b9f9803720c2eef0ba2a48a2024ebebacadb1a657d334efeaa51c28b SHA512 cec832dd0d81768a1a3a7bd29e3c2f928bdc15f0f1c6554b1083e10c18da5c80ff9f1606365596ef51c923f2757442a9d343896e6c63ff52cec7582b8513a6f2
EBUILD chacha20poly1305-reuseable-0.13.2.ebuild 560 BLAKE2B 0bbb8b521415b67443c20fb82b4ea4f9dbd6345faf82d830ef4f695bf89ce6210e8014b18b7e93ebec18b0971d7aa1ba8361091e4faa23c61bc17a9e7f676803 SHA512 2936b8ca70a347af1ee2be971f89698749475644679e4a69b4e218e8feaacdef2d6e5c18b2148876fa4abdc2dfac7724d9b32f50526905afc628c171d6d47c20
MISC metadata.xml 543 BLAKE2B 805f0a78afc6090596bb853d3a4352fb7f1c1a30472718540fcfce9756096befd3b86b0d6cfef4c15132917e009c199b03a864f9205a65bc6e40ccb5d3af291d SHA512 fa7d9f07655c5e489154e211a20eb1a81d206cf20bbd7f2c7445c8b29ec70f55eff3d83c82a6e33a65b6dc91d5e6755d4d70479ec77359ba2cb170d92c63c13d

View File

@ -3,7 +3,7 @@
EAPI=8
PYTHON_COMPAT=( python3_{11..12} )
PYTHON_COMPAT=( python3_{11..13} )
DISTUTILS_USE_PEP517=poetry
inherit distutils-r1 pypi
DESCRIPTION="ChaCha20Poly1305 that is reuseable for asyncio"

View File

@ -0,0 +1,19 @@
# 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=poetry
inherit distutils-r1 pypi
DESCRIPTION="ChaCha20Poly1305 that is reuseable for asyncio"
HOMEPAGE="https://github.com/bdraco/chacha20poly1305-reuseable https://pypi.org/project/chacha20poly1305-reuseable/"
LICENSE="Apache-2.0"
SLOT="0"
KEYWORDS="amd64 arm arm64 x86"
IUSE="test"
RESTRICT="!test? ( test )"
DOCS="README.md"
RDEPEND=">=dev-python/cryptography-43.0.0[${PYTHON_USEDEP}]"