add pysnmp-pyasn1-modules-0.2.9

This commit is contained in:
2022-05-01 09:26:50 +02:00
committed by onkelbeh
parent 565a475b41
commit d2374833b3
4 changed files with 53 additions and 2 deletions
+2 -2
View File
@@ -506,14 +506,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 1714 Ebuilds in total, 1707 of them have in total 1711 (35 different) licenses assigned.
There are 1715 Ebuilds in total, 1708 of them have in total 1712 (35 different) licenses assigned.
|License| Ebuilds using it|
|-------|-----|
|MIT|1044|
|Apache-2.0|308|
|GPL-3|106|
|BSD|90|
|BSD|91|
|LGPL-3|28|
|GPL-2|22|
|LGPL-3+|16|
@@ -0,0 +1,3 @@
DIST pysnmp-pyasn1-modules-0.2.9.tar.gz 298087 BLAKE2B 0d2936d700e38d625834cfe4d2abbcc71aca5285808e6265bae84c7b6dac6b1148aa402266e0befec92a6c55c26ce615183e66276c671e525b959511b37ab842 SHA512 b65ee7f131252e63e002475201f9701ef21596e9bc372f2d8ddb3d82dd69033d1ddeda8f8363a373fbc3685d96e54027e1d10d5bb7806b7e59aabcfe144ff0f8
EBUILD pysnmp-pyasn1-modules-0.2.9.ebuild 792 BLAKE2B a25123704d13c9507d0cf7fb9ce2890190b789e9a728de176031e7b9061b24b4459871b04ccbe2e551faa0a7c331e3087cc5451c3ddebea17d203722a70419e9 SHA512 38e9e1fa19f9021fb395daa3d38252f81c9a91d456a0494a44459350502856aeb88fd792956186c05fc0cad501d2b23051e2201b969b728e364fada49c578bfc
MISC metadata.xml 472 BLAKE2B 2ac44bb8eb0dd33478c5b0765b1793b724b3a75435e87f79a160031e7db6cc39c6a9fe4e7c9031e6350ac25c7faf163292a4d2c6d25939687a096c7744e216cd SHA512 859865808e2322c29de3785f1725c07fc41b41935ee8be32fb0f1904b9101b2e40e62473f0c88c342d798c6673fd7046eb2e7969f84082a992cb49cb47bd572c
@@ -0,0 +1,15 @@
<?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">pysnmp-pyasn1-modules</remote-id>
<maintainer status="unknown">
<email>rfaircloth@splunk.com</email>
<name>rfaircloth-splunk</name>
</maintainer>
</upstream>
</pkgmetadata>
@@ -0,0 +1,33 @@
# Copyright 1999-2022 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=8
PYTHON_COMPAT=( python3_{8..10} )
inherit distutils-r1
DESCRIPTION="A collection of ASN.1-based protocols modules."
HOMEPAGE="https://github.com/pysnmp/pyasn1-modules https://pypi.org/project/pysnmp-pyasn1-modules/"
SRC_URI="mirror://pypi/${P:0:1}/${PN}/${P}.tar.gz"
LICENSE="BSD"
SLOT="0"
KEYWORDS="~amd64 ~arm ~arm64 ~x86 ~amd64-linux ~x86-linux"
IUSE="test"
RESTRICT="!test? ( test )"
DOCS="README.md"
RDEPEND=">=dev-python/pysnmp-pyasn1-0.4.11[${PYTHON_USEDEP}]"
BDEPEND="
dev-python/setuptools[${PYTHON_USEDEP}]
test? (
dev-python/nose[${PYTHON_USEDEP}]
dev-python/pytest[${PYTHON_USEDEP}]
)"
python_test() {
nosetests --verbose || die
py.test -v -v || die
}