update spiderpy-1.4.2

This commit is contained in:
Andreas Billmeier 2020-12-14 18:52:45 +01:00 committed by Andreas Billmeier
parent 738aa6a142
commit b769c630b7
Signed by: onkelbeh
GPG Key ID: E6DB12C8C550F3C0
3 changed files with 35 additions and 0 deletions

View File

@ -5,6 +5,7 @@
* update pyserial-3.5 from main repo
* bump pyserial-asyncio-0.5
* bump aiounifi-26
* update spiderpy-1.4.2
2020-12-09
* update pyarlo-0.2.4

View File

@ -1,3 +1,5 @@
DIST spiderpy-1.3.1.tar.gz 5269 BLAKE2B 67e6e21d240183d809d99fc9e950104975cf3f2cf4d189cb523e0a1e42b56ad302f406a61139d3691e7215bebfcbb4cb39cd4aebae510ca0b33f678c2a26aa0b SHA512 ddb18375b272b3d6275dbe7e15c300b76866923a9d630322a4e30c7d5e3bdfded48219a75266896c15bf41d9cb1c5590bb530e3fd96be1b18966c48fe530e3b6
DIST spiderpy-1.4.2.tar.gz 6380 BLAKE2B 9ac30a49b25d2e9aacb49ce34915c3a70f0bef08847ba27c757e9b771bc6c14593c437afd010024c555a9dbfd503f05043758cc66a5c217cbbd27f38d026e0cd SHA512 37b91999fde3f5110631abcdc826d5898ac6933f44277d72394c96517261ced3c6ae354d3031477eba9e5a37e223b83c298a80e72046c510f945860f53eabaf5
EBUILD spiderpy-1.3.1.ebuild 729 BLAKE2B ab9e582241e36239c3d27370270b489b7bea3d929bc41a117dee6a35fc1e246a3769c1f2374aaf554db3723fecb9ec36f73ec0bec53f03faab94cb40b970056e SHA512 96736d406d14d8d6804cf25144628131f9b0238a3fa4a8ad64d9683c59560dd103065d183ae9066d89d9209c8f2dcbbe65878d1d1c7cff5ca85d74a27bc0bdce
EBUILD spiderpy-1.4.2.ebuild 779 BLAKE2B 309a61d2e248ec40919f2e0b4c1a641a27b28d99c836286b03a6b43acaa6938f22e8b0a138dfb355a81d37415e7c5a059d375751291e53cedd401aaf752925b3 SHA512 9f1091ceb9db60c323e7089d4367233b954edadcda45840d37f6ba036b878416ce8545c898baa9a6991d069486951cc51872a81c0b453f4f3255293571298e23
MISC metadata.xml 455 BLAKE2B b0216d4772e94dad3091266c7911c35769b30c1fdc2336dff64d047c86dd0b61fe721b4e6e7be9365247cc23311a0365058d279eee5c4d7f30422ee4bcf8d0bb SHA512 f2ad62345c9d20c08a18c0824a61623078653dfb79d3b37ca1827cd1401ea08a1751ad0236fda47157b780f87f3741114e1a41501c066d901c15c360baf4095f

View File

@ -0,0 +1,32 @@
# Copyright 1999-2020 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI="7"
PYTHON_COMPAT=( python3_{6..9} )
inherit distutils-r1
DESCRIPTION="Python wrapper for the Spider API, a way to manage your Spider installation"
HOMEPAGE="https://www.github.com/peternijssen/spiderpy/ https://pypi.org/project/spiderpy/"
SRC_URI="mirror://pypi/${P:0:1}/${PN}/${P}.tar.gz"
LICENSE="MIT"
SLOT="0"
KEYWORDS="~amd64 ~arm ~arm64 ~x86 ~amd64-linux ~x86-linux"
IUSE="test"
DOCS="README.md"
RDEPEND=">=dev-python/requests-2.0[${PYTHON_USEDEP}]"
BDEPEND="
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
}