add spiderpy

This commit is contained in:
2019-10-27 13:06:57 +01:00
parent 381e792d2a
commit f8ea84ac48
3 changed files with 49 additions and 0 deletions

View File

@@ -0,0 +1,3 @@
DIST spiderpy-1.3.1.tar.gz 5269 BLAKE2B 67e6e21d240183d809d99fc9e950104975cf3f2cf4d189cb523e0a1e42b56ad302f406a61139d3691e7215bebfcbb4cb39cd4aebae510ca0b33f678c2a26aa0b SHA512 ddb18375b272b3d6275dbe7e15c300b76866923a9d630322a4e30c7d5e3bdfded48219a75266896c15bf41d9cb1c5590bb530e3fd96be1b18966c48fe530e3b6
EBUILD spiderpy-1.3.1.ebuild 755 BLAKE2B 7261355f65c5342fb8c6094a9b7309ee21f6ba8c9ccdd79850b5651ac1bc3c26f303b5aea5c4bf14e8be5ff219592921107db4938369e21c197f2865bfbdd159 SHA512 7fa37a45219dacb291b23423231053cdd06d21f02e4399b9d306cb59b4b966a469d53d494dfa6b9c8786a6329863e67fdaa903c6c372c207cf4f7bd4d4c023fb
MISC metadata.xml 462 BLAKE2B c24219b414de6298da8a8e4d5bda873ccc7d3ccec5904e75be31ee7d878f0c6ef3c0409f6d7cd2362e48ef1a0ab0d7452f1cdba49979c93eacfd45a54657174f SHA512 92e3c96619701aa93ef3b262f06cec0b31f5fb72dc9656580968781ac8794bd9bb84102be4d9efd3246f45f3867f64a2533b3891f7b4d60b31da8b77cdb40926

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">spiderpy</remote-id>
<maintainer status="unknown">
<email>peter@peternijssen.nl</email>
<name>Peter Nijssen</name>
</maintainer>
</upstream>
</pkgmetadata>

View File

@@ -0,0 +1,30 @@
# Copyright 1999-2019 Gentoo Authors Andreas Billmeier b (at) edevau.net
# Distributed under the terms of the GNU General Public License v3.0
EAPI="7"
PYTHON_COMPAT=( python3_{5,6,7} )
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 ~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
}