dev-python/ibeacon-ble: add 1.0.1

Signed-off-by: Andreas Billmeier <b@edevau.net>
This commit is contained in:
2022-10-30 16:10:01 +01:00
committed by Andreas Billmeier
parent 253f0f52dd
commit 0bf40040a9
3 changed files with 41 additions and 2 deletions

View File

@@ -1,3 +1,5 @@
DIST ibeacon-ble-0.7.3.tar.gz 5893 BLAKE2B 81d770d6a4953981904e009860c1662da24ab97322a6248a8d1fe057fe6f938b23f67617bfa06c58e77bc2d9dd5cb648a424d94ec038ceb1921f67f2f5e9ccfa SHA512 f10010a01d1accd16af870ea79d16fccd1499e8a5c620713b829b55eb62432e2f8fefaed582dcb26f3be8f3ff46b918ab7aa536779ea5c6fd430fded22da0ab4
DIST ibeacon-ble-1.0.1.tar.gz 6585 BLAKE2B 52cd8018816b4c439f4caf43cd6b9501fc8ae2b444fbf9caf21f07b5473f93e529753e4e920b73d9e4b9d76191425a7db69b54f3ccc0e2d600a72c64bfb6282a SHA512 2605736a05b1a297e72605b16a9b89ccb46b02dcbc8a865118acd0e238bd1e68274ecc149e3aad0b027fc34e653c6bc66cb53fa88ba5e2e8d41737b312507150
EBUILD ibeacon-ble-0.7.3.ebuild 719 BLAKE2B 812a9e5e6e01583635360a7d97f20ff7246017ffea5b89531c23df94f498ef1343b0b8ce7626e081a97d63e2682162ee2440cdf4e599b729b0677b32b68f427a SHA512 a8c463629312d5cf1bc8460bc3fc58fe5ac5a4637589b95db51c769e064d0c6a967f8396c0da7850b88888bc13f11858f11e24306f9c9b49de48d19b91df0cce
EBUILD ibeacon-ble-1.0.1.ebuild 877 BLAKE2B c00f04873a5345fb0b7fc5860d62c24504b6e74a91e72ee94fb8e117b146bace9a4759408cd5598c6d7c15d31ebac141494bf3c9d50e8cbef9867bd5e633dbb1 SHA512 467bdb2259fa54ca8b7f96e92b5159c3a8033647c0b83a0f1337a0c07d68de25408add7a32e6c01913b3bc15e2f9ac4354a717d5c061d4d8896c7e489ad12984
MISC metadata.xml 453 BLAKE2B 594e365c314396b0f2e1c23f14cda1f01e2453da4d75f34076d28a5405842a2354f1ff4871899904af24042097f266aefe6e547c2dac59fc969bef61c7a76c4a SHA512 5b9ab5bacaa043e6f48ce1b1792b8fc556466dc1c5fa0268f108fe8defc672d8a1fa6e46c5fd50095549cacde81025eb0ce7728b72ded0467bb00e0d4abd59fb

View File

@@ -0,0 +1,37 @@
# 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="Parser for iBeacon devices"
HOMEPAGE="https://github.com/bluetooth-devices/ibeacon-ble https://pypi.org/project/ibeacon-ble/"
MY_PN=${PN/-/_}
SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${MY_PN}-${PV}.tar.gz -> ${P}.tar.gz"
S="${WORKDIR}/${MY_PN}-${PV}"
LICENSE="MIT"
SLOT="0"
KEYWORDS="amd64 arm arm64 x86"
IUSE="test"
RESTRICT="!test? ( test )"
DOCS="README.md"
RDEPEND=">=dev-python/home-assistant-bluetooth-1.3.0[${PYTHON_USEDEP}]
dev-python/aiohttp[${PYTHON_USEDEP}]
dev-python/mac-vendor-lookup[${PYTHON_USEDEP}]"
BDEPEND="
dev-python/setuptools[${PYTHON_USEDEP}]
test? (
dev-python/pytest[${PYTHON_USEDEP}]
)"
python_test() {
py.test -v -v || die
}
distutils_enable_tests pytest