add adafruit-circuitpython-bmp280-3.1.1

This commit is contained in:
Andreas Billmeier 2020-09-14 22:09:46 +02:00 committed by Andreas Billmeier
parent d5c6d48edf
commit 166db38ef9
Signed by: onkelbeh
GPG Key ID: E6DB12C8C550F3C0
3 changed files with 34 additions and 0 deletions

View File

@ -42,6 +42,7 @@ To remove the (conflicting) wrong one, do a:
- downgrade pyzbar-0.1.7 from main repo
- add adafruit-circuitpython-bmp280
- add adafruit-circuitpython-busdevice-5.0.1
- add adafruit-circuitpython-bmp280-3.1.1
2020-09-13
* bump youtube_dl-2020.9.6

View File

@ -1,3 +1,5 @@
DIST adafruit-circuitpython-bmp280-3.1.1.tar.gz 21228 BLAKE2B 6e9c52d3c9a126a09c4830b4019f1bdc3bfe91bb734d0b807aaad3f7520a1bd9f96f47041db84782d8e406bfdc534df31338dd2f33bb64d9ea26738eac318dcd SHA512 dc2cd20650c18e75cc9765165dba798aff52229c5bcc149e1a1da24ecd4127b8fcfb1357c8589ab3d1d460da988b7de35f3f05694268c9b70b2b3c0e26359a7f
DIST adafruit-circuitpython-bmp280-3.2.3.tar.gz 22809 BLAKE2B 995291c9a6cf99a5a71ac7acf223d2f0a786fe15a94ec1f5c503924db36e7dbd7c865c47bb519970f7beb878426ae9eb1dc0d398f582f0bd9c25b8476f72c03f SHA512 dfbd1e889bcb1f1c201c6735c43e7dd850bbb4aa95fdee3e46cfc289c01341a9294b478286568eedfa5f0559c181448dd8f2b2218005a3e53d46a917fcf34b40
EBUILD adafruit-circuitpython-bmp280-3.1.1.ebuild 825 BLAKE2B bc274b09ee16d7d243a65ff0af87a6a140a201121e3f82c771d9de82f708456802cc83fdb87e51bb4dc1469cb354ac8bc88c1ab7da5fd7bc5d100792f1b72380 SHA512 3d2d699f9ecab00f68d75d129f7ffe1e4454679cbc087f50fb4fcb85d3ac25f612a9274bb35758b746d905922c9ab74bc7e8da22f4e889ecf592bc29e3b79eb6
EBUILD adafruit-circuitpython-bmp280-3.2.3.ebuild 825 BLAKE2B bc274b09ee16d7d243a65ff0af87a6a140a201121e3f82c771d9de82f708456802cc83fdb87e51bb4dc1469cb354ac8bc88c1ab7da5fd7bc5d100792f1b72380 SHA512 3d2d699f9ecab00f68d75d129f7ffe1e4454679cbc087f50fb4fcb85d3ac25f612a9274bb35758b746d905922c9ab74bc7e8da22f4e889ecf592bc29e3b79eb6
MISC metadata.xml 487 BLAKE2B 10278c84c01fab6bf76fccc7368b0e977a103f6408386cd8fa89d462f61c3ee851a45060a0e09770cb700d576f73d3b1029144fcf87fad3c7fc367245674e4bf SHA512 8a4610a1d6dbc8c289190980dcea5f79157dc73c09c53a9f734ed170c0746237aaa51c33bc749017b414b1b3a332ecebf8de51a89a70c856f303883c240fae9c

View File

@ -0,0 +1,31 @@
# Copyright 1999-2020 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI="7"
PYTHON_COMPAT=( python3_{6..8} )
inherit distutils-r1
DESCRIPTION="CircuitPython driver for the BMP280."
HOMEPAGE="https://github.com/adafruit/Adafruit_CircuitPython_BMP280 https://pypi.org/project/adafruit-circuitpython-bmp280/"
SRC_URI="mirror://pypi/${P:0:1}/${PN}/${P}.tar.gz"
LICENSE="MIT"
SLOT="0"
KEYWORDS="~amd64 ~arm64 ~x86 ~amd64-linux ~x86-linux"
IUSE="test"
RDEPEND="dev-python/Adafruit-Blinka[${PYTHON_USEDEP}]
dev-python/adafruit-circuitpython-busdevice[${PYTHON_USEDEP}]"
BDEPEND="${REDEPEND}
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
}