add python-nmap-0.6.1

This commit is contained in:
Andreas Billmeier 2019-11-23 18:18:47 +01:00
parent 63b30dee06
commit 1bacdf5208
Signed by: onkelbeh
GPG Key ID: E6DB12C8C550F3C0
4 changed files with 51 additions and 0 deletions

View File

@ -1,5 +1,7 @@
2019-11-22 (reverse added today)
*
* add python-nmap-0.6.1
* update pycarwings2-2.9
* add niluclient-0.1.2
* add niko-home-control-0.2.2 and nclib-0.8.3
* add py-nextbusnext-0.1.4

View File

@ -0,0 +1,3 @@
DIST python-nmap-0.6.1.tar.gz 41953 BLAKE2B 0cc1620038ed7116e3e18e5b302200a9eb0ffa6a2d78e72cca4b86e38b412f02b2fba0e1a84d98693686fe5462762ba0b24b7b85af0c1dc54be59e9e2bb4f106 SHA512 8de9ba6d0a4cecce09e82765b8a9ac77fb4368298d5a5f9ce07b7737a90def795f1ad00885fc73ec720bea2a592230e86aaca8cacd884c9299f64ad934bcee18
EBUILD python-nmap-0.6.1.ebuild 712 BLAKE2B 4aa5294d5d233ae43df1ae8c48565540ddc25574a96a5dc89687b5e07fe31066a4a106736f1dff67377b989ee8f4e7a18e10fa00856d3027ff6c4019b2e809fd SHA512 36092ef9e1455528c0d432feb7c96c90c2f4d68e9dfc0d05eafe900248daa0420e61d373837f6863d1bcbb42c48e910a699402f8910bfd9061af32bfbd8b2ea1
MISC metadata.xml 462 BLAKE2B bbc7b1656997c8c5499cc7124fd981f22c2fdce3f2dc60a6f7565bc6c1b5595c7c64ab0c4038fcd6052a033169efed51ebe955e3409c20ec4ba494377a02925c SHA512 fef87962eed19fc9474f46efc4a5e45a6677ce72c69bcc723fef8a01e20ec133e6fab5bb475072aa62c69123df0d8fb71625bf6bd6fd340063e241c4fd622856

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">python-nmap</remote-id>
<maintainer status="unknown">
<email>norman@xael.org</email>
<name>Alexandre Norman</name>
</maintainer>
</upstream>
</pkgmetadata>

View File

@ -0,0 +1,30 @@
# Copyright 1999-2019 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI="7"
PYTHON_COMPAT=( python3_{6,7} )
inherit distutils-r1
DESCRIPTION="This is a python class to use nmap and access scan results from python3"
HOMEPAGE="http://xael.org/pages/python-nmap-en.html https://pypi.org/project/python-nmap/"
SRC_URI="mirror://pypi/${P:0:1}/${PN}/${P}.tar.gz"
LICENSE="GPL-3"
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
}