add smhi-pkg-1.0.10

This commit is contained in:
Andreas Billmeier 2019-11-24 17:17:29 +01:00
parent d5105c3e18
commit bb0a321e58
Signed by: onkelbeh
GPG Key ID: E6DB12C8C550F3C0
4 changed files with 52 additions and 1 deletions

View File

@ -1,5 +1,5 @@
2019-11 23 (reverse added today)
* add SmartHab-0.20
* add SmartHab-0.20, smhi-pkg-1.0.10
* add clx-sdk-xms-1.0.0, skybellpy-0.4.0, smappy-0.2.16
* add Adafruit-GPIO-1.0.3, Adafruit-PureIO-0.2.3, Adafruit-SHT31-1.0.2
* dg pysesame2-1.0.1

View File

@ -0,0 +1,3 @@
DIST smhi-pkg-1.0.10.tar.gz 4391 BLAKE2B 93c9b24d59731c907324de1ba337ffbd02cc58742a550acb50d2d9f9c76d1e85073323d73cd7fd1ca7c9d2cffc4308fe32b72c6b76e692a40964ee6d9afb2c3e SHA512 d8444b5828276260dc11a64edd555544b8f9111bcaf19ed2b5877be3b5aac87bc16d3505e35889f2737913c719bdc35caab3cce10f2ed874956f1451f6035c90
EBUILD smhi-pkg-1.0.10.ebuild 778 BLAKE2B 2267cace17e319ee07938ac88a91f9623c95cd9c4e63c58a41b41f4a34db47112b097fe892eea9af52326395939a80ba6e111bef9a19c41aef43ea84789fee74 SHA512 366da626bab8cef3e1bafb0dde6bf88cc2929320c7198c5cd47c9efb30dc498f8a093eb3b33919e7c60b20993c66d05ed6844ab9a8dc02e232923087a6d9ea9e
MISC metadata.xml 458 BLAKE2B c5ee777d982a6f2dd35a50c869e1a8459e800a7280edf2217ccfa0e52e421baa1bab699b6cbd0a04d431846e874a1a8a8d308bc9a8213f4bbfbb363f8dcd2ed4 SHA512 c6936730c481e8608136ca784599de2c7d04494de94df2668e912eea6c0512924465ea8f37b2d1cfc232c12f051ab28d5ed5fd45bba8c41e4111ac2939561195

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>
<email>b@edevau.net</email>
<name>Andreas Billmeier</name>
</maintainer>
<herd>python</herd>
<upstream>
<remote-id type="pypi">smhi-pkg</remote-id>
<maintainer status="unknown">
<email>info@joysoftware.org</email>
<name>helto4real</name>
</maintainer>
</upstream>
</pkgmetadata>

View File

@ -0,0 +1,32 @@
# Copyright 1999-2019 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI="7"
PYTHON_COMPAT=( python3_{6,7} )
inherit distutils-r1
DESCRIPTION="Gets the weather forecast data from Swedish weather institute"
HOMEPAGE="https://github.com/helto4real/python-packages/smhi https://pypi.org/project/smhi-pkg/"
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 ~x86 ~amd64-linux ~x86-linux"
IUSE="test"
RDEPEND=""
DEPEND="${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
}