pypoint-1.1.1

This commit is contained in:
Andreas Billmeier 2019-02-16 09:25:50 +01:00
parent 5d2065032e
commit c40e03c6d0
3 changed files with 34 additions and 1 deletions

View File

@ -6,6 +6,7 @@
* add pyHik
* add pycarwings2
* add pydanfossair
* bump pypoint-1.1.1
2019-02-12 div Updates
* bump home-assistant-frontend==20190213.0, remove 20190201
@ -17,7 +18,7 @@
- cryptography-2.5
- RestrictedPython-4.0_beta8
- ruamel-yaml-0.15.88
- setuptools-40.8.0-
- setuptools-40.8.0
- rxv-0.6.0
- home-assistant-frontend-20190213.0
* removed some older aiohttp ebuilds

View File

@ -1,5 +1,7 @@
DIST pypoint-1.0.7.tar.gz 3585 BLAKE2B 81a6871b89ae7cf068ba2e3a8aa96ded968064e771cf9167f7b1f26bb24856107bb2659cad2a34bed694dae67901edf0d99fd63cd767e887410ab138d3bc02ee SHA512 052b06ecf4ac7dd1ac6df118119ff3355a49c5933f17f6191e4fd3be5feba5b8782755ebc072b8c6d9c0b80de6a3270e65a02098868051f6aaa4ac5f149c2069
DIST pypoint-1.0.8.tar.gz 3604 BLAKE2B 949a534d461c78ce7036ab7237f8119c6cbc06805de313d77666bff62a76d1cf5377fcaa367f1a5b128138b4692185f4c88aacc78f563eff0d27952851c13e6a SHA512 b472f8307a6585905ef98146a39060e9ca7295ab0bdf7d1fe8fb509ffd95d42cdb6a7be5b772a21c1854780b3fb936ecf40c09b25d694b5d914c05bf5fb55255
DIST pypoint-1.1.1.tar.gz 3811 BLAKE2B 1bb2db839415cee13843897ebe7920654e4a2f2d626a8c8bf9c23db00f9e117cfa64c39c4d8c0d91d4674364c6fe75b07cda29be7a11fa5e70d586fca5d3d528 SHA512 ebf68f9d0fe0f55522d330ae11db4e83543655551c0cfcdc3a01d0ac333d0070767c7e6a0562222ded2fd2215a2be662db7952a9a0c0721e515194c5877e1039
EBUILD pypoint-1.0.7.ebuild 650 BLAKE2B 91a68e57196a26e06cdfc77c554c629283b34a75b255a87679d9d3636e7b5684f8ce127f4c6e5ff51d2ca12931f1fa8f7f2dbe7985a2726728f3283be99a32be SHA512 c64f7cd009ac8b53d1d4d2cd71a509c2ea7d944a85962142bd7c25bd969e438d21bb4f51bdb05b8370fe6237db54af581a75f14f6d2e3c6e66336e651805d167
EBUILD pypoint-1.0.8.ebuild 650 BLAKE2B 91a68e57196a26e06cdfc77c554c629283b34a75b255a87679d9d3636e7b5684f8ce127f4c6e5ff51d2ca12931f1fa8f7f2dbe7985a2726728f3283be99a32be SHA512 c64f7cd009ac8b53d1d4d2cd71a509c2ea7d944a85962142bd7c25bd969e438d21bb4f51bdb05b8370fe6237db54af581a75f14f6d2e3c6e66336e651805d167
EBUILD pypoint-1.1.1.ebuild 650 BLAKE2B 91a68e57196a26e06cdfc77c554c629283b34a75b255a87679d9d3636e7b5684f8ce127f4c6e5ff51d2ca12931f1fa8f7f2dbe7985a2726728f3283be99a32be SHA512 c64f7cd009ac8b53d1d4d2cd71a509c2ea7d944a85962142bd7c25bd969e438d21bb4f51bdb05b8370fe6237db54af581a75f14f6d2e3c6e66336e651805d167
MISC metadata.xml 252 BLAKE2B 507e0ddc9d50b879ff374b903b142f85d020dfd6c486aba2af84fe082c878e780edbb79188ae10104d57db0eb775c86814cc8c06891a3854c9da840a4d377050 SHA512 9470ac9c8a5a4f80e3f767e7aa198addc7b21866c63b2a310e9f41ce65817672fb77423117bdd619e99cb62322025aeadf50717e23eafabf99080fcc106820af

View File

@ -0,0 +1,30 @@
# Copyright 1999-2015 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v3.0
EAPI=6
PYTHON_COMPAT=( python3_{5,6,7} )
inherit distutils-r1
DESCRIPTION="API for Minut Point"
HOMEPAGE="https://github.com/fredrike/pypoint https://pypi.org/project/pypoint/"
SRC_URI="mirror://pypi/${P:0:1}/${PN}/${P}.tar.gz"
LICENSE=""
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
}