dev-python/uamqp: new package, add 1.6.0

Signed-off-by: Andreas Billmeier <b@edevau.net>
This commit is contained in:
Andreas Billmeier 2023-03-04 10:44:33 +01:00 committed by Andreas Billmeier
parent d6605a6352
commit 838cf6164e
Signed by: onkelbeh
GPG Key ID: E6DB12C8C550F3C0
4 changed files with 53 additions and 2 deletions

View File

@ -573,11 +573,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 1799 Ebuilds in total, 1788 of them have in total 1793 (34 different) licenses assigned.
There are 1800 Ebuilds in total, 1789 of them have in total 1794 (34 different) licenses assigned.
|License| Ebuilds using it|
|-------|-----|
|MIT|1048|
|MIT|1049|
|Apache-2.0|391|
|GPL-3|112|
|BSD|94|

View File

@ -0,0 +1,3 @@
DIST uamqp-1.6.0.tar.gz 4414731 BLAKE2B 47f789aaa5d3d737ea25e31700d03cd97bc8146eb0ce1face5c5318c28e91e67f4948e80e69aae90e27eb610f9ef4fede9ed82187b92cdc5fd090b0c7c779ed5 SHA512 d5568a6a0f79ea89b4ce5d80b2423c85cbfc764f98d6e7cb370033918eaf361c953b4bbeaa676bdcfa7a85a63a8d23695841d08cd38aa3f307b8ff5a8daeb606
EBUILD uamqp-1.6.0.ebuild 676 BLAKE2B 53efaaaaa6d769a77da581c03d620790e1267ed84d5b99ee7bc094c46e2cfa1e0146757530a26c0a3bc94a143061e7bee4f463edec58a06c303a34d0cfe68bfa SHA512 d00ec38f848053d97eec350a0374a7158c2d02f37e579b3877200d023f065a5461891490a1549b56217d5e84b9bdfeafe395b5630d25976878ab79bd62ef88a9
MISC metadata.xml 530 BLAKE2B a245a22008c1e58d90c3739ffd02742ef4e9f2a4d156f1b243cdd9bc428331ba2a1121046b5e57c0b7586468bc0a72a802cdd2966acb349b7a1ad62200ec2321 SHA512 ac5f3b0411d39f0066c25cc05d05ee8a7b2461ccf9997ee9ef1d843cc74339861fe033f86b25abcb94689abdf41ec31633add175957ecfb35abcfe2d5983035b

View File

@ -0,0 +1,16 @@
<?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">uamqp</remote-id>
<remote-id type="github">Azure/azure-uamqp-python</remote-id>
<maintainer status="unknown">
<email>azpysdkhelp@microsoft.com</email>
<name>Microsoft Corporation</name>
</maintainer>
</upstream>
</pkgmetadata>

View File

@ -0,0 +1,32 @@
# Copyright 1999-2023 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=8
PYTHON_COMPAT=( python3_{9..11} )
DISTUTILS_USE_PEP517=setuptools
inherit distutils-r1
DESCRIPTION="AMQP 1.0 Client Library for Python"
HOMEPAGE="https://github.com/Azure/azure-uamqp-python https://pypi.org/project/uamqp/"
SRC_URI="mirror://pypi/${P:0:1}/${PN}/${P}.tar.gz"
LICENSE="MIT"
SLOT="0"
KEYWORDS="amd64 arm arm64 x86"
IUSE="test"
RESTRICT="!test? ( test )"
DOCS="README.rst"
BDEPEND="
dev-python/setuptools[${PYTHON_USEDEP}]
test? (
dev-python/pytest[${PYTHON_USEDEP}]
)"
python_test() {
py.test -v -v || die
}
distutils_enable_tests pytest