dev-python/pynacl: remove olds

This commit is contained in:
Andreas Billmeier 2022-10-15 07:04:03 +02:00 committed by Andreas Billmeier
parent 369a46950d
commit 1c418c48aa
Signed by: onkelbeh
GPG Key ID: E6DB12C8C550F3C0
4 changed files with 2 additions and 55 deletions

View File

@ -538,12 +538,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 1938 Ebuilds in total, 1931 of them have in total 1943 (35 different) licenses assigned.
There are 1937 Ebuilds in total, 1930 of them have in total 1942 (35 different) licenses assigned.
|License| Ebuilds using it|
|-------|-----|
|MIT|1169|
|Apache-2.0|365|
|Apache-2.0|364|
|GPL-3|122|
|BSD|106|
|LGPL-3|30|

View File

@ -1,3 +0,0 @@
DIST pynacl-1.4.0.tar.gz 46396758 BLAKE2B 9575bca05ecaf33e798f2abfee7a1af26bbb10b5dbd4e7ca70af8032866e26b88736c2a2ff52e4496e4862f92042fb125df7cd1f1427b16a2313926162466343 SHA512 2a11a623452cea60199cdff83db6f5922698237267c11f055f2fd7768e0875a819dcc08c477113ad89461797ab36d66e0b9c7700eee335eb6b16af6b378b9e88
EBUILD pynacl-1.4.0.ebuild 965 BLAKE2B 10ac5a2ec11518295e37240400ef2273a2b329ac69f9f96c86828506a45f3bb2554d6ee74f0ac29bfd26630ee8a6c47945a5834a48dcd4e7cea3ddfaa30632bb SHA512 b50859709068d1280f2a9a47512564ce98e62fa14e53bf798bfb99d27e01a0ea159d9a64cf3c6208a26c8d47f198649b9e4f1d592584323836a94c3fd9bc0412
MISC metadata.xml 467 BLAKE2B e0b375b044da2e25fedcdd3c9df7b25f558c7e59bc69a626cad3de80c0bb76cd7b77f7a10e80d10f240beb6dad51242cccbf7f25405ee0adb267e19e5c670b69 SHA512 b331f531e41df42afb7916b4b4a785dda1c6f53ac3b99933b9b7ad32823fd1bb08deb5c454d68126b015a9f5b143f41fb85ed97db94e4214f9fbe0d218167c5c

View File

@ -1,15 +0,0 @@
<?xml version='1.0' encoding='UTF-8'?>
<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
<pkgmetadata>
<maintainer type="project">
<email>b@edevau.net</email>
<name>Andreas Billmeier</name>
</maintainer>
<upstream>
<remote-id type="pypi">PyNaCl</remote-id>
<maintainer status="unknown">
<email>cryptography-dev@python.org</email>
<name>The PyNaCl developers</name>
</maintainer>
</upstream>
</pkgmetadata>

View File

@ -1,35 +0,0 @@
# Copyright 1999-2021 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=7
PYTHON_COMPAT=( python3_{8..10} )
inherit distutils-r1
DESCRIPTION="Python binding to the Networking and Cryptography (NaCl) library"
HOMEPAGE="https://github.com/pyca/pynacl/ https://pypi.org/project/PyNaCl/"
SRC_URI="https://github.com/pyca/${PN}/archive/${PV}.tar.gz -> ${P}.tar.gz"
LICENSE="Apache-2.0"
SLOT="0"
KEYWORDS="~alpha amd64 arm arm64 ~hppa ~ia64 ppc ppc64 ~riscv ~s390 sparc x86 ~amd64-linux ~x86-linux"
RDEPEND="
dev-python/six[${PYTHON_USEDEP}]
>=dev-python/cffi-1.4.1[${PYTHON_USEDEP}]
dev-libs/libsodium:0/23
"
DEPEND="${RDEPEND}
dev-python/setuptools[${PYTHON_USEDEP}]
test? ( >=dev-python/hypothesis-3.27.0[${PYTHON_USEDEP}] )
"
distutils_enable_tests pytest
src_prepare() {
# For not using the bundled libsodium
export SODIUM_INSTALL=system
sed -i -e 's:"wheel"::' setup.py || die
distutils-r1_python_prepare_all
}