From d863137d9d7104bbccecc223dac3880478b1056f Mon Sep 17 00:00:00 2001 From: "Andreas Billmeier (@Home/mbp)" Date: Thu, 26 May 2022 16:14:47 +0200 Subject: [PATCH] bump unifi-discovery-1.1.3 --- README.md | 4 +-- dev-python/unifi-discovery/Manifest | 2 ++ .../unifi-discovery-1.1.3.ebuild | 36 +++++++++++++++++++ 3 files changed, 40 insertions(+), 2 deletions(-) create mode 100644 dev-python/unifi-discovery/unifi-discovery-1.1.3.ebuild diff --git a/README.md b/README.md index 53515c221..fbfebfa1a 100644 --- a/README.md +++ b/README.md @@ -524,12 +524,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 1739 Ebuilds in total, 1732 of them have in total 1739 (35 different) licenses assigned. +There are 1740 Ebuilds in total, 1733 of them have in total 1740 (35 different) licenses assigned. |License| Ebuilds using it| |-------|-----| |MIT|1065| -|Apache-2.0|306| +|Apache-2.0|307| |GPL-3|109| |BSD|96| |LGPL-3|28| diff --git a/dev-python/unifi-discovery/Manifest b/dev-python/unifi-discovery/Manifest index 593709e6e..a2d5aaea0 100644 --- a/dev-python/unifi-discovery/Manifest +++ b/dev-python/unifi-discovery/Manifest @@ -1,3 +1,5 @@ DIST unifi-discovery-1.1.2.tar.gz 13265 BLAKE2B 4e4041e549eb1b60775727808f6b7f0d88cfe1e56fea0058386dce168a050b6aae7bf6b0c0b4803a5f40c58245c6eff13fb1965ed5e7568f90b1a126f90fda93 SHA512 d0a74a81cca5e1f5e20ed91e26d4200dbccf9827797c5ed1497fea36bb0886909c28b8077566fc537cde2985c3b261fc10d52f8743ed1f5bb9a5c8dc28748aaa +DIST unifi-discovery-1.1.3.tar.gz 13338 BLAKE2B f2202dd430f70a3d8a64eee9a42e4cdb0ac25d94ee3488d8695ffe46a825f795cae1146dbcc82c8bc78ba420df7278249cf659fb95ebfcab4394b026596a924f SHA512 29d7604be1625fc4dc1288119fa55568104d2b2ee185e05ee8462e4df2ba425866cbaa0d383cc0f552ad3abc9b94c6e9e5a2fa8cce7ab91b63096c896d54af31 EBUILD unifi-discovery-1.1.2.ebuild 810 BLAKE2B b26baae18f1d99a4672f56a5e4a22e34ec16eb4368e2273c43634ee5f6b6247b7b32599299d43c79c8ca509ad1da127bef91b5b8f3d1b02eac1bfb0df02988a0 SHA512 f3b7272ec99ab1d8c81e747afc711212a9738298305c1eb88ba76d50d78f02765c12b2c836aa147f0cc70c16ee7fd1c7a5ef2a9112527b22382cd3a598783cda +EBUILD unifi-discovery-1.1.3.ebuild 837 BLAKE2B c09385382aa51602ebd87e319f40fe45da4f81b72658b6b5c1ddccf6484c687b2971f98d9e132b81cb1d4724c63658975750d7f60bb2eab51886b9b818c9c0c1 SHA512 b886858498a8c645bd70e9636bb4e9a45ca39f01131a6cd0219345f9290448c3966bc7d24906fb0d9b399682a9e32920611d92c19541f1b46e41c95342c7efe7 MISC metadata.xml 457 BLAKE2B 3a59c8e7c0014b79b2ef68f21345c573689884448a7e5230fc700583372c9e45e9395bfdf11bc866dcb5328e1a4aa5c8a364d51d73a7bde16539dc31756e164e SHA512 d666fee248497dd959c4d17a8787b82a883ebd2e0649507cad10be76eb933187f534168fef8e69fda14739e26485bbf36c16107aa48c8b1620d3061801d62803 diff --git a/dev-python/unifi-discovery/unifi-discovery-1.1.3.ebuild b/dev-python/unifi-discovery/unifi-discovery-1.1.3.ebuild new file mode 100644 index 000000000..ddd11efbd --- /dev/null +++ b/dev-python/unifi-discovery/unifi-discovery-1.1.3.ebuild @@ -0,0 +1,36 @@ +# 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="Discover Unifi Devices" +HOMEPAGE="https://github.com/bdraco/unifi-discovery https://pypi.org/project/unifi-discovery/" +SRC_URI="mirror://pypi/${P:0:1}/${PN}/${P}.tar.gz" + +LICENSE="Apache-2.0" +SLOT="0" +KEYWORDS="amd64 arm arm64 x86 ~amd64-linux ~x86-linux" +IUSE="test" +RESTRICT="!test? ( test )" + +DOCS="README.md" + +RDEPEND=">=dev-python/aiohttp-3.8.1[${PYTHON_USEDEP}] + >=dev-python/pyroute2-0.6.5[${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 +} + +distutils_enable_tests pytest