From 8732771cbe8fd9af6a0520c5df31bf1a1f529885 Mon Sep 17 00:00:00 2001 From: "Andreas Billmeier (@Home/mbp)" Date: Sat, 3 Sep 2022 08:45:28 +0200 Subject: [PATCH] update bluetooth-adapters-0.3.4 --- README.md | 4 +- dev-python/bluetooth-adapters/Manifest | 2 + .../bluetooth-adapters-0.3.4.ebuild | 38 +++++++++++++++++++ 3 files changed, 42 insertions(+), 2 deletions(-) create mode 100644 dev-python/bluetooth-adapters/bluetooth-adapters-0.3.4.ebuild diff --git a/README.md b/README.md index b5009a4df..a6cc7e777 100644 --- a/README.md +++ b/README.md @@ -523,12 +523,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 1856 Ebuilds in total, 1849 of them have in total 1861 (35 different) licenses assigned. +There are 1857 Ebuilds in total, 1850 of them have in total 1862 (35 different) licenses assigned. |License| Ebuilds using it| |-------|-----| |MIT|1124| -|Apache-2.0|341| +|Apache-2.0|342| |GPL-3|112| |BSD|106| |LGPL-3|29| diff --git a/dev-python/bluetooth-adapters/Manifest b/dev-python/bluetooth-adapters/Manifest index 29aff3d6f..c1a2d1b08 100644 --- a/dev-python/bluetooth-adapters/Manifest +++ b/dev-python/bluetooth-adapters/Manifest @@ -1,3 +1,5 @@ DIST bluetooth-adapters-0.1.3.tar.gz 8719 BLAKE2B 8243fb2b101e4b20662fc33598f7d5df6d5738bf52a840cf17ca935874addc0e7a6a02168796c3214620eaedb7dcca91615fd66dc9aebf31a3e61a4119e7f92d SHA512 60428ff5b639ab505979bce6d759c394216d605d540e594ecaf1bbca822f2d13b4003f41f6170cd9f0bd193c77251987300a24ed1f37d7276607cec8f4c94669 +DIST bluetooth-adapters-0.3.4.tar.gz 9397 BLAKE2B eba7b65176caef810384cea5b708d2fd2ab6bd87480fdeea220d3bfd4d7bf0f663c9bb6db36dc3e74c9a0f44da2f4fa11855c6f3dfa0ba1104f9a743c101207f SHA512 cf7ae423e2da24ca0c65155713cf3267e656759cd5a381a673587e81d9ad8f260ff3e43a5aa6273dbefa3d297fabdf2583f12cf761b90c0ed26b994fcf36c4cd EBUILD bluetooth-adapters-0.1.3.ebuild 851 BLAKE2B 1d588cbf5bc8a787648e143b1a2dbba5f99fa29b194c2deb8d925c48eae371bca08409ee48fa8d96cd5f8f3cc0dca8d40c3c9be960951601c4196a1b3862953b SHA512 bb49a854065217378c8a2b8fc9151d666b649a5ca936b87bc17f89f561b73a1663651085de2601985e5a1d2a2003e28a623926590aed98c1a433febb172c92e7 +EBUILD bluetooth-adapters-0.3.4.ebuild 949 BLAKE2B 97603f00e8a64ac9a871aff7b9882f3596e456c16bb531721dfc80db973b1a13289010ed8c11bc1217e030e8bb171a086fee43cb191a6aa5b5cf08f449802e0a SHA512 589019178de4055e6f509057cfbad071bfd8dbeeff4f3af29bdeefdedcddba46ad8ca1ed57ce5d8c8d148e4503d73e300c2f25e4790c9248ee76118a06bb3706 MISC metadata.xml 460 BLAKE2B 30a90670a9de8bbb401b306bee83dfb8a1b41e46871547230d7b305cb8bfcf2827c6a1e5203cf7e4fc77ebb59dc18134e8b7bc8d1f9ecbde2bce0ae370a623bd SHA512 4dd87508f9462dd85062f8a1cbbbb11104fd6dead151c4d94f224d7a9c696a2657e1d65e048073aff07faa473a15cf84d65ad261433896642a1bbe218cfa34c3 diff --git a/dev-python/bluetooth-adapters/bluetooth-adapters-0.3.4.ebuild b/dev-python/bluetooth-adapters/bluetooth-adapters-0.3.4.ebuild new file mode 100644 index 000000000..925381427 --- /dev/null +++ b/dev-python/bluetooth-adapters/bluetooth-adapters-0.3.4.ebuild @@ -0,0 +1,38 @@ +# Copyright 1999-2022 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=8 + +PYTHON_COMPAT=( python3_{8..11} ) + +inherit distutils-r1 + +DESCRIPTION="Tools to enumerate and find Bluetooth Adapters" +HOMEPAGE="https://github.com/bluetooth-devices/bluetooth-adapters https://pypi.org/project/bluetooth-adapters/" +SRC_URI="mirror://pypi/${P:0:1}/${PN}/${P}.tar.gz" + +LICENSE="Apache-2.0" +SLOT="0" +KEYWORDS="amd64 arm arm64 x86" +IUSE="test" +RESTRICT="!test? ( test )" + +DOCS="README.md" + +RDEPEND=">=dev-python/async-timeout-4.0.1[${PYTHON_USEDEP}] + >=dev-python/dbus-next-0.2.3[${PYTHON_USEDEP}]" +BDEPEND=" + dev-python/setuptools[${PYTHON_USEDEP}] + test? ( + dev-python/nose[${PYTHON_USEDEP}] + dev-python/pytest[${PYTHON_USEDEP}] + dev-python/pytest-asyncio[${PYTHON_USEDEP}] + dev-python/pytest-cov[${PYTHON_USEDEP}] + )" + +python_test() { + nosetests --verbose || die + py.test -v -v || die +} + +distutils_enable_tests pytest