dev-python/ncclient: initial import

Signed-off-by: Alessandro Barbieri <lssndrbarbieri@gmail.com>
This commit is contained in:
Alessandro Barbieri
2021-10-09 21:37:58 +02:00
parent cd5ea0c81d
commit 1694baec8c
3 changed files with 49 additions and 0 deletions

View File

@@ -0,0 +1 @@
DIST ncclient-0.6.12.tar.gz 129201 BLAKE2B 43c8af07dcebebbec4b85217b08843ee71b3bbf6c79351973fef383d5741f6fbd8143ce57a717d0f45ed9f8fd6fb9bb89f96c17ea45455c1aad58d05a187dbfc SHA512 32b324f255516676962a91550c7ffac7d95a2dac2b850071fc1bdf2f49dc2958c8ed3b1313d0bb8ef69e94171b3e5063ab36abf05e5a37bf137b7a0659a34f35

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 type="person">
<description>co-maintainers welcome</description>
<email>lssndrbarbieri@gmail.com</email>
<name>Alessandro Barbieri</name>
</maintainer>
<longdescription lang="en">
Python library that facilitates client-side scripting and application development around the NETCONF protocol
</longdescription>
<upstream>
<remote-id type="github">ncclient/ncclient</remote-id>
<remote-id type="pypi">ncclient</remote-id>
</upstream>
</pkgmetadata>

View File

@@ -0,0 +1,32 @@
# Copyright 1999-2021 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=8
DISTUTILS_USE_SETUPTOOLS=rdepend
PYTHON_COMPAT=( python3_{8..10} )
inherit distutils-r1
DESCRIPTION="Python library for NETCONF clients"
HOMEPAGE="
https://github.com/ncclient/ncclient
https://pypi.org/project/ncclient
"
SRC_URI="https://github.com/ncclient/${PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz"
LICENSE="Apache-2.0"
SLOT="0"
KEYWORDS="~amd64"
RDEPEND="
dev-python/lxml[${PYTHON_USEDEP}]
dev-python/paramiko[${PYTHON_USEDEP}]
dev-python/six[${PYTHON_USEDEP}]
"
DEPEND="
${RDEPEND}
test? ( dev-python/mock[${PYTHON_USEDEP}] )
"
distutils_enable_tests nose