bump zm-py-0.4.0

This commit is contained in:
Andreas Billmeier 2019-11-10 23:24:57 +01:00
parent f302f68fd5
commit 02a331316f
Signed by: onkelbeh
GPG Key ID: E6DB12C8C550F3C0
3 changed files with 40 additions and 0 deletions

View File

@ -7,6 +7,7 @@
- apply a temporary hack for opencv-3.4.1 (https://bugs.gentoo.org/699730)
- remove dev-python/Pillow, we already use only the one from gentoo main repo
* bump pyatmo-2.3.3
* bump zm-py-0.4.0
2019-11-09 again modules from dev tree
* bump abodepy-0.16.7

View File

@ -1,3 +1,5 @@
DIST zm-py-0.3.3.tar.gz 10119 BLAKE2B 66d7da0800f81382802c91325cd9c1d39f526bf6825883c50ad21bd924ebd42492b31376094a0db5c4e253606370139e030c9a93ee4fc499b1de6b98ebfe0680 SHA512 4a75e277307b9b27545a126168b9a6643bf52b68b49b2077bd8cde4b2f2f9857c66e74d6eb5e75e04e9efcefcefeb11b15b8ec010f6986ad727f1ceed6924a20
DIST zm-py-0.4.0.tar.gz 12337 BLAKE2B 3f48941fabdfb5af704742bad07eeb083841ad17a53d38eea2b527bcfea841133fc23f40c8129d62d7649cf99e77a3799c6f6312d8c73361f9744cc42076104e SHA512 cf8a7035bf4a04100ae439bfdf8c97d278989c7e7ccfbb3a1519f1d565f1feb028ebd64322a3a7753d885c2705a69cddd8ab5cb12277e08c0cd09bd6d0aa1088
EBUILD zm-py-0.3.3.ebuild 1021 BLAKE2B eb54fe7253916557f72edc85328bdcfc1f1bf2c8d46143bea790a8e0d5805a9560f9cc1a572468f74ae801a5293329a01862ea18a2073a28306d02362405dffa SHA512 b1f66b82d778ea7d64891a9e1249bc2fcc01e918514ff59e31fbc7ab9b5e993ab3bce971bc166d51e1f95802eb915e073e9b9b57ee1636018e35219d5d725eea
EBUILD zm-py-0.4.0.ebuild 1019 BLAKE2B 95113fe9b4df79590e3e2a21d3d25df86277610726141e96451a47b6a4f9bff38e350606f0da125729f200127d663e69b03ff5d480b1e4e09548a9b5ccc5c6c4 SHA512 161d6ad3481281d7220b31c09bf7fa8c3fbf7b3e9c576bcfaabc0eefe69e01c2cffb0ad3823f2cd77ac7e443f4132340674f9c771ff4aace296531e0e8b79f3d
MISC metadata.xml 252 BLAKE2B 507e0ddc9d50b879ff374b903b142f85d020dfd6c486aba2af84fe082c878e780edbb79188ae10104d57db0eb775c86814cc8c06891a3854c9da840a4d377050 SHA512 9470ac9c8a5a4f80e3f767e7aa198addc7b21866c63b2a310e9f41ce65817672fb77423117bdd619e99cb62322025aeadf50717e23eafabf99080fcc106820af

View File

@ -0,0 +1,37 @@
# Copyright 1999-2019 Gentoo Foundation (W)2019 Andreas Billmeier b@edevau.net
# Distributed under the terms of the GNU General Public License v2
EAPI=6
PYTHON_COMPAT=( python3_{6,7} )
inherit distutils-r1
DESCRIPTION="A loose python wrapper around the ZoneMinder REST API."
HOMEPAGE="https://github.com/rohankapoorcom/zm-py https://pypi.org/project/zm-py/"
SRC_URI="mirror://pypi/${P:0:1}/${PN}/${P}.tar.gz"
LICENSE="Apache-2.0"
SLOT="0"
KEYWORDS="~amd64 ~x86 ~amd64-linux ~x86-linux"
IUSE="test"
RDEPEND=">=dev-python/requests-2.0[${PYTHON_USEDEP}]"
DEPEND="${REDEPEND}
dev-python/setuptools[${PYTHON_USEDEP}]
test? (
dev-python/colorlog[${PYTHON_USEDEP}]
dev-python/nose[${PYTHON_USEDEP}]
dev-python/flake8[${PYTHON_USEDEP}]
dev-python/flake8-docstrings[${PYTHON_USEDEP}]
dev-python/mypy[${PYTHON_USEDEP}]
dev-python/pydocstyle[${PYTHON_USEDEP}]
dev-python/pylint[${PYTHON_USEDEP}]
dev-python/pytest[${PYTHON_USEDEP}]
)"
python_test() {
nosetests --verbose || die
py.test -v -v || die
}