add nextcloudmonitor-1.1.0

This commit is contained in:
2020-03-29 21:27:32 +02:00
parent 71f0617311
commit 5eb5753a98
4 changed files with 45 additions and 0 deletions

View File

@@ -0,0 +1,3 @@
DIST nextcloudmonitor-1.1.0.tar.gz 1925 BLAKE2B 503a54b25a70314227f9da7ce9f0b736a0c32ea00bc9e8bb61cb325f48a0f840f55738d967481819594ed846f5bedb5ae02018dd46cd2670e8e4ec8a5f0ac871 SHA512 c42d77dbe28c16f2555ec9bc8190608a3e359d051ad1d425e95e802c62e1f74c06e204b1f476a2c26df99027b9848ec8db5a54d83c7fa95a003c246659382289
EBUILD nextcloudmonitor-1.1.0.ebuild 652 BLAKE2B eeaa1c46f9e9a41a2e8aaebfe5db3056e1abf3b315ed1a01da91267a9016f94b2c5a1f31f6befa627d62f8ac06c3d18de3df43c09b961fa6e3e8a368417d5cc1 SHA512 f72a772386a903eb1f4958ac64073ac32db473b73a20defe3813e105be2621bb8ff2289e2b816942893057e59fe52200f007e136eb10e03a6f8ce906afbb8d7f
MISC metadata.xml 335 BLAKE2B 5400c60c200c7cd5284ab315a9f28e128e2cc209829f150a822a3271fb832fdcb1bd7d02cf0472d902d2e653a68cb373b550a361fa7f36bf8516edc96b790865 SHA512 3c1b8d9b72b82b4b01f3b524be172817ace1bcc898b01d4cf61c5a4a6bba7a5384487700237a86b1aea7c68a9091cda24a9577fce6b8ed7d2e3d4a77cd52dd8d

View File

@@ -0,0 +1,11 @@
<?xml version='1.0' encoding='UTF-8'?>
<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
<pkgmetadata>
<maintainer type="project">
<email>b@edevau.net</email>
<name>Andreas Billmeier</name>
</maintainer>
<upstream>
<remote-id type="pypi">nextcloudmonitor</remote-id>
</upstream>
</pkgmetadata>

View File

@@ -0,0 +1,30 @@
# Copyright 1999-2020 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI="7"
PYTHON_COMPAT=( python3_{6,7,8} )
inherit distutils-r1
DESCRIPTION="Python wrapper around nextcloud monitor api"
HOMEPAGE=" https://pypi.org/project/nextcloudmonitor/"
SRC_URI="mirror://pypi/${P:0:1}/${PN}/${P}.tar.gz"
LICENSE=""
SLOT="0"
KEYWORDS="~amd64 ~arm64 ~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
}